
        :root {
            --primary-teal: #668E8B;
            --accent-beige: #C5B4A1;
            --text-dark: #FFFFFF;
            --text-light: #F0F0F0;
            --bg-light: #F9F9F9;
            --bg-dark: #050505;
            --white: #FFFFFF;
            /* Keep for specific white elements if any, or usage in mixed contexts */
        }

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

        /* KILL SWITCH FOR CART */
        

        body {
            overflow-x: hidden;
            width: 100%;
            font-family: 'Poppins', sans-serif;
            background-color: var(--bg-dark);
            color: var(--text-dark);
            background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.9)), url(../img/main_bg.jpg);
            /* Red Floral Abstract */
            background-size: cover;
            background-repeat: no-repeat;
            background-position: center top;
            background-attachment: fixed;
            /* Removed animation for better performance with high res image */
        }

        @keyframes bgDrift {
            0% {
                background-position: 50% 50%;
                filter: brightness(0.8);
            }

            50% {
                filter: brightness(1.1);
            }

            100% {
                background-position: 55% 55%;
                filter: brightness(0.8);
            }
        }

        /* Top Bar */





        /* Main Header */
        .main-header {
            padding: 15px 40px;
            display: flex;
            align-items: center;
            /* Center Vertically */
            justify-content: space-between;
            background: #000000;
            border-bottom: 1px solid #333;
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .logo {
            flex: 1;
            min-width: 0;
            /* Fixed width for Left Column */
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.5rem;
            font-weight: 700;
            color: #FFFFFF;
            text-decoration: none;
        }

        .header-actions {
            flex: 1;
            min-width: 0;
            /* Fixed width for Right Column (matches Logo) */
            display: flex;
            align-items: center;
            justify-content: flex-end;
            /* Align contents to right */
            gap: 20px;
        }

        .main-header nav {
            flex: 1;
            /* Takes up remaining space in center */
            display: flex;
            justify-content: center;
            /* Centers the menu items */
            align-items: center;
        }

        .nav-menu {
            display: flex;
            gap: 35px;
            /* Increased gap for better separation */
            list-style: none;
            margin: 0;
            padding: 0;
            align-items: center;
            /* Ensure items are vertically centered */
        }

        /* Dropdown Styles */
        .dropdown {
            position: relative;
        }

        .dropdown-content {
            display: none;
            position: absolute;
            background-color: #1a1a1a;
            min-width: 200px;
            box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.5);
            z-index: 1000;
            border-radius: 8px;
            padding: 10px 0;
            top: 100%;
            left: 0;
            border: 1px solid #333;
            /* Animation */
            opacity: 0;
            transform: translateY(10px);
            transition: opacity 0.2s, transform 0.2s;
        }

        /* Remove hover-trigger */
        /* .dropdown:hover .dropdown-content { display: block; } */

        /* Active State for Click */
        .dropdown.active .dropdown-content {
            display: block;
            opacity: 1;
            transform: translateY(0);
        }

        .dropdown-content a {
            color: #ccc;
            padding: 12px 16px;
            text-decoration: none;
            display: block;
            font-size: 0.9rem;
        }

        .dropdown-content a:hover {
            background-color: #333;
            color: #FF0000;
        }

        .nav-link {
            text-decoration: none;
            color: #FFFFFF;
            font-weight: 600;
            font-size: 0.95rem;
            position: relative;
            display: flex;
            align-items: center;
            gap: 4px;
            /* Even if arrow is removed, keep gap for safety */
            cursor: pointer;
            transition: color 0.2s;
        }

        .nav-link:hover {
            color: #FF0000;
            /* Red on hover */
        }

        /* Hero Section */
        .hero-container {
            padding: 20px 40px;
        }

        .hero-banner {
            background-color: #1a1a1a;
            /* Fallback */
            background-image: url(../img/hero_bg_flyershop.jpg);
            background-size: cover;
            background-position: center;
            border-radius: 20px;
            height: 500px;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            /* Left alignment */
            padding: 0 60px;

            /* Increased padding for left alignment */
            position: relative;
            overflow: hidden;
            text-align: left;
        }

        .hero-text {
            flex: 1;
            max-width: 550px;
            /* Reduced width to avoid overlapping model */
            color: #FFFFFF;
            z-index: 2;
            padding: 0;
            position: relative;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 30px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
            text-wrap: balance;
            /* Geometric symmetry */
        }

        .hero-description {
            font-size: 1.1rem;
            font-weight: 400;
            line-height: 1.6;
            margin-bottom: 30px;
            color: #f0f0f0;
            max-width: 480px;
            /* Ensure readability and non-overlap */
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
        }

        .hero-btn {
            display: inline-block;
            background-color: #FF0000;
            /* Red Button */
            color: white;
            padding: 12px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            margin-bottom: 20px;
            box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
            transition: transform 0.2s;
        }

        .hero-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 0 25px rgba(255, 0, 0, 0.6);
            /* Enhanced glow on hover */
        }

        .hero-subtext {
            font-style: italic;
            font-weight: 300;
            opacity: 0.9;
            font-size: 1rem;
            text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
        }

        .hero-images {
            flex: 1;
            position: relative;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Simulated Flyer Collage */
        .flyer-card {
            position: absolute;
            width: 220px;
            height: 300px;
            background-size: cover;
            background-position: center;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            border-radius: 4px;
            transition: transform 0.3s;
        }

        .flyer-1 {
            transform: rotate(-15deg) translate(-120px, 20px);
            z-index: 1;
            background-image: url('https://images.unsplash.com/photo-1621619856624-42fd193a0661?auto=format&fit=crop&w=400&q=80');
        }

        .flyer-2 {
            transform: rotate(0deg) translate(0, 0) scale(1.1);
            z-index: 3;
            background-image: url('https://images.unsplash.com/photo-1514525253440-b393452e8d26?auto=format&fit=crop&w=400&q=80');
        }

        .flyer-3 {
            transform: rotate(15deg) translate(120px, 20px);
            z-index: 2;
            background-image: url('https://images.unsplash.com/photo-1513151233558-d860c5398176?auto=format&fit=crop&w=400&q=80');
        }

        .ps-logo {
            position: absolute;
            top: 80px;
            right: 80px;
            width: 50px;
            height: 50px;
            background: #001E36;
            color: #31A8FF;
            border: 2px solid #31A8FF;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.5rem;
            z-index: 10;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }





        /* Hamburger Menu - Hidden by default (Desktop) */
        .hamburger-btn {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 10px;
            z-index: 1001;
        }

        .hamburger-lines {
            display: block;
            width: 25px;
            height: 3px;
            background: #FFFFFF;
            position: relative;
        }

        .hamburger-lines::before,
        .hamburger-lines::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: #FFFFFF;
            transition: all 0.3s;
        }

        .hamburger-lines::before {
            top: -8px;
        }

        .hamburger-lines::after {
            top: 8px;
        }

        /* Animation for Hamburger */
        .hamburger-btn.active .hamburger-lines {
            background: transparent;
        }

        .hamburger-btn.active .hamburger-lines::before {
            top: 0;
            transform: rotate(45deg);
        }

        .hamburger-btn.active .hamburger-lines::after {
            top: 0;
            transform: rotate(-45deg);
        }

        /* Responsive Breakpoint */
        @media (max-width: 1024px) {
            .main-header {
                position: relative;
                /* Ensure absolute menu relates to header or window? Fixed header needs fixed menu or absolute relative to viewport */
            }

            .logo {
                flex: 0 1 auto;
                /* Allow shrinking */
            }

            /* Show Hamburger */
            .hamburger-btn {
                display: block;
                order: 3;
                /* Place on far right or adjust */
                margin-left: 15px;
            }

            /* Adjust Header Actions */
            .header-actions {
                flex: 0 0 auto;
                /* Determine width by content */
                gap: 15px;
            }

            /* Hide Desktop Nav */
            .main-header nav {
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: #000000;
                border-bottom: 2px solid #333;
                padding: 20px 0;
                display: none;
                /* Hidden by default */
                flex-direction: column;
                z-index: 999;
            }

            .main-header nav.active {
                display: flex;
            }

            .nav-menu {
                flex-direction: column;
                width: 100%;
                gap: 0;
            }

            .nav-menu li {
                width: 100%;
                text-align: center;
                border-bottom: 1px solid #1a1a1a;
            }

            .nav-link {
                padding: 15px;
                justify-content: center;
                width: 100%;
                font-size: 1.1rem;
            }

            /* Mobile Dropdowns */
            .dropdown-content {
                position: static;
                /* Relative flow in mobile menu */
                background: #111;
                width: 100%;
                border: none;
                box-shadow: none;
                padding: 0;
                display: none;
                opacity: 1;
                /* Reset animation opacity for mobile toggle */
                transform: none;
            }

            .dropdown.active .dropdown-content {
                display: block;
            }

            .dropdown-content a {
                padding-left: 20px;
                background: #0a0a0a;
            }

            /* Search input adjustment */
            .search-bar {
                width: auto;
                max-width: 160px;
            }

            .search-input {
                padding-right: 10px;
            }
        }

        @media (max-width: 480px) {
            .search-bar {
                display: none;
                /* Often search is hidden or collapsed on very small screens, let's keep it visible if possible or hide text */
            }

            .search-icon {
                position: static;
                transform: none;
                font-size: 1.2rem;
            }

            /* If we hide search bar input, show just icon? Or user said "adjust". 
               Let's keep search resizing small. */
        }


        /* Updated Header Actions based on Audio Feedback */
        .header-actions {
            flex: 1;
            min-width: 0;
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 15px;
        }

        .search-bar {
            position: relative;
            /* Context for absolute icon */
            display: flex;
            align-items: center;
        }

        /* Search Input: White background, rounded corners, padding for icon */
        .search-input {
            width: 240px;
            padding: 8px 15px 8px 40px;
            /* Left padding for icon */
            border: 1px solid #ccc;
            /* Subtle border */
            background: #FFFFFF;
            border-radius: 20px;
            /* Fully rounded as requested? Or just rounded rect. "como ejemplo". Example image shows rounded rect */
            outline: none;
            font-family: 'Poppins', sans-serif;
            color: #333;
            font-size: 0.95rem;
            height: 40px;
        }

        .search-input::placeholder {
            color: #888;
        }

        /* Icon: Inside the input */
        .search-icon {
            position: absolute;
            left: 12px;
            top: 50%;
            transform: translateY(-50%);
            color: #888;
            font-size: 1.2rem;
            pointer-events: none;
            /* Let clicks pass through to input */
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .search-icon svg {
            width: 18px;
            height: 18px;
            stroke: #666;
            /* Grey icon */
        }

        /* User Icon: White solid circle with silhouette inside */
        .user-icon-btn {
            width: 44px;
            height: 44px;
            background-color: #FFFFFF;
            /* White Circle */
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.3s;
            flex-shrink: 0;
            border: none;
        }

        .user-icon-btn svg {
            width: 24px;
            height: 24px;
            fill: #000000;
            /* Black silhouette inside white circle */
        }

        .user-icon-btn:hover {
            transform: scale(1.05);
            background-color: #F0F0F0;
        }


        /* Finalized Header Styling */
        .header-actions {
            flex: 1;
            min-width: 0;
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 15px;
        }

        .search-bar {
            position: relative;
            display: flex;
            align-items: center;
        }

        .search-input {
            width: 200px;
            /* Adjusted width */
            padding: 8px 15px 8px 40px;
            /* Padding for icon */
            border: 1px solid #FFFFFF;
            /* White Border */
            background: #000000;
            /* Black Fill */
            border-radius: 20px;
            outline: none;
            font-family: 'Poppins', sans-serif;
            color: #FFFFFF;
            /* White Text */
            font-size: 0.9rem;
            height: 36px;
        }

        .search-input::placeholder {
            color: #AAAAAA;
        }

        .search-icon {
            position: absolute;
            left: 12px;
            top: 50%;
            transform: translateY(-50%);
            pointer-events: none;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .search-icon svg {
            width: 16px;
            /* Smaller Icon */
            height: 16px;
            stroke: #FFFFFF;
            /* White Lupa */
            stroke-width: 2;
        }

        /* User Icon: Single White Circle Border, White Icon */
        .user-icon-btn {
            width: 40px;
            height: 40px;
            background: transparent;
            /* No fill */
            border: 2px solid #FFFFFF;
            /* White Border for Circle */
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.3s;
            flex-shrink: 0;
        }

        .user-icon-btn svg {
            width: 20px;
            height: 20px;
            fill: #FFFFFF;
            /* White Icon */
        }

        .user-icon-btn:hover {
            background-color: #FFFFFF;
            color: #000000;
        }

        .user-icon-btn:hover svg {
            fill: #000000;
        }


        /* Mobile Layout Fixes (Max Width 768px) */
        @media (max-width: 768px) {
            .main-header {
                padding: 10px 15px;
                /* Tighter padding */
                gap: 10px;
                /* Reduced gap between logo and actions */
            }

            .logo {
                flex: 0 1 auto;
                /* Allow shrinking, don't force 1/2 width */
            }

            .logo img {
                height: 30px !important;
                /* Smaller logo */
                width: auto;
            }

            .header-actions {
                flex: 1 1 auto;
                /* flexible width */
                min-width: 0;
                /* allow shrinking */
                gap: 8px;
                /* Tighter item spacing */
                justify-content: flex-end;
            }

            .search-bar {
                flex: 0 1 auto;
                /* Allow shrinking */
                min-width: 0;
            }

            .search-input {
                width: 120px;
                /* Smaller default width */
                min-width: 80px;
                /* Can shrink further if needed */
                padding: 6px 10px 6px 30px;
                /* Reduced padding */
                height: 32px;
                /* Nicer mobile height */
                font-size: 0.8rem;
            }

            .search-icon svg {
                width: 14px;
                height: 14px;
                /* Scaled down icon */
            }

            .search-icon {
                left: 10px;
            }

            .user-icon-btn {
                width: 32px;
                height: 32px;
                /* Smaller user circle */
                border-width: 1.5px;
            }

            .user-icon-btn svg {
                width: 16px;
                height: 16px;
            }

            .hamburger-btn {
                padding: 5px;
            }

            .hamburger-lines {
                width: 22px;
            }
        }

        /* Very Small Screens (iPhone SE etc) */
        @media (max-width: 380px) {
            .search-input {
                width: 90px;
                /* Even smaller */
            }

            .logo img {
                height: 26px !important;
            }
        }


        /* --- MASTER RESPONSIVE HEADER FIXES --- */

        /* 1. Base Header Adjustments for Fluidity */
        .main-header {
            flex-wrap: nowrap;
            /* Never wrap the main row */
            gap: 15px;
            /* Consistent gap base */
        }

        .header-actions {
            flex-shrink: 1;
            /* Allow shrinking */
            min-width: 0;
        }

        /* 2. Tablet Optimization (768px - 1150px) */
        @media (max-width: 1150px) {
            .logo {
                flex: 0 0 auto;
                font-size: 1.2rem;
            }

            .logo img {
                height: 40px !important;
            }

            /* Compact Navigation */
            .nav-menu {
                gap: 15px;
                /* Reduce gap between links */
            }

            .nav-link {
                font-size: 0.85rem;
                /* Smaller font */
            }

            /* Compact Actions */
            .header-actions {
                gap: 10px;
            }

            .search-input {
                width: 160px;
                /* Reduce search width on tablet */
            }
        }

        /* 3. Mobile Transition (Transition point to Hamburger) */
        /* Currently hamburger appears at 1024px in our previous logic. Let's enforce that. */

        @media (max-width: 1024px) {

            /* Force Hamburger Mode earlier to avoid squeezing */
            .main-header nav {
                display: none;
                /* Hide nav text */
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: #000000;
                /* ... rest of mobile menu styles exist, just ensuring trigger ... */
            }

            .main-header nav.active {
                display: flex;
            }

            .hamburger-btn {
                display: block;
                /* Show hamburger */
                margin-left: 10px;
            }

            /* Ensure alignment in header */
            .header-actions {
                justify-content: flex-end;
            }
        }

        /* 4. Mobile / Small Tablet Fixes (Under 768px - The "Overlap" Zone) */
        @media (max-width: 768px) {
            .main-header {
                padding: 10px 15px;
            }

            /* Logo resizing */
            .logo img {
                height: 32px !important;
                width: auto;
            }

            /* Action Area Compacting */
            .header-actions {
                gap: 8px;
            }

            .search-bar {
                flex: 0 1 auto;
                /* Allow shrink */
                min-width: 0;
            }

            /* Dynamic Search Input Sizing */
            .search-input {
                width: 100%;
                /* Fill available space */
                max-width: 180px;
                /* But don't get too big */
                min-width: 100px;
                /* Don't get too small */
                padding: 6px 10px 6px 32px;
                height: 34px;
                font-size: 0.85rem;
            }

            .search-icon svg {
                width: 14px;
                height: 14px;
            }

            .user-icon-btn {
                width: 34px;
                height: 34px;
            }

            .user-icon-btn svg {
                width: 18px;
                height: 18px;
            }
        }

        /* 5. Extra Small Mobile (Phone Portrait) */
        @media (max-width: 420px) {
            .search-input {
                max-width: 120px;
                /* Force smaller on narrow phones */
                min-width: 60px;
            }

            .logo img {
                height: 28px !important;
            }

            .main-header {
                padding: 10px 10px;
            }
        }
    

        .carousel-container {
            max-width: 1400px;
            margin: 40px auto;
            position: relative;
            padding: 0 60px;
            /* Space for arrows */
        }

        .carousel-track-container {
            overflow: hidden;
            width: 100%;
        }

        .carousel-track {
            display: flex;
            gap: 20px;
            transition: transform 0.3s ease-in-out;
            padding: 10px 0;
        }

        .carousel-item {
            flex: 0 0 200px;
            /* Fixed width items */
            /* Fixed width items */
            text-decoration: none;
            color: #FFFFFF;
            text-align: center;
            transition: transform 0.2s;
        }

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

        .carousel-item:hover .item-title {
            color: #FF0000;
        }

        .item-image {
            width: 100%;
            height: 120px;
            border-radius: 8px;
            object-fit: cover;
            margin-bottom: 10px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }

        .item-title {
            font-size: 0.95rem;
            font-weight: 500;
        }

        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: white;
            border: 1px solid #ddd;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: #333;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
            z-index: 10;
            transition: all 0.2s;
        }

        .carousel-btn:hover {
            background: #FF0000;
            color: white;
            border-color: #FF0000;
        }

        .carousel-btn.left {
            left: 10px;
        }

        .carousel-btn.right {
            right: 10px;
        }

        /* Hamburger Menu - Hidden by default (Desktop) */
        .hamburger-btn {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 10px;
            z-index: 1001;
        }

        .hamburger-lines {
            display: block;
            width: 25px;
            height: 3px;
            background: #FFFFFF;
            position: relative;
        }

        .hamburger-lines::before,
        .hamburger-lines::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: #FFFFFF;
            transition: all 0.3s;
        }

        .hamburger-lines::before {
            top: -8px;
        }

        .hamburger-lines::after {
            top: 8px;
        }

        /* Animation for Hamburger */
        .hamburger-btn.active .hamburger-lines {
            background: transparent;
        }

        .hamburger-btn.active .hamburger-lines::before {
            top: 0;
            transform: rotate(45deg);
        }

        .hamburger-btn.active .hamburger-lines::after {
            top: 0;
            transform: rotate(-45deg);
        }

        /* Responsive Breakpoint */
        @media (max-width: 1024px) {
            .main-header {
                position: relative;
                /* Ensure absolute menu relates to header or window? Fixed header needs fixed menu or absolute relative to viewport */
            }

            .logo {
                flex: 0 1 auto;
                /* Allow shrinking */
            }

            /* Show Hamburger */
            .hamburger-btn {
                display: block;
                order: 3;
                /* Place on far right or adjust */
                margin-left: 15px;
            }

            /* Adjust Header Actions */
            .header-actions {
                flex: 0 0 auto;
                /* Determine width by content */
                gap: 15px;
            }

            /* Hide Desktop Nav */
            .main-header nav {
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: #000000;
                border-bottom: 2px solid #333;
                padding: 20px 0;
                display: none;
                /* Hidden by default */
                flex-direction: column;
                z-index: 999;
            }

            .main-header nav.active {
                display: flex;
            }

            .nav-menu {
                flex-direction: column;
                width: 100%;
                gap: 0;
            }

            .nav-menu li {
                width: 100%;
                text-align: center;
                border-bottom: 1px solid #1a1a1a;
            }

            .nav-link {
                padding: 15px;
                justify-content: center;
                width: 100%;
                font-size: 1.1rem;
            }

            /* Mobile Dropdowns */
            .dropdown-content {
                position: static;
                /* Relative flow in mobile menu */
                background: #111;
                width: 100%;
                border: none;
                box-shadow: none;
                padding: 0;
                display: none;
                opacity: 1;
                /* Reset animation opacity for mobile toggle */
                transform: none;
            }

            .dropdown.active .dropdown-content {
                display: block;
            }

            .dropdown-content a {
                padding-left: 20px;
                background: #0a0a0a;
            }

            /* Search input adjustment */
            .search-bar {
                width: auto;
                max-width: 160px;
            }

            .search-input {
                padding-right: 10px;
            }
        }

        @media (max-width: 480px) {
            .search-bar {
                display: none;
                /* Often search is hidden or collapsed on very small screens, let's keep it visible if possible or hide text */
            }

            .search-icon {
                position: static;
                transform: none;
                font-size: 1.2rem;
            }

            /* If we hide search bar input, show just icon? Or user said "adjust". 
               Let's keep search resizing small. */
        }


        /* Updated Header Actions based on Audio Feedback */
        .header-actions {
            flex: 1;
            min-width: 0;
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 15px;
        }

        .search-bar {
            position: relative;
            /* Context for absolute icon */
            display: flex;
            align-items: center;
        }

        /* Search Input: White background, rounded corners, padding for icon */
        .search-input {
            width: 240px;
            padding: 8px 15px 8px 40px;
            /* Left padding for icon */
            border: 1px solid #ccc;
            /* Subtle border */
            background: #FFFFFF;
            border-radius: 20px;
            /* Fully rounded as requested? Or just rounded rect. "como ejemplo". Example image shows rounded rect */
            outline: none;
            font-family: 'Poppins', sans-serif;
            color: #333;
            font-size: 0.95rem;
            height: 40px;
        }

        .search-input::placeholder {
            color: #888;
        }

        /* Icon: Inside the input */
        .search-icon {
            position: absolute;
            left: 12px;
            top: 50%;
            transform: translateY(-50%);
            color: #888;
            font-size: 1.2rem;
            pointer-events: none;
            /* Let clicks pass through to input */
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .search-icon svg {
            width: 18px;
            height: 18px;
            stroke: #666;
            /* Grey icon */
        }

        /* User Icon: White solid circle with silhouette inside */
        .user-icon-btn {
            width: 44px;
            height: 44px;
            background-color: #FFFFFF;
            /* White Circle */
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.3s;
            flex-shrink: 0;
            border: none;
        }

        .user-icon-btn svg {
            width: 24px;
            height: 24px;
            fill: #000000;
            /* Black silhouette inside white circle */
        }

        .user-icon-btn:hover {
            transform: scale(1.05);
            background-color: #F0F0F0;
        }


        /* Finalized Header Styling */
        .header-actions {
            flex: 1;
            min-width: 0;
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 15px;
        }

        .search-bar {
            position: relative;
            display: flex;
            align-items: center;
        }

        .search-input {
            width: 200px;
            /* Adjusted width */
            padding: 8px 15px 8px 40px;
            /* Padding for icon */
            border: 1px solid #FFFFFF;
            /* White Border */
            background: #000000;
            /* Black Fill */
            border-radius: 20px;
            outline: none;
            font-family: 'Poppins', sans-serif;
            color: #FFFFFF;
            /* White Text */
            font-size: 0.9rem;
            height: 36px;
        }

        .search-input::placeholder {
            color: #AAAAAA;
        }

        .search-icon {
            position: absolute;
            left: 12px;
            top: 50%;
            transform: translateY(-50%);
            pointer-events: none;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .search-icon svg {
            width: 16px;
            /* Smaller Icon */
            height: 16px;
            stroke: #FFFFFF;
            /* White Lupa */
            stroke-width: 2;
        }

        /* User Icon: Single White Circle Border, White Icon */
        .user-icon-btn {
            width: 40px;
            height: 40px;
            background: transparent;
            /* No fill */
            border: 2px solid #FFFFFF;
            /* White Border for Circle */
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.3s;
            flex-shrink: 0;
        }

        .user-icon-btn svg {
            width: 20px;
            height: 20px;
            fill: #FFFFFF;
            /* White Icon */
        }

        .user-icon-btn:hover {
            background-color: #FFFFFF;
            color: #000000;
        }

        .user-icon-btn:hover svg {
            fill: #000000;
        }


        /* Mobile Layout Fixes (Max Width 768px) */
        @media (max-width: 768px) {
            .main-header {
                padding: 10px 15px;
                /* Tighter padding */
                gap: 10px;
                /* Reduced gap between logo and actions */
            }

            .logo {
                flex: 0 1 auto;
                /* Allow shrinking, don't force 1/2 width */
            }

            .logo img {
                height: 30px !important;
                /* Smaller logo */
                width: auto;
            }

            .header-actions {
                flex: 1 1 auto;
                /* flexible width */
                min-width: 0;
                /* allow shrinking */
                gap: 8px;
                /* Tighter item spacing */
                justify-content: flex-end;
            }

            .search-bar {
                flex: 0 1 auto;
                /* Allow shrinking */
                min-width: 0;
            }

            .search-input {
                width: 120px;
                /* Smaller default width */
                min-width: 80px;
                /* Can shrink further if needed */
                padding: 6px 10px 6px 30px;
                /* Reduced padding */
                height: 32px;
                /* Nicer mobile height */
                font-size: 0.8rem;
            }

            .search-icon svg {
                width: 14px;
                height: 14px;
                /* Scaled down icon */
            }

            .search-icon {
                left: 10px;
            }

            .user-icon-btn {
                width: 32px;
                height: 32px;
                /* Smaller user circle */
                border-width: 1.5px;
            }

            .user-icon-btn svg {
                width: 16px;
                height: 16px;
            }

            .hamburger-btn {
                padding: 5px;
            }

            .hamburger-lines {
                width: 22px;
            }
        }

        /* Very Small Screens (iPhone SE etc) */
        @media (max-width: 380px) {
            .search-input {
                width: 90px;
                /* Even smaller */
            }

            .logo img {
                height: 26px !important;
            }
        }


        /* --- MASTER RESPONSIVE HEADER FIXES --- */

        /* 1. Base Header Adjustments for Fluidity */
        .main-header {
            flex-wrap: nowrap;
            /* Never wrap the main row */
            gap: 15px;
            /* Consistent gap base */
        }

        .header-actions {
            flex-shrink: 1;
            /* Allow shrinking */
            min-width: 0;
        }

        /* 2. Tablet Optimization (768px - 1150px) */
        @media (max-width: 1150px) {
            .logo {
                flex: 0 0 auto;
                font-size: 1.2rem;
            }

            .logo img {
                height: 40px !important;
            }

            /* Compact Navigation */
            .nav-menu {
                gap: 15px;
                /* Reduce gap between links */
            }

            .nav-link {
                font-size: 0.85rem;
                /* Smaller font */
            }

            /* Compact Actions */
            .header-actions {
                gap: 10px;
            }

            .search-input {
                width: 160px;
                /* Reduce search width on tablet */
            }
        }

        /* 3. Mobile Transition (Transition point to Hamburger) */
        /* Currently hamburger appears at 1024px in our previous logic. Let's enforce that. */

        @media (max-width: 1024px) {

            /* Force Hamburger Mode earlier to avoid squeezing */
            .main-header nav {
                display: none;
                /* Hide nav text */
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: #000000;
                /* ... rest of mobile menu styles exist, just ensuring trigger ... */
            }

            .main-header nav.active {
                display: flex;
            }

            .hamburger-btn {
                display: block;
                /* Show hamburger */
                margin-left: 10px;
            }

            /* Ensure alignment in header */
            .header-actions {
                justify-content: flex-end;
            }
        }

        /* 4. Mobile / Small Tablet Fixes (Under 768px - The "Overlap" Zone) */
        @media (max-width: 768px) {
            .main-header {
                padding: 10px 15px;
            }

            /* Logo resizing */
            .logo img {
                height: 32px !important;
                width: auto;
            }

            /* Action Area Compacting */
            .header-actions {
                gap: 8px;
            }

            .search-bar {
                flex: 0 1 auto;
                /* Allow shrink */
                min-width: 0;
            }

            /* Dynamic Search Input Sizing */
            .search-input {
                width: 100%;
                /* Fill available space */
                max-width: 180px;
                /* But don't get too big */
                min-width: 100px;
                /* Don't get too small */
                padding: 6px 10px 6px 32px;
                height: 34px;
                font-size: 0.85rem;
            }

            .search-icon svg {
                width: 14px;
                height: 14px;
            }

            .user-icon-btn {
                width: 34px;
                height: 34px;
            }

            .user-icon-btn svg {
                width: 18px;
                height: 18px;
            }
        }

        /* 5. Extra Small Mobile (Phone Portrait) */
        @media (max-width: 420px) {
            .search-input {
                max-width: 120px;
                /* Force smaller on narrow phones */
                min-width: 60px;
            }

            .logo img {
                height: 28px !important;
            }

            .main-header {
                padding: 10px 10px;
            }
        }
    

        .trending-section {
            max-width: 1400px;
            margin: 60px auto;
            padding: 0 40px;
        }

        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #FFFFFF;
            margin-bottom: 10px;
        }

        .section-subtitle {
            font-size: 1.1rem;
            max-width: 800px;
            margin: 0 auto 40px auto;
        }

        .featured-header-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
        }

        .featured-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #FFFFFF;
        }

        .explore-btn {
            padding: 10px 24px;
            border: 2px solid #FFFFFF;
            border-radius: 50px;
            background: transparent;
            color: #FFFFFF;
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.2s;
        }

        .explore-btn:hover {
            background: #FFFFFF;
            color: #000;
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            /* Force 4 columns as requested */
            gap: 30px;
        }

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

        @media (max-width: 600px) {
            .product-grid {
                grid-template-columns: 1fr;
            }
        }

        .product-card {
            text-decoration: none;
            color: inherit;
            display: block;
        }

        .product-image {
            width: 100%;
            aspect-ratio: 1080 / 1350;
            /* Specific 4:5 ratio requested (1080x1350) */
            object-fit: cover;
            border-radius: 8px;
            margin-bottom: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s;
        }

        .product-card:hover .product-image {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }

        .product-title {
            font-size: 1rem;
            font-weight: 600;
            color: #EEE;
            margin-bottom: 5px;
            display: -webkit-box;
            -webkit-line-clamp: 1;
            line-clamp: 1;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .product-price {
            font-weight: 700;
            color: #999;
            font-size: 0.95rem;
        }

        /* Hamburger Menu - Hidden by default (Desktop) */
        .hamburger-btn {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 10px;
            z-index: 1001;
        }

        .hamburger-lines {
            display: block;
            width: 25px;
            height: 3px;
            background: #FFFFFF;
            position: relative;
        }

        .hamburger-lines::before,
        .hamburger-lines::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: #FFFFFF;
            transition: all 0.3s;
        }

        .hamburger-lines::before {
            top: -8px;
        }

        .hamburger-lines::after {
            top: 8px;
        }

        /* Animation for Hamburger */
        .hamburger-btn.active .hamburger-lines {
            background: transparent;
        }

        .hamburger-btn.active .hamburger-lines::before {
            top: 0;
            transform: rotate(45deg);
        }

        .hamburger-btn.active .hamburger-lines::after {
            top: 0;
            transform: rotate(-45deg);
        }

        /* Responsive Breakpoint */
        @media (max-width: 1024px) {
            .main-header {
                position: relative;
                /* Ensure absolute menu relates to header or window? Fixed header needs fixed menu or absolute relative to viewport */
            }

            .logo {
                flex: 0 1 auto;
                /* Allow shrinking */
            }

            /* Show Hamburger */
            .hamburger-btn {
                display: block;
                order: 3;
                /* Place on far right or adjust */
                margin-left: 15px;
            }

            /* Adjust Header Actions */
            .header-actions {
                flex: 0 0 auto;
                /* Determine width by content */
                gap: 15px;
            }

            /* Hide Desktop Nav */
            .main-header nav {
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: #000000;
                border-bottom: 2px solid #333;
                padding: 20px 0;
                display: none;
                /* Hidden by default */
                flex-direction: column;
                z-index: 999;
            }

            .main-header nav.active {
                display: flex;
            }

            .nav-menu {
                flex-direction: column;
                width: 100%;
                gap: 0;
            }

            .nav-menu li {
                width: 100%;
                text-align: center;
                border-bottom: 1px solid #1a1a1a;
            }

            .nav-link {
                padding: 15px;
                justify-content: center;
                width: 100%;
                font-size: 1.1rem;
            }

            /* Mobile Dropdowns */
            .dropdown-content {
                position: static;
                /* Relative flow in mobile menu */
                background: #111;
                width: 100%;
                border: none;
                box-shadow: none;
                padding: 0;
                display: none;
                opacity: 1;
                /* Reset animation opacity for mobile toggle */
                transform: none;
            }

            .dropdown.active .dropdown-content {
                display: block;
            }

            .dropdown-content a {
                padding-left: 20px;
                background: #0a0a0a;
            }

            /* Search input adjustment */
            .search-bar {
                width: auto;
                max-width: 160px;
            }

            .search-input {
                padding-right: 10px;
            }
        }

        @media (max-width: 480px) {
            .search-bar {
                display: none;
                /* Often search is hidden or collapsed on very small screens, let's keep it visible if possible or hide text */
            }

            .search-icon {
                position: static;
                transform: none;
                font-size: 1.2rem;
            }

            /* If we hide search bar input, show just icon? Or user said "adjust". 
               Let's keep search resizing small. */
        }


        /* Updated Header Actions based on Audio Feedback */
        .header-actions {
            flex: 1;
            min-width: 0;
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 15px;
        }

        .search-bar {
            position: relative;
            /* Context for absolute icon */
            display: flex;
            align-items: center;
        }

        /* Search Input: White background, rounded corners, padding for icon */
        .search-input {
            width: 240px;
            padding: 8px 15px 8px 40px;
            /* Left padding for icon */
            border: 1px solid #ccc;
            /* Subtle border */
            background: #FFFFFF;
            border-radius: 20px;
            /* Fully rounded as requested? Or just rounded rect. "como ejemplo". Example image shows rounded rect */
            outline: none;
            font-family: 'Poppins', sans-serif;
            color: #333;
            font-size: 0.95rem;
            height: 40px;
        }

        .search-input::placeholder {
            color: #888;
        }

        /* Icon: Inside the input */
        .search-icon {
            position: absolute;
            left: 12px;
            top: 50%;
            transform: translateY(-50%);
            color: #888;
            font-size: 1.2rem;
            pointer-events: none;
            /* Let clicks pass through to input */
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .search-icon svg {
            width: 18px;
            height: 18px;
            stroke: #666;
            /* Grey icon */
        }

        /* User Icon: White solid circle with silhouette inside */
        .user-icon-btn {
            width: 44px;
            height: 44px;
            background-color: #FFFFFF;
            /* White Circle */
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.3s;
            flex-shrink: 0;
            border: none;
        }

        .user-icon-btn svg {
            width: 24px;
            height: 24px;
            fill: #000000;
            /* Black silhouette inside white circle */
        }

        .user-icon-btn:hover {
            transform: scale(1.05);
            background-color: #F0F0F0;
        }


        /* Finalized Header Styling */
        .header-actions {
            flex: 1;
            min-width: 0;
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 15px;
        }

        .search-bar {
            position: relative;
            display: flex;
            align-items: center;
        }

        .search-input {
            width: 200px;
            /* Adjusted width */
            padding: 8px 15px 8px 40px;
            /* Padding for icon */
            border: 1px solid #FFFFFF;
            /* White Border */
            background: #000000;
            /* Black Fill */
            border-radius: 20px;
            outline: none;
            font-family: 'Poppins', sans-serif;
            color: #FFFFFF;
            /* White Text */
            font-size: 0.9rem;
            height: 36px;
        }

        .search-input::placeholder {
            color: #AAAAAA;
        }

        .search-icon {
            position: absolute;
            left: 12px;
            top: 50%;
            transform: translateY(-50%);
            pointer-events: none;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .search-icon svg {
            width: 16px;
            /* Smaller Icon */
            height: 16px;
            stroke: #FFFFFF;
            /* White Lupa */
            stroke-width: 2;
        }

        /* User Icon: Single White Circle Border, White Icon */
        .user-icon-btn {
            width: 40px;
            height: 40px;
            background: transparent;
            /* No fill */
            border: 2px solid #FFFFFF;
            /* White Border for Circle */
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.3s;
            flex-shrink: 0;
        }

        .user-icon-btn svg {
            width: 20px;
            height: 20px;
            fill: #FFFFFF;
            /* White Icon */
        }

        .user-icon-btn:hover {
            background-color: #FFFFFF;
            color: #000000;
        }

        .user-icon-btn:hover svg {
            fill: #000000;
        }


        /* Mobile Layout Fixes (Max Width 768px) */
        @media (max-width: 768px) {
            .main-header {
                padding: 10px 15px;
                /* Tighter padding */
                gap: 10px;
                /* Reduced gap between logo and actions */
            }

            .logo {
                flex: 0 1 auto;
                /* Allow shrinking, don't force 1/2 width */
            }

            .logo img {
                height: 30px !important;
                /* Smaller logo */
                width: auto;
            }

            .header-actions {
                flex: 1 1 auto;
                /* flexible width */
                min-width: 0;
                /* allow shrinking */
                gap: 8px;
                /* Tighter item spacing */
                justify-content: flex-end;
            }

            .search-bar {
                flex: 0 1 auto;
                /* Allow shrinking */
                min-width: 0;
            }

            .search-input {
                width: 120px;
                /* Smaller default width */
                min-width: 80px;
                /* Can shrink further if needed */
                padding: 6px 10px 6px 30px;
                /* Reduced padding */
                height: 32px;
                /* Nicer mobile height */
                font-size: 0.8rem;
            }

            .search-icon svg {
                width: 14px;
                height: 14px;
                /* Scaled down icon */
            }

            .search-icon {
                left: 10px;
            }

            .user-icon-btn {
                width: 32px;
                height: 32px;
                /* Smaller user circle */
                border-width: 1.5px;
            }

            .user-icon-btn svg {
                width: 16px;
                height: 16px;
            }

            .hamburger-btn {
                padding: 5px;
            }

            .hamburger-lines {
                width: 22px;
            }
        }

        /* Very Small Screens (iPhone SE etc) */
        @media (max-width: 380px) {
            .search-input {
                width: 90px;
                /* Even smaller */
            }

            .logo img {
                height: 26px !important;
            }
        }


        /* --- MASTER RESPONSIVE HEADER FIXES --- */

        /* 1. Base Header Adjustments for Fluidity */
        .main-header {
            flex-wrap: nowrap;
            /* Never wrap the main row */
            gap: 15px;
            /* Consistent gap base */
        }

        .header-actions {
            flex-shrink: 1;
            /* Allow shrinking */
            min-width: 0;
        }

        /* 2. Tablet Optimization (768px - 1150px) */
        @media (max-width: 1150px) {
            .logo {
                flex: 0 0 auto;
                font-size: 1.2rem;
            }

            .logo img {
                height: 40px !important;
            }

            /* Compact Navigation */
            .nav-menu {
                gap: 15px;
                /* Reduce gap between links */
            }

            .nav-link {
                font-size: 0.85rem;
                /* Smaller font */
            }

            /* Compact Actions */
            .header-actions {
                gap: 10px;
            }

            .search-input {
                width: 160px;
                /* Reduce search width on tablet */
            }
        }

        /* 3. Mobile Transition (Transition point to Hamburger) */
        /* Currently hamburger appears at 1024px in our previous logic. Let's enforce that. */

        @media (max-width: 1024px) {

            /* Force Hamburger Mode earlier to avoid squeezing */
            .main-header nav {
                display: none;
                /* Hide nav text */
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: #000000;
                /* ... rest of mobile menu styles exist, just ensuring trigger ... */
            }

            .main-header nav.active {
                display: flex;
            }

            .hamburger-btn {
                display: block;
                /* Show hamburger */
                margin-left: 10px;
            }

            /* Ensure alignment in header */
            .header-actions {
                justify-content: flex-end;
            }
        }

        /* 4. Mobile / Small Tablet Fixes (Under 768px - The "Overlap" Zone) */
        @media (max-width: 768px) {
            .main-header {
                padding: 10px 15px;
            }

            /* Logo resizing */
            .logo img {
                height: 32px !important;
                width: auto;
            }

            /* Action Area Compacting */
            .header-actions {
                gap: 8px;
            }

            .search-bar {
                flex: 0 1 auto;
                /* Allow shrink */
                min-width: 0;
            }

            /* Dynamic Search Input Sizing */
            .search-input {
                width: 100%;
                /* Fill available space */
                max-width: 180px;
                /* But don't get too big */
                min-width: 100px;
                /* Don't get too small */
                padding: 6px 10px 6px 32px;
                height: 34px;
                font-size: 0.85rem;
            }

            .search-icon svg {
                width: 14px;
                height: 14px;
            }

            .user-icon-btn {
                width: 34px;
                height: 34px;
            }

            .user-icon-btn svg {
                width: 18px;
                height: 18px;
            }
        }

        /* 5. Extra Small Mobile (Phone Portrait) */
        @media (max-width: 420px) {
            .search-input {
                max-width: 120px;
                /* Force smaller on narrow phones */
                min-width: 60px;
            }

            .logo img {
                height: 28px !important;
            }

            .main-header {
                padding: 10px 10px;
            }
        }
    
/* Floating Cart Button */
.cart-fab {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #FF0000;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
}

.cart-fab:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.6);
}

