/**
 * Pick & Drop Single Product Template - Desktop/Tablet
 * Exact design from reference PNG
 */

:root {
    --pdp-primary: #0066FF;
    --pdp-primary-dark: #0052CC;
    --pdp-bg: #f3f4f6;
    --pdp-card: #ffffff;
    --pdp-text: #1f2937;
    --pdp-text-light: #6b7280;
    --pdp-border: #e5e7eb;
    --pdp-shadow: 0 1px 3px rgba(0,0,0,0.1);
    --pdp-shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1);
}

/* ========================================
   Base
======================================== */
.pdp-page {
    background: var(--pdp-bg);
    min-height: 100vh;
    padding: 20px 0 40px;
}

.pdp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ========================================
   RESPONSIVE LAYOUT SWITCHING
======================================== */

/* Mobile layout - default */
.pdp-mobile {
    display: block;
}

.pdp-desktop {
    display: none;
}

/* Desktop layout - 1024px and above */
@media (min-width: 1024px) {
    .pdp-mobile {
        display: none;
    }
    
    .pdp-desktop {
        display: block;
    }
}

/* Desktop Grid */
.pdp-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 25px;
    align-items: start;
}

/* ========================================
   LEFT COLUMN
======================================== */
.pdp-left {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Product Poster */
.pdp-poster {
    background: var(--pdp-card);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--pdp-shadow-lg);
    margin-bottom: 15px;
}

.pdp-poster-img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 1/1;
    object-fit: cover;
}

/* Title Section */
.pdp-title-section {
    background: var(--pdp-card);
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: var(--pdp-shadow);
    margin-bottom: 15px;
}

.pdp-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--pdp-text);
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.pdp-availability {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--pdp-text-light);
}

.pdp-check {
    width: 20px;
    height: 20px;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: white;
    font-weight: bold;
}

/* Tabs Section */
.pdp-tabs-section {
    background: var(--pdp-card);
    border-radius: 12px;
    box-shadow: var(--pdp-shadow);
    overflow: hidden;
}

.pdp-tabs-nav {
    display: flex;
    border-bottom: 1px solid var(--pdp-border);
    padding: 0 20px;
}

.pdp-tab {
    padding: 15px 20px;
    background: none;
    border: none;
    color: var(--pdp-text-light);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: all 0.2s;
}

.pdp-tab:hover {
    color: var(--pdp-text);
}

.pdp-tab.active {
    color: var(--pdp-primary);
    border-bottom-color: var(--pdp-primary);
}

.pdp-tab-content {
    padding: 25px;
}

.pdp-pane {
    display: none;
}

.pdp-pane.active {
    display: block;
}

.pdp-desc-content h2 {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 20px 0;
    color: var(--pdp-text);
}

.pdp-desc-text {
    color: var(--pdp-text);
    line-height: 1.8;
    font-size: 15px;
    margin-bottom: 25px;
}

.pdp-desc-text p {
    margin-bottom: 15px;
}

/* Facilities */
.pdp-facilities {
    margin-bottom: 30px;
}

.pdp-facilities h4 {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 12px 0;
    color: var(--pdp-text);
}

.pdp-facilities ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pdp-facilities li {
    padding: 6px 0;
    font-size: 14px;
    color: var(--pdp-text-light);
    padding-left: 15px;
    position: relative;
}

.pdp-facilities li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--pdp-primary);
}

/* Why Choose Us */
.pdp-why-section {
    border-top: 1px solid var(--pdp-border);
    padding-top: 30px;
}

.pdp-why-section h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 20px 0;
    color: var(--pdp-text);
}

.pdp-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.pdp-feature-card {
    background: var(--pdp-bg);
    border: 1px solid var(--pdp-border);
    border-radius: 12px;
    padding: 25px 15px;
    text-align: center;
    transition: all 0.2s;
}

.pdp-feature-card:hover {
    border-color: var(--pdp-primary);
    transform: translateY(-2px);
}

.pdp-feature-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.pdp-feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pdp-feature-card h4 {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 8px 0;
    color: var(--pdp-text);
}

.pdp-feature-card p {
    font-size: 12px;
    color: var(--pdp-text-light);
    margin: 0;
}

/* Booking Info Tab */
.pdp-info-list {
    max-width: 500px;
}

.pdp-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--pdp-border);
    font-size: 14px;
}

.pdp-info-row:last-child {
    border-bottom: none;
}

.pdp-info-row span {
    color: var(--pdp-text-light);
}

