:root {
    --primary: #0A192F;
    /* Navy Blue */
    --accent: #FFD700;
    /* Gold/Yellow */
    --accent-light: #FFF9C4;
    /* Light Yellow */
    --text-dark: #1e293b;
    --text-light: #64748b;
    --text-light-on-dark: #cbd5e1;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --gold: #FFD700;
    /* For the 25 Years Badge */
    --whatsapp: #25D366;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
    --radius: 12px;
    --transition: all 0.3s ease;
    --header-height: 90px;
    --topbar-height: 40px;
    --bottom-nav-height: 0px;
    /* 0 on desktop */
}

/* --- TOP BAR --- */
.top-bar {
    background: var(--primary);
    color: white;
    height: var(--topbar-height);
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1002;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.top-bar-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.top-bar-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: white !important;
    font-size: 0.85rem;
    font-weight: 500;
    position: relative;
    text-decoration: none !important;
}

.top-bar-link:hover {
    color: var(--accent) !important;
}

.top-bar-link i {
    font-size: 1.2rem;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background: #F44336;
    color: white;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    border: 2px solid var(--primary);
}

.contact-mini {
    display: flex;
    gap: 25px;
    align-items: center;
}

.contact-mini a {
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.contact-mini a:hover {
    color: var(--accent);
}

/* --- ACCOUNT DROPDOWN --- */
.account-dropdown {
    position: relative;
    display: inline-block;
}

.account-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 15px;
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: white;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.1);
    z-index: 1003;
    border-radius: 8px;
    overflow: hidden;
    top: 100%;
    margin-top: 10px;
}

.dropdown-content::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 15px;
    border-width: 0 6px 6px 6px;
    border-style: solid;
    border-color: transparent transparent white transparent;
}

.account-dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-item {
    color: var(--text-dark);
    padding: 12px 16px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background-color 0.2s;
}

.dropdown-item i {
    font-size: 1.1rem;
    color: var(--primary);
}

.dropdown-item:hover {
    background-color: #f1f5f9;
    color: var(--primary);
}

.dropdown-item.logout {
    color: #ef4444;
    border-top: 1px solid #f1f5f9;
}

.dropdown-item.logout i {
    color: #ef4444;
}

/* --- HEADER & NAV --- */
header {
    background: rgba(10, 25, 47, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: var(--topbar-height);
    left: 0;
    width: 100%;
    z-index: 1001;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    height: var(--header-height);
    display: flex;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
    /* Ensure container fills header */
}

.logo {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 5px 0;
}

.logo img {
    height: 65px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.02);
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
    height: 100%;
    /* Fill header height */
}

.nav-item {
    position: relative;
    height: 100%;
    /* Fill header */
    display: flex;
    align-items: center;
    /* Center text vertically */
    padding: 0 5px;
    /* Tiny padding for click target */
}

/* Bridge the gap just in case */
/* Bridge the gap just in case */
.nav-item::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -30px;
    /* massive overlap to catch fast mouse movements */
    height: 30px;
    background: transparent;
    background: transparent;
    z-index: 1000;
}

.nav-item:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transition-delay: 0s;
}

.nav-links a {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent);
}



/* --- MEGA MENU --- */
/* --- MEGA MENU (Floating Card Style) --- */
.mega-menu {
    position: fixed;
    /* Fixed relative to viewport */
    top: calc(var(--topbar-height) + var(--header-height) - 35px);
    left: 50%;
    transform: translateX(-50%);
    width: 1200px;
    /* Increased Width as requested */
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    /* Soft, deep shadow */
    padding: 30px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    border-radius: 12px;
    /* Rounded corners */
    border: 1px solid rgba(0, 0, 0, 0.05);
    /* Very subtle border */
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    /* 4 Columns for wider layout */
    gap: 10px 15px;
    /* Row Gap 15, Col Gap 30 */
    z-index: 1002;
    box-sizing: border-box;
    max-height: 80vh;
    overflow-y: auto;
}

/* The Triangle Arrow */
.mega-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    margin-left: -8px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #ffffff;
    display: block;
}

/* Clean List Item Style */
.mega-cat-item {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 12px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-light) !important;
    /* Soft gray initially */
    text-decoration: none;
    padding: 6px 10px;
    border-radius: 6px;
    transition: all 0.2s ease;
    background: transparent;
    border: none;
    box-shadow: none;
    text-transform: capitalize;
}

.mega-cat-item:hover {
    background: #f8fafc;
    /* Very subtle hover bg */
    color: #0A192F !important;
    /* Navy Blue on hover */
    transform: translateX(5px);
    /* Slide right */
}