.cart-icon-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-fab svg {
    color: white;
    width: 28px;
    height: 28px;
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: white;
    color: #FF0000;
    font-size: 0.75rem;
    font-weight: bold;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* --- Sidebar Styles --- */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

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

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 350px;
    height: 100%;
    background: #FFFFFF;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.2);
    z-index: 10001;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active {
    right: 0;
}

/* Header */
.cart-header {
    padding: 20px;
    border-bottom: 1px solid #EEE;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #000;
    color: #FFF;
}

.cart-header h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.cart-close {
    background: none;
    border: none;
    color: #FFF;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}

.cart-close:hover {
    color: #FF0000;
}

/* Body */
.cart-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}



.empty-msg {
    color: #888;
    font-size: 1rem;
    text-align: center;
    margin-top: 50px;
}

/* Cart Items in Sidebar */
.cart-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.cart-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
}

.cart-item-details {
    flex: 1;
}

.cart-item-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.cart-item-price {
    font-size: 0.85rem;
    color: #888;
}

.cart-item-remove {
    color: #FF0000;
    font-size: 0.8rem;
    cursor: pointer;
    border: none;
    background: none;
    padding: 0;
    margin-top: 5px;
    text-decoration: underline;
}

/* Footer */
.cart-footer {
    padding: 20px;
    border-top: 1px solid #EEE;
    background: #F9F9F9;
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #000;
}