.pdp-info-row strong {
    color: var(--pdp-primary);
    font-weight: 600;
}

/* ========================================
   RIGHT COLUMN - BOOKING FORM
======================================== */
.pdp-right {
    position: relative;
}

.pdp-booking-sticky {
    position: sticky;
    top: 20px;
}

/* Included Services Section */
.pdp-included-services {
    background: var(--pdp-card);
    border-radius: 12px;
    padding: 15px 20px;
    margin-bottom: 15px;
    box-shadow: var(--pdp-shadow);
}

.pdp-services-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--pdp-text);
    margin: 0 0 12px 0;
    text-align: left;
}

.pdp-services-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-start;
}

.pdp-service-icon-item {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #f3f4f6;
    border: 2px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: help;
    transition: all 0.2s;
    overflow: hidden;
}

.pdp-service-icon-item:hover {
    border-color: var(--pdp-primary);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

.pdp-service-icon-item img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.pdp-service-emoji {
    font-size: 22px;
    line-height: 1;
}

.pdp-booking-card {
    background: var(--pdp-card);
    border-radius: 16px;
    box-shadow: var(--pdp-shadow-lg);
    overflow: hidden;
}

/* Booking Header with Price - Base styles */
.pdp-booking-header {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid var(--kt-border);
}

.pdp-booking-header h2 {
    margin: 0 0 15px 0;
    font-size: 20px;
    font-weight: 700;
}

.pdp-price-compare {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.pdp-old-price {
    text-align: left;
    position: relative;
}

.pdp-old-price .pdp-price-label {
    display: block;
    font-size: 11px;
    opacity: 0.8;
}

.pdp-old-price .pdp-price-value {
    font-size: 20px;
    font-weight: 700;
    text-decoration: line-through;
    opacity: 0.7;
}

.pdp-price-arrow {
    font-size: 20px;
    font-weight: bold;
}

.pdp-new-price {
    text-align: left;
    background: rgba(255,255,255,0.2);
    padding: 8px 15px;
    border-radius: 8px;
}

.pdp-new-price .pdp-price-label {
    display: block;
    font-size: 11px;
}

.pdp-new-price .pdp-price-value {
    font-size: 22px;
    font-weight: 700;
}

/* Booking Body */
.pdp-booking-body {
    padding: 20px;
}

/* Locations Row */
.pdp-locations-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 15px;
}

.pdp-location-box {
    background: var(--pdp-bg);
    border: 1px solid var(--pdp-border);
    border-radius: 10px;
    padding: 12px;
}

.pdp-loc-header {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
}

.pdp-loc-icon {
    font-size: 16px;
}

.pdp-loc-title {
    font-size: 12px;
    font-weight: 600;
    color: var(--pdp-text);
}

.pdp-loc-content {
    text-align: center;
}

.pdp-loc-text {
    font-size: 12px;
    color: var(--pdp-text-light);
    margin-bottom: 10px;
}

.pdp-loc-content.selected .pdp-loc-text {
    color: var(--pdp-text);
    font-weight: 500;
    font-size: 11px;
}

.pdp-loc-btn {
    width: 100%;
    padding: 10px;
    background: var(--pdp-primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.pdp-loc-btn:hover {
    background: var(--pdp-primary-dark);
}

.pdp-loc-btn-icon {
    font-size: 14px;
}

/* Route Map Section */
.pdp-route-section {
    background: var(--pdp-bg);
    border: 1px solid var(--pdp-border);
    border-radius: 12px;
    height: 140px;
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
}

#pdp-route-map {
    width: 100%;
    height: 100%;
}

.pdp-route-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--pdp-bg);
    color: var(--pdp-text-light);
    text-align: center;
}

.pdp-route-placeholder.hidden {
    display: none;
}

.pdp-route-icon {
    margin-bottom: 10px;
}

.pdp-route-placeholder p {
    margin: 0;
    font-size: 13px;
}

/* Date Time Row */
.pdp-datetime-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 15px;
}

.pdp-dt-box {
    background: var(--pdp-bg);
    border: 1px solid var(--pdp-border);
    border-radius: 10px;
    padding: 12px;
}

.pdp-dt-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--pdp-text);
    margin-bottom: 8px;
}

.pdp-dt-input,
.pdp-dt-select {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--pdp-border);
    border-radius: 8px;
    font-size: 13px;
    background: white;
}

.pdp-dt-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
}

/* Counter Row */
.pdp-counter-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.pdp-counter-box {
    background: var(--pdp-bg);
    border: 1px solid var(--pdp-border);
    border-radius: 10px;
    padding: 12px;
}

