/* ============================================
   LUXURY JEWELRY DESIGN - ANORA ELEGANCE
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Lato:wght@300;400;700&display=swap');

:root {
    --dark-bg: #272b4d;
    --dark-secondary: #32365f;
    --gold: #df9f48;
    --gold-dark: #c48a3a;
    --gold-light: #e8b56a;
    --white: #ffffff;
    --text-light: #e0e0e0;
    --text-gray: #999999;
    --border-gold: #df9f48;
    --success-green: #28a745;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px; /* fallback; overridden by JS with actual header height + 20px gap */
}

body {
    background-color: var(--dark-bg);
    color: var(--text-light);
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 300;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    letter-spacing: 1px;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.luxury-header {
    background: var(--dark-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 900;
    transition: all 0.3s ease;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-image {
    height: 90px;
    width: 180px;
    object-fit: contain;
    display: block;
}

.logo-subtitle {
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--text-gray);
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 1px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--gold);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold);
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

/* Right Section */
.header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.search-box {
    position: relative;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    padding: 0.6rem 1rem 0.6rem 2.5rem;
    width: 350px;
    transition: all 0.3s ease;
}

.search-box:focus-within {
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.search-box input {
    background: transparent;
    border: none;
    color: var(--text-light);
    width: 100%;
    outline: none;
    font-size: 0.9rem;
}

.search-box input::placeholder {
    color: var(--text-gray);
}

.search-icon {
    position: absolute;
    left: 0.8rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
}

.header-icons {
    display: flex;
    gap: 1.2rem;
    align-items: center;
}

.icon-btn {
    background: transparent;
    border: none;
    color: var(--gold);
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.5rem;
}

.icon-btn:hover {
    transform: scale(1.1);
    color: var(--gold-light);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--gold);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Mobile Menu Sidebar */
@keyframes overlayFadeIn {
    0% {
        opacity: 0;
        background: rgba(0, 0, 0, 0);
    }
    100% {
        opacity: 1;
        background: rgba(0, 0, 0, 0.6);
    }
}

@keyframes overlayFadeOut {
    0% {
        opacity: 1;
        background: rgba(0, 0, 0, 0.6);
    }
    100% {
        opacity: 0;
        background: rgba(0, 0, 0, 0);
    }
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    z-index: 899;
    pointer-events: none;
    animation: overlayFadeOut 0.4s ease-in-out forwards;
}

.mobile-menu-overlay.active {
    animation: overlayFadeIn 0.4s ease-in-out forwards;
    pointer-events: auto;
}

@keyframes slideInFromRight {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutToRight {
    0% {
        transform: translateX(0);
        opacity: 1;
    }
    100% {
        transform: translateX(100%);
        opacity: 0;
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeOutDown {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(20px);
    }
}

/* ─── MOBILE MENU ─────────────────────────────────────── */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 82%;
    max-width: 360px;
    height: 100vh;
    background: #1e2254;
    border-left: 1px solid rgba(223, 159, 72, 0.18);
    z-index: 900;
    flex-direction: column;
    box-shadow: -12px 0 50px rgba(0, 0, 0, 0.55);
    transform: translateX(100%);
    opacity: 0;
}

.mobile-menu.active {
    display: flex;
    animation: slideInFromRight 0.38s cubic-bezier(0.32, 0.72, 0, 1) forwards;
}

.mobile-menu.closing {
    display: flex;
    animation: slideOutToRight 0.34s cubic-bezier(0.32, 0.72, 0, 1) forwards;
}

/* Close button */
.mobile-menu-close {
    position: absolute;
    top: 1.3rem;
    right: 1.1rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0,0,0,0.25);
    transition: background 0.2s ease, transform 0.2s ease;
}
.mobile-menu-close svg {
    width: 18px;
    height: 18px;
    color: #1e2254;
    stroke: #1e2254;
}
.mobile-menu-close:hover {
    background: #fff;
    transform: scale(1.08);
}

/* Content scroll area — fills full height, footer scrolls with it */
.mobile-menu-content {
    flex: 1;
    padding: 4.5rem 1.1rem 0;
    overflow-y: auto;
    overflow-x: hidden;
}

.mobile-menu-content::-webkit-scrollbar { width: 4px; }
.mobile-menu-content::-webkit-scrollbar-track { background: transparent; }
.mobile-menu-content::-webkit-scrollbar-thumb { background: rgba(223, 159, 72, 0.4); border-radius: 2px; }

/* Nav list */
.mobile-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.mobile-nav-list li {
    opacity: 0;
}

.mobile-menu.active .mobile-nav-list li {
    animation: fadeInUp 0.42s ease forwards;
}
.mobile-menu.active .mobile-nav-list li:nth-child(1) { animation-delay: 0.06s; }
.mobile-menu.active .mobile-nav-list li:nth-child(2) { animation-delay: 0.12s; }
.mobile-menu.active .mobile-nav-list li:nth-child(3) { animation-delay: 0.18s; }
.mobile-menu.active .mobile-nav-list li:nth-child(4) { animation-delay: 0.24s; }
.mobile-menu.active .mobile-nav-list li:nth-child(5) { animation-delay: 0.30s; }

.mobile-menu.closing .mobile-nav-list li {
    animation: fadeOutDown 0.32s ease forwards;
}
.mobile-menu.closing .mobile-nav-list li:nth-child(5) { animation-delay: 0.02s; }
.mobile-menu.closing .mobile-nav-list li:nth-child(4) { animation-delay: 0.04s; }
.mobile-menu.closing .mobile-nav-list li:nth-child(3) { animation-delay: 0.06s; }
.mobile-menu.closing .mobile-nav-list li:nth-child(2) { animation-delay: 0.08s; }
.mobile-menu.closing .mobile-nav-list li:nth-child(1) { animation-delay: 0.10s; }

/* Card-style nav item */
.mobile-nav-card {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    text-decoration: none;
    transition: background 0.22s ease, border-color 0.22s ease;
}
.mobile-nav-card:active,
.mobile-nav-card:hover {
    background: rgba(223, 159, 72, 0.1);
    border-color: rgba(223, 159, 72, 0.3);
}

/* Icon circle */
.mnc-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    background: rgba(180, 128, 50, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
}
.mnc-icon i {
    color: var(--gold);
    font-size: 1.05rem;
}

/* Title + subtitle */
.mnc-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}
.mnc-title {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.2px;
}
.mnc-sub {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    font-weight: 400;
}

/* Chevron arrow */
.mnc-arrow {
    color: var(--gold);
    font-size: 0.75rem;
    opacity: 0.7;
}

/* Ornamental divider */
.mobile-menu-divider {
    display: flex;
    align-items: center;
    margin: 1.4rem 0 0.6rem;
    gap: 0;
}
.mobile-menu-divider::before,
.mobile-menu-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(223, 159, 72, 0.4), transparent);
}
.mobile-menu-divider-ornament {
    padding: 0 0.6rem;
    color: var(--gold);
    opacity: 0.7;
    display: flex;
    align-items: center;
}

