/* ================================================
   MODERN SHOP PRODUCT DETAILS — details.css
   Theme  : Red Editorial (Primary #ff2d2d)
   Font   : DM Sans (display) + Lora (body accent)
   Style  : Refined luxury with editorial depth
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;0,9..40,800;1,9..40,400&family=Lora:ital,wght@0,400;0,600;1,400&display=swap');

/* ── DESIGN TOKENS ─────────────────────────────── */
:root {
    /* Uses route-specific primary colors defined in header.css
       Default: --primary: #43d3d3
       Shop: --primary-shop: #ff2d2d
       Tours: --primary-taxi: #f1b800
    */
    --c-teal:        var(--primary);
    --c-teal-dark:   var(--primary-dark);
    --c-teal-mid:    var(--primary);
    --c-teal-soft:   #ffe5e5;
    --c-teal-glass:  rgba(255,45,45,.07);
    --c-coral:       #ea5555;
    --c-coral-dark:  #c93d3d;
    --c-coral-soft:  #fff1f1;
    --c-ink:         #1c2b3a;
    --c-slate:       #4a5568;
    --c-mist:        #8fa0b0;
    --c-border:      #e2eaee;
    --c-surface:     #f7fafc;
    --c-white:       #ffffff;

    --f-display: 'DM Sans', sans-serif;
    --f-body:    'DM Sans', sans-serif;
    --f-accent:  'Lora', serif;

    --r-xs:  6px;
    --r-sm:  10px;
    --r-md:  16px;
    --r-lg:  24px;
    --r-xl:  32px;

    --sh-soft:   0 2px 12px rgba(255,45,45,.08);
    --sh-mid:    0 6px 24px rgba(255,45,45,.13);
    --sh-float:  0 16px 48px rgba(255,62,62,.14);
    --sh-glow:   0 0 0 3px rgba(255,45,45,.18);

    --ease: cubic-bezier(.4,0,.2,1);
    --dur:  .28s;
}

/* ── GLOBAL RESET HELPERS ────────────────────────*/
*, *::before, *::after { box-sizing: border-box; }

body {
    font-family: var(--f-body);
    color: var(--c-ink);
    background: var(--c-surface);
}

/* ── PAGE WRAPPER ────────────────────────────────*/
.product-details-wrapper {
    background: linear-gradient(160deg, var(--c-teal-soft) 0%, #fff0f0 180px, var(--c-surface) 380px);
    min-height: 100vh;
    padding-top: 80px;
    padding-bottom: 60px;
}

/* ── BREADCRUMB STRIP (optional) ─────────────────*/
.details-breadcrumb {
    display: flex; align-items: center; gap: 8px;
    font-size: 13px; color: var(--c-mist);
    margin-bottom: 20px;
}
.details-breadcrumb a { color: var(--c-teal); text-decoration: none; }
.details-breadcrumb a:hover { text-decoration: underline; }
.details-breadcrumb .sep { color: var(--c-border); }

/* ═══════════════════════════════════════════════
   LEFT COLUMN — PRODUCT CONTENT
═══════════════════════════════════════════════ */

/* ── TITLE BLOCK ─────────────────────────────────*/
.product-title-section {
    margin-bottom: 24px;
    animation: fadeUp .5s var(--ease) both;
}

.product-title {
    font-family: var(--f-display);
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 800;
    color: var(--c-ink);
    line-height: 1.25;
    margin: 0 0 14px;
    letter-spacing: -.4px;
}

.product-meta {
    display: flex; flex-wrap: wrap; gap: 14px; align-items: center;
}

.meta-item {
    display: flex; align-items: center; gap: 6px;
    font-size: 13.5px; color: var(--c-slate);
    font-weight: 500;
}
.meta-item i { color: var(--c-teal); font-size: 15px; }

.view-count {
    background: var(--c-teal);
    color: var(--c-white);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 12.5px;
    font-weight: 700;
    display: flex; align-items: center; gap: 6px;
    letter-spacing: .3px;
}

/* ── GALLERY ─────────────────────────────────────*/
.modern-gallery-container {
    background: var(--c-white);
    border-radius: var(--r-lg);
    padding: 20px;
    box-shadow: var(--sh-mid);
    margin-bottom: 28px;
    border: 1px solid var(--c-border);
    animation: fadeUp .5s .1s var(--ease) both;
}

.main-image-wrapper {
    position: relative;
    border-radius: var(--r-md);
    overflow: hidden;
    background: #f0f6f6;
    width: 100%;
    height: 600px;
    display: flex; align-items: center; justify-content: center;
}

.main-image-wrapper::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(62,26,26,.12) 100%);
    pointer-events: none;
}

/* Make zoom wrapper take full space */
.main-image-wrapper .zoomWrapper,
.main-image-wrapper .single-zoom,
.main-image-wrapper .zoomWrapper > a,
.main-image-wrapper .single-zoom > a {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
}

.main-image-wrapper img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform .6s var(--ease);
    position: relative;
    z-index: 1;
    display: block;
}

.main-image-wrapper:hover img { transform: scale(1.04); }

.gallery-thumbnails {
    display: flex; gap: 10px; margin-top: 14px;
    overflow-x: auto; padding: 6px 2px 10px;
    scrollbar-width: thin;
    scrollbar-color: var(--c-teal) var(--c-border);
}
.gallery-thumbnails::-webkit-scrollbar { height: 4px; }
.gallery-thumbnails::-webkit-scrollbar-track { background: var(--c-border); border-radius: 2px; }
.gallery-thumbnails::-webkit-scrollbar-thumb { background: var(--c-teal); border-radius: 2px; }

