﻿/* START: Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700&family=Manrope:wght@400;500;600;700&family=Cairo:wght@400;600;700&display=swap');
/* END: Fonts */

/* START: Design Tokens */
:root {
    --bg: #fbfbfb;
    --bg-alt: #f0ede6;
    --surface: #ffffff;
    --line: #eeeeee;
    --text: #181818;
    --muted: #5f5a51;
    --gold: #c6a353;
    --gold-strong: #9f7f38;
    --shadow: 0 12px 34px rgba(23, 17, 5, 0.12);
    --hero-overlay: linear-gradient(180deg, rgba(0,0,0,0.15) 15%, rgba(0,0,0,0.64) 100%);
}

body[data-theme="dark"] {
    --bg: #0b0b0b;
    --bg-alt: #111111;  
    --surface: #161616;
    --text: #f6f6f6;
    --muted: #bdb7ab;
    --line: rgba(255, 255, 255, 0.12);
    --shadow: 0 12px 38px rgba(0, 0, 0, 0.35);
    --hero-overlay: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 15%, rgba(0, 0, 0, 0.86) 100%);
}
/* END: Design Tokens */

/* START: Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', sans-serif;
    background: radial-gradient(circle at top right, rgba(198, 163, 83, 0.12), transparent 28%), var(--bg);
    color: var(--text);
    line-height: 1.55;
    overflow-x: hidden;
    transition: background 0.35s ease, color 0.35s ease;
}

body.rtl {
    font-family: 'Cairo', sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

button,
input {
    font: inherit;
}
/* END: Reset */

/* START: Utilities */
.container {
    width: min(1200px, 92%);
    margin-inline: auto;
}

.section {
    padding: 72px 0;
}

.cart-row__info strong,
.cart-row__actions strong {
    color: var(--text);
}
.section-alt {
    background: linear-gradient(180deg, var(--bg-alt), transparent);
}

.section-head {
    margin-bottom: 30px;
}

.section-kicker {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.72rem;
    background: color-mix(in srgb, var(--surface) 88%, var(--bg) 12%);
    color: var(--text);
}

h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
    line-height: 1.15;
}

h2 {
    font-size: clamp(1.65rem, 4.6vw, 2.5rem);
}

.btn {
    padding: 10px 18px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: 'Arial', sans-serif;
}

.btn-gold {
    background: var(--gold);
    color: #fff;
    box-shadow: 0 4px 12px rgba(198, 163, 83, 0.4);
}

.btn-gold:hover {
    background: var(--gold-strong);
    box-shadow: 0 6px 16px rgba(198, 163, 83, 0.5);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold-strong);
}

.icon-btn {
    background: transparent;
    border: 0;
    color: var(--text);
    cursor: pointer;
    font-size: 1.12rem;
}
/* END: Utilities */

/* START: Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 90;
    backdrop-filter: blur(8px);
    background: color-mix(in srgb, var(--bg) 85%, transparent);
    border-bottom: 1px solid var(--line);
}

.header-row {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
}

.brand-logo {
    width: 42px;
    height: 42px;
    object-fit: contain;
    border-radius: 6px;
}

.brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    display: grid;
    place-items: center;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
}

.brand-name {
    letter-spacing: 0.06em;
    font-size: 0.92rem;
    text-transform: uppercase;
}

.main-nav {
    position: fixed;
    top: 72px;
    left: 0;
    bottom: 0;
    width: min(82vw, 320px);
    background: var(--surface);
    background-color: var(--surface);
    border-right: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    padding: 12px 0 18px;
    transform: translateX(-100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.35s ease, opacity 0.25s ease, visibility 0.25s ease;
    z-index: 95;
    box-shadow: 18px 0 36px rgba(0, 0, 0, 0.18);
    background-image: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    isolation: isolate;
}

.main-nav.open {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.main-nav a {
    padding: 14px 22px;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--line);
}

.mobile-nav-btn {
    background: transparent;
    border: 1px solid var(--line);
    color: var(--text);
    width: 38px;
    height: 38px;
    border-radius: 8px;
    cursor: pointer;
}

.header-actions {
    display: flex;
    gap: 8px;
    margin-left: auto;
}

.chip-btn {
    border: 1px solid var(--line);
    background: var(--surface);
    color: var(--text);
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 0.78rem;
    cursor: pointer;
}

.cart-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
/* END: Header */

