html {
    scroll-behavior: smooth;
}

:root {
    --primary-color: #000000;
    --text-color: #1a1a1a;
    --light-text: #666666;
    --bg-color: #ffffff;
    --accent-gold: #c5a059;
    --whatsapp-green: #25d366;
    --transition: all 0.4s ease;
    --header-height: 80px;
    --top-bar-height: 40px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Top Announcement Bar */
.top-bar {
    height: var(--top-bar-height);
    background-color: #1a1a1a;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Header */
.main-header {
    height: var(--header-height);
    background: white;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #f0f0f0;
}

.header-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: #4a3728;
}

.nav-menu ul {
    display: flex;
    gap: 40px;
}

.nav-menu ul li a {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #333;
    text-transform: uppercase;
}

.nav-menu ul li a:hover,
.nav-menu ul li a.active {
    color: var(--accent-gold);
}

.header-actions {
    display: flex;
    gap: 25px;
    font-size: 1.1rem;
}

/* Hero Slider - Optimized for 2048x1151 */
.hero {
    width: 100%;
    aspect-ratio: 2048 / 1151;
    max-width: 2048px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    background-color: #ffffff;
}

.hero-slider {
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: var(--bg);
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.slide.active {
    opacity: 1;
}

@media (max-width: 768px) {
    .hero {
        aspect-ratio: 9 / 16;
        /* Portrait for mobile */
    }

    .slide {
        background-image: var(--mobile-bg);
        background-size: cover;
        /* Cover better for mobile aspect ratios */
    }

    .featured-container {
        flex-direction: column;
    }
}

/* Brand Strip / Marquee */
.brand-strip {
    padding: 60px 0;
    background: #fff;
    overflow: hidden;
    border-bottom: 1px solid #f5f5f5;
}

.marquee {
    display: flex;
    overflow: hidden;
    user-select: none;
}

.marquee-content {
    display: flex;
    gap: 80px;
    animation: scroll 30s linear infinite;
    align-items: center;
}

.marquee-content span {
    font-size: 2rem;
    color: #1a1a1a;
    letter-spacing: 4px;
    white-space: nowrap;
    font-weight: 900;
    font-family: 'Plus Jakarta Sans', sans-serif;
    /* High-end modern font */
}

/* Slogan Strip */
.slogan-strip {
    background: #000;
    padding: 25px 0;
    overflow: hidden;
}

.slogan-strip .marquee-content {
    animation-duration: 20s;
}

.slogan-strip .marquee-content span {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
}

/* Different Font Styles */
.font-serif {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.font-sans {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 300;
    letter-spacing: 6px;
}

.font-display {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
}

.font-script {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    letter-spacing: -1px;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* Featured Section */
.featured-section {
    padding: 40px 0 100px;
}

.featured-container {
    display: flex;
    gap: 20px;
}

.featured-card {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.5s ease;
}

.featured-card:hover {
    transform: translateY(-10px);
}

.featured-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Match Section */
.match-section {
    padding: 100px 0 60px;
}

.section-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 60px;
    letter-spacing: 2px;
}

.match-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.match-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 550px;
}

.match-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.match-card:hover img {
    transform: scale(1.08);
}

.match-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: white;
    padding: 12px 25px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Video Section */
.video-section {
    padding: 20px 0 100px;
}

.video-container {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 30px;
}

.brand-video {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    display: block;
}

/* Collection Section */
.collection-section {
    padding: 60px 0 120px;
}

.filter-controls {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
}

.filter-btn {
    background: none;
    border: none;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #999;
    cursor: pointer;
    padding: 8px 0;
    position: relative;
    transition: all 0.3s ease;
}

.filter-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #1a1a1a;
    transition: width 0.3s ease;
}

.filter-btn.active {
    color: #1a1a1a;
}

.filter-btn.active::after {
    width: 100%;
}

.filter-btn:hover {
    color: #1a1a1a;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 40px;
}

.product-card {
    background: #fff;
    transition: transform 0.4s ease, opacity 0.4s ease;
    text-align: center;
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-img-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #f9f9f9;
    padding: 20px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.product-img-wrapper img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    transition: transform 0.6s ease;
}

.product-card:hover .product-img-wrapper img {
    transform: scale(1.1);
}

.product-info {
    padding: 0 10px;
}

.product-name {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #1a1a1a;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.product-brand {
    font-size: 0.75rem;
    color: #888;
    margin-bottom: 10px;
    letter-spacing: 1.5px;
}

.product-price {
    font-size: 0.95rem;
    color: #333;
}

.price-original {
    text-decoration: line-through;
    color: #999;
    font-size: 0.8rem;
    margin-right: 8px;
}

.price-current {
    font-weight: 700;
}

.sale-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #e74c3c;
    color: white;
    padding: 4px 10px;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 4px;
    z-index: 10;
}

