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

:root {
    --primary: #d3b47d;
    /* Lighter Gold */
    --secondary: #d3b47d;
    /* Button/Theme Gold */
    --text-dark: #1F2937;
    /* Kept for dark elements if needed */
    --bg-light: #F9FAFB;
    --accent: #FDF4F5;
    /* Soft Blush */
    --text-main: #111827;
    --text-light: #6B7280;
    --white: #FFFFFF;
    --transition: cubic-bezier(0.4, 0, 0.2, 1) 0.5s;
    --shadow: 0 10px 30px rgba(31, 41, 55, 0.08);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    text-transform: none;
    letter-spacing: -0.02em;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Top Announcement Bar */
.top-bar {
    background: #000;
    color: #fff;
    padding: 10px 0;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
}

.top-bar-content {
    display: flex;
    justify-content: center;
    gap: 40px;
}

/* Redesigned Header - AVONE Style */
header {
    background: #fff;
    position: relative;
    /* Not fixed by default for this style, but can be sticky */
    width: 100%;
    z-index: 2000;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: var(--transition);
}

header.sticky {
    position: fixed;
    top: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    flex: 0 0 200px;
    /* Force size to keep layout stable */
}

.logo img {
    height: 45px;
    display: block;
}

.header-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-links {
    display: flex;
    gap: 20px;
    list-style: none;
    align-items: center;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: #000;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
    padding: 10px 0;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.search-item-mobile {
    display: none !important;
}

.nav-links a:hover {
    color: var(--primary);
}

.dropdown-icon {
    font-size: 0.8em;
    margin-left: 6px;
    transition: transform 0.3s ease;
}

.has-dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

.header-right {
    flex: 0 0 200px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}

.header-icon {
    color: #333;
    font-size: 1.1rem;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
}

.header-icon.whatsapp {
    color: #25D366;
}

.header-icon.instagram {
    color: #E1306C;
}

.header-icon:hover {
    transform: scale(1.1);
}

.header-search-trigger {
    background: none;
    border: none;
    padding: 0;
}

/* --- Desktop Header & Navigation --- */
@media (min-width: 993px) {
    header {
        position: relative;
        padding: 15px 0;
    }

    .header-search {
        position: relative;
        max-width: 200px;
    }

    .dropdown {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%) translateY(15px);
        background: #fff;
        min-width: 250px;
        box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        padding: 20px 0;
        z-index: 2100;
        border: 1px solid #f5f5f5;
        list-style: none;
    }

    .has-dropdown:hover .dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }

    .dropdown a {
        color: #666;
        padding: 12px 25px;
        display: block;
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        font-weight: 500;
        text-align: left;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .dropdown a:hover {
        color: #000;
        background: #f9f9f9;
        padding-left: 30px;
    }
}

/* Mobile Utilities */
.mobile-only {
    display: none !important;
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2500;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 992px) {
    .mobile-only {
        display: block !important;
    }

    .mobile-only-flex {
        display: flex !important;
    }

    /* Mobile Menu Toggle */
    .menu-toggle {
        display: block;
    }

    .logo {
        flex: 1;
    }

    .header-right {
        flex: 0 0 auto;
    }

    /* Mobile Drawer */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 310px;
        height: 100vh;
        background: #fff;
        z-index: 3000;
        display: block !important;
        /* Block is safer for overflow scrolling */
        padding: 20px 20px 100px 20px;
        /* Extra bottom padding for reachability */
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch;
    }

    .nav-links.active {
        right: 0;
    }

    .close-menu-item {
        display: flex !important;
        justify-content: flex-end;
        padding: 0 !important;
        margin-bottom: 0 !important;
    }

    .close-menu-btn {
        background: none;
        border: none;
        font-size: 1.5rem;
        color: #333;
        cursor: pointer;
        padding: 5px;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-links li {
        width: 100%;
        margin: 0;
    }

    .nav-links a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 10px;
        border-bottom: 1px solid #f5f5f5;
        font-size: 0.95rem;
        color: #333;
        width: 100%;
    }

    .dropdown-icon {
        font-size: 0.8rem;
        transition: 0.3s ease;
    }

    .has-dropdown.active>a .dropdown-icon {
        transform: rotate(180deg);
    }

    /* Mobile Dropdown Logic */
    .dropdown {
        display: block !important;
        position: static;
        width: 100%;
        transform: none;
        box-shadow: none;
        border: none;
        background: #fcfcfc;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        padding: 0;
        visibility: hidden;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
        list-style: none;
    }

    .has-dropdown.active>.dropdown {
        max-height: 1500px;
        opacity: 1;
        visibility: visible;
        padding: 5px 0 15px 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .dropdown li a {
        display: block !important;
        padding: 12px 20px 12px 40px !important;
        font-size: 0.9rem !important;
        color: #666 !important;
        border: none !important;
        text-transform: none !important;
        letter-spacing: 0 !important;
        font-weight: 400 !important;
        white-space: normal !important;
        text-align: left !important;
        text-decoration: none;
    }

    .dropdown li a:active {
        background: #f5f5f5;
    }

    /* Mobile Search */
    .search-item-mobile {
        margin-bottom: 15px !important;
    }

    .mobile-search-form {
        position: relative;
        width: 100%;
    }

    .mobile-search-form input {
        width: 100%;
        padding: 12px 40px 12px 20px;
        border: 1px solid #eee;
        border-radius: 30px;
        background: #f9f9f9;
        font-size: 0.9rem;
        outline: none;
    }

    .mobile-search-form button {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        background: none;
        border: none;
        color: #999;
    }

    .header-search {
        display: none !important;
    }

    .search-toggle-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        cursor: pointer;
        color: var(--secondary);
    }
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: #000;
}