/* START: Hero Slider */
.hero {
    position: relative;
    width: 100%;
    height: 90vh;
    max-height: 760px;
    border-bottom: 1px solid var(--line);
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    background: #111;
    transition: opacity 0.7s ease-in-out, visibility 0.7s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--hero-overlay);
    z-index: 1;
}

.hero-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 20px;
    gap: 12px;
}

.offer-badge {
    width: fit-content;
    background: linear-gradient(135deg, #ff954f, #d6542b);
    color: #fff;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
    animation: slideInLeft 0.6s ease;
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

.hero-content h1,
.hero-content h2 {
    font-size: clamp(2rem, 6vw, 4rem);
    max-width: 720px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content > p {
    color: #f5eede;
    max-width: 640px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-cta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 8px;
}
/* END: Hero Slider */

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(0, 0, 0, 0.35);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
}

.slider-arrow.prev {
    left: 12px;
}

.slider-arrow.next {
    right: 12px;
}

.slider-dots {
    position: absolute;
    z-index: 5;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.slider-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.8);
    background: transparent;
    cursor: pointer;
}

.slider-dots button.active {
    background: var(--gold);
    border-color: var(--gold);
}
/* END: Hero Slider */

/* START: Products */
.products-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: 1fr;
}

.product-card {
    background: var(--surface);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(23, 17, 5, 0.2);
}

.product-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1.2;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 16px;
}

.product-name {
    font-family: 'Georgia', serif;
    font-size: 1.2rem;
    color: var(--text);
    margin: 0 0 8px;
}

.product-description {
    font-size: 0.95rem;
    color: var(--muted);
    margin: 0 0 16px;
}

.product-actions {
    display: flex;
    gap: 12px;
}
/* END: Products */
/* END: Products */

/* START: Why + Steps + Reviews */
.feature-grid,
.steps-grid,
.reviews-grid,
.trust-row {
    display: grid;
    gap: 12px;
}

.feature-card,
.step-card,
.review-card,
.trust-card {
    border: 1px solid var(--line);
    background: var(--surface);
    border-radius: 14px;
    padding: 18px;
}

.step-card span {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--gold);
    color: #171717;
    font-weight: 800;
    margin-bottom: 8px;
}

.review-name {
    margin-top: 8px;
    color: var(--muted);
    font-size: 0.94rem;
}
/* END: Why + Steps + Reviews */

/* START: FAQ */
.faq-list {
    display: grid;
    gap: 10px;
}

.faq-item {
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
    background: var(--surface);
}

.faq-question {
    width: 100%;
    border: 0;
    background: transparent;
    color: var(--text);
    text-align: left;
    padding: 16px;
    font-weight: 700;
    cursor: pointer;
}

body.rtl .faq-question {
    text-align: right;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 16px;
    color: var(--muted);
    transition: max-height 0.28s ease, padding 0.28s ease;
}

.faq-item.open .faq-answer {
    max-height: 140px;
    padding: 0 16px 14px;
}
/* END: FAQ */

/* START: About + Footer */
.about-wrap {
    display: grid;
    gap: 18px;
}

.about-wrap img {
    border-radius: 16px;
    border: 1px solid var(--line);
    max-height: 420px;
    object-fit: cover;
    width: 100%;
}

.site-footer {
    border-top: 1px solid var(--line);
    padding: 48px 0 22px;
    background: var(--bg-alt);
}

.footer-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: 1fr;
}

.footer-map-section {
    grid-column: 1 / -1;
}

.footer-grid h4,
.footer-grid h3 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.footer-grid a {
    display: inline-block;
    color: var(--gold);
    transition: opacity 0.2s ease;
}

.footer-grid a:hover {
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: 8px;
}

.social-links a {
    width: 34px;
    height: 34px;
    border: 1px solid var(--line);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--text);
}

.footer-copy {
    text-align: center;
    margin-top: 16px;
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.6;
}
/* END: About + Footer */

/* START: Floating + Sticky */
.floating-whatsapp {
    position: fixed;
    right: 14px;
    bottom: 14px;
    z-index: 70;
    background: #20c65a;
    color: #fff;
    border-radius: 999px;
    padding: 10px 16px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    box-shadow: 0 8px 24px rgba(32, 198, 90, 0.35);
}

.sticky-order-btn {
    position: fixed;
    left: 14px;
    bottom: 14px;
    z-index: 69;
    border: 1px solid var(--gold);
    background: var(--surface);
    color: var(--gold);
    border-radius: 999px;
    padding: 10px 16px;
    font-weight: 700;
    cursor: pointer;
}
/* END: Floating + Sticky */