.thumbnail-item {
    flex-shrink: 0;
    width: 76px; height: 76px;
    border-radius: var(--r-sm);
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
    background: #f0f6f6;
}
.thumbnail-item:hover, .thumbnail-item.active {
    border-color: var(--c-teal);
    box-shadow: var(--sh-glow);
}
.thumbnail-item img { width: 100%; height: 100%; object-fit: cover; }

/* ── PRICE BLOCK ─────────────────────────────────*/
.price-section {
    position: relative;
    overflow: hidden;
    background: var(--c-white);
    padding: 26px 28px;
    border-radius: var(--r-md);
    border: 1px solid var(--c-border);
    margin-bottom: 28px;
    display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
    box-shadow: var(--sh-soft);
    animation: fadeUp .5s .15s var(--ease) both;
}
.price-section::before {
    content: '';
    position: absolute; left: 0; top: 0; bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, var(--c-coral), var(--c-coral-dark));
    border-radius: var(--r-xs) 0 0 var(--r-xs);
}

.product-price {
    font-family: var(--f-display);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    color: var(--c-coral);
    margin: 0;
    letter-spacing: -1px;
    line-height: 1;
}
.product-price sup {
    font-size: .5em;
    font-weight: 700;
    vertical-align: super;
    letter-spacing: 0;
}

.price-label {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--c-coral-soft);
    color: var(--c-coral);
    font-size: 12px; font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    text-transform: uppercase; letter-spacing: .5px;
}

/* ── VARIATIONS ──────────────────────────────────*/
.variations-section {
    background: var(--c-white);
    padding: 26px 28px;
    border-radius: var(--r-md);
    border: 1px solid var(--c-border);
    margin-bottom: 28px;
    box-shadow: var(--sh-soft);
    animation: fadeUp .5s .2s var(--ease) both;
}

.variation-group { margin-bottom: 20px; }
.variation-group:last-child { margin-bottom: 0; }

.variation-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--c-slate);
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-bottom: 12px;
    display: flex; align-items: center; gap: 10px;
}
.variation-title::before {
    content: '';
    width: 3px; height: 16px;
    background: var(--c-teal);
    border-radius: 2px;
    flex-shrink: 0;
}

.variation-options {
    display: flex; flex-wrap: wrap; gap: 8px;
    list-style: none; padding: 0; margin: 0;
}

.variation-option {
    background: var(--c-teal-soft);
    color: var(--c-teal-dark);
    padding: 7px 18px;
    border-radius: var(--r-xs);
    font-size: 13px; font-weight: 600;
    border: 2px solid transparent;
    transition: all var(--dur) var(--ease);
    cursor: default;
}
.variation-option:hover {
    background: var(--c-teal);
    color: var(--c-white);
    border-color: var(--c-teal-dark);
    box-shadow: var(--sh-soft);
}

/* ── DESCRIPTION ─────────────────────────────────*/
.description-section {
    background: var(--c-white);
    padding: 30px 32px;
    border-radius: var(--r-md);
    border: 1px solid var(--c-border);
    margin-bottom: 28px;
    box-shadow: var(--sh-soft);
    line-height: 1.8;
    animation: fadeUp .5s .25s var(--ease) both;
}

.description-section h4 {
    font-family: var(--f-display);
    font-size: 18px; font-weight: 700;
    color: var(--c-ink);
    margin: 0 0 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--c-teal-soft);
    display: flex; align-items: center; gap: 10px;
}
.description-section h4::before {
    content: '';
    width: 4px; height: 22px;
    background: linear-gradient(180deg, var(--c-teal), var(--c-teal-mid));
    border-radius: 2px;
}

.description-section p,
.description-section div {
    font-family: var(--f-body);
    color: var(--c-slate);
    font-size: 15px;
    line-height: 1.85;
}

/* ── REVIEWS WRAPPER ─────────────────────────────*/
.reviews-section {
    background: var(--c-white);
    border-radius: var(--r-md);
    padding: 30px 32px;
    box-shadow: var(--sh-soft);
    border: 1px solid var(--c-border);
    margin-bottom: 28px;
    animation: fadeUp .5s .3s var(--ease) both;
}

.reviews-header {
    font-family: var(--f-display);
    font-size: 20px; font-weight: 700;
    color: var(--c-ink);
    margin-bottom: 22px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--c-teal-soft);
}

.review-item {
    padding: 20px 22px;
    border-radius: var(--r-sm);
    background: var(--c-teal-glass);
    border: 1px solid rgba(255,45,45,.1);
    margin-bottom: 16px;
    transition: box-shadow var(--dur) var(--ease), background var(--dur) var(--ease);
}
.review-item:hover {
    background: var(--c-teal-soft);
    box-shadow: var(--sh-soft);
}
.review-item:last-child { margin-bottom: 0; }