.checkout-btn {
    width: 100%;
    padding: 15px;
    background: #FF0000;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.checkout-btn:hover {
    background: #CC0000;
}

/* --- Product Card Styles (New) --- */
.product-card {
    background: #111;
    /* Dark card bg */
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    transition: transform 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-img-link {
    display: block;
    width: 100%;
    aspect-ratio: 4/5;
    /* Keep vertical ratio */
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.product-info {
    padding: 15px;
    background: #111;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-title {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-title a {
    color: #FFF;
    text-decoration: none;
    transition: color 0.2s;
}

.product-title a:hover {
    color: #FF0000;
}

.product-action-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 5px;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #FFF;
}

.add-btn {
    background-color: #FF0000;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background 0.2s;
}

.add-btn:hover {
    background-color: #CC0000;
}

.add-btn svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
}

/* Mobile Adjustments */
@media (max-width: 480px) {
    .cart-sidebar {
        width: 300px;
    }
}
/* WordPress Profile Styles */
:root {
    --primary-teal: #FF0000;
    --accent-red: #FF4444;
    --text-dark: #333;
    --bg-light: #F9F9F9;
    --bg-dark: #050505;
}

/* Ensure font family loads */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

.wp-profile-wrapper {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    max-width: 1400px;
    margin: 40px auto;
    display: flex;
    gap: 30px;
    padding: 0 40px;
}