/* START: Popup */
.live-order-popup {
    position: fixed;
    left: 12px;
    bottom: 70px;
    z-index: 60;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 0.86rem;
    max-width: 255px;
    transform: translateY(16px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.live-order-popup.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
/* END: Popup */

/* START: Drawer + Modals */
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease;
    z-index: 95;
}

.overlay.show {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: min(390px, 92vw);
    background: var(--surface);
    border-left: 1px solid var(--line);
    z-index: 100;
    transform: translateX(110%);
    transition: transform 0.28s ease;
    display: grid;
    grid-template-rows: auto 1fr auto;
    visibility: visible;
}

body.rtl .cart-drawer {
    right: 0;
    left: auto;
    border-left: 1px solid var(--line);
    border-right: 0;
    transform: translateX(110%);
    visibility: visible;
}

.cart-drawer.open {
    transform: translateX(0);
}

body.rtl .cart-drawer.open {
    transform: translateX(0);
}

.cart-head,
.cart-foot {
    padding: 14px;
    border-bottom: 1px solid var(--line);
}

.cart-foot {
    border-bottom: 0;
    border-top: 1px solid var(--line);
    display: grid;
    gap: 10px;
}

.cart-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart-items {
    overflow-y: auto;
    padding: 14px;
    display: grid;
    gap: 10px;
}

.cart-item {
    display: grid;
    grid-template-columns: 64px 1fr auto;
    gap: 10px;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 8px;
}

.cart-item img {
    width: 64px;
    height: 64px;
    border-radius: 8px;
    object-fit: cover;
}

.qty-row {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 6px;
}

.qty-row button {
    width: 24px;
    height: 24px;
    border: 1px solid var(--line);
    background: transparent;
    color: var(--text);
    cursor: pointer;
}

.modal {
    position: fixed;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 16px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease;
    z-index: 101;
}

.modal.show {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    width: min(900px, 96vw);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--shadow);
    position: relative;
    max-height: 92vh;
    overflow-y: auto;
}

.modal-content img {
    width: 100%;
    border-radius: 10px;
    max-height: 250px;
    object-fit: cover;
    margin-bottom: 10px;
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 12px;
}

body.rtl .modal-close {
    right: auto;
    left: 12px;
}

.checkout-form {
    display: grid;
    gap: 9px;
    margin-top: 12px;
}