.review-header {
    display: flex; justify-content: space-between; align-items: flex-start;
    margin-bottom: 10px;
}
.reviewer-name {
    font-weight: 700; font-size: 15px;
    color: var(--c-ink);
}
.review-rating { color: #f59e0b; letter-spacing: 2px; }
.review-text {
    color: var(--c-slate);
    font-size: 14px; line-height: 1.7;
}

/* ═══════════════════════════════════════════════
   RIGHT COLUMN — SIDEBAR
═══════════════════════════════════════════════ */

.modern-sidebar {
    position: sticky;
    top: 110px;
    display: flex; flex-direction: column; gap: 18px;
    z-index: 100;
}

/* ── SHARE BUTTON & DROPDOWN ─────────────────────*/
.action-buttons-group {
    display: flex; gap: 12px; flex-wrap: wrap;
    animation: fadeLeft .45s var(--ease) both;
    position: relative;
    z-index: 10;
}

.share-container { position: relative; flex: 1; min-width: 140px; z-index: 1000; }

.modern-btn {
    width: 100%;
    padding: 13px 22px;
    border-radius: var(--r-sm);
    font-family: var(--f-display);
    font-weight: 700; font-size: 14.5px;
    text-align: center;
    transition: all var(--dur) var(--ease);
    border: none; cursor: pointer;
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    letter-spacing: .2px;
}

.modern-btn-primary {
    background: linear-gradient(135deg, var(--c-teal), var(--c-teal-dark));
    color: var(--c-white);
    box-shadow: 0 4px 14px rgba(255,45,45,.3);
}
.modern-btn-primary:hover {
    background: linear-gradient(135deg, var(--c-teal-mid), var(--c-teal));
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255,45,45,.35);
}
.modern-btn-primary:active { transform: translateY(0); }

.modern-btn-outline {
    background: var(--c-white);
    color: var(--c-teal);
    border: 2px solid var(--c-teal);
}
.modern-btn-outline:hover {
    background: var(--c-teal-soft);
    box-shadow: var(--sh-soft);
}

/* Share Dropdown */
.share-dropdown {
    position: fixed;
    background: var(--c-white);
    border-radius: var(--r-md);
    box-shadow: var(--sh-float);
    border: 1px solid var(--c-border);
    padding: 10px;
    min-width: 210px;
    opacity: 0; visibility: hidden;
    transform: scale(.97);
    transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease), visibility var(--dur);
    z-index: 99999 !important;
    top: 0;
    left: 0;
}
.share-container.active .share-dropdown {
    opacity: 1; visibility: visible;
    transform: scale(1);
}

.share-option {
    padding: 10px 14px;
    border-radius: var(--r-xs);
    transition: background var(--dur) var(--ease);
    cursor: pointer;
    display: flex; align-items: center; gap: 12px;
    color: var(--c-ink); font-size: 14px; font-weight: 500;
}
.share-option:hover { background: var(--c-teal-soft); }
.share-option i { width: 20px; text-align: center; font-size: 17px; }
.share-option.whatsapp i { color: #25D366; }
.share-option.facebook i { color: #1877F2; }
.share-option.email i { color: var(--c-coral); }
.share-option.copy-link i { color: var(--c-mist); }

/* ── CONTACT CARD ────────────────────────────────*/
.contact-card {
    background: var(--c-white);
    border-radius: var(--r-lg);
    box-shadow: var(--sh-mid);
    padding: 26px 24px;
    border: 1px solid var(--c-border);
    animation: fadeLeft .45s .08s var(--ease) both;
    position: relative;
    z-index: 1;
}

.contact-card-title {
    font-family: var(--f-display);
    font-size: 16px; font-weight: 800;
    color: var(--c-ink);
    margin: 0 0 18px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--c-teal-soft);
    text-transform: uppercase; letter-spacing: .6px;
}

.user-profile {
    display: flex; gap: 14px; align-items: center;
    margin-bottom: 20px;
    padding: 16px;
    background: var(--c-teal-glass);
    border-radius: var(--r-md);
    border: 1px solid rgba(255,45,45,.12);
}

.user-avatar {
    width: 58px; height: 58px;
    border-radius: 50%;
    border: 3px solid var(--c-teal);
    object-fit: cover;
    box-shadow: 0 0 0 4px rgba(255,45,45,.12);
    flex-shrink: 0;
}

.user-info h4 {
    font-size: 16px; font-weight: 700;
    color: var(--c-ink); margin: 0 0 4px;
}
.user-info h4 a { color: inherit; text-decoration: none; transition: color var(--dur) var(--ease); }
.user-info h4 a:hover { color: var(--c-teal); }
.user-info span { font-size: 12.5px; color: var(--c-mist); }

.contact-list { list-style: none; padding: 0; margin: 0; }

.contact-list li {
    display: flex; align-items: center; gap: 14px;
    padding: 13px 0;
    border-bottom: 1px dashed var(--c-border);
    transition: padding-left var(--dur) var(--ease);
}
.contact-list li:last-child { border-bottom: none; }
.contact-list li:hover { padding-left: 4px; }

.contact-icon {
    width: 38px; height: 38px;
    display: flex; align-items: center; justify-content: center;
    background: var(--c-teal-soft);
    color: var(--c-teal);
    border-radius: 50%;
    font-size: 15px;
    flex-shrink: 0;
    transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.contact-list li:hover .contact-icon {
    background: var(--c-teal);
    color: var(--c-white);
}

.contact-list a {
    color: var(--c-slate);
    font-size: 13.5px; font-weight: 500;
    text-decoration: none;
    transition: color var(--dur) var(--ease);
    word-break: break-word;
}
.contact-list a:hover { color: var(--c-teal); }
.contact-list span { color: var(--c-slate); font-size: 13.5px; }

/* ── INQUIRY CARD ────────────────────────────────*/
.inquiry-card {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--c-teal) 0%, var(--c-teal-dark) 100%);
    border-radius: var(--r-lg);
    padding: 28px 24px;
    text-align: center;
    color: var(--c-white);
    box-shadow: 0 12px 32px rgba(255,45,45,.35);
    animation: fadeLeft .45s .16s var(--ease) both;
}
.inquiry-card::before {
    content: '';
    position: absolute; top: -40px; right: -40px;
    width: 130px; height: 130px;
    background: rgba(255,255,255,.06);
    border-radius: 50%;
}
.inquiry-card::after {
    content: '';
    position: absolute; bottom: -30px; left: -30px;
    width: 90px; height: 90px;
    background: rgba(255,255,255,.05);
    border-radius: 50%;
}