.pdp-counter-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--pdp-text);
    margin-bottom: 10px;
}

.pdp-counter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.pdp-cbtn {
    width: 32px;
    height: 32px;
    border: 1px solid var(--pdp-border);
    background: white;
    border-radius: 6px;
    cursor: pointer;
    font-size: 18px;
    color: var(--pdp-text);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pdp-cbtn:hover {
    background: var(--pdp-primary);
    color: white;
    border-color: var(--pdp-primary);
}

.pdp-cbtn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.pdp-counter input {
    width: 40px;
    text-align: center;
    border: none;
    background: transparent;
    font-size: 16px;
    font-weight: 600;
    color: var(--pdp-text);
}

/* Price Breakdown */
.pdp-breakdown {
    background: var(--pdp-bg);
    border: 1px solid var(--pdp-border);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
}

.pdp-break-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 13px;
}

.pdp-break-item span:first-child {
    color: var(--pdp-text);
}

.pdp-break-line {
    color: var(--pdp-text-light);
    letter-spacing: 2px;
}

/* Round Trip Toggle */
.pdp-roundtrip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--pdp-bg);
    border: 1px solid var(--pdp-border);
    border-radius: 10px;
    padding: 12px 15px;
    margin-bottom: 15px;
}

.pdp-round-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--pdp-text);
}

.pdp-toggle-switch {
    position: relative;
    width: 50px;
    height: 26px;
}

.pdp-toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.pdp-toggle-slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: #d1d5db;
    border-radius: 26px;
    transition: 0.3s;
}

.pdp-toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background: white;
    border-radius: 50%;
    transition: 0.3s;
}

.pdp-toggle-switch input:checked + .pdp-toggle-slider {
    background: var(--pdp-primary);
}

.pdp-toggle-switch input:checked + .pdp-toggle-slider:before {
    transform: translateX(24px);
}

/* Return Date */
.pdp-return-date {
    margin-bottom: 15px;
}

/* Book Now Button - Base styles, colors handled by dark-mode.css */
.pdp-book-btn {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid var(--kt-border);
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    background: transparent;
}

.pdp-book-btn:hover:not(:disabled) {
    transform: translateY(-2px);
}

.pdp-book-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pdp-book-text {
    font-size: 20px;
}

.pdp-book-price {
    font-size: 22px;
}

.pdp-charges-note {
    text-align: center;
    font-size: 11px;
    color: var(--pdp-text-light);
    margin: 0 0 20px 0;
}

/* Contact Info */
.pdp-contact-info {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid var(--pdp-border);
}

.pdp-contact-info p {
    margin: 5px 0;
    font-size: 12px;
    color: var(--pdp-text-light);
}

/* ========================================
   MAP MODAL
======================================== */
.pdp-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.pdp-modal.active {
    display: flex;
}

.pdp-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
}

.pdp-modal-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    height: 70vh;
    background: var(--pdp-card);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.4);
    display: flex;
    flex-direction: column;
}

.pdp-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--pdp-border);
    background: var(--pdp-bg);
}

.pdp-modal-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.pdp-modal-close {
    width: 36px;
    height: 36px;
    border: none;
    background: var(--pdp-border);
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pdp-modal-close:hover {
    background: #ef4444;
    color: white;
}

.pdp-modal-body {
    flex: 1;
    position: relative;
}

.pdp-modal-search {
    position: absolute;
    top: 16px;
    left: 16px;
    right: 16px;
    display: flex;
    gap: 10px;
    z-index: 10;
}

.pdp-modal-search input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--pdp-border);
    border-radius: 10px;
    font-size: 15px;
    background: white;
    box-shadow: var(--pdp-shadow);
}

.pdp-modal-search button {
    padding: 12px 20px;
    background: var(--pdp-primary);
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
}

#pdp-big-map {
    width: 100%;
    height: 100%;
}

.pdp-modal-footer {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px 20px;
    border-top: 1px solid var(--pdp-border);
    background: var(--pdp-bg);
}

#pdp-selected-location {
    flex: 1;
    padding: 12px 16px;
    background: white;
    border-radius: 10px;
    font-size: 14px;
    color: var(--pdp-text-light);
    border: 1px solid var(--pdp-border);
}

#pdp-selected-location.selected {
    color: var(--pdp-text);
    border-color: #10b981;
    background: rgba(16, 185, 129, 0.05);
}

#pdp-confirm-btn {
    padding: 12px 24px;
    background: var(--pdp-primary);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
}