.mega-cat-item i {
    font-size: 1.1rem;
    color: #94a3b8;
    /* Icon color */
    transition: color 0.2s;
}

.mega-cat-item:hover i {
    color: #0A192F !important;
    /* Dark Blue icon on hover */
}

.mega-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-links li {
    margin-bottom: 2px;
}

.mega-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-size: 0.85rem;
    transition: all 0.2s ease;
    padding: 6px 10px;
    border-radius: 6px;
    text-decoration: none;
}

.mega-links a:hover {
    color: var(--primary);
    background: #f8fafc;
    padding-left: 15px;
    /* Slide effect */
}

.mega-links a i {
    font-size: 0.8rem;
    color: #ccc;
    transition: color 0.2s;
}

.mega-links a:hover i {
    color: var(--accent);
}

.mega-links a:hover {
    color: var(--primary);
    transform: translateX(3px);
}

.mega-links i {
    font-size: 1.1rem;
    color: var(--text-light-on-dark);
    transition: color 0.2s;
}

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

.premium-badge {
    background: linear-gradient(135deg, #FFD700 0%, #FDB931 100%);
    color: #0F172A;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 235, 59, 0.5);
    box-shadow: 0 4px 15px rgba(253, 185, 49, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

/* Shine effect */
.premium-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    transition: 0.5s;
}

.premium-badge:hover::before {
    left: 100%;
}

.premium-badge:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(253, 185, 49, 0.5);
}

.premium-badge i {
    font-size: 1.2rem;
    color: #0F172A;
}

/* --- MOBILE SIDE DRAWER --- */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: white;
    cursor: pointer;
    padding: 5px;
    margin-right: 10px;
}

.side-drawer {
    position: fixed;
    top: 0;
    left: -280px;
    /* Hidden by default */
    width: 280px;
    height: 100%;
    background: linear-gradient(180deg, var(--text-light) 0%, var(--primary) 100%);
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    transition: left 0.3s ease;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.side-drawer.open {
    left: 0;
}

.side-drawer-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.side-drawer-backdrop.open {
    display: block;
    opacity: 1;
}

.drawer-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-items: center;
    align-items: center;
}

.drawer-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.drawer-link {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    padding: 12px 16px;
    border-radius: 8px;
    transition: background-color 0.2s;
    margin-bottom: 5px;
}

.drawer-link:hover,
.drawer-link.active {
    background-color: rgba(255, 255, 255, 0.1);
    color: #e6c371;
}

.drawer-link i {
    font-size: 1.3rem;
    color: var(--accent);
}

.drawer-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
}

.drawer-footer p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

/* --- BOTTOM NAV (MOBILE) --- */
.bottom-nav {
    display: none;
    /* Hidden on Desktop */
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(90deg, var(--text-light) 0%, var(--primary) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    height: 65px;
    z-index: 1100;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    gap: 4px;
    padding: 8px;
    width: 100%;
}

.bottom-nav-item i {
    font-size: 1.4rem;
    margin-bottom: 2px;
}

.bottom-nav-item.active,
.bottom-nav-item:hover {
    color: #bf9553;
}

/* --- FLOATING WHATSAPP --- */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--whatsapp);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-whatsapp:hover {
    transform: scale(1.1);
}

/* --- FLOATING CALL BUTTON --- */
.floating-call-container {
    position: fixed;
    bottom: 110px;
    /* Desktop: Above WhatsApp (30px + 60px + 20px) */
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
    pointer-events: none;
    /* Let clicks pass through container area */
}

.floating-call-container a {
    pointer-events: auto;
    /* Re-enable clicks on button */
}

@media (max-width: 900px) {
    .floating-call-container {
        bottom: 150px;
        /* Mobile: Above WhatsApp (80px + 50px + 20px) */
        right: 20px;
    }

    .btn-floating-call {
        width: 50px !important;
        height: 50px !important;
    }

    .btn-floating-call i {
        font-size: 1.4rem !important;
    }
}