/* Footer */
@keyframes slideInButton {
    0% { opacity: 0; transform: translateY(16px); }
    100% { opacity: 1; transform: translateY(0); }
}
@keyframes slideOutButton {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(16px); }
}

.mobile-menu-footer {
    padding: 1.2rem 0 50px;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.mobile-menu-btn {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.9rem 1rem;
    border-radius: 14px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    opacity: 0;
    transition: filter 0.2s ease, transform 0.15s ease;
}
.mobile-menu-btn:active { transform: scale(0.98); }

.mobile-menu.active .mobile-menu-btn {
    animation: slideInButton 0.42s ease forwards;
}
.mobile-menu.active .whatsapp-btn { animation-delay: 0.36s; }
.mobile-menu.active .call-btn     { animation-delay: 0.44s; }

.mobile-menu.closing .mobile-menu-btn {
    animation: slideOutButton 0.28s ease forwards;
}
.mobile-menu.closing .whatsapp-btn { animation-delay: 0s; }
.mobile-menu.closing .call-btn     { animation-delay: 0.04s; }

/* Button icon circle */
.mmb-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #fff;
}

/* Button text */
.mmb-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}
.mmb-title {
    color: #fff;
    font-size: 0.97rem;
    font-weight: 700;
    line-height: 1.2;
}
.mmb-sub {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.73rem;
    font-weight: 400;
}

/* Arrow in button */
.mmb-arrow {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
}

/* WhatsApp button */
.whatsapp-btn {
    background: #25d366;
}
.whatsapp-btn:hover { filter: brightness(1.08); }

/* Call button */
.call-btn {
    background: #c8892a;
}
.call-btn:hover { filter: brightness(1.1); }