.checkout-form input {
    border: 1px solid var(--line);
    background: color-mix(in srgb, var(--surface) 92%, #fff 8%);
    color: var(--text);
    border-radius: 8px;
    padding: 10px;
}

.payment-note {
    color: var(--muted);
    margin-top: 4px;
    margin-bottom: 4px;
}
/* END: Drawer + Modals */

/* START: Motion */
@media (prefers-reduced-motion: no-preference) {
    .section,
    .product-card,
    .feature-card,
    .step-card,
    .review-card,
    .trust-card {
        animation: fadeUp 0.7s ease both;
        animation-timeline: view();
        animation-range: entry 0% cover 30%;
    }

    @keyframes fadeUp {
        from {
            opacity: 0;
            transform: translateY(18px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}
/* END: Motion */

/* START: Mobile Nav Drawer Fix */
@media (max-width: 767px) {
    .main-nav {
        background: var(--surface) !important;
        background-color: var(--surface) !important;
        background-image: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        height: calc(100dvh - 72px);
        overflow-y: auto;
    }

    body[data-theme="dark"] .main-nav {
        background: #161616 !important;
        background-color: #161616 !important;
    }
}
/* END: Mobile Nav Drawer Fix */

/* START: Breakpoint 768 */
@media (min-width: 768px) {
    .main-nav {
        position: static !important;
        top: auto !important;
        left: auto !important;
        bottom: auto !important;
        width: auto !important;
        height: auto !important;
        background: transparent !important;
        border: 0 !important;
        border-right: none !important;
        display: flex !important;
        flex-direction: row !important;
        gap: 16px !important;
        padding: 0 !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        box-shadow: none !important;
        z-index: auto !important;
        overflow: visible !important;
    }

    .main-nav a {
        border: 0;
        padding: 0;
        font-size: 0.85rem;
        color: var(--muted);
    }

    .main-nav a:hover {
        color: var(--gold);
    }

    .mobile-nav-btn {
        display: none;
    }

    .header-actions {
        margin-left: 0;
    }

    .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .feature-grid,
    .steps-grid,
    .reviews-grid,
    .trust-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-wrap {
        grid-template-columns: 1.1fr 1fr;
        align-items: center;
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .floating-whatsapp {
        right: 22px;
        bottom: 22px;
    }

    .sticky-order-btn {
        left: 22px;
        bottom: 22px;
    }
}
/* END: Breakpoint 768 */

/* START: Breakpoint 1024 */
@media (min-width: 1024px) {
    .header-row {
        gap: 18px;
    }

    .main-nav {
        gap: 24px;
    }

    .products-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .feature-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }

    .steps-grid,
    .reviews-grid,
    .trust-row {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .slider-arrow {
        width: 44px;
        height: 44px;
    }

    .footer-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}
/* END: Breakpoint 1024 */

/* START: Breakpoint 1440 */
@media (min-width: 1440px) {
    .hero-content {
        padding-bottom: 96px;
    }

    .section {
        padding: 90px 0;
    }
}
/* END: Breakpoint 1440 */

/* START: Velvet Scent Overrides */


.hero {
    min-height: 100vh;
    height: 100vh;
    overflow: hidden;
}

.hero-slider,
.hero-slide,
.hero-slide img,
.hero-content {
    height: 100vh;
}

.hero-content {
    justify-content: center;
    padding-top: 120px;
    padding-bottom: 80px;
    background: linear-gradient(180deg, rgba(0,0,0,0.05), rgba(0,0,0,0.16));
}

.hero-content h1,
.hero-content h2,
.hero-content p {
    max-width: 760px;
}

.hero-cta .btn {
    min-width: 170px;
}

.products-grid,
#product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    position: relative;
    z-index: 1;
}

.glass-card {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(198, 163, 83, 0.18);
    box-shadow: 0 18px 40px rgba(17, 14, 7, 0.08);
}

body[data-theme="dark"] .glass-card {
    background: rgba(22, 22, 22, 0.88);
    border-color: rgba(198, 163, 83, 0.18);
}

.product-card.glass-card {
    background: rgba(255, 255, 255, 0.96);
}

body[data-theme="dark"] .product-card.glass-card {
    background: rgba(18, 18, 18, 0.96);
}

body[data-theme="dark"] .product-image {
    background: #111;
}

body[data-theme="dark"] .product-name,
body[data-theme="dark"] .product-price,
body[data-theme="dark"] .product-description {
    color: #f5f2ea;
}

.product-card {
    background: rgba(255, 255, 255, 0.96);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(23, 17, 5, 0.2);
}

body[data-theme="dark"] .product-card {
    background: rgba(18, 18, 18, 0.96);
}

.product-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1.2;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(246, 239, 223, 0.92));
}

.product-card[dir="rtl"] .product-header {
    flex-direction: row-reverse;
}

.product-card[dir="rtl"] .product-info {
    text-align: right;
}

.product-card[dir="rtl"] .product-actions {
    flex-direction: row-reverse;
}

.product-card[dir="rtl"] .product-badge {
    left: auto;
    right: 14px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 12px;
    background: transparent;
    transition: transform 0.45s ease;
    z-index: 1;
    position: relative;
}

body[data-theme="dark"] .product-image img {
    padding: 14px;
}

.product-card:hover .product-image img {
    transform: scale(1.06);
}

.product-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 7px 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--gold), #d6b772);
    color: #111;
    font-size: 0.72rem;
    font-weight: 800;
}

.product-info {
    padding: 16px;
}

.product-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.product-name {
    font-family: 'Georgia', serif;
    font-size: 1.2rem;
    color: var(--text);
    margin: 0 0 8px;
}

.product-price {
    color: var(--gold);
    font-weight: 700;
    font-size: 1.2rem;
    white-space: nowrap;
}

.product-description {
    color: var(--muted);
    font-size: 0.95rem;
    margin: 0 0 16px;
}   

.product-view-btn {
    flex: 1;
}

.product-info .product-actions {
    display: flex;
    gap: 12px;
}

.product-add-btn {
    flex: 1;
}

body[data-theme="dark"] .product-name,
body[data-theme="dark"] .product-description {
    color: #f5f2ea;
}

body[data-theme="dark"] .product-card[dir="rtl"] .product-name,
body[data-theme="dark"] .product-card[dir="rtl"] .product-description {
    color: #f5f2ea;
}