.inquiry-card-title {
    font-family: var(--f-display);
    font-size: 17px; font-weight: 700;
    margin: 0 0 8px;
    position: relative; z-index: 1;
}
.inquiry-card-subtitle {
    font-size: 13px; opacity: .75;
    margin-bottom: 20px;
    position: relative; z-index: 1;
}

.inquiry-btn {
    position: relative; z-index: 1;
    background: var(--c-white);
    color: var(--c-teal);
    padding: 14px 28px;
    border-radius: var(--r-sm);
    font-family: var(--f-display);
    font-weight: 800; font-size: 15px;
    border: none; cursor: pointer;
    transition: all var(--dur) var(--ease);
    width: 100%;
    letter-spacing: .2px;
    box-shadow: 0 4px 14px rgba(0,0,0,.15);
}
.inquiry-btn:hover {
    background: var(--c-coral);
    color: var(--c-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(234,85,85,.4);
}

/* ══════════════════════════════════════════════
   BOOKING / INQUIRY MODAL  —  Full-Screen Overlay
══════════════════════════════════════════════ */

/* Dark dimmed backdrop */
.modal-backdrop.show { opacity: .65 !important; }
.booking-modal-overlay + .modal-backdrop,
body > .modal-backdrop { background: #0d1b2a; }

/* Prevent body scroll when modal open */
body.modal-open { overflow: hidden !important; padding-right: 0 !important; }

/* Full-viewport centering — let Bootstrap keep display:none/block control,
   use flex only on the dialog wrapper inside */
#bookingModal {
    padding: 20px !important;
    overflow-y: auto !important;
}
#bookingModal .modal-dialog {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 40px);
}
#bookingModal.fade .modal-dialog   { transform: translateY(-24px) scale(.97); opacity: 0; }
#bookingModal.show .modal-dialog   { transform: translateY(0)      scale(1);   opacity: 1; }
#bookingModal .modal-dialog        { transition: transform .32s cubic-bezier(.4,0,.2,1), opacity .28s ease; }

/* Dialog sizing — centred card */
.booking-modal-dialog {
    max-width: 640px;
    width: 100%;
    margin: auto;
    pointer-events: all;
}

/* Card shell */
.booking-modal-content {
    background: var(--c-white);
    border-radius: var(--r-xl);
    box-shadow: 0 32px 100px rgba(13,27,42,.45), 0 8px 32px rgba(255,45,45,.12);
    overflow: hidden;
    border: none;
    width: 100%;
}

/* ── Header ── */
.booking-modal-header {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 28px 28px 22px;
    background: linear-gradient(135deg, var(--c-teal) 0%, var(--c-teal-dark) 100%);
    position: relative;
}

.booking-modal-header-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    background: rgba(255,255,255,.18);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 2px;
}
.booking-modal-header-icon i {
    font-size: 20px;
    color: var(--c-white);
}

.booking-modal-header-text {
    flex: 1;
}
.booking-modal-title {
    font-family: var(--f-display);
    font-size: 19px;
    font-weight: 800;
    color: var(--c-white);
    margin: 0 0 4px;
    line-height: 1.2;
}
.booking-modal-subtitle {
    font-size: 13px;
    color: rgba(255,255,255,.78);
    margin: 0;
    line-height: 1.5;
}

.booking-modal-close {
    position: absolute;
    top: 16px;
    right: 18px;
    background: rgba(255,255,255,.18);
    border: none;
    color: var(--c-white);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    transition: all var(--dur) var(--ease);
    line-height: 1;
    padding: 0;
}
.booking-modal-close:hover {
    background: rgba(255,255,255,.34);
    transform: rotate(90deg);
}

/* ── Body ── */
.booking-modal-body {
    padding: 26px 28px 28px;
}

/* ── Field row (2 cols) ── */
.booking-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

/* ── Field group ── */
.booking-field-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}
.booking-field-group:last-child { margin-bottom: 0; }

.booking-field-label {
    font-family: var(--f-display);
    font-size: 12px;
    font-weight: 700;
    color: var(--c-slate);
    text-transform: uppercase;
    letter-spacing: .5px;
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0;
}
.booking-field-label i {
    font-size: 13px;
    color: var(--c-teal);
}

.booking-field-input {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--c-border);
    border-radius: var(--r-sm);
    font-family: var(--f-body);
    font-size: 14px;
    color: var(--c-ink);
    background: var(--c-surface);
    transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
    outline: none;
}
.booking-field-input::placeholder { color: var(--c-mist); }
.booking-field-input:focus {
    border-color: var(--c-teal);
    box-shadow: 0 0 0 3px rgba(255,45,45,.12);
    background: var(--c-white);
}

.booking-field-textarea {
    resize: vertical;
    min-height: 100px;
    line-height: 1.6;
}

/* ── Footer / Buttons ── */
.booking-modal-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--c-border);
}

.booking-btn-cancel {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 11px 22px;
    background: var(--c-surface);
    color: var(--c-slate);
    border: 1.5px solid var(--c-border);
    border-radius: var(--r-sm);
    font-family: var(--f-display);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--dur) var(--ease);
}
.booking-btn-cancel:hover {
    border-color: var(--c-teal);
    color: var(--c-teal);
    background: var(--c-teal-soft);
}