.search-toggle-btn {
    display: none;
}

/* Redundant global rules removed as they are now scoped in media queries */

/* Inline Search Box */
.header-search {
    position: relative;
    max-width: 200px;
}

.header-search input {
    width: 100%;
    padding: 8px 35px 8px 15px;
    border: 1px solid #eee;
    background: #f9f9f9;
    font-size: 0.8rem;
    border-radius: 20px;
    outline: none;
    transition: all 0.3s ease;
}

.header-search input:focus {
    border-color: var(--primary);
    background: #fff;
    width: 250px;
}

.header-search button {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
}

.header-search button:hover {
    color: var(--primary);
}

/* Hero Slider */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    color: var(--white);
}

.slider-container {
    height: 100%;
    width: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 2.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.slide.active {
    opacity: 1;
}

.slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.4), rgba(15, 23, 42, 0.8));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 5;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
    transform: translateY(30px);
    opacity: 0;
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0.5s;
}

.slide.active .hero-content {
    transform: translateY(0);
    opacity: 1;
}

.hero-content h1 {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--white);
    font-weight: 400;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.5px;
}

.slider-dots {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
}

.dot {
    width: 30px;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary);
    width: 50px;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    z-index: 10;
    pointer-events: none;
}

.nav-arrow {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: rgba(15, 23, 42, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: var(--transition);
    pointer-events: auto;
    backdrop-filter: blur(10px);
}

.nav-arrow:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.1);
}

.nav-arrow i {
    font-size: 1.2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 45px;
    background-color: var(--secondary);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 0;
    transition: var(--transition);
    border: 1px solid var(--secondary);
}

.btn:hover {
    background-color: transparent;
    color: var(--secondary);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--secondary);
}

/* Floating Sections */
section {
    padding: 80px 0;
}

.section-title {
    margin-bottom: 80px;
    text-align: center;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--secondary);
    display: inline-block;
    position: relative;
}

.section-title h2::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
    background: var(--primary);
}

/* Products Layout */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