body[data-theme="dark"] .product-actions .btn-outline {
    border-color: rgba(255, 255, 255, 0.34);
    color: #fff;
    background: rgba(255, 255, 255, 0.03);
}

body[data-theme="light"] .product-actions .btn-outline {
    border-color: rgba(17, 17, 17, 0.5);
    color: #111;
}

.best-seller {
    border-color: rgba(198, 163, 83, 0.35);
}

.product-modal {
    width: min(1200px, 96vw);
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 24px;
    align-items: center;
}

.product-modal img {
    width: 100%;
    height: min(60vh, 520px);
    max-height: none !important;
    object-fit: cover;
    border-radius: 18px;
    margin: 0;
}

.product-modal-copy {
    display: grid;
    gap: 12px;
}

.product-modal-note,
.product-modal-desc,
.order-summary-line {
    color: var(--muted);
    line-height: 1.7;
}

.checkout-modal {
    width: min(720px, 96vw);
}

.checkout-form select,
.checkout-form textarea,
.checkout-form input {
    width: 100%;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: color-mix(in srgb, var(--surface) 92%, #ffffff 8%);
    color: var(--text);
    padding: 12px 14px;
}

.checkout-form textarea {
    resize: vertical;
    min-height: 110px;
}

.order-summary-line {
    padding: 10px 14px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: rgba(198, 163, 83, 0.08);
}

.cart-drawer {
    width: min(460px, 92vw);
    background: color-mix(in srgb, var(--surface) 92%, transparent);
    backdrop-filter: blur(18px);
}

.cart-row {
    display: grid;
    grid-template-columns: 78px 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 16px;
    margin-bottom: 12px;
}

.cart-row img {
    width: 78px;
    height: 78px;
    border-radius: 12px;
    object-fit: cover;
}

.cart-row__info {
    display: grid;
    gap: 6px;
}

.cart-qty {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cart-qty button,
.remove-line {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: var(--surface) !important;
    color: var(--text) !important;
    cursor: pointer;
}

body[data-theme="dark"] .cart-qty button,
body[data-theme="dark"] .remove-line {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(255, 255, 255, 0.18) !important;
    color: #f8f8f8 !important;
}

body[data-theme="dark"] .cart-qty button,
body[data-theme="dark"] .remove-line {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.18);
    color: #f8f8f8;
}

body[data-theme="dark"] .cart-row__info strong,
body[data-theme="dark"] .cart-row__actions strong {
    color: #f8f8f8;
}

.cart-row__actions {
    display: grid;
    gap: 8px;
    justify-items: end;
}

.cart-empty-message {
    padding: 40px 0;
    text-align: center;
    color: var(--muted);
}

.floating-whatsapp {
    right: 18px;
    bottom: 18px;
    z-index: 120;
    box-shadow: 0 18px 32px rgba(32, 198, 90, 0.28);
}

.sticky-order-btn {
    z-index: 119;
    box-shadow: 0 12px 26px rgba(198, 163, 83, 0.18);
}

.site-footer {
    background: linear-gradient(180deg, #0b0b0b, #151515 65%, #0b0b0b);
    color: #f7f2e8;
    border-top: 1px solid rgba(198, 163, 83, 0.18);
}

.footer-grid a {
    color: var(--gold);
}

.footer-map-section iframe {
    width: 100%;
}

.review-card,
.feature-card,
.trust-card,
.faq-item {
    border-radius: 18px;
}

.faq-item {
    width: 100%;
    text-align: left;
    display: grid;
    gap: 8px;
    padding: 18px;
}

.faq-item small {
    display: block;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.25s ease;
    color: var(--muted);
}

.faq-item.open small {
    max-height: 120px;
    opacity: 1;
}

@media (min-width: 768px) {
    .products-grid,
    #product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-modal {
        min-height: 560px;
    }
}

@media (min-width: 1024px) {
    .products-grid,
    #product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .footer-grid {
        grid-template-columns: 1.4fr 1fr 1fr;
    }
}

@media (max-width: 767px) {
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .product-modal {
        grid-template-columns: 1fr;
    }

    .product-modal img {
        height: 60vh;
    }

    .cart-row {
        grid-template-columns: 62px 1fr;
    }

    .cart-row__actions {
        grid-column: 1 / -1;
        justify-items: start;
    }
}
/* END: Velvet Scent Overrides */