.booking-btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--c-teal) 0%, var(--c-teal-dark) 100%);
    color: var(--c-white);
    border: none;
    border-radius: var(--r-sm);
    font-family: var(--f-display);
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    transition: all var(--dur) var(--ease);
    box-shadow: 0 4px 16px rgba(255,45,45,.28);
    letter-spacing: .2px;
    position: relative;
    overflow: hidden;
}
.booking-btn-submit::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent);
    transition: left .45s ease;
}
.booking-btn-submit:hover::before { left: 100%; }
.booking-btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255,45,45,.4);
}
.booking-btn-submit:active { transform: translateY(0); }

/* ── Responsive ── */
@media (max-width: 576px) {
    #bookingModal { padding: 0 !important; }
    #bookingModal .modal-dialog { min-height: 100vh; align-items: flex-end; }
    .booking-modal-dialog { margin: 0; width: 100%; max-width: 100%; }
    .booking-modal-content { border-radius: var(--r-lg) var(--r-lg) 0 0; }
    .booking-modal-header { padding: 22px 20px 18px; }
    .booking-modal-body { padding: 20px 20px 24px; }
    .booking-field-row { grid-template-columns: 1fr; }
    .booking-modal-footer { flex-direction: column-reverse; }
    .booking-btn-cancel,
    .booking-btn-submit { width: 100%; justify-content: center; }
}

/* ── MAP CARD ────────────────────────────────────*/
.map-card {
    background: var(--c-white);
    border-radius: var(--r-lg);
    box-shadow: var(--sh-soft);
    padding: 22px;
    border: 1px solid var(--c-border);
    overflow: hidden;
    animation: fadeLeft .45s .22s var(--ease) both;
}

.map-card-title {
    font-family: var(--f-display);
    font-size: 15px; font-weight: 800;
    color: var(--c-ink);
    margin: 0 0 14px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--c-teal-soft);
    text-transform: uppercase; letter-spacing: .6px;
    display: flex; align-items: center; gap: 8px;
}
.map-card-title::before {
    content: '';
    width: 10px; height: 10px;
    background: var(--c-teal);
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(255,45,45,.2);
}

.map-container {
    border-radius: var(--r-md);
    overflow: hidden;
    height: 240px;
    border: 2px solid var(--c-border);
}

/* ═══════════════════════════════════════════════
   SIMILAR PRODUCTS SECTION
═══════════════════════════════════════════════ */
.similar-products-section {
    padding: 56px 0 40px;
    background: var(--c-white);
    border-top: 1px solid var(--c-border);
}

.section-title {
    font-family: var(--f-display);
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 800;
    color: var(--c-ink);
    margin-bottom: 32px;
    position: relative;
    padding-left: 22px;
    letter-spacing: -.3px;
}
.section-title::before {
    content: '';
    position: absolute; left: 0; top: 50%;
    transform: translateY(-50%);
    width: 6px; height: 100%;
    background: linear-gradient(180deg, var(--c-teal), var(--c-teal-mid));
    border-radius: 3px;
}

.product-card-modern {
    background: var(--c-white);
    border-radius: var(--r-md);
    overflow: hidden;
    box-shadow: var(--sh-soft);
    transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
    border: 1px solid var(--c-border);
    height: 100%;
}
.product-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: var(--sh-float);
}

.product-card-image {
    position: relative;
    overflow: hidden;
    height: 210px;
    background: #f0f6f6;
}
.product-card-image::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(28,43,58,.35) 100%);
    opacity: 0;
    transition: opacity var(--dur) var(--ease);
}
.product-card-modern:hover .product-card-image::after { opacity: 1; }

.product-card-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .5s var(--ease);
}
.product-card-modern:hover .product-card-image img { transform: scale(1.1); }

.product-card-content { padding: 18px 18px 20px; }

.product-card-title {
    font-size: 15px; font-weight: 700;
    color: var(--c-ink);
    margin: 0 0 8px;
    overflow: hidden; text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 1.4;
}

.product-card-price {
    font-family: var(--f-display);
    font-size: 20px; font-weight: 800;
    color: var(--c-coral);
    margin-bottom: 8px;
    letter-spacing: -.5px;
}

.product-card-location {
    font-size: 12.5px; color: var(--c-mist);
    display: flex; align-items: center; gap: 5px;
    margin: 0;
}
.product-card-location i { color: var(--c-teal); }

/* ═══════════════════════════════════════════════
   NEWSLETTER SECTION
═══════════════════════════════════════════════ */
.newsletter-section {
    background: linear-gradient(135deg, var(--c-ink) 0%, #11222f 100%);
    border-radius: var(--r-xl);
    padding: 52px 44px;
    margin: 40px 0;
    box-shadow: 0 20px 60px rgba(28,43,58,.22);
    position: relative; overflow: hidden;
}
.newsletter-section::before {
    content: '';
    position: absolute; right: -60px; top: -60px;
    width: 280px; height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,45,45,.15) 0%, transparent 70%);
}
.newsletter-section::after {
    content: '';
    position: absolute; left: -40px; bottom: -40px;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,45,45,.08) 0%, transparent 70%);
}

.newsletter-title {
    color: var(--c-white);
    font-family: var(--f-display);
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 800;
    margin: 0 0 8px;
    letter-spacing: -.3px;
    position: relative; z-index: 1;
}
.newsletter-desc {
    color: rgba(255,255,255,.6);
    font-size: 15px; margin: 0;
    position: relative; z-index: 1;
}

.newsletter-form {
    display: flex; gap: 10px;
    max-width: 480px;
    position: relative; z-index: 1;
}