#pdp-confirm-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Toast */
.pdp-toast {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: #1f2937;
    color: white;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 15px;
    z-index: 10000;
    opacity: 0;
    transition: all 0.3s;
}

.pdp-toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* ========================================
   MOBILE SPECIFIC STYLES (< 1024px)
======================================== */

/* Mobile Layout Container */
.pdp-mobile {
    padding: 0;
}

.pdp-mobile .pdp-poster {
    margin: -20px -15px 0 -15px;
    border-radius: 0;
}

.pdp-mobile .pdp-title-section {
    margin: 15px 0;
}

.pdp-mobile .pdp-title {
    font-size: 20px;
}

/* Mobile Services - Scrollable row */
.pdp-mobile .pdp-included-services {
    margin: 15px 0;
    padding: 15px;
}

.pdp-mobile .pdp-services-title {
    text-align: center;
    font-size: 14px;
}

.pdp-mobile .pdp-services-icons {
    justify-content: center;
    gap: 12px;
}

.pdp-mobile .pdp-service-icon-item {
    width: 50px;
    height: 50px;
}

.pdp-mobile .pdp-service-emoji {
    font-size: 26px;
}

.pdp-mobile .pdp-service-icon-item img {
    width: 28px;
    height: 28px;
}

/* Mobile Booking Card */
.pdp-mobile .pdp-booking-card {
    margin: 15px 0;
}

.pdp-mobile .pdp-booking-header h2 {
    font-size: 22px;
}

.pdp-mobile .pdp-old-price .pdp-price-value {
    font-size: 18px;
}

.pdp-mobile .pdp-new-price .pdp-price-value {
    font-size: 24px;
}

/* Mobile Form Elements */
.pdp-mobile .pdp-booking-body {
    padding: 15px;
}

.pdp-mobile .pdp-locations-row {
    gap: 10px;
}

.pdp-mobile .pdp-location-box {
    padding: 10px;
}

.pdp-mobile .pdp-loc-title {
    font-size: 11px;
}

.pdp-mobile .pdp-loc-btn {
    padding: 10px 8px;
    font-size: 12px;
}

.pdp-mobile .pdp-route-section {
    height: 120px;
}

.pdp-mobile .pdp-datetime-row,
.pdp-mobile .pdp-counter-row {
    gap: 10px;
}

.pdp-mobile .pdp-dt-box,
.pdp-mobile .pdp-counter-box {
    padding: 10px;
}

.pdp-mobile .pdp-counter {
    gap: 10px;
}

.pdp-mobile .pdp-cbtn {
    width: 28px;
    height: 28px;
    font-size: 16px;
}

.pdp-mobile .pdp-breakdown {
    padding: 12px;
}

.pdp-mobile .pdp-break-item {
    padding: 6px 0;
    font-size: 12px;
}

.pdp-mobile .pdp-roundtrip {
    padding: 12px;
}

.pdp-mobile .pdp-book-btn {
    padding: 18px 20px;
}

.pdp-mobile .pdp-book-text {
    font-size: 20px;
}

.pdp-mobile .pdp-book-price {
    font-size: 22px;
}

.pdp-mobile .pdp-contact-info p {
    font-size: 13px;
}

/* Mobile Tabs */
.pdp-mobile .pdp-tabs-section {
    margin-top: 20px;
}