/* --- HERO SECTION --- */
.hero {
    padding-top: 120px;
    padding-bottom: 60px;
    background: linear-gradient(rgba(10, 25, 47, 0.85), rgba(10, 25, 47, 0.7)),
        url('assets/img/background/background.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
    color: white;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    line-height: 1.2;
    color: white;
    margin-bottom: 24px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.25rem;
    color: #e2e8f0;
    margin-bottom: 40px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 40px;
}

.stat-item h3 {
    font-size: 2rem;
    color: #60a5fa;
    font-weight: 700;
}

.stat-item p {
    font-size: 0.9rem;
    margin: 0;
    color: #cbd5e1;
}

/* --- SERVICES GRID --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
}

/* --- INFINITE CAROUSEL STYLES --- */
.carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

/* Gradient fade effect on sides */
.carousel-container::before,
.carousel-container::after {
    content: "";
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.carousel-container::before {
    left: 0;
    background: linear-gradient(to right, #f8fafc, transparent);
}

.carousel-container::after {
    right: 0;
    background: linear-gradient(to left, #f8fafc, transparent);
}

.carousel-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scroll 40s linear infinite;
    padding: 10px 0;
    /* Space for shadow */
}

.carousel-track:hover {
    animation-play-state: paused;
}

/* Responsive Contact Section */
.contact-wrapper-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 768px) {
    .top-bar-link>span:not(.cart-badge) {
        display: none !important;
    }

    .contact-wrapper-grid {
        grid-template-columns: 1fr;
    }

    .contact-cards-grid {
        grid-template-columns: 1fr;
    }
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 15px));
        /* -50% of track width - half of gap */
    }
}

.service-card {
    width: 100%;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.5);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-light);
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f1f5f9;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: linear-gradient(to bottom, #ffffff, #fcfcfc);
}

.service-card h3 {
    font-size: 1.35rem;
    margin-bottom: 10px;
    color: var(--primary);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1;
}

.service-link {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    margin-top: auto;
    padding: 10px 0;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 12px;
}

@media (max-width: 768px) {
    .service-card {
        min-width: 280px;
        max-width: 280px;
    }

    .carousel-container::before,
    .carousel-container::after {
        width: 50px;
        /* Smaller gradient on mobile */
    }
}


/* Category Carousel Styles (Full Width Redesign) */
.category-carousel-container {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    /* Full width means no side padding on container */
}

.category-carousel-track {
    display: flex;
    gap: 40px;
    /* More spacing between items */
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 20px;
    /* Reduced vertical padding to 20px */
    -ms-overflow-style: none;
    scrollbar-width: none;
    width: 100%;
    justify-content: flex-start;
    /* Ensure items don't center if overflowing */
}

.category-carousel-track::-webkit-scrollbar {
    display: none;
}

.category-circle-card {
    flex: 0 0 auto;
    width: 180px;
    /* Larger cards */
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.category-circle-card:hover {
    transform: translateY(-8px);
}

.category-circle-img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #f1f5f9;
    /* Lighter background */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    margin-bottom: -20px;
    /* More overlap */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 5px solid white;
    /* crisp white border */
}

.category-circle-card:hover .category-circle-img {
    box-shadow: 0 15px 35px rgba(191, 149, 83, 0.25);
    border-color: var(--white);
}

.category-circle-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Fills the circle completely */
    transition: transform 0.5s ease;
}

.category-circle-card:hover .category-circle-img img {
    transform: scale(1.1);
}

.category-circle-title {
    position: relative;
    z-index: 2;
    background: var(--white);
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    min-width: 120px;
    text-align: center;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.category-circle-card:hover .category-circle-title {
    background: var(--primary);
    color: white;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.2);
    border-color: var(--primary);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 1px solid #e2e8f0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 20;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.carousel-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-50%) scale(1.1);
    border-color: var(--primary);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.2);
}

.prev-btn {
    left: 40px;
}

/* Increased spacing from edge */

.next-btn {
    right: 40px;
}

@media (max-width: 768px) {
    .category-circle-card {
        width: 140px;
    }

    .category-circle-img {
        width: 140px;
        height: 140px;
    }

    .category-circle-title {
        font-size: 0.65rem;
        padding: 8px 15px;
    }

    .category-carousel-track {
        gap: 20px;
        padding: 30px 40px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}


/* --- SHOP SECTION --- */
.shop-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.shop-tab {
    padding: 8px 20px;
    border-radius: 30px;
    background: var(--white);
    border: 1px solid #e2e8f0;
    cursor: pointer;
    font-weight: 500;
    color: var(--text-light);
    transition: var(--transition);
}

.shop-tab.active,
.shop-tab:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    width: 100%;
}

.products-grid {
    display: none;
    /* Deprecated */
}

.product-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid #f1f5f9;
    opacity: 1;
    transform: scale(1);
}

.product-card.hidden {
    display: none;
}

.product-card:hover {
    box-shadow: var(--shadow-md);
}