.product-inspiration {
    font-size: 0.7rem;
    color: #666;
    margin-bottom: 8px;
    font-style: italic;
}

/* Vision & Mission Section */
.vision-mission {
    padding: 100px 0;
    background-color: #fcfcfc;
}

.text-center-section {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.extra-large-title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 50px;
    color: #000;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.content-block {
    margin-bottom: 60px;
}

.content-block h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

.content-block h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--accent-gold);
}

.content-block p {
    font-size: 1.3rem;
    color: #444;
    line-height: 1.8;
    font-weight: 400;
}

@media (max-width: 768px) {
    .extra-large-title {
        font-size: 2rem;
    }

    .content-block h3 {
        font-size: 1.5rem;
    }
}

/* Responsive Grid */
@media (max-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .product-name {
        font-size: 0.85rem;
    }
}

/* WhatsApp Button */
.whatsapp-sticky {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 1100;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.chat-text {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--whatsapp-green);
    text-transform: uppercase;
}

.whatsapp-btn {
    width: 60px;
    height: 60px;
    background-color: var(--whatsapp-green);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s ease;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 1024px) {
    .nav-menu {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 60vh;
        /* Better for mobile to avoid tiny image */
    }
}

/* Footer */
footer {
    background-color: #000;
    color: #fff;
    padding: 80px 0 40px;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .logo-text {
    color: #fff;
    font-size: 1.8rem;
}

.footer-brand p {
    margin-top: 20px;
    color: #888;
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-column h4 {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 30px;
    text-transform: uppercase;
    color: #fff;
}

.footer-column ul li {
    margin-bottom: 15px;
}

.footer-column ul li a {
    color: #888;
    font-size: 0.9rem;
}

.footer-column ul li a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    border-top: 1px solid #222;
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: #555;
    font-size: 0.8rem;
}

@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 120px 0;
    background-color: #fff;
}

.testimonial-header {
    text-align: center;
    margin-bottom: 80px;
}

.testimonial-subtitle {
    display: block;
    color: #e74c3c;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.testimonial-header .section-title {
    font-size: 3rem;
    margin-bottom: 25px;
    text-transform: capitalize;
}

.section-description {
    max-width: 650px;
    margin: 0 auto;
    color: #666;
    line-height: 1.8;
}

.testimonial-carousel {
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    padding: 20px 10px 40px;
}

.testimonial-track {
    display: flex;
    gap: 30px;
    transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
}

.testimonial-card {
    min-width: calc(33.333% - 20px);
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

.testimonial-stars {
    color: #e74c3c;
    margin-bottom: 20px;
    font-size: 0.8rem;
}

.testimonial-text {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 30px;
    flex-grow: 1;
}

.testimonial-author {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1a1a1a;
}


.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.carousel-controls button {
    background: #000;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.carousel-controls button:hover {
    background: #e74c3c;
    transform: scale(1.1);
}

.dots {
    display: flex;
    gap: 12px;
}

.dot {
    width: 8px;
    height: 8px;
    background: #ddd;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #e74c3c;
    width: 20px;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .testimonial-text {
        font-size: 1.2rem;
    }

    .testimonial-card {
        padding: 20px;
    }
}

@media (max-width: 1024px) {
    .testimonial-card {
        min-width: calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .testimonial-card {
        min-width: 100%;
    }

    .testimonial-header .section-title {
        font-size: 2.2rem;
    }
}

/* About Us Section */
.about-section {
    padding: 120px 0;
    background: #fff;
    overflow: hidden;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 80px;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    display: block;
}

/* Subtle accent for image */
.about-image::after {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    border-top: 2px solid var(--accent-gold);
    border-left: 2px solid var(--accent-gold);
    z-index: -1;
}

.about-content {
    flex: 1;
}

.about-subtitle {
    display: block;
    color: var(--accent-gold);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.about-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 35px;
    color: #000;
}

.about-text {
    font-size: 1.15rem;
    color: #444;
    line-height: 1.9;
    font-weight: 400;
}

@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
        gap: 60px;
        text-align: center;
    }

    .about-image img {
        max-width: 600px;
        margin: 0 auto;
    }

    .about-subtitle {
        margin-bottom: 15px;
    }

    .about-title {
        font-size: 2.2rem;
        margin-bottom: 25px;
    }
}