.pdp-mobile .pdp-tabs-nav {
    padding: 0 10px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.pdp-mobile .pdp-tabs-nav::-webkit-scrollbar {
    display: none;
}

.pdp-mobile .pdp-tab {
    padding: 12px 15px;
    font-size: 13px;
    white-space: nowrap;
}

.pdp-mobile .pdp-tab-content {
    padding: 20px 15px;
}

/* Mobile Description */
.pdp-mobile .pdp-desc-content h2 {
    font-size: 18px;
}

.pdp-mobile .pdp-desc-text {
    font-size: 14px;
}

.pdp-mobile .pdp-facilities li {
    font-size: 13px;
}

/* Mobile Why Choose Us */
.pdp-mobile .pdp-why-section {
    padding-top: 20px;
}

.pdp-mobile .pdp-why-section h3 {
    font-size: 16px;
}

.pdp-mobile .pdp-features-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.pdp-mobile .pdp-feature-card {
    padding: 15px 10px;
}

.pdp-mobile .pdp-feature-icon {
    width: 40px;
    height: 40px;
    font-size: 22px;
}

.pdp-mobile .pdp-feature-card h4 {
    font-size: 12px;
}

.pdp-mobile .pdp-feature-card p {
    font-size: 11px;
}

/* Mobile Modal */
.pdp-mobile .pdp-modal-container {
    height: 85vh;
    border-radius: 12px 12px 0 0;
    max-width: 100%;
}

.pdp-modal.active .pdp-modal-container {
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

/* ========================================
   TABLET (1024px - 768px)
======================================== */
@media (max-width: 1024px) and (min-width: 768px) {
    .pdp-mobile .pdp-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pdp-mobile .pdp-locations-row,
    .pdp-mobile .pdp-datetime-row,
    .pdp-mobile .pdp-counter-row {
        grid-template-columns: 1fr 1fr;
    }
}

/* ========================================
   SMALL MOBILE (< 480px)
======================================== */
@media (max-width: 480px) {
    .pdp-mobile .pdp-title {
        font-size: 18px;
    }
    
    .pdp-mobile .pdp-services-icons {
        gap: 8px;
    }
    
    .pdp-mobile .pdp-service-icon-item {
        width: 44px;
        height: 44px;
    }
    
    .pdp-mobile .pdp-booking-header h2 {
        font-size: 20px;
    }
    
    .pdp-mobile .pdp-old-price .pdp-price-value {
        font-size: 16px;
    }
    
    .pdp-mobile .pdp-new-price .pdp-price-value {
        font-size: 20px;
    }
    
    .pdp-mobile .pdp-locations-row {
        grid-template-columns: 1fr;
    }
    
    .pdp-mobile .pdp-tab {
        padding: 10px 12px;
        font-size: 12px;
    }
    
    .pdp-mobile .pdp-features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    
    .pdp-mobile .pdp-feature-card {
        padding: 12px 8px;
    }
}

/* ========================================
   RELATED SERVICES SECTION
======================================== */
.pdp-related-section {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px solid var(--pdp-border);
}

.pdp-related-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--pdp-text);
    margin: 0 0 25px 0;
    text-align: left;
}

.pdp-related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Tablet: 4 per row */
@media (max-width: 1024px) {
    .pdp-related-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }
}

/* Mobile: 2 per row */
@media (max-width: 768px) {
    .pdp-related-section {
        margin-top: 30px;
        padding-top: 30px;
    }
    
    .pdp-related-title {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .pdp-related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .pdp-related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

/* ========================================   BOOKING FORM VARIATIONS
   For Tour, Hotel, Transport types
======================================== */

/* Tour Info */
.pdp-tour-info {
    background: var(--pdp-bg);
    border: 1px solid var(--pdp-border);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
}

.pdp-info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 14px;
}

.pdp-info-item:not(:last-child) {
    border-bottom: 1px solid var(--pdp-border);
}

.pdp-info-item span:first-child {
    color: var(--pdp-text-light);
}

.pdp-info-item strong {
    color: var(--pdp-text);
    font-weight: 600;
}

/* Full width date box */
.pdp-dt-full {
    grid-column: 1 / -1;
}

.pdp-time-note {
    display: block;
    font-size: 11px;
    color: var(--pdp-text-light);
    margin-top: 4px;
}

/* Guide Preference */
.pdp-guide-pref,
.pdp-room-type,
.pdp-service-type {
    margin-bottom: 15px;
}

/* Textarea */
.pdp-textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--pdp-border);
    border-radius: 8px;
    font-size: 14px;
    resize: vertical;
    min-height: 80px;
}

.pdp-textarea:focus {
    outline: none;
    border-color: var(--pdp-primary);
}

/* Special Requests */
.pdp-special-req {
    margin-bottom: 15px;
}

/* Radio Labels */
.pdp-radio-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background: var(--pdp-bg);
    border: 1px solid var(--pdp-border);
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    transition: all 0.2s;
}

.pdp-radio-label:hover {
    border-color: var(--pdp-primary);
}

.pdp-radio-label input[type="radio"] {
    margin: 0;
}

.pdp-radio-label input[type="radio"]:checked + span {
    color: var(--pdp-primary);
    font-weight: 600;
}

/* Duration Options */
.pdp-duration-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pdp-duration-row {
    margin-bottom: 15px;
}

/* Full width location */
.pdp-location-full {
    grid-column: 1 / -1;
    margin-bottom: 15px;
}

.pdp-text-input {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--pdp-border);
    border-radius: 8px;
    font-size: 14px;
    margin-top: 8px;
}

.pdp-text-input:focus {
    outline: none;
    border-color: var(--pdp-primary);
}