@media (max-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

/* Premium Product Card Redesign */
.product-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.product-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 400px;
    background: #fff;
    /* White background for contain images */
    padding: 0;
    /* Removing padding to maximize image size */
    /* Taller, elegant aspect ratio */
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Show full image */
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

/* Floating Actions on Hover */
.floating-actions {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
}

.product-card:hover .floating-actions {
    opacity: 1;
    transform: translateX(0);
}

.icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    transition: all 0.3s ease;
}

.icon-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

.icon-btn.whatsapp i {
    color: #25D366;
}

.icon-btn.whatsapp:hover {
    background: #25D366;
    color: white;
}

.icon-btn.whatsapp:hover i {
    color: white;
}

.icon-btn.instagram i {
    color: #E1306C;
}

.icon-btn.instagram:hover {
    background: #E1306C;
    color: white;
}

.icon-btn.instagram:hover i {
    color: white;
}

.product-details {
    padding: 20px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.brand-tag {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 8px;
    display: block;
    font-weight: 600;
}

.product-card h3 {
    font-family: 'Tenor Sans', sans-serif;
    font-size: 1.1rem;
    color: #000 !important;
    /* FORCE BLACK */
    margin-bottom: 5px;
    font-weight: 700;
    /* Bolder */
}

.product-card h3 a {
    color: #000 !important;
    /* FORCE BLACK */
    text-decoration: none;
    transition: color 0.3s;
}

.product-card h3 a:hover {
    color: var(--primary) !important;
}

.product-footer {
    padding: 0 20px 20px;
    text-align: center;
}

.btn-view {
    display: block;
    width: 100%;
    padding: 12px 0;
    border: 1px solid #eee;
    background: transparent;
    color: var(--text-light);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-view:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

/* About Grid */
.about-content {
    display: flex;
    gap: 100px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 0;
}

.about-image::after {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--primary);
    z-index: -1;
}

/* Brands Section Redesign */
.brands {
    background: #f8fafc;
    /* Much lighter, cleaner background */
    padding: 100px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.brands .section-title h2 {
    color: var(--secondary);
}

.brand-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 60px;
}

/* Instagram Section */
.instagram-section {
    background: #fff;
    padding: 100px 0;
}

.insta-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    margin-top: 40px;
}

.insta-item {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
    cursor: pointer;
}

.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.insta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    opacity: 0;
    transition: 0.3s ease;
}

.insta-item:hover .insta-overlay {
    opacity: 1;
}

.insta-item:hover img {
    transform: scale(1.1);
}

@media (max-width: 992px) {
    .insta-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 576px) {

    /* Brands Scrollable */
    .brand-list {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 20px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .brand-list::-webkit-scrollbar {
        display: none;
    }

    .brand-item {
        flex: 0 0 auto;
        width: 120px;
        /* Fixed width for better scrolling */
    }

    /* Instagram Scrollable */
    .insta-grid {
        display: flex;
        overflow-x: auto;
        gap: 15px;
        padding-bottom: 20px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        margin-top: 20px;
    }

    .insta-grid::-webkit-scrollbar {
        display: none;
    }

    .insta-item {
        flex: 0 0 150px;
        /* Fixed width for mobile items */
        width: 150px;
        aspect-ratio: 1/1;
    }
}

.brand-item {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.brand-item img {
    max-height: 55px;
    filter: none;
    opacity: 0.8;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.brand-item:hover {
    transform: translateY(-5px);
}

.brand-item:hover img {
    filter: brightness(1.1);
    opacity: 1;
    /* Slightly brighter on hover */
}

/* Modern Review Cards */
.review-card {
    background: var(--white);
    padding: 40px;
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    text-align: center;
}

.reviewer-name {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    display: block;
    margin-top: 25px;
    color: var(--primary);
}

/* Improved Premium Footer */
footer {
    padding: 100px 0 40px;
    background: #111;
    color: var(--white);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 60px;
    margin-bottom: 80px;
}

.footer-col h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 1px;
    background: var(--primary);
}

.footer-col p {
    font-size: 0.9rem;
    opacity: 0.6;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.6;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary);
    padding-left: 5px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-5px);
}

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