/* Sidebar Styles */
.wp-profile-sidebar {
    width: 300px;
    background: #fff;
    border-radius: 12px;
    padding: 30px 20px;
    height: fit-content;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.user-summary {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-avatar {
    width: 50px;
    height: 50px;
    background: var(--bg-dark);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.5rem;
}

.user-info h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

.user-info p {
    font-size: 0.8rem;
    color: #888;
    margin: 0;
}

/* Navigation */
.nav-group {
    margin-bottom: 25px;
}

.nav-group-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #999;
    font-weight: 600;
    margin-bottom: 10px;
    padding-left: 10px;
}

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

.nav-item {
    margin-bottom: 5px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 15px;
    color: #555;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s;
    font-size: 0.95rem;
    cursor: pointer;
}

.nav-link:hover, .nav-link.active {
    background-color: #FFF0F0;
    color: var(--accent-red);
}

.nav-link i {
    width: 20px;
    text-align: center;
}

/* Main Content Area */
.wp-profile-content {
    flex: 1;
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    min-height: 600px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.section-header {
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #222;
    margin: 0;
}

.section-desc {
    color: #777;
    font-size: 0.9rem;
    margin-top: 5px;
}

/* Tab Logic */
.tab-content {
    display: none;
    animation: fadeIn 0.3s;
}
.tab-content.active {
    display: block;
}

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

/* Forms & Cards */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.info-card {
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px;
}

.info-card h4 {
    margin-bottom: 15px;
    color: #333;
    margin-top: 0;
}

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

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    color: #444;
}

.form-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    box-sizing: border-box;
}

