@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Inter:wght@300;400;500&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #0a0a0a;
}

.ot-site {
    background: #0a0a0a;
    color: #f5f0e8;
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
    padding-top: 65px;
    /* offset for fixed nav */
}

/* NAV */
.ot-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 32px;
    border-bottom: 0.5px solid #c9a84c44;
    background: #0a0a0a;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    transition: box-shadow 0.3s, background 0.3s;
}

.ot-nav.scrolled {
    background: rgba(10, 10, 10, 0.95);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}

/* LOGO */
.ot-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: #c9a84c;
    letter-spacing: 2px;
}

.ot-logo .logo-text {
    color: #c9a84c;
}

.ot-logo .logo-text em {
    color: #f5f0e8;
    font-style: normal;
}

.ot-logo .logo-text strong {
    color: #c9a84c;
    font-weight: 400;
    font-size: 0.75em;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    line-height: 1;
    margin-top: 1px;
}

.logo-img {
    height: 36px;
    width: auto;
    object-fit: contain;
    display: block;
    border-radius: 50%;
}

.ot-nav-links {
    display: flex;
    gap: 24px;
    list-style: none;
}

.ot-nav-links li a {
    color: #aaa;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.2s;
}

.ot-nav-links li a:hover {
    color: #c9a84c;
}

.ot-nav-actions {
    display: flex;
    gap: 5px;
    align-items: center;
}

.cart-btn {
    background: #c9a84c;
    color: #0a0a0a;
    border: none;
    padding: 8px 18px;
    border-radius: 2px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background 0.2s, transform 0.15s;
}

.cart-btn:hover {
    background: #e0bc5a;
    transform: translateY(-1px);
}

.cart-count {
    background: #0a0a0a;
    color: #c9a84c;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.cart-item-img {
    width: 52px;
    height: 60px;
    object-fit: cover;
    border-radius: 2px;
    border: 0.5px solid #c9a84c11;
    flex-shrink: 0;
}

.cart-item-info {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 0;
}

.cart-item-details {
    display: flex;
    flex-direction: column;
}

.cart-item-name {
    font-size: 13px;
    color: #f5f0e8;
    font-weight: 500;
    flex: 1;
}

.cart-item-price {
    font-size: 12px;
    color: #c9a84c;
    font-family: 'Playfair Display', serif;
    white-space: nowrap;
}

.icon-btn {
    background: transparent;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 6px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    transition: color 0.2s;
}

.icon-btn:hover {
    color: #c9a84c;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: transparent;
    border: 0.5px solid #c9a84c33;
    border-radius: 2px;
    cursor: pointer;
    padding: 8px 10px;
    width: 40px;
    height: 36px;
}

.hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    background: #c9a84c;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
    transform-origin: center;
}

/* Animate to X when open */
.hamburger[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
    width: 0;
}