.newsletter-input {
    flex: 1;
    padding: 14px 20px;
    border-radius: var(--r-sm);
    border: 2px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.08);
    color: var(--c-white);
    font-family: var(--f-body);
    font-size: 14.5px;
    transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
    backdrop-filter: blur(4px);
}
.newsletter-input::placeholder { color: rgba(255,255,255,.4); }
.newsletter-input:focus {
    outline: none;
    border-color: var(--c-teal-mid);
    background: rgba(255,255,255,.12);
}

.newsletter-btn {
    background: linear-gradient(135deg, var(--c-teal), var(--c-teal-dark));
    color: var(--c-white);
    padding: 14px 28px;
    border-radius: var(--r-sm);
    font-family: var(--f-display);
    font-weight: 700; font-size: 14.5px;
    border: none; cursor: pointer;
    transition: all var(--dur) var(--ease);
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(255,45,45,.4);
}
.newsletter-btn:hover {
    background: linear-gradient(135deg, var(--c-teal-mid), var(--c-teal));
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255,45,45,.45);
}

/* ═══════════════════════════════════════════════
   OWL CAROUSEL OVERRIDES
═══════════════════════════════════════════════ */
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: var(--c-white) !important;
    color: var(--c-teal) !important;
    width: 42px; height: 42px;
    border-radius: 50%;
    box-shadow: var(--sh-mid);
    transition: all var(--dur) var(--ease);
    border: none; font-size: 18px;
    display: flex; align-items: center; justify-content: center;
}
.owl-carousel .owl-nav button.owl-prev { left: -18px; }
.owl-carousel .owl-nav button.owl-next { right: -18px; }
.owl-carousel .owl-nav button:hover {
    background: var(--c-teal) !important;
    color: var(--c-white) !important;
    transform: translateY(-50%) scale(1.08);
}

/* ═══════════════════════════════════════════════
   UTILITY & BADGE
═══════════════════════════════════════════════ */
.badge-new {
    background: var(--c-coral);
    color: var(--c-white);
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .5px;
}
.badge-featured {
    background: var(--c-teal);
    color: var(--c-white);
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .5px;
}
.text-primary { color: var(--c-teal) !important; }
.bg-primary-light { background-color: var(--c-teal-soft) !important; }

.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--c-border), transparent);
    margin: 28px 0;
}

/* ═══════════════════════════════════════════════
   CUSTOMER FEEDBACK / REVIEWS
═══════════════════════════════════════════════ */
.feedback-modern-wrapper {
    animation: fadeUp .5s .2s var(--ease) both;
}

.feedback-header {
    margin-bottom: 32px;
}

.feedback-title {
    font-family: var(--f-display);
    font-size: 26px;
    font-weight: 800;
    color: var(--c-ink);
    margin: 0 0 8px 0;
}

.feedback-subtitle {
    font-size: 15px;
    color: var(--c-mist);
    margin: 0;
}

/* Rating Overview Card */
.rating-overview-card {
    background: linear-gradient(135deg, var(--c-teal-soft) 0%, var(--c-white) 100%);
    border: 1px solid rgba(255,45,45,.12);
    border-radius: var(--r-lg);
    padding: 32px;
    margin-bottom: 32px;
    box-shadow: var(--sh-soft);
}

.rating-score-section {
    text-align: center;
    padding: 12px;
}

.rating-score-large {
    font-family: var(--f-display);
    font-size: 64px;
    font-weight: 800;
    color: var(--c-teal);
    line-height: 1;
    margin-bottom: 12px;
    text-shadow: 0 2px 8px rgba(255,45,45,.15);
}

.rating-stars-large {
    display: flex;
    gap: 6px;
    justify-content: center;
    margin-bottom: 12px;
}

.rating-stars-large i {
    font-size: 24px;
    color: #ffa726;
}

.rating-based-on {
    font-size: 14px;
    color: var(--c-mist);
    margin: 0;
    font-weight: 500;
}

/* Rating Breakdown */
.rating-breakdown {
    padding-left: 32px;
}

.rating-bar-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 14px;
}

.rating-bar-row:last-child {
    margin-bottom: 0;
}

.rating-bar-label {
    display: flex;
    align-items: center;
    gap: 6px;
    min-width: 65px;
}

.star-number {
    font-family: var(--f-display);
    font-weight: 700;
    font-size: 15px;
    color: var(--c-slate);
}

.star-icon {
    font-size: 14px;
    color: #ffa726;
}

.rating-bar-progress {
    flex: 1;
}

.progress-track {
    height: 10px;
    background: rgba(0,0,0,.08);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--c-teal) 0%, var(--c-teal-mid) 100%);
    border-radius: 10px;
    transition: width .6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.3);
}

.rating-bar-count {
    font-family: var(--f-display);
    font-weight: 700;
    font-size: 14px;
    color: var(--c-slate);
    min-width: 35px;
    text-align: right;
}

/* Reviews List Section */
.reviews-list-section {
    margin-top: 40px;
}

.reviews-list-header {
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--c-border);
}

.reviews-count-title {
    font-family: var(--f-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--c-ink);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.count-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 26px;
    padding: 0 10px;
    background: var(--c-teal);
    color: var(--c-white);
    border-radius: 13px;
    font-size: 13px;
    font-weight: 700;
}

/* Review Card Modern */
.reviews-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.review-card-modern {
    background: var(--c-white);
    border: 1px solid var(--c-border);
    border-radius: var(--r-md);
    padding: 24px;
    transition: all var(--dur) var(--ease);
}

.review-card-modern:hover {
    box-shadow: var(--sh-mid);
    transform: translateY(-2px);
    border-color: rgba(255,45,45,.2);
}

.review-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
    gap: 16px;
}

.reviewer-info {
    display: flex;
    gap: 14px;
    align-items: center;
    flex: 1;
}