.btn {
    background-color: var(--accent-red);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
    display: inline-block;
    text-decoration: none;
}

.btn:hover {
    opacity: 0.9;
    color: white;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--accent-red);
    color: var(--accent-red);
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
}

.list-group {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
}

.list-item {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.list-item:last-child { border-bottom: none; }

/* Responsive */
@media (max-width: 900px) {
    .wp-profile-wrapper {
        flex-direction: column;
        padding: 0 20px;
    }
    .wp-profile-sidebar {
        width: 100%;
    }
}


/* WP DYNAMIC MENU SUPPORT */
.nav-menu .menu-item > a {
    text-decoration: none;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s;
}
.nav-menu .menu-item > a:hover {
    color: #FF0000;
}
.nav-menu .menu-item-has-children {
    position: relative;
}
.nav-menu .sub-menu {
    display: none;
    position: absolute;
    background-color: #1a1a1a;
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    border-radius: 8px;
    padding: 10px 0;
    top: 100%;
    left: 0;
    border: 1px solid #333;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.2s, transform 0.2s;
    list-style: none;
}
.nav-menu .menu-item-has-children:hover .sub-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
}
.nav-menu .sub-menu a {
    color: #ccc;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 0.9rem;
}
.nav-menu .sub-menu a:hover {
    background-color: #333;
    color: #FF0000;
}
.logo img.custom-logo {
    height: 50px;
    width: auto;
    max-width: 100%;
}

/* ELEMENTOR PRO COMPATIBILITY / IMMUNITY */
body.elementor-page .elementor-widget-container a {
    text-decoration: none;
}
body.elementor-page .carousel-item {
    color: #FFFFFF !important;
}
body.elementor-page .carousel-item:hover .item-title {
    color: #FF0000 !important;
}
body.elementor-page .product-title a {
    color: #FFFFFF !important;
}
body.elementor-page .product-title a:hover {
    color: #FF0000 !important;
}
body.elementor-page .hero-btn, 
body.elementor-page .add-btn,
body.elementor-page .view-btn {
    color: #FFFFFF !important;
}