.hamburger[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* MOBILE MENU */
.mobile-menu {
    display: none;
    position: fixed;
    top: 65px;
    /* matches nav height */
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border-bottom: 0.5px solid #c9a84c33;
    z-index: 99;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.mobile-menu.open {
    max-height: 400px;
}

.mobile-menu ul {
    list-style: none;
    padding: 8px 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-menu ul li a {
    display: flex;
    align-items: center;
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 14px 0;
    border-bottom: 0.5px solid #c9a84c11;
    transition: color 0.2s, padding-left 0.2s;
}

.mobile-menu ul li:last-child a {
    border-bottom: none;
}

.mobile-menu ul li a:hover,
.mobile-menu ul li a[aria-current="page"] {
    color: #c9a84c;
    padding-left: 6px;
}

/* HERO */
.ot-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 360px;
    border-bottom: 0.5px solid #c9a84c33;
}

.hero-text {
    padding: 56px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.hero-badge {
    display: inline-block;
    background: transparent;
    border: 0.5px solid #c9a84c;
    color: #c9a84c;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 5px 14px;
    width: fit-content;
    border-radius: 1px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 700;
    line-height: 1.15;
    color: #f5f0e8;
}

.hero-title .gold {
    color: #c9a84c;
}

/* Gold shimmer animation */
@keyframes shimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

.shimmer {
    background: linear-gradient(90deg, #c9a84c 0%, #f5e08a 40%, #c9a84c 60%, #a07830 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}

.hero-sub {
    font-size: 14px;
    color: #888;
    line-height: 1.7;
    max-width: 320px;
}

.hero-btns {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.btn-primary {
    background: #c9a84c;
    color: #0a0a0a;
    border: none;
    padding: 13px 30px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 1px;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.btn-primary:hover {
    background: #e0bc5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 168, 76, 0.35);
}

.btn-outline {
    background: transparent;
    color: #c9a84c;
    border: 0.5px solid #c9a84c;
    padding: 13px 30px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 1px;
    transition: background 0.2s, color 0.2s, transform 0.15s;
}

.btn-outline:hover {
    background: #c9a84c11;
    transform: translateY(-2px);
}

.hero-visual {
    background: #111;
    display: flex;
    align-items: stretch;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-left: 0.5px solid #c9a84c22;
    min-height: 360px;
}

.hero-visual-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 60% 50%, #c9a84c0a 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

/* Real hero image */
.hero-model-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    min-height: 200px;
}

/* Fallback placeholder shown when image is missing */
.hero-img-placeholder {
    width: 100%;
    min-height: 360px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #333;
    font-size: 12px;
    letter-spacing: 1px;
    text-align: center;
    padding: 24px;
    border: 1px dashed #c9a84c22;
}

.hero-visual-inner {
    text-align: center;
}

.hero-tag {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: #c9a84c;
    color: #0a0a0a;
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1px;
    border-radius: 1px;
    z-index: 2;
}

/* HERO TRUST */
.hero-trust {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.trust-item {
    font-size: 12px;
    color: #666;
    letter-spacing: 0.5px;
}

/* TICKER */
.ticker-wrap {
    background: #c9a84c;
    overflow: hidden;
    padding: 9px 0;
    white-space: nowrap;
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.ticker-track {
    display: inline-flex;
    gap: 0;
    animation: ticker 28s linear infinite;
}

.ticker-track span {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #0a0a0a;
    padding: 0 20px;
}

.ticker-dot {
    color: #0a0a0a88;
    font-size: 8px;
    padding: 0 4px;
}

/* STATS */
.ot-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-bottom: 0.5px solid #c9a84c22;
}

.stat-item {
    padding: 20px;
    text-align: center;
    border-right: 0.5px solid #c9a84c22;
}

.stat-item:last-child {
    border-right: none;
}

.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: #c9a84c;
    font-weight: 700;
}

.stat-label {
    font-size: 11px;
    color: #666;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 4px;
}

/* FEATURED */
.ot-section {
    padding: 40px 32px;
    border-bottom: 0.5px solid #c9a84c1a;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: #f5f0e8;
}

.section-title span {
    color: #c9a84c;
}

.see-all {
    font-size: 12px;
    color: #c9a84c;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 0.5px solid #c9a84c;
    padding-bottom: 2px;
    cursor: pointer;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 0 40px 60px;
}

.about-card {
    background: #111;
    padding: 28px;
    border: 1px solid #3a2c18;
    border-radius: 6px;
}

.about-card h3 {
    color: #f5f0e8;
    margin-bottom: 12px;
}

.about-card p {
    color: #aaa;
    font-size: 14px;
    line-height: 1.8;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.product-card {
    background: #111;
    border: 0.5px solid #c9a84c22;
    border-radius: 2px;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.product-card:hover {
    border-color: #c9a84c88;
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.product-img {
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #161616;
    position: relative;
    overflow: hidden;
}

/* Real product photo */
.product-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.4s ease;
}

.product-card:hover .product-photo {
    transform: scale(1.04);
}

/* Placeholder shown when image file is missing */
.product-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #2a2a2a;
    font-size: 10px;
    letter-spacing: 1px;
    text-align: center;
    padding: 16px;
    border: 1px dashed #c9a84c11;
}

.img-hidden {
    display: none !important;
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.25s;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.quick-view-btn {
    background: transparent;
    color: #c9a84c;
    border: 0.5px solid #c9a84c;
    padding: 8px 20px;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 1px;
    transition: background 0.2s, color 0.2s;
}

.quick-view-btn:hover {
    background: #c9a84c;
    color: #0a0a0a;
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #c9a84c;
    color: #0a0a0a;
    font-size: 10px;
    font-weight: 500;
    padding: 3px 8px;
    letter-spacing: 1px;
    border-radius: 1px;
}

.product-badge.hot {
    background: #e63946;
    color: #fff;
}

.product-info {
    padding: 14px 16px;
}

.product-name {
    font-size: 14px;
    font-weight: 500;
    color: #f5f0e8;
    margin-bottom: 4px;
}

.product-type {
    font-size: 11px;
    color: #666;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-price {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    color: #c9a84c;
    font-weight: 700;
}

.add-btn {
    background: transparent;
    color: #c9a84c;
    border: 0.5px solid #c9a84c;
    padding: 6px 14px;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 1px;
    transition: background 0.2s, color 0.2s;
}

.add-btn:hover,
.add-btn.added {
    background: #c9a84c;
    color: #0a0a0a;
}

/* CUSTOM ORDER BANNER */
.custom-banner {
    background: linear-gradient(135deg, #111 60%, #1a1400);
    border: 0.5px solid #c9a84c44;
    border-radius: 2px;
    margin: 0 32px 32px;
    padding: 32px 40px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 24px;
}

.banner-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: #f5f0e8;
    margin-bottom: 8px;
}

.banner-title span {
    color: #c9a84c;
}

.banner-sub {
    font-size: 13px;
    color: #777;
    line-height: 1.6;
    max-width: 380px;
}

.btn-gold {
    background: #c9a84c;
    color: #0a0a0a;
    border: none;
    padding: 14px 32px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    white-space: nowrap;
    border-radius: 1px;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.btn-gold:hover {
    background: #e0bc5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 168, 76, 0.35);
}

/* PAYMENT SECTION */
.payment-section {
    padding: 24px 32px;
    border-top: 0.5px solid #c9a84c22;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pay-label {
    font-size: 11px;
    color: #555;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.pay-logos {
    display: flex;
    gap: 16px;
    align-items: center;
}

.pay-pill {
    background: #161616;
    border: 0.5px solid #333;
    border-radius: 4px;
    padding: 5px 14px;
    font-size: 12px;
    font-weight: 500;
    color: #aaa;
    letter-spacing: 1px;
}

.pay-pill.ps {
    color: #00c3e3;
    border-color: #00c3e344;
}

.pay-pill.fw {
    color: #f5a623;
    border-color: #f5a62344;
}

.pay-pill.wa {
    color: #25D366;
    border-color: #25D36644;
}

.pay-pill.tf {
    color: #34a853;
    border-color: #34a85344;
}

/* FLOATING WHATSAPP */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: #25D366;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 16px #25D36655;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    z-index: 200;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px #25D36677;
}

/* TESTIMONIALS */
.testimonials-section {
    background: #0d0d0d;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.testimonial-card {
    background: #111;
    border: 0.5px solid #c9a84c22;
    border-radius: 2px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: border-color 0.2s;
}

.testimonial-card:hover {
    border-color: #c9a84c55;
}

.stars {
    color: #c9a84c;
    font-size: 13px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 13px;
    color: #999;
    line-height: 1.7;
    font-style: italic;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #c9a84c22;
    border: 0.5px solid #c9a84c44;
    color: #c9a84c;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    flex-shrink: 0;
}

.author-name {
    font-size: 13px;
    font-weight: 500;
    color: #f5f0e8;
}

.author-location {
    font-size: 11px;
    color: #555;
    letter-spacing: 0.5px;
}

/* FOOTER */
.ot-footer {
    background: #080808;
    border-top: 0.5px solid #c9a84c22;
    padding: 48px 32px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 0.5px solid #c9a84c11;
}

.footer-tagline {
    font-size: 13px;
    color: #555;
    line-height: 1.6;
    margin-top: 12px;
    max-width: 220px;
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-link {
    width: 34px;
    height: 34px;
    border: 0.5px solid #333;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    transition: color 0.2s, border-color 0.2s;
}

.social-link:hover {
    color: #c9a84c;
    border-color: #c9a84c44;
}

.footer-heading {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #c9a84c;
    font-weight: 500;
    margin-bottom: 16px;
    font-family: 'Inter', sans-serif;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links li a,
.footer-links li span {
    font-size: 13px;
    color: #555;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links li a:hover {
    color: #c9a84c;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    font-size: 12px;
    color: #333;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .ot-nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

    .ot-hero {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .hero-visual {
        min-height: 260px;
        border-left: none;
        border-top: 0.5px solid #c9a84c22;
    }

    .hero-title {
        font-size: 38px;
    }

    .ot-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item:nth-child(2) {
        border-right: none;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .custom-banner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .custom-banner .btn-gold {
        width: 100%;
    }
}

@media (max-width: 560px) {
    .ot-nav {
        padding: 10px 16px;
        gap: 8px;
    }

    .ot-site {
        padding-top: 60px;
    }

    .mobile-menu {
        top: 60px;
    }

    /* Shrink logo on small screens */
    .logo-img {
        height: 28px;
    }

    .ot-logo .logo-text {
        font-size: 15px;
    }

    .ot-logo .logo-text strong {
        font-size: 9px;
        letter-spacing: 2px;
    }

    /* Hide "Cart" label text, keep icon + count only */
    .cart-btn .cart-label {
        display: none;
    }

    .cart-btn {
        padding: 7px 10px;
        gap: 4px;
    }

    .hero-text {
        padding: 36px 20px;
    }

    .hero-title {
        font-size: 30px;
    }

    .hero-btns {
        flex-direction: column;
    }

    .ot-section {
        padding: 32px 20px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        padding: 0 20px 40px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .ot-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .custom-banner {
        margin: 0 20px 24px;
        padding: 24px 20px;
    }

    .payment-section {
        flex-direction: column;
        gap: 14px;
        align-items: flex-start;
        padding: 20px;
    }

    .pay-logos {
        flex-wrap: wrap;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

/* Extra small — anything under 360px */
@media (max-width: 360px) {
    .ot-logo .logo-text {
        display: none;
    }

    .ot-nav {
        padding: 10px 12px;
    }
}

/* ─── QUICK VIEW MODAL ─── */
.qv-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 500;
    align-items: center;
    justify-content: center;
}

.qv-modal.open {
    display: flex;
}

.qv-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}

.qv-panel {
    position: relative;
    background: #111;
    border: 0.5px solid #c9a84c44;
    border-radius: 2px;
    width: min(900px, 92vw);
    max-height: 90vh;
    overflow-y: auto;
    display: flex;
    animation: qv-in 0.25s ease;
}

@keyframes qv-in {
    from {
        opacity: 0;
        transform: translateY(16px) scale(0.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.qv-close {
    position: absolute;
    top: 12px;
    right: 14px;
    background: transparent;
    border: none;
    color: #666;
    font-size: 22px;
    cursor: pointer;
    line-height: 1;
    z-index: 1;
    transition: color 0.2s;
}

.qv-close:hover {
    color: #c9a84c;
}

.qv-img-wrap {
    background: #161616;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    max-width: 400px;
    flex-shrink: 0;
    padding: 0;
    overflow: hidden;
}

.qv-photo {
    width: 100%;
    height: 100%;
    min-height: 400px;
    max-height: 600px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.qv-photo-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #333;
    font-size: 11px;
    letter-spacing: 1px;
    text-align: center;
    padding: 24px;
    width: 100%;
    min-height: 240px;
}

.qv-info {
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
    min-width: 0;
}

.qv-type {
    font-size: 11px;
    color: #666;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.qv-name {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: #f5f0e8;
    font-weight: 700;
    line-height: 1.2;
    margin: 4px 0;
}

.qv-price {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    color: #c9a84c;
    font-weight: 700;
    margin: 0;
}

.qv-full-link {
    font-size: 12px;
    color: #c9a84c;
    text-decoration: none;
    letter-spacing: 1px;
    border-bottom: 0.5px solid #c9a84c55;
    padding-bottom: 2px;
    width: fit-content;
    transition: border-color 0.2s;
}

.qv-full-link:hover {
    border-color: #c9a84c;
}

@media (max-width: 560px) {
    .qv-panel {
        grid-template-columns: 1fr;
    }

    .qv-img-wrap {
        min-height: 160px;
    }
}

@media (max-width: 768px) {
    .ot-logo .logo-text {
        display: flex !important;
        flex-direction: column !important;
    }

    .ot-logo .logo-text {
        font-size: 14px !important;
    }

    .ot-logo .logo-text strong {
        font-size: 0.65em !important;
        letter-spacing: 2px !important;
    }
}

/* ════════════════════════════════════════════
   CART DRAWER
   ════════════════════════════════════════════ */

.cart-drawer {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 600;
}

.cart-drawer.open {
    display: block;
}

.cart-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    animation: fade-in 0.25s ease;
}

.cart-panel {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(400px, 92vw);
    background: #0f0f0f;
    border-left: 0.5px solid #c9a84c33;
    display: flex;
    flex-direction: column;
    animation: slide-in-right 0.3s ease;
}

@keyframes slide-in-right {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(0);
    }
}

@keyframes fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.cart-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 0.5px solid #c9a84c22;
    flex-shrink: 0;
}

.cart-panel-title {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: #f5f0e8;
    font-weight: 700;
}

.cart-close-btn {
    background: transparent;
    border: 0.5px solid #333;
    border-radius: 2px;
    color: #666;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s, border-color 0.2s;
}

.cart-close-btn:hover {
    color: #c9a84c;
    border-color: #c9a84c44;
}

.cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
}

/* Empty state */
.cart-empty[hidden] {
    display: none;
}

.cart-empty {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    text-align: center;
    padding: 40px 0;
}

.cart-empty p {
    font-size: 14px;
    color: #444;
    letter-spacing: 0.5px;
}

.cart-shop-link {
    font-size: 12px;
    padding: 10px 24px;
    text-decoration: none;
    display: inline-block;
}

/* Items list */
.cart-items-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.cart-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 0;
    border-bottom: 0.5px solid #c9a84c11;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-name {
    font-size: 13px;
    color: #f5f0e8;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cart-item-price {
    font-family: 'Playfair Display', serif;
    font-size: 13px;
    color: #c9a84c;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.cart-qty-btn {
    background: #1a1a1a;
    border: 0.5px solid #333;
    color: #aaa;
    width: 26px;
    height: 26px;
    border-radius: 2px;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s, color 0.2s;
}

.cart-qty-btn:hover {
    border-color: #c9a84c44;
    color: #c9a84c;
}

.cart-item-qty {
    font-size: 13px;
    color: #f5f0e8;
    min-width: 18px;
    text-align: center;
}

.cart-remove-btn {
    background: transparent;
    border: none;
    color: #444;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    transition: color 0.2s;
}

.cart-remove-btn:hover {
    color: #e63946;
}

/* Footer */
.cart-footer {
    padding: 20px 24px;
    border-top: 0.5px solid #c9a84c22;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-shrink: 0;
}

.cart-subtotal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #888;
}

.cart-subtotal-amount {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: #c9a84c;
    font-weight: 700;
}

.cart-footer-note {
    font-size: 11px;
    color: #444;
    letter-spacing: 0.5px;
    margin-top: -4px;
}

.cart-checkout-btn {
    display: block;
    text-align: center;
    text-decoration: none;
    padding: 13px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
}

.cart-clear-btn {
    background: transparent;
    border: none;
    color: #444;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    text-align: center;
    transition: color 0.2s;
}

.cart-clear-btn:hover {
    color: #e63946;
}

/* ════════════════════════════════════════════
   SEARCH OVERLAY
   ════════════════════════════════════════════ */

.search-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 600;
}

.search-overlay.open {
    display: block;
}

.search-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    animation: fade-in 0.2s ease;
}

.search-box {
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: min(640px, 92vw);
    background: #111;
    border: 0.5px solid #c9a84c44;
    border-radius: 2px;
    overflow: hidden;
    animation: slide-down 0.25s ease;
}

@keyframes slide-down {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-12px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.search-form {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-bottom: 0.5px solid #c9a84c22;
}

.search-icon {
    flex-shrink: 0;
}

.search-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #f5f0e8;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    letter-spacing: 0.3px;
}

.search-input::placeholder {
    color: #333;
}

/* Remove browser default search clear button */
.search-input::-webkit-search-cancel-button {
    display: none;
}

.search-close-btn {
    background: transparent;
    border: 0.5px solid #333;
    border-radius: 2px;
    color: #555;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: color 0.2s, border-color 0.2s;
}

.search-close-btn:hover {
    color: #c9a84c;
    border-color: #c9a84c44;
}

/* Results */
.search-results {
    max-height: 280px;
    overflow-y: auto;
}

.search-result-list {
    list-style: none;
}

.search-result-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0 20px;
    border-bottom: 0.5px solid #c9a84c0d;
    transition: background 0.15s;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background: #c9a84c08;
}

.search-result-link {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 14px 0;
    text-decoration: none;
    flex: 1;
    min-width: 0;
}

.search-result-name {
    font-size: 14px;
    color: #f5f0e8;
    font-weight: 500;
}

.search-result-meta {
    font-size: 11px;
    color: #555;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.search-result-price {
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    color: #c9a84c;
    white-space: nowrap;
    flex-shrink: 0;
}

.search-no-results {
    padding: 20px;
    font-size: 13px;
    color: #555;
    text-align: center;
}

.search-no-results strong {
    color: #888;
}

/* Suggestions */
.search-suggestions {
    padding: 16px 20px;
    border-top: 0.5px solid #c9a84c11;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.search-suggestions-label {
    font-size: 10px;
    color: #444;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.search-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.search-tag {
    background: transparent;
    border: 0.5px solid #c9a84c33;
    border-radius: 2px;
    color: #777;
    font-size: 11px;
    letter-spacing: 0.5px;
    padding: 5px 12px;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
    font-family: 'Inter', sans-serif;
}

.search-tag:hover {
    border-color: #c9a84c;
    color: #c9a84c;
    background: #c9a84c0d;
}

/* ── WISHLIST HEART ── */
.wishlist-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #0a0a0aaa;
    border: 0.5px solid #c9a84c33;
    border-radius: 50%;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: background 0.2s, border-color 0.2s, transform 0.15s;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}

.wishlist-btn:hover {
    background: #c9a84c22;
    border-color: #c9a84c;
    transform: scale(1.1);
}

.wishlist-btn svg {
    transition: fill 0.2s, stroke 0.2s;
}

.wishlist-btn.wishlisted {
    background: #e6394622;
    border-color: #e63946;
}

.wishlist-btn.wishlisted svg {
    fill: #e63946;
    stroke: #e63946;
}

@keyframes shimmer {
    0% {
        background-position: -600px 0;
    }

    100% {
        background-position: 600px 0;
    }
}

.skeleton-card {
    border: 0.5px solid #c9a84c11;
    background: #111;
    border-radius: 2px;
    overflow: hidden;
}

.skel {
    background: linear-gradient(90deg, #1a1a1a 25%, #242424 50%, #1a1a1a 75%);
    background-size: 600px 100%;
    animation: shimmer 1.6s infinite linear;
    border-radius: 1px;
}

.skeleton-img {
    height: 240px;
    width: 100%;
}

.skeleton-info {
    padding: 14px 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.skeleton-name {
    height: 14px;
    width: 70%;
}

.skeleton-type {
    height: 11px;
    width: 45%;
}

.skeleton-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 6px;
}

.skeleton-price {
    height: 13px;
    width: 35%;
}

.skeleton-btn {
    height: 28px;
    width: 60px;
    border-radius: 2px;
}

/* ── CUSTOM MODAL ── */
.ot-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
   -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.15s ease;
}

.ot-modal-overlay[hidden] {
  display: none;
}

.ot-modal {
  background: #111;
  border: 0.5px solid #c9a84c33;
  border-radius: 4px;
  padding: 36px 32px 28px;
  width: 100%;
  max-width: 380px;
  text-align: center;
  animation: slideUp 0.2s ease;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.ot-modal-icon {
  font-size: 32px;
  margin-bottom: 14px;
  line-height: 1;
}

.ot-modal-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: #f5f0e8;
  margin-bottom: 8px;
}

.ot-modal-msg {
  font-size: 13px;
  color: #777;
  line-height: 1.6;
  margin-bottom: 24px;
}

.ot-modal-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.ot-modal-actions .btn-primary,
.ot-modal-actions .btn-outline {
  padding: 10px 28px;
  font-size: 11px;
}

/* alert mode — only confirm button */
.ot-modal.alert-mode .btn-outline {
  display: none;
}

/* ════════════════════════════════════════════
   INSTALL PROMPT
   ════════════════════════════════════════════ */

.install-btn {
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

.install-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 200;
}

.install-modal[hidden] {
    display: none;
}

.install-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}

.install-panel {
    position: relative;
    background: #1a1a1a;
    border: 0.5px solid #c9a84c44;
    border-radius: 8px;
    padding: 40px 32px;
    max-width: 400px;
    width: calc(100% - 32px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.install-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: transparent;
    border: none;
    color: #999;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

.install-modal-close:hover {
    color: #c9a84c;
}

.install-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.install-modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: #f5f0e8;
}

.install-modal-description {
    font-size: 14px;
    line-height: 1.6;
    color: #aaa;
}

.install-modal-buttons {
    display: flex;
    gap: 12px;
    width: 100%;
    margin-top: 16px;
}

.install-modal-buttons .btn-primary,
.install-modal-buttons .btn-outline {
    flex: 1;
}

@media (max-width: 640px) {
    .install-panel {
        padding: 28px 20px;
        border-radius: 6px;
    }

    .install-modal-title {
        font-size: 20px;
    }

    .install-modal-buttons {
        flex-direction: column;
    }
}

/* ════════════════════════════════════════════
   ACCOUNT MENU
   ════════════════════════════════════════════ */

.account-menu {
    position: relative;
}

.account-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: #1a1a1a;
    border: 0.5px solid #c9a84c44;
    border-radius: 4px;
    min-width: 130px;
    margin-top: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    z-index: 150;
    overflow: hidden;
}

.account-dropdown[hidden] {
    display: none;
}

.account-link[hidden] {
    display: none;
}

.account-link {
    /* display: block; */
    padding: 12px 16px;
    color: #f5f0e8;
    text-decoration: none;
    font-size: 13px;
    border: none;
    background: transparent;
    cursor: pointer;
    width: 100%;
    text-align: left;
    transition: background 0.2s, color 0.2s;
    font-family: 'Inter', sans-serif;
}

.account-link:hover {
    background: #c9a84c0d;
    color: #c9a84c;
}

.account-divider {
    height: 0.5px;
    background: #c9a84c44;
    margin: 4px 0;
}

.account-divider[hidden] {
    display: none;
}

.logout-btn {
    color: #ff6b6b;
}

.logout-btn:hover {
    background: #ff6b6b0d;
    color: #ff7777;
}

/* ── CHECKOUT STEP ── */
.cart-back-btn {
  background: transparent;
  border: none;
  color: #666;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  transition: color 0.2s;
}

.cart-back-btn:hover { color: #c9a84c; }

#cart-step-checkout[hidden] {
  display: none;
}

#cart-step-checkout {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow-y: auto;
  padding: 16px 20px 24px;
  gap: 20px;
}

.checkout-section-title {
  font-size: 11px;
  color: #c9a84c;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-family: 'Inter', sans-serif;
}

/* Summary */
.checkout-summary {
  background: #0d0d0d;
  border: 0.5px solid #c9a84c11;
  border-radius: 2px;
  padding: 14px;
}

.checkout-summary-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 0.5px solid #c9a84c0a;
}

.checkout-summary-row:last-child { border-bottom: none; }

.checkout-summary-img {
  width: 40px;
  height: 46px;
  object-fit: cover;
  border-radius: 1px;
  flex-shrink: 0;
  border: 0.5px solid #c9a84c11;
}

.checkout-summary-name {
  flex: 1;
  font-size: 12px;
  color: #ccc;
}

.checkout-summary-qty {
  font-size: 11px;
  color: #555;
}

.checkout-summary-price {
  font-size: 12px;
  color: #c9a84c;
  font-family: 'Playfair Display', serif;
  white-space: nowrap;
}

.checkout-summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  margin-top: 8px;
  border-top: 0.5px solid #c9a84c22;
  font-size: 13px;
  color: #888;
}

.checkout-total-amount {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: #c9a84c;
  font-weight: 700;
}

/* Fields */
.checkout-fields {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.checkout-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.checkout-field label {
  font-size: 10px;
  color: #666;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.checkout-field .optional {
  color: #444;
  text-transform: none;
  letter-spacing: 0;
}

.checkout-field input {
  background: #111;
  border: 0.5px solid #333;
  border-radius: 2px;
  padding: 9px 12px;
  color: #f5f0e8;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  outline: none;
  transition: border-color 0.2s;
}

.checkout-field input:focus { border-color: #c9a84c66; }

/* Payment options */
.payment-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.payment-option-btn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  background: #111;
  border: 0.5px solid #333;
  border-radius: 2px;
  padding: 14px 16px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  text-align: left;
  width: 100%;
}

.payment-option-btn:hover {
  background: #161616;
  border-color: #c9a84c44;
}

.payment-option-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.pay-option-label {
  font-size: 10px;
  color: #555;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.pay-option-name {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.pay-option-name.ps { color: #00c3e3; }
.pay-option-name.fw { color: #f5a623; }

.pay-option-desc {
  font-size: 11px;
  color: #555;
}

.checkout-error {
  font-size: 12px;
  color: #e63946;
  margin-top: 6px;
}


/* ─── ENHANCED QUICK VIEW MODAL ─── */
.qv-content {
    display: flex;
    width: 100%;
    gap: 0;
}

.qv-price-stock {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 0;
}

.qv-stock {
    font-size: 13px;
    font-weight: 500;
}

.qv-desc-text {
    font-size: 14px;
    color: #aaa;
    line-height: 1.7;
    margin: 0;
}

.qv-selectors {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 24px 0;
}

.qv-selector-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.qv-selector-label {
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.qv-selector-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.qv-selector-btn {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1.5px solid #333;
    border-radius: 4px;
    color: #ccc;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
    font-weight: 500;
}

.qv-selector-btn:hover {
    border-color: #c9a84c;
    background: rgba(201, 168, 76, 0.08);
    transform: translateY(-1px);
}

.qv-selector-btn.selected {
    border-color: #c9a84c;
    background: rgba(201, 168, 76, 0.2);
    color: #c9a84c;
    font-weight: 600;
}

.qv-actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 24px;
}

.qv-add-btn {
    width: 100%;
    padding: 14px;
    font-size: 14px;
    letter-spacing: 1.5px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .qv-panel {
        width: min(600px, 95vw);
        flex-direction: column;
    }
    
    .qv-content {
        flex-direction: column;
    }
    
    .qv-img-wrap {
        min-height: 300px;
        max-width: 100%;
    }
    
    .qv-info {
        padding: 24px 20px;
    }
    
    .qv-name {
        font-size: 24px;
    }
    
    .qv-price {
        font-size: 22px;
    }
}

@media (max-width: 560px) {
    .qv-selector-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .qv-price-stock {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .qv-img-wrap {
        min-height: 250px;
    }
    
    .qv-info {
        padding: 20px 16px;
    }
}