.reviewer-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 3px solid var(--c-teal-soft);
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 0 0 1px rgba(255,45,45,.1);
}

.reviewer-details {
    flex: 1;
}

.reviewer-name {
    font-family: var(--f-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--c-ink);
    margin: 0 0 4px 0;
}

.review-date {
    font-size: 13px;
    color: var(--c-mist);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.review-date i {
    font-size: 12px;
}

.review-rating-badge {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.rating-stars-small {
    display: flex;
    gap: 4px;
}

.rating-stars-small i {
    font-size: 14px;
    color: #ffa726;
}

.rating-number {
    font-family: var(--f-display);
    font-size: 15px;
    font-weight: 700;
    color: var(--c-teal);
}

.review-card-body {
    padding-top: 12px;
}

.review-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--c-slate);
    margin: 0 0 16px 0;
}

/* Review Photos Grid */
.review-photos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 12px;
    margin-top: 16px;
}

.review-photo-item {
    position: relative;
    border-radius: var(--r-sm);
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    transition: all var(--dur) var(--ease);
}

.review-photo-item:hover {
    transform: scale(1.05);
    box-shadow: var(--sh-mid);
}

.review-photo-item:hover .photo-overlay {
    opacity: 1;
}

.review-photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.photo-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--dur) var(--ease);
}

.photo-overlay i {
    color: var(--c-white);
    font-size: 20px;
}

/* Modern Pagination */
.reviews-pagination {
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid var(--c-border);
}

.pagination-modern {
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-item-modern {
    list-style: none;
}

.page-link-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border: 1px solid var(--c-border);
    border-radius: var(--r-sm);
    font-family: var(--f-display);
    font-size: 14px;
    font-weight: 600;
    color: var(--c-slate);
    background: var(--c-white);
    transition: all var(--dur) var(--ease);
    text-decoration: none;
}

.page-link-modern:hover {
    background: var(--c-teal-soft);
    border-color: var(--c-teal);
    color: var(--c-teal);
}

.page-item-modern.active .page-link-modern {
    background: var(--c-teal);
    border-color: var(--c-teal);
    color: var(--c-white);
    box-shadow: 0 4px 12px rgba(255,45,45,.3);
}

.page-item-modern.disabled .page-link-modern {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

/* ═══════════════════════════════════════════════
   ADD REVIEW SECTION
═══════════════════════════════════════════════ */
.add-review-modern-wrapper {
    animation: fadeUp .5s .25s var(--ease) both;
}

.add-review-header {
    margin-bottom: 28px;
}

.add-review-title {
    font-family: var(--f-display);
    font-size: 26px;
    font-weight: 800;
    color: var(--c-ink);
    margin: 0 0 8px 0;
}

.add-review-subtitle {
    font-size: 15px;
    color: var(--c-mist);
    margin: 0;
}

.add-review-card {
    background: var(--c-white);
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    padding: 32px;
    box-shadow: var(--sh-soft);
}

/* Modern Form Styling */
.review-form-modern {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-section-modern {
    margin-bottom: 8px;
}

.form-group-modern {
    position: relative;
}

.form-label-modern {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--f-display);
    font-size: 14.5px;
    font-weight: 700;
    color: var(--c-ink);
    margin-bottom: 10px;
}

.label-icon {
    color: var(--c-teal);
    font-size: 14px;
}

.required-star {
    color: var(--c-coral);
    font-weight: 700;
}

.optional-text {
    font-size: 13px;
    color: var(--c-mist);
    font-weight: 500;
}

/* Modern Input Fields */
.form-input-modern {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--c-border);
    border-radius: var(--r-sm);
    font-size: 15px;
    color: var(--c-ink);
    background: var(--c-white);
    transition: all var(--dur) var(--ease);
    font-family: inherit;
}

.form-input-modern:focus {
    outline: none;
    border-color: var(--c-teal);
    box-shadow: var(--sh-glow);
}

.form-input-modern::placeholder {
    color: var(--c-mist);
    opacity: 0.7;
}

/* Textarea */
.form-textarea-modern {
    width: 100%;
    padding: 16px 18px;
    border: 2px solid var(--c-border);
    border-radius: var(--r-sm);
    font-size: 15px;
    color: var(--c-ink);
    background: var(--c-white);
    transition: all var(--dur) var(--ease);
    font-family: inherit;
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
}

.form-textarea-modern:focus {
    outline: none;
    border-color: var(--c-teal);
    box-shadow: var(--sh-glow);
}

.form-textarea-modern::placeholder {
    color: var(--c-mist);
    opacity: 0.7;
}

.character-counter {
    margin-top: 8px;
    font-size: 13px;
    color: var(--c-mist);
    text-align: right;
}

.char-count {
    font-weight: 700;
    color: var(--c-teal);
}