/* legacy — keep so any remaining refs don't break */
.mobile-menu-btn i {
    font-size: 1.1rem;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    width: 100%;
    background: var(--dark-bg);
}

.hero-slider-container {
    position: relative;
    width: 100%;
}

.hero-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* All slides stacked absolutely; active slide is relative to hold wrapper height */
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.9s ease-in-out;
    pointer-events: none;
    z-index: 1;
}

.hero-slide.active {
    position: relative;
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
}

.hero-slide img,
.hero-slide picture,
.hero-slide picture img {
    width: 100%;
    height: auto;
    display: block;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-discount {
    font-size: 4rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 0.2rem;
}

.hero-offer {
    font-size: 2.5rem;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.hero-description {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-btn {
    background: var(--gold);
    color: var(--dark-bg);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

.hero-btn:hover {
    background: var(--gold-light);
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

/* Hero Features */
.hero-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-item {
    text-align: center;
}

.feature-icon {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.feature-label {
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

/* ============================================
   SOCIAL BAR
   ============================================ */
.social-bar-wrap {
    display: flex;
    justify-content: center;
    padding: 1.2rem 1rem;
    margin: 0 auto;
    max-width: 1400px;
}

.social-bar-wrap + .featured-section {
    margin-top: 0;
}

.social-bar {
    display: inline-flex;
    align-items: center;
    gap: 0;
    border: 1px solid rgba(223, 159, 72, 0.28);
    border-radius: 8px;
    padding: 0.55rem 1.4rem;
    background: rgba(223, 159, 72, 0.04);
}

.social-bar-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 500;
    padding: 0.3rem 1rem;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.social-bar-item i {
    font-size: 1rem;
    color: var(--gold);
    transition: color 0.2s ease;
}

.social-bar-item:hover {
    color: var(--gold);
}

.social-bar-divider {
    width: 1px;
    height: 18px;
    background: rgba(223, 159, 72, 0.25);
    flex-shrink: 0;
}

@media (max-width: 480px) {
    .social-bar {
        padding: 0.45rem 0.6rem;
        border-radius: 8px;
        width: 100%;
        justify-content: space-around;
    }
    .social-bar-item {
        flex-direction: column;
        gap: 0.2rem;
        padding: 0.3rem 0.5rem;
        font-size: 0.68rem;
    }
    .social-bar-item i {
        font-size: 1.1rem;
    }
    .social-bar-divider {
        height: 30px;
    }
}

/* ============================================
   FEATURED COLLECTION SECTION
   ============================================ */
.featured-section {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-title {
    font-size: 2.2rem;
    color: var(--white);
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--text-gray);
    font-size: 0.95rem;
    letter-spacing: 2px;
}

.sort-filter {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 2rem;
}

.sort-select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    padding: 0.6rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    max-width: 1000px;
    margin: 5rem auto 6rem;
    padding: 0 2rem;
    text-align: center;
}

.about-copy {
    max-width: 920px;
    margin: 0 auto;
    display: grid;
    gap: 1rem;
}

.about-copy p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.55;
    margin: 0;
    text-align: justify;
}

.about-signature {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.about-signature span {
    color: var(--text-gray);
    font-size: 0.9rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.about-signature strong {
    color: var(--gold);
    font-size: 1.1rem;
    letter-spacing: 0.02em;
}

.sort-select:hover {
    background: rgba(255, 255, 255, 0.08);
}

/* Product Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 300px));
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.product-card {
    background: var(--dark-secondary);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    group: hover;
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(223, 159, 72, 0.22);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.3s; }
.product-card:nth-child(4) { animation-delay: 0.4s; }
.product-card:nth-child(5) { animation-delay: 0.5s; }
.product-card:nth-child(6) { animation-delay: 0.6s; }

.product-card:hover {
    box-shadow: 0 15px 50px rgba(255, 255, 255, 0.1);
}

.product-image-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: var(--dark-secondary);
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 0.5rem;
    transition: all 0.4s ease;
}

.product-image {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.4s ease;
    border-radius: 6px;
}

.product-code-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 2;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1px;
    padding: 0.42rem 0.62rem;
    background: rgba(10, 12, 26, 0.78);
    border: 1px solid rgba(223, 159, 72, 0.5);
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(8px);
}

.product-code-badge span {
    color: var(--text-gray);
    font-size: 0.58rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    line-height: 1;
}

.product-code-badge strong {
    color: var(--gold);
    font-size: 0.78rem;
    line-height: 1.1;
    letter-spacing: 0.06em;
}

.product-card:hover .product-image-wrapper {
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.1);
}

.product-info {
    padding: 0.1rem 1.2rem 1rem 1.2rem;
    text-align: center;
}

.product-title {
    font-size: 1.1rem;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 0.4rem;
    line-height: 1.4;
}

.product-pricing {
    margin-bottom: 0.6rem;
}

.product-price-original {
    text-decoration: line-through;
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-right: 0.5rem;
}

.product-discount {
    background: rgba(255, 255, 255, 0.1);
    color: var(--gold);
    font-size: 0.8rem;
    padding: 0.2rem 0.6rem;
    border-radius: 3px;
    font-weight: 600;
}

.product-price-offer {
    font-size: 1.4rem;
    color: var(--gold);
    font-weight: 700;
    margin-top: 0.5rem;
}

.buy-btn {
    width: 100%;
    background: var(--gold);
    color: var(--dark-bg);
    border: none;
    padding: 1rem;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.buy-btn:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.1);
}

/* View More Section */
.view-more-section {
    text-align: center;
    margin: 3rem 0;
}

.view-more-wrapper {
    background: rgba(223, 159, 72, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 2rem;
    display: inline-block;
    margin-bottom: 2rem;
}

.view-more-icon {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.view-more-text {
    color: var(--gold);
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.view-more-btn {
    background: var(--gold);
    color: var(--dark-bg);
    border: none;
    padding: 0.9rem 2.2rem;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.view-more-btn:hover {
    background: var(--gold-light);
    transform: translateX(3px);
}

.view-more-btn:disabled {
    background: var(--text-gray);
    cursor: not-allowed;
    transform: none;
}

/* ============================================
   MODALS & POPUPS
   ============================================ */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(3px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
}

.modal-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.modal-wrapper {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-wrapper.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    max-height: 90vh;
    overflow-y: auto;
    max-width: 90vw;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-wrapper.active .modal-content {
    transform: scale(1);
}

/* Scrollbar Styling */
.modal-content::-webkit-scrollbar {
    width: 1px;
}

.modal-content::-webkit-scrollbar-track {
    background: transparent;
}

.modal-content::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 1px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* Product Detail Modal */
.product-detail-modal {
    background: var(--dark-secondary);
    border: 1px solid rgba(223, 159, 72, 0.28);
    border-radius: 12px;
    padding: 0;
    width: 100%;
    max-width: 550px;
}

/* Desktop: side-by-side grid inside product modal */
@media (min-width: 768px) {
    .product-detail-modal {
        max-width: 920px;
    }

    .product-modal-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        align-items: start;
        padding: 1.5rem;
    }

    .product-detail-modal .modal-body {
        padding: 0;
    }
}

/* Mobile: single column */
@media (max-width: 767px) {
    .product-modal-grid {
        display: flex;
        flex-direction: column;
    }
}

/* Contact Modal */
#contactModal {
    max-height: 90vh;
    overflow-y: auto;
    max-width: 90vw;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#contactModal.active {
    transform: scale(1);
}

.contact-modal {
    background: var(--dark-secondary);
    border: 1px solid rgba(223, 159, 72, 0.28);
    border-radius: 12px;
    padding: 2rem;
    width: 100%;
    max-width: 700px;
}

/* Contact Info Cards - Prevent text overflow */
.contact-modal [style*="flex-direction: column"] > div {
    overflow: hidden;
    word-break: break-word;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.contact-modal a[href*="mailto"],
.contact-modal a[href*="tel"],
.contact-modal a[href*="wa.me"] {
    word-break: break-all;
    overflow-wrap: break-word;
    hyphens: auto;
    display: block;
    white-space: normal;
}

/* Contact modal grid layout for wider screens */
@media (min-width: 700px) {
    .contact-modal .modal-body > div:nth-child(2) {
        display: grid !important;
        grid-template-columns: 1fr 1fr 1fr !important;
        gap: 1.2rem !important;
    }

    .contact-modal [style*="flex-direction: column"] > div {
        min-width: 0;
    }
}

.modal-header {
    display: flex;
    justify-content: flex-end;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-close-btn {
    background: var(--dark-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-close-btn:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
    transform: rotate(90deg);
}

.modal-close-inside {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1010;
}

.modal-body {
    display: block;
    padding: 15px;
}

.product-detail-modal .modal-body {
    display: block;
}
}

/* Image Section */
.image-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.main-image {
    width: 100%;
    background: #272b4d;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.main-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.image-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    transform: translateY(-50%);
    pointer-events: none;
}

.image-nav button {
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: var(--gold);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    pointer-events: all;
    transition: all 0.3s ease;
}

.image-nav button:hover {
    background: rgba(223, 159, 72, 0.8);
    color: var(--dark-bg);
    transform: scale(1.1);
}

.thumbnails {
    display: flex;
    gap: 0.8rem;
    overflow-x: auto;
    padding: 0.5rem 0;
}

.thumbnail {
    width: 80px;
    height: 80px;
    min-width: 80px;
    border: 2px solid transparent;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail.active {
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(223, 159, 72, 0.4);
}

.thumbnail:hover {
    border-color: var(--gold);
}

/* Product Details Section */
.product-details {
    display: flex;
    flex-direction: column;
}

.product-details h2 {
    font-size: 1.8rem;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 0;
    line-height: 1.3;
}

.product-modal-short-desc {
    color: var(--text-dark);
    font-size: 0.9rem;
    line-height: 1.65;
    margin: 0.4rem 0 0.6rem;
    text-align: justify;
}

.product-modal-description {
    color: var(--text-light);
    font-size: 0.88rem;
    line-height: 1.6;
    margin: 0.5rem 0 0.25rem;
    text-align: justify;
}

.product-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin: 0.65rem 0 1rem;
}

.product-detail-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.38rem 0.72rem;
    color: var(--text-light);
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(223, 159, 72, 0.28);
    border-radius: 999px;
    font-size: 0.84rem;
    font-weight: 600;
}

.product-detail-meta i {
    color: var(--gold);
}

.price-section {
    margin: 0;
}

.price-mrp {
    font-size: 1rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin: 0;
}

.price-badge {
    background: rgba(223, 159, 72, 0.2);
    color: var(--gold);
    padding: 0.3rem 0.8rem;
    border-radius: 3px;
    font-weight: 600;
    font-size: 0.8rem;
}

.price-offer {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 0.5px;
    margin: 0;
}

.price-saved {
    color: var(--success-green);
    font-weight: 600;
    font-size: 0.95rem;
    margin: 0;
}

/* Features */
.features-section {
    margin: 2rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.feature-box {
    text-align: center;
    padding: 1rem;
}

.feature-box-icon {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.feature-box-title {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.3;
}

/* Features List (Bullet Points) */
.features-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.8rem;
    margin: 1.5rem 0;
    padding: 0;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.85rem;
    text-align: center;
}

.feature-item i {
    color: var(--gold);
    font-size: 1.2rem;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Stock & Shipping */
.info-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 0 0 1.5rem 0;
}

.stock-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--success-green);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0;
}

.shipping-info {
    background: rgba(40, 167, 69, 0.1);
    border-left: 3px solid var(--success-green);
    padding: 10px;
    border-radius: 4px;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Action Buttons */
.action-buttons {
    display: block;
    margin-top: auto;
    padding-top: 0;
}

.btn-primary {
    width: 100%;
    background: var(--gold);
    color: var(--dark-bg);
    border: none;
    padding: 1rem;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.1);
}

.btn-secondary {
    flex: 1;
    background: transparent;
    color: var(--gold);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.btn-secondary:hover {
    background: rgba(223, 159, 72, 0.1);
    border-color: var(--gold-light);
    color: var(--gold-light);
}

.security-message {
    text-align: center;
    color: var(--text-gray);
    font-size: 0.85rem;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* ── NEW PRODUCT DETAIL CARDS ───────────────── */

/* Price card */
.pd-price-card {
    display: flex;
    align-items: center;
    border: 1px solid rgba(223,159,72,0.22);
    border-radius: 12px;
    padding: 0.85rem 1rem;
    margin: 0.9rem 0;
    gap: 0;
}
.pd-price-card--simple {
    justify-content: center;
}
.pd-price-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}
.pd-mrp {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}
.pd-mrp s {
    color: var(--text-gray);
    text-decoration-color: rgba(255,255,255,0.4);
}
.pd-off-badge {
    display: inline-block;
    background: rgba(223,159,72,0.18);
    color: var(--gold);
    border-radius: 6px;
    padding: 0.2rem 0.65rem;
    font-size: 0.78rem;
    font-weight: 700;
    width: fit-content;
}
.pd-price-vdiv {
    width: 1px;
    align-self: stretch;
    background: rgba(255,255,255,0.12);
    margin: 0 1rem;
}
.pd-price-right {
    flex: 1.1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.pd-offer {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1.2;
    font-family: 'Playfair Display', serif;
}
.pd-saved {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--success-green);
}

/* Features card */
.pd-features-card {
    display: flex;
    align-items: stretch;
    border: 1px solid rgba(223,159,72,0.22);
    border-radius: 12px;
    padding: 0.9rem 0.5rem;
    margin: 0 0 0.9rem;
    gap: 0;
}
.pd-feat-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
    padding: 0 0.3rem;
    text-align: center;
}
.pd-feat-col i {
    color: var(--gold);
    font-size: 1.3rem;
}
.pd-feat-col span {
    color: var(--text-light);
    font-size: 0.72rem;
    font-weight: 500;
    line-height: 1.3;
}
.pd-feat-vdiv {
    width: 1px;
    align-self: stretch;
    background: rgba(255,255,255,0.1);
    flex-shrink: 0;
}

/* Info card */
.pd-info-card {
    border: 1px solid rgba(223,159,72,0.22);
    border-radius: 12px;
    padding: 0.85rem 1rem;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.pd-stock {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--success-green);
}
.pd-stock-dot {
    font-size: 0.5rem !important;
    color: var(--success-green);
}
.pd-shipping {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(40,167,69,0.08);
    border-left: 3px solid var(--success-green);
    border-radius: 0 8px 8px 0;
    padding: 0.6rem 0.75rem;
    color: var(--text-light);
    font-size: 0.88rem;
}
.pd-shipping-icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Buy button */
.pd-buy-btn {
    width: 100%;
    background: linear-gradient(135deg, #d4982a 0%, #e8b44a 50%, #d4982a 100%);
    color: #1a1a2e;
    border: none;
    padding: 1.05rem 1rem;
    border-radius: 14px;
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 1.5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    transition: filter 0.2s ease, transform 0.15s ease;
    box-shadow: 0 4px 20px rgba(212,152,42,0.35);
}
.pd-buy-btn:hover  { filter: brightness(1.08); }
.pd-buy-btn:active { transform: scale(0.98); }

/* Next step hint */
.pd-next-step {
    text-align: center;
    color: var(--text-gray);
    font-size: 0.82rem;
    margin-top: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

/* ============================================
   ORDER FORM MODAL
   ============================================ */
.order-form-modal {
    background: var(--dark-secondary);
    border: 1px solid rgba(223, 159, 72, 0.28);
    border-radius: 12px;
    padding: 2.5rem;
    width: 100%;
    max-width: 550px;
}

.order-form-modal .modal-body {
    display: block;
    grid-template-columns: unset;
    gap: unset;
    padding: 0;
}

.form-title {
    font-size: 1.8rem;
    color: var(--gold);
    text-align: center;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.form-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
    letter-spacing: 0.5px;
}

.form-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.form-input-icon {
    position: absolute;
    left: 1rem;
    color: var(--gold);
    font-size: 1.1rem;
    pointer-events: none;
}

.form-input {
    width: 100%;
    padding: 0.9rem 1rem 0.9rem 2.8rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    border-radius: 4px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--gold-light);
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.1);
}

.form-input::placeholder {
    color: var(--text-gray);
}

textarea.form-input {
    resize: vertical;
    min-height: 100px;
    padding: 0.9rem 1rem;
    padding-left: 2.8rem;
}

.submit-btn {
    width: 100%;
    background: var(--gold);
    color: var(--dark-bg);
    border: none;
    padding: 1rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    margin-top: 1.5rem;
}

.submit-btn:hover:not(:disabled) {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.1);
}

.submit-btn:disabled {
    background: var(--text-gray);
    cursor: not-allowed;
    opacity: 0.7;
}

.form-security {
    text-align: center;
    color: var(--text-gray);
    font-size: 0.85rem;
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

/* ============================================
   FOOTER
   ============================================ */
.luxury-footer {
    background: var(--dark-secondary);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3.5rem 0 1.5rem;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

@media (max-width: 640px) {
    .footer-grid {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    .luxury-footer {
        padding: 2rem 0 1.2rem;
        margin-top: 2.5rem;
    }
    .footer-section h3 {
        margin-bottom: 0.5rem;
    }
}

.footer-section h3 {
    color: var(--gold);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    letter-spacing: 0.5px;
}

.footer-section p,
.footer-section a {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--gold);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--gold);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--dark-bg);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-links {
    color: var(--text-gray);
    font-size: 0.85rem;
}

.footer-links a {
    color: var(--text-gray);
    transition: color 0.3s ease;
    margin: 0 1rem;
}

.footer-links a:hover {
    color: var(--gold);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 300px));
    }

    .modal-body {
        grid-template-columns: 1fr;
    }

    .main-image {
        height: 350px;
    }

    .hero-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .product-detail-modal,
    .order-form-modal {
        padding: 0 !important;
    }

    .product-detail-modal .modal-body,
    .modal-body {
        padding: 15px !important;
        gap: 1rem;
    }

    .section-header {
        margin-bottom: 1rem;
    }

    .product-code-badge {
        top: 8px;
        right: 8px;
        padding: 0.2rem 0.35rem;
        gap: 0px;
        border-radius: 5px;
    }

    .product-code-badge span {
        display: none;
    }

    .product-code-badge strong {
        font-size: 0.32rem;
        letter-spacing: 0.04em;
    }

    .mobile-menu {
        display: none !important;
    }

    .mobile-menu.active {
        display: flex !important;
    }

    .menu-toggle {
        display: block;
    }

    .luxury-header {
        padding: 0;
        display: flex;
        flex-direction: column;
    }

    .header-container {
        padding: 1rem 2rem;
        flex-wrap: wrap;
    }

    .header-right {
        width: 100%;
        order: 2;
        flex-direction: column;
        gap: 1rem;
        padding: 0 2rem 1rem 2rem;
        margin-top: 1rem;
    }

    .search-box {
        width: 100% !important;
        order: 1;
    }

    .search-box input {
        width: 100% !important;
    }

    .icon-btn {
        width: auto;
        align-self: flex-start;
    }


    .nav-menu {
        display: none;
    }

    .menu-toggle {
        display: block;
        width: 30px;
        height: 24px;
        background: transparent;
        border: none;
        cursor: pointer;
        position: relative;
        padding: 0;
    }

    .menu-toggle span {
        display: block;
        height: 2px;
        background: var(--gold);
        border-radius: 1px;
        position: absolute;
        left: 0;
        transition: all 0.3s ease;
    }

    .menu-toggle span:nth-child(1) {
        top: 0;
        width: 100%;
        animation: none;
    }

    .menu-toggle span:nth-child(2) {
        top: 50%;
        transform: translateY(-50%);
        width: 70%;
        animation: none;
    }

    .menu-toggle span:nth-child(3) {
        bottom: 0;
        width: 85%;
        animation: none;
    }

    /* Hamburger animation when menu is active */
    #mobileMenu.active ~ .menu-toggle span:nth-child(1) {
        animation: topLineRotate 0.4s ease-in-out forwards;
    }

    #mobileMenu.active ~ .menu-toggle span:nth-child(2) {
        animation: middleLineFade 0.4s ease-in-out forwards;
    }

    #mobileMenu.active ~ .menu-toggle span:nth-child(3) {
        animation: bottomLineRotate 0.4s ease-in-out forwards;
    }

    @keyframes topLineRotate {
        0% {
            transform: translateY(0) rotate(0deg);
        }
        100% {
            transform: translateY(10px) rotate(45deg);
        }
    }

    @keyframes middleLineFade {
        0% {
            opacity: 1;
            width: 70%;
        }
        100% {
            opacity: 0;
            width: 0%;
        }
    }

    @keyframes bottomLineRotate {
        0% {
            transform: translateY(0) rotate(0deg);
        }
        100% {
            transform: translateY(-10px) rotate(-45deg);
        }
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .product-card {
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    }

    .product-image-wrapper {
        padding: 4px;
        margin-bottom: 0.2rem;
    }

    .product-info {
        padding: 0.05rem 0.6rem 0.6rem 0.6rem;
    }

    .product-title {
        font-size: 0.7rem;
        margin-bottom: 0.15rem;
        line-height: 1.15;
    }

    .product-price-original {
        font-size: 0.55rem;
        margin-right: 0.15rem;
    }

    .product-discount {
        font-size: 0.5rem;
        padding: 0.08rem 0.25rem;
    }

    .product-price-offer {
        font-size: 0.85rem;
        margin-top: 0.15rem;
    }

    .product-pricing {
        margin-bottom: 0.3rem;
    }

    .buy-btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.75rem;
        gap: 0.3rem;
        letter-spacing: 0.3px;
    }

    .modal-wrapper {
        width: 95vw;
        max-width: 95vw;
    }

    .modal-content {
        width: 95vw;
        max-width: 95vw;
    }

    .product-detail-modal,
    .order-form-modal,
    .contact-modal {
        width: 100%;
        max-width: 100%;
        padding: 1.5rem;
    }

    .contact-modal [style*="flex-direction: column"] > div {
        padding: 1rem !important;
        min-width: 0;
    }

    .contact-modal .modal-body > div:nth-child(2) {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: unset !important;
    }

    .hero-discount {
        font-size: 2.5rem;
    }

    .hero-offer {
        font-size: 1.8rem;
    }

    .hero-bg {
        width: 100%;
        opacity: 0.3;
    }

    .hero-content {
        margin-left: 1.5rem;
        max-width: 100%;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .sort-filter {
        justify-content: center;
        margin-bottom: 1.5rem;
    }

    .hero-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .modal-content {
        max-width: 95vw;
        max-height: 95vh;
    }

    .product-detail-modal {
        max-width: 100%;
    }

    .modal-body {
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .order-form-modal {
        max-width: 100%;
        padding: 1.5rem;
    }

    .search-box {
        width: 150px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .logo {
        margin: 0 !important;
        padding: 0 !important;
    }

    .logo-image {
        height: 60px;
        width: 120px;
    }

    .hero-discount {
        font-size: 2rem;
    }

    .hero-offer {
        font-size: 1.4rem;
    }

    .hero-features {
        grid-template-columns: 1fr 1fr;
        gap: 0.8rem;
    }

    .section-title {
        font-size: 1.3rem;
    }

    .nav-menu {
        gap: 1rem;
        font-size: 0.85rem;
    }

    .products-grid {
        gap: 0.8rem;
    }

    .product-info {
        padding: 0.05rem 0.5rem 0.4rem 0.5rem;
    }

    .product-title {
        font-size: 0.65rem;
        margin-bottom: 0.08rem;
        line-height: 1.1;
    }

    .product-price-original {
        font-size: 0.5rem;
    }

    .product-discount {
        font-size: 0.45rem;
        padding: 0.08rem 0.2rem;
    }

    .product-price-offer {
        font-size: 0.8rem;
        margin-top: 0.1rem;
    }

    .product-pricing {
        margin-bottom: 0.25rem;
    }

    .buy-btn {
        padding: 0.4rem 0.6rem;
        font-size: 0.65rem;
        gap: 0.2rem;
        letter-spacing: 0.2px;
    }

    .action-buttons {
        flex-direction: column;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    /* Mobile search bar - full width below header */
    .luxury-header {
        padding: 0;
        display: flex;
        flex-direction: column;
    }

    .header-container {
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0.5rem 15px !important;
        flex-wrap: wrap;
    }

    .header-right {
        width: 100%;
        order: 2;
        flex-direction: column;
        gap: 0.5rem;
        padding: 0 !important;
        margin: 0 !important;
    }

    .search-box {
        width: 100% !important;
        order: 1;
        background: transparent !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        border-radius: 0 !important;
        padding: 0.5rem 0.5rem 0.5rem 2rem !important;
        margin: 0 !important;
    }

    .search-box input {
        width: 100% !important;
        padding: 0.5rem 0.6rem 0.5rem 0 !important;
        font-size: 0.85rem;
    }

    .search-icon {
        left: 0.8rem !important;
    }

    .icon-btn {
        width: auto;
        align-self: flex-start;
    }

    #searchDropdown {
        max-height: 300px !important;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.loading-spinner {
    width: 30px;
    height: 30px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.text-center {
    text-align: center;
}

.mt-3 {
    margin-top: 2rem;
}

.mb-3 {
    margin-bottom: 2rem;
}

/* Products Grid Mobile Breakpoints */
@media (max-width: 576px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .featured-section,
    .about-section {
        padding: 0 15px;
        margin-top: 2rem;
    }
}

@media (max-width: 360px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.4rem;
    }
}

@media (max-width: 240px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 0.3rem;
    }
}

/* Smooth Scrolling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-light);
}