/* Store Timing Section */
.store-section {
    padding: 100px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.store-card {
    background: #fff;
    max-width: 600px;
    margin: 0 auto;
    padding: 60px 40px;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
}

.store-card h3 {
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.store-address {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 40px;
}

.store-timings {
    margin-bottom: 50px;
}

.timing-row {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.timing-row span:first-child {
    font-weight: 600;
    color: #333;
}

.directions-btn {
    display: inline-block;
    background: #111;
    color: #fff;
    padding: 18px 45px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-radius: 2px;
}

.directions-btn:hover {
    background: #e74c3c;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.store-socials {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid #f2f2f2;
}

.store-socials a {
    color: #111;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.store-socials a:hover {
    color: #e74c3c;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .store-section {
        padding: 80px 20px;
    }

    .store-card {
        padding: 40px 20px;
    }
}

/* Product Detail Page Styles */
.product-detail-main {
    padding: 80px 0;
    background: #fff;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: start;
}

.product-gallery {
    position: sticky;
    top: 120px;
}

.main-image {
    background: #f9f9f9;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.main-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.breadcrumb {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #999;
    margin-bottom: 25px;
}

.breadcrumb a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: #000;
}

.product-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.product-subtitle {
    font-size: 1rem;
    color: #666;
    letter-spacing: 1px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.product-pricing {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
}

.product-pricing .price-current {
    font-size: 1.8rem;
    font-weight: 700;
    color: #000;
}

.product-pricing .price-original {
    font-size: 1.2rem;
    color: #bbb;
    text-decoration: line-through;
}

.product-pricing .discount-percent {
    background: #e74c3c;
    color: #fff;
    padding: 4px 10px;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 2px;
}

.product-description {
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 40px;
}

.purchase-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

.quantity-selector {
    display: flex;
    border: 1px solid #e5e5e5;
    height: 55px;
}

.qty-btn {
    background: none;
    border: none;
    width: 45px;
    cursor: pointer;
    font-size: 1.2rem;
    color: #666;
    transition: background 0.3s;
}

.qty-btn:hover {
    background: #f5f5f5;
}

.qty-input {
    width: 50px;
    border: none;
    text-align: center;
    font-weight: 700;
    font-size: 1rem;
    appearance: none;
    -webkit-appearance: none;
}

.add-to-cart-btn {
    flex: 1;
    background: #000;
    color: #fff;
    border: none;
    font-weight: 700;
    letter-spacing: 3px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.4s;
}

.add-to-cart-btn:hover {
    background: #e74c3c;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(231, 76, 60, 0.2);
}

.product-tabs {
    border-top: 1px solid #eee;
    padding-top: 40px;
}

.tab-item {
    margin-bottom: 40px;
}

.tab-item h3 {
    font-size: 0.85rem;
    letter-spacing: 3px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 25px;
    color: #000;
}

.notes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.note-box {
    background: #fcfcfc;
    border: 1px solid #f2f2f2;
    padding: 20px;
    border-radius: 8px;
}

.note-label {
    display: block;
    font-size: 0.65rem;
    text-transform: uppercase;
    font-weight: 800;
    color: #aaa;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.note-box p {
    font-size: 0.85rem;
    font-weight: 600;
    color: #333;
}

.profile-list {
    list-style: none;
}

.profile-list li {
    font-size: 0.9rem;
    margin-bottom: 12px;
    border-bottom: 1px solid #fafafa;
    padding-bottom: 8px;
}

.profile-list li strong {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: #999;
    width: 120px;
    display: inline-block;
}

@media (max-width: 991px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .product-gallery {
        position: static;
    }

    .product-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .notes-grid {
        grid-template-columns: 1fr;
    }
}

/* Header Action Badges */
.cart-trigger {
    position: relative;
    text-decoration: none;
    color: inherit;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: #e74c3c;
    color: #fff;
    font-size: 0.6rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    justify-content: center;
    padding-top: 100px;
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-container {
    width: 100%;
    max-width: 800px;
    padding: 0 20px;
}

.search-header {
    display: flex;
    align-items: center;
    border-bottom: 2px solid #000;
    padding-bottom: 10px;
    margin-bottom: 40px;
}

.search-header input {
    flex: 1;
    border: none;
    background: none;
    font-size: 2rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    outline: none;
}

.close-search {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 10px;
}

.search-results {
    max-height: 60vh;
    overflow-y: auto;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s;
}

.search-result-item:hover {
    transform: translateX(10px);
}

.search-result-item img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    background: #f9f9f9;
    border-radius: 4px;
}

.search-result-info h4 {
    font-size: 1rem;
    margin-bottom: 3px;
}

.search-result-info p {
    font-size: 0.75rem;
    color: #888;
}

/* Cart Drawer */
.cart-drawer {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100%;
    background: #fff;
    z-index: 2001;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
}

.cart-drawer.active {
    right: 0;
}

.cart-drawer-header {
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
}

.cart-drawer-header h3 {
    font-size: 0.9rem;
    letter-spacing: 3px;
    font-weight: 800;
}

.close-cart {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 30px;
}

.cart-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f9f9f9;
}

.cart-item-img {
    width: 80px;
    height: 80px;
    background: #fcfcfc;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item-img img {
    width: 90%;
    height: auto;
}

.cart-item-details {
    flex: 1;
}

.cart-item-details h4 {
    font-size: 0.85rem;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.cart-item-price {
    font-size: 0.8rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 10px;
}

.qty-control {
    background: none;
    border: 1px solid #eee;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.8rem;
}

.remove-item {
    background: none;
    border: none;
    color: #aaa;
    font-size: 0.7rem;
    cursor: pointer;
    text-decoration: underline;
    margin-top: 10px;
}

.cart-footer {
    padding: 30px;
    background: #fcfcfc;
    border-top: 1px solid #eee;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 1.1rem;
}

.promo-section {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.promo-section input {
    flex: 1;
    border: 1px solid #eee;
    padding: 10px;
    font-size: 0.8rem;
    outline: none;
}

.promo-section button {
    padding: 10px 20px;
    background: #000;
    color: #fff;
    border: none;
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 1px;
    cursor: pointer;
}

.promo-section button:hover {
    background: #444;
}

.checkout-btn {
    width: 100%;
    padding: 18px;
    background: #000;
    color: #fff;
    border: none;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s;
}

.checkout-btn:hover {
    background: #e74c3c;
}

.empty-cart-msg {
    text-align: center;
    padding: 50px 0;
    color: #999;
    font-style: italic;
}

/* Drawer Overlay */
.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 480px) {
    .cart-drawer {
        width: 100%;
        right: -100%;
    }
}

/* HIGH PRIORITY MOBILE OVERRIDES */
@media (max-width: 900px) {
    .match-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
    }

    .match-card {
        width: 100% !important;
        height: 400px !important;
        margin-bottom: 20px !important;
    }

    .match-label {
        font-size: 1.2rem !important;
        bottom: 20px !important;
        left: 20px !important;
        padding: 15px 30px !important;
    }

    .section-title {
        font-size: 2.2rem !important;
        margin-bottom: 40px !important;
    }
}

/* Checkout Modal */
.checkout-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.checkout-modal.active {
    display: flex;
}

.modal-content {
    background: #fff;
    width: 100%;
    max-width: 500px;
    padding: 40px;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.modal-header h3 {
    font-size: 1.2rem;
    letter-spacing: 2px;
    font-weight: 800;
}

.close-modal {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #999;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: #555;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.3s;
}

.form-group textarea {
    height: 80px;
    resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #000;
}

.confirm-order-btn {
    width: 100%;
    padding: 15px;
    background: #25d366;
    /* WhatsApp Green */
    color: #fff;
    border: none;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.3s;
    margin-top: 10px;
}

.confirm-order-btn:hover {
    background: #128c7e;
}

@media (max-width: 480px) {
    .modal-content {
        padding: 30px 20px;
    }
}