.product-img {
    height: 200px;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
    transition: transform 0.5s ease;
}

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

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--gold);
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 2;
}

.product-info {
    padding: 20px;
}

.product-cat {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-light);
    margin-bottom: 5px;
}

.product-title {
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary);
}

.product-action {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #f1f5f9;
}

.price {
    font-weight: 700;
    color: var(--primary);
}

.btn-sm {
    padding: 6px 14px;
    font-size: 0.85rem;
    border-radius: 6px;
    background: var(--accent-light);
    color: var(--accent);
    border: none;
    cursor: pointer;
    font-weight: 600;
}

.btn-sm:hover {
    background: var(--whatsapp);
    color: white;
}

.btn-whatsapp-card {
    background-color: var(--whatsapp);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    width: 100%;
    justify-content: center;
    transition: var(--transition);
}

.btn-whatsapp-card:hover {
    background-color: #1ebc57;
    transform: translateY(-2px);
}

/* --- ABOUT & FAQ SECTIONS --- */
.about-section {
    background: var(--primary);
    color: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-text p {
    color: #94a3b8;
    margin-bottom: 30px;
}

.features-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.features-list i {
    color: var(--accent);
    font-size: 1.2rem;
    margin-top: 4px;
}

/* FAQ Styles */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.drawer-footer {
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: auto;
}

.faq-item {
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 15px;
    padding-bottom: 15px;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
}

.faq-question:hover {
    color: var(--accent);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    color: var(--text-light);
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    /* Arbitrary large height */
    padding-bottom: 10px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-question i {
    transition: transform 0.3s ease;
}

/* --- CONTACT SECTION (REDESIGNED & STYLIZED) --- */
.contact-section-redesigned {
    position: relative;
    /* Replaced static map with a sleek, deep gradient */
    background: linear-gradient(135deg, #0f172a 0%, #172554 100%);
    padding: 100px 0;
    overflow: hidden;
}

/* Tech-Grid Pattern Overlay */
.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Minimalist geometric pattern */
    background-image: radial-gradient(#3b82f6 1.5px, transparent 1.5px);
    background-size: 32px 32px;
    opacity: 0.1;
    z-index: 1;
}

/* Ambient Glow Effect */
.contact-section-redesigned::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, rgba(37, 99, 235, 0) 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.contact-section-redesigned::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, rgba(99, 102, 241, 0) 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.contact-content-wrapper {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* Form Card */
.contact-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.85rem;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

/* Contact Info Side */
.contact-info-side {
    color: white;
    padding-right: 20px;
}

.contact-info-side h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.1;
    background: linear-gradient(to right, #ffffff, #94a3b8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-info-block {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 12px;
    transition: var(--transition);
    /* Make it look clickable */
    text-decoration: none;
    color: white;
    border: 1px solid transparent;
}

.contact-info-block:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.contact-icon-circle {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--accent-light);
}

/* Review Buttons */
.review-buttons-container {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.review-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.85rem;
    transition: var(--transition);
    text-decoration: none;
}

.review-btn-primary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
}

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

.review-btn-outline {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.review-btn-outline:hover {
    border-color: var(--white);
    color: var(--white);
}


/* --- FOOTER STYLES --- */
footer {
    background: linear-gradient(160deg, var(--text-light) 0%, var(--primary) 100%);
    color: #94a3b8;
    padding: 80px 0 30px;
    border-top: 4px solid var(--accent);
    position: relative;
}

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

.footer-brand {
    padding-right: 20px;
}

.footer-logo-img {
    max-width: 180px;
    margin-bottom: 25px;
}

.footer-brand p {
    margin-bottom: 25px;
    line-height: 1.7;
    font-size: 0.85rem;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
    background: #e6c371;
    border-color: #e6c371;
    transform: translateY(-3px);
    color: #0f172a;
}

.footer-title {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    font-family: 'Playfair Display', serif;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #e6c371;
}

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

.footer-links ul li a {
    color: #94a3b8;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links ul li a i {
    font-size: 0.8rem;
    color: #e6c371;
}

.footer-links ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.footer-contact-icon {
    color: #e6c371;
    font-size: 1.3rem;
    margin-top: 3px;
}

.footer-contact-info h5 {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 5px;
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright p {
    font-size: 0.9rem;
}

.privacy-links {
    display: flex;
    gap: 20px;
}

.privacy-links a {
    font-size: 0.9rem;
    color: #64748b;
}

.privacy-links a:hover {
    color: var(--white);
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

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

@media (max-width: 900px) {
    .hero h1 {
        font-size: 2.8rem;
    }

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

    .contact-content-wrapper,
    .contact-grid,
    .about-grid {
        grid-template-columns: 1fr !important;
        gap: 40px;
    }

    .footer-brand {
        grid-column: span 2;
    }

    /* Mobile logo size adjustment */
    .logo img {
        height: 50px;
    }

    :root {
        --header-height: 75px;
    }


    .section-title {
        text-align: center;
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .services-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .service-card {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    :root {
        --bottom-nav-height: 65px;
    }

    body {
        padding-bottom: var(--bottom-nav-height);
        /* Prevent content from being hidden behind nav */
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-brand {
        grid-column: span 1;
    }

    .mobile-toggle {
        display: block;
        /* Show hamburger on mobile */
        order: 2;
        /* Move to right */
    }

    .logo {
        order: 1;
        /* Move to left */
        margin-right: auto;
        /* Push everything else to right */
    }

    .nav-container {
        justify-content: space-between;
        /* Ensure spacing */
    }

    .nav-links {
        display: none !important;
        /* Hide desktop nav */
    }

    .bottom-nav {
        display: flex;
        /* Show bottom nav on mobile */
    }

    /* Move floating whatsapp up so it clears the bottom nav */
    .floating-whatsapp {
        bottom: 80px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
    }

    .premium-badge {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        padding: 6px 14px;
        font-size: 0.8rem;
        white-space: nowrap;
    }

    .hero-stats {
        /* flex-direction: column; Removed to prevent stacking */
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
    }

    .copyright {
        flex-direction: column;
        --header-height: 75px;
    }

    /* Hide EMAIL link entirely on mobile */
    .contact-mini .email-link {
        display: none;
    }

    /* Explicitly show phone */
    .contact-mini .phone-link span {
        display: inline-block;
    }

    .contact-mini a {
        font-size: 0.85rem;
    }
}

/* --- MOBILE 2-COLUMN CATALOG FIX --- */
@media (max-width: 768px) {
    .catalog-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }

    .product-card {
        border-radius: 12px !important;
    }

    .pc-content-wrapper {
        padding: 12px !important;
        padding-top: 20px !important;
    }

    .pc-title {
        font-size: 0.95rem !important;
        margin-bottom: 4px !important;
        line-height: 1.2 !important;
    }

    .pc-desc {
        font-size: 0.8rem !important;
        margin-bottom: 12px !important;
        -webkit-line-clamp: 2 !important;
    }

    .pc-action-row {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 8px !important;
    }

    .pc-price {
        font-size: 1.1rem !important;
    }

    .pc-btn {
        width: 100% !important;
        padding: 8px 12px !important;
        font-size: 0.85rem !important;
        border-radius: 8px !important;
    }

    .pc-badge {
        top: 8px !important;
        left: 8px !important;
        padding: 4px 8px !important;
        font-size: 0.65rem !important;
    }

    .pc-heart {
        top: 8px !important;
        right: 8px !important;
        width: 28px !important;
        height: 28px !important;
    }

    .pc-heart i {
        font-size: 0.9rem !important;
    }

    .pc-plus {
        bottom: -16px !important;
        right: 12px !important;
        width: 32px !important;
        height: 32px !important;
        border-width: 2px !important;
        font-size: 1.1rem !important;
    }

    .pc-img-container {
        border-bottom-left-radius: 16px !important;
        border-bottom-right-radius: 16px !important;
    }
}

/* --- MINIMAL WOOCOMMERCE CHECKOUT HEADER --- */
.woo-header {
    background: var(--primary);
    /* Dark blue/black */
    padding: 15px 30px;
    display: flex;
    align-items: center;
    gap: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.woo-header-left {
    display: flex;
    align-items: center;
    gap: 30px;
}

.woo-header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    margin-left: auto;
}

.woo-back {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none !important;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.woo-back:hover {
    color: white !important;
}

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

.woo-logo img {
    height: 48px;
}

.woo-secure {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #10b981;
    font-weight: 600;
    font-size: 0.95rem;
}

@media (max-width: 900px) {
    .woo-header-right .top-bar-link>span:not(.cart-badge) {
        display: none !important;
    }
}

@media (max-width: 600px) {
    .woo-header {
        padding: 12px 15px;
    }

    .woo-logo img {
        height: 38px;
    }

    .woo-back span,
    .woo-secure span {
        display: none;
    }

    .woo-header-right {
        gap: 15px;
    }
}