/* Modern Rating Input */
.rating-input-modern {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 24px;
    background: linear-gradient(135deg, var(--c-teal-soft) 0%, var(--c-white) 100%);
    border: 2px solid rgba(255,45,45,.12);
    border-radius: var(--r-md);
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.rating-input-modern input[type="radio"] {
    display: none;
}

.rating-star-label {
    cursor: pointer;
    font-size: 32px;
    color: #ddd;
    transition: all .2s ease;
    margin: 0;
}

.rating-star-label:hover,
.rating-star-label:hover ~ .rating-star-label {
    color: #ffa726;
    transform: scale(1.15);
}

.rating-input-modern input[type="radio"]:checked ~ .rating-star-label {
    color: #ffa726;
    text-shadow: 0 0 8px rgba(255,167,38,.4);
}

.rating-text-display {
    margin-left: auto;
    font-family: var(--f-display);
    font-size: 15px;
    font-weight: 700;
    color: var(--c-teal);
    opacity: 0.6;
    transition: opacity .3s ease;
}

/* Modern File Upload */
.file-upload-modern {
    position: relative;
}

.file-upload-input-modern {
    position: absolute;
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    z-index: -1;
}

.file-upload-label {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px 24px;
    border: 2px dashed var(--c-border);
    border-radius: var(--r-md);
    background: var(--c-surface);
    cursor: pointer;
    transition: all var(--dur) var(--ease);
}

.file-upload-label:hover {
    border-color: var(--c-teal);
    background: var(--c-teal-soft);
}

.file-upload-input-modern:focus + .file-upload-label {
    border-color: var(--c-teal);
    box-shadow: var(--sh-glow);
}

.upload-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--c-teal) 0%, var(--c-teal-dark) 100%);
    border-radius: 50%;
    flex-shrink: 0;
}

.upload-icon-wrapper i {
    font-size: 24px;
    color: var(--c-white);
}

.upload-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.upload-title {
    font-family: var(--f-display);
    font-size: 15px;
    font-weight: 700;
    color: var(--c-ink);
}

.upload-subtitle {
    font-size: 13px;
    color: var(--c-mist);
}

.photo-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 12px;
    margin-top: 16px;
}

/* Privacy Note */
.privacy-note-modern {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: var(--c-teal-glass);
    border-left: 3px solid var(--c-teal);
    border-radius: var(--r-sm);
    font-size: 13.5px;
    color: var(--c-slate);
}

.privacy-note-modern i {
    color: var(--c-teal);
    font-size: 16px;
    flex-shrink: 0;
}

/* Submit Button */
.form-actions-modern {
    display: flex;
    justify-content: flex-end;
    padding-top: 8px;
}

.btn-submit-review {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    background: linear-gradient(135deg, var(--c-teal) 0%, var(--c-teal-dark) 100%);
    color: var(--c-white);
    border: none;
    border-radius: var(--r-sm);
    font-family: var(--f-display);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--dur) var(--ease);
    box-shadow: 0 4px 16px rgba(255,45,45,.3);
    position: relative;
    overflow: hidden;
}

.btn-submit-review::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent);
    transition: left .5s ease;
}

.btn-submit-review:hover::before {
    left: 100%;
}

.btn-submit-review:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255,45,45,.4);
}

.btn-submit-review:active {
    transform: translateY(0);
}

.btn-submit-review i {
    font-size: 16px;
}

/* Responsive Styles */
@media (max-width: 767px) {
    .add-review-card {
        padding: 24px 20px;
    }

    .rating-input-modern {
        padding: 16px 18px;
    }

    .rating-star-label {
        font-size: 28px;
    }

    .rating-text-display {
        display: none;
    }

    .file-upload-label {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
    }

    .upload-icon-wrapper {
        width: 48px;
        height: 48px;
    }

    .upload-icon-wrapper i {
        font-size: 20px;
    }

    .btn-submit-review {
        width: 100%;
    }
}

/* ═══════════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════════ */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeLeft {
    from { opacity: 0; transform: translateX(18px); }
    to   { opacity: 1; transform: translateX(0); }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 991px) {
    .product-details-wrapper { padding-top: 140px; }
    .modern-sidebar { position: static; }
    .main-image-wrapper { height: 450px; }
    .newsletter-section { padding: 36px 28px; }

    /* Customer Feedback Responsive */
    .rating-breakdown {
        padding-left: 0;
        margin-top: 24px;
    }

    .rating-overview-card {
        padding: 24px;
    }
}

@media (max-width: 767px) {
    .product-title { font-size: 20px; }
    .product-meta { flex-direction: column; align-items: flex-start; gap: 10px; }
    .main-image-wrapper { height: 400px; }
    .price-section { flex-direction: column; align-items: flex-start; gap: 12px; }
    .product-price { font-size: 30px; }
    .description-section, .reviews-section { padding: 22px 20px; }
    .newsletter-form { flex-direction: column; }
    .newsletter-btn, .newsletter-input { width: 100%; }
    .newsletter-section { padding: 30px 20px; }
    .owl-carousel .owl-nav button.owl-prev { left: 0; }
    .owl-carousel .owl-nav button.owl-next { right: 0; }

    /* Customer Feedback Responsive */
    .feedback-title {
        font-size: 22px;
    }

    .rating-score-large {
        font-size: 48px;
    }

    .rating-stars-large i {
        font-size: 20px;
    }

    .review-card-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .review-rating-badge {
        flex-direction: row;
        align-items: center;
        gap: 12px;
    }

    .review-photos-grid {
        grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
        gap: 8px;
    }

    .pagination-modern {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .product-details-wrapper { padding-top: 100px; }
    .modern-gallery-container { padding: 14px; }
    .main-image-wrapper { height: 320px; }
    .contact-card, .inquiry-card { padding: 20px 18px; }
}

/* ═══════════════════════════════════════════════
   ROUTE-SPECIFIC COLOR OVERRIDES
═══════════════════════════════════════════════ */

/* Shop Route - Red Theme */
body[data-route="shop"],
body[data-route="gomigoshop"],
.route-shop,
.page-shop {
    --primary: #ff2d2d;
    --primary-dark: #cc0000;
}

/* Tours and Rent Route - Yellow Theme */
body[data-route="tours"],
body[data-route="gomigotoursandrent"],
.route-tours,
.page-tours {
    --primary: #ffc900;
    --primary-dark: #cda504;
}