.footer-bottom p {
    font-size: 0.8rem;
    opacity: 0.4;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .about-content {
        flex-direction: column;
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    header {
        padding: 15px 0;
    }
}

/* Wholesale Badge & Brand-Forward Card */
.wholesale-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary);
    color: var(--white);
    padding: 6px 12px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(159, 107, 107, 0.3);
}

.brand-tag {
    font-family: 'Tenor Sans', sans-serif;
    font-size: 1rem !important;
    color: var(--primary) !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px !important;
    display: block;
    opacity: 1 !important;
    text-decoration: none;
}

.product-details h3 a {
    text-decoration: none;
    color: var(--secondary);
    transition: var(--transition);
}

.product-details h3 a:hover {
    color: var(--primary);
}

.product-category {
    color: rgba(0, 0, 0, 0.4) !important;
    font-size: 0.75rem !important;
    opacity: 0.8;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Grid 5 Layout for Catalog Pages */
.grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    margin-top: 40px;
}

@media (max-width: 1400px) {
    .grid-5 {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1100px) {
    .grid-5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 800px) {
    .grid-5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .grid-5 {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

/* Adjusting card height for tighter grids */
.grid-5 .product-image {
    height: 300px;
}

.grid-5 .product-details {
    padding: 20px;
}

.grid-5 .product-card h3 {
    font-size: 1rem;
}

/* Mobile Header & Top Bar Fixes */
@media (max-width: 992px) {
    .header-search {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 15px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        display: none !important;
        z-index: 1000;
    }

    .header-search.active {
        display: flex !important;
    }

    .header-search input {
        max-width: none;
        flex: 1;
    }

    .search-toggle-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        cursor: pointer;
        color: var(--secondary);
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 10px;
    }

    /* Top Bar: Show only the first message to save space */
    .top-bar-content {
        gap: 0;
        display: block;
    }

    .top-bar-content span {
        display: none;
        animation: fadeIn 0.5s ease;
    }

    .top-bar-content span.active {
        display: block;
        font-size: 0.65rem;
        letter-spacing: 1px;
    }

    /* Header Layout Mobile */
    .nav-wrapper {
        gap: 10px;
    }

    .logo img {
        height: 40px;
        width: auto;
    }

    .header-right {
        gap: 12px;
    }

    /* Prevent horizontal scrolling on mobile */
    body {
        overflow-x: hidden;
        width: 100%;
    }

    /* 2-Column Grid Specifics */
    .product-image-wrapper {
        height: 220px;
    }

    .product-details {
        padding: 10px;
    }

    .product-card h3 {
        font-size: 0.9rem;
    }

    .btn-view {
        padding: 8px 0;
        font-size: 0.75rem;
    }

    .grid-5 .product-image {
        height: 220px;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-social {
        justify-content: center;
    }

    /* Slider Arrows Mobile Resize */
    .nav-arrow {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }

    .slider-nav {
        padding: 0 10px;
        /* Move closer to edge */
    }
}

/* Lightbox Styles */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: var(--primary);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.lightbox-nav:hover {
    background: var(--primary);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-nav.prev {
    left: -70px;
}

.lightbox-nav.next {
    right: -70px;
}

@media (max-width: 768px) {
    .lightbox-nav.prev {
        left: 10px;
    }

    .lightbox-nav.next {
        right: 10px;
    }

    .lightbox-close {
        top: 10px;
        right: 10px;
        z-index: 10;
    }
}

/* Reviews Section */
.reviews {
    padding: 100px 0;
    background: #fff;
    text-align: center;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.review-card {
    background: #f8fafc;
    padding: 40px;
    border-radius: 12px;
    position: relative;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    border-color: var(--primary);
}

.quote-icon {
    font-size: 2rem;
    color: var(--primary);
    opacity: 0.2;
    margin-bottom: 20px;
}

.review-text {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.review-author {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--secondary);
    margin-bottom: 10px;
}

.review-rating {
    color: #FBBF24;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .reviews {
        padding: 60px 0;
    }
}