        :root {
            /* Culori extrase din logo-ul Maglux */
            --brand-blue: #0b2545;       /* Albastrul închis din textul maglux.ro */
            --brand-green: #8cc63f;      /* Verdele crud din "Magazin Online" */
            --brand-light-green: #dff2c5; /* O variantă deschisă pentru fundaluri/hover */
            --brand-yellow: #ffb400;     /* Galbenul stelelor pentru accente/rating */
            
            --dark-blue: #071a32;
            --bg-gray: #f8fafc;
            --text-gray: #334155;
            --border-gray: #e2e8f0;
            --footer-bg: #0b1221;
            --white: #ffffff;
            --drawer-width: 320px;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        
        html, body {
             height: 100% !important;
        }

        body {
            display: flex !important;
            flex-direction: column !important;
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background-color: var(--white);
            color: var(--text-gray);
            line-height: 1.5;
            overflow-x: hidden;
        }
        
        main {
            flex: 1 !important;
        }

        body.drawer-open {
            overflow: hidden;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 16px;
        }

        /* Header Section */
        .main-header {
            background: var(--white);
            padding: 12px 0;
            border-bottom: 2px solid var(--brand-green); /* Linie de accent verde */
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .header-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
        }

        .logo-section {
            display: flex;
            align-items: center;
            text-decoration: none;
        }

        .logo-img {
            height: 66px; /* Marit cu ~20% de la 55px */
            width: auto;
            display: block;
            object-fit: contain;
        }

        /* Bara de cautare - Desktop */
        .search-box-desktop {
         flex: 1;
         max-width: 600px;
         position: relative;
         display: flex;
        }
        
        .search-box-desktop form {
         width: 100%;
            display: flex;
         position: relative;
}

        .search-box-desktop input {
         width: 100%;
         border: 2px solid var(--border-gray);
         border-radius: 8px;
         padding: 10px 16px;
         padding-right: 50px;
         outline: none;
         transition: border-color 0.2s;
        }

        .search-box-desktop input:focus {
         border-color: var(--brand-blue);
        }

        .search-btn-icon {
            position: absolute;
            right: 0;
            top: 0;
            height: 100%;
            background: var(--brand-blue);
            color: var(--white);
            padding: 0 20px;
            border: none;
            border-radius: 0 6px 6px 0;
            cursor: pointer;
            display: flex;
            align-items: center;
        }

        .search-btn-icon:hover {
         background: var(--dark-blue);
        }

        .cart-nav {
            display: flex;
            align-items: center;
            gap: 12px;
            color: var(--brand-blue);
            cursor: pointer;
            text-decoration: none;
            transition: opacity 0.2s;
        }

        .cart-nav:hover {
            opacity: 0.8;
        }

        .cart-icon-wrapper {
            position: relative;
        }

        .badge {
            position: absolute;
            top: -8px;
            right: -8px;
            background: var(--brand-green);
            color: var(--white);
            font-size: 10px;
            font-weight: bold;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .main-label {
            font-size: 14px;
            font-weight: 800;
            color: var(--brand-blue);
            text-transform: uppercase;
        }

        /* Navbar Section */
        .category-nav {
            background: var(--brand-blue);
            color: var(--white);
            min-height: 44px;
            z-index: 90;
            position: relative;
        }

        .nav-items-container {
            display: flex;
            height: 44px;
            align-items: center;
            justify-content: space-between;
        }

        /* Mobile Viewports */
        .mobile-nav-row {
            display: none;
            width: 100%;
            height: 100%;
            align-items: center;
            justify-content: space-between;
        }

        .mobile-category-trigger {
            height: 100%;
            background: rgba(255,255,255,0.1);
            border: none;
            color: #fff;
            padding: 0 15px;
            font-weight: bold;
            text-transform: uppercase;
            font-size: 13px;
            display: flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
        }

        .mobile-search-box {
            display: flex;
            background: #fff;
         border-radius: 4px;
            height: 32px;
            margin-right: 10px;
            overflow: hidden;
            flex: 0 1 300px;
        }

        .mobile-search-box form {
            width: 100%;
            display: flex;
        }

        .mobile-search-box input {
            border: none;
            padding: 0 10px;
            width: 100%;
         outline: none;
            font-size: 12px;
        }

        .mobile-search-btn {
         background: var(--brand-green);
         color: #fff;
         border: none;
         padding: 0 12px;
            cursor: pointer;
         display: flex;
         align-items: center;
        }

        /* --- DRAWER --- */
        .drawer-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.6);
            z-index: 999;
            display: none;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .drawer-overlay.active {
            display: block;
            opacity: 1;
        }

        .side-drawer {
            position: fixed;
            top: 0;
            left: 0;
            width: var(--drawer-width);
            height: 100vh;
            background: var(--white);
            z-index: 1000;
            transform: translateX(-100%);
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            overflow-y: auto;
            box-shadow: 5px 0 25px rgba(0,0,0,0.2);
        }

        .side-drawer.active {
            transform: translateX(0);
        }

        .drawer-header {
            padding: 20px;
            font-weight: 800;
            border-bottom: 1px solid var(--border-gray);
            display: flex;
            justify-content: space-between;
            align-items: center;
            text-transform: uppercase;
            color: var(--brand-blue);
        }

        .drawer-nav-list { list-style: none; }
        .drawer-item { border-bottom: 1px solid #f1f5f9; }

        .drawer-item-title {
            width: 100%;
            padding: 16px 20px;
            font-size: 14px;
            font-weight: 800;
            text-align: left;
            background: none;
            border: none;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            text-transform: uppercase;
            color: var(--brand-blue);
        }

        .drawer-item.expanded .drawer-item-title {
            background: var(--brand-light-green);
            color: var(--brand-blue);
        }

        .drawer-submenu {
            background: #fafafa;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
        }

        .drawer-item.expanded .drawer-submenu { max-height: 1000px; }

        .drawer-sub-link {
            padding: 12px 40px;
            font-size: 13px;
            font-weight: 600;
            color: var(--text-gray);
            display: flex;
            align-items: center;
            text-decoration: none;
        }

        .drawer-sub-link:hover {
            color: var(--brand-green);
        }

        .badge-new {
            background: var(--brand-green);
            color: #fff;
            font-size: 9px;
            padding: 2px 5px;
            border-radius: 4px;
            margin-left: 8px;
        }

        /* Desktop Nav List */
        #desktop-nav-list {
            display: flex;
            width: 100%;
            height: 100%;
        }

        .nav-group { position: relative; height: 100%; }
        .nav-link {
            height: 100%;
            padding: 0 16px;
            font-size: 12px;
            font-weight: 800;
            color: rgba(255,255,255,0.9);
            display: flex;
            align-items: center;
            gap: 4px;
            text-transform: uppercase;
            text-decoration: none;
            background: none;
            border: none;
            cursor: pointer;
            white-space: nowrap;
            transition: background 0.2s;
        }

        .nav-link:hover, .nav-link.active {
            background: rgba(255,255,255,0.1);
            color: var(--brand-green);
        }

        .dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            display: none;
            padding-top: 0;
            z-index: 200;
        }

        .nav-group:hover .dropdown { display: block; }

        .dropdown-content {
            background: var(--white);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
            padding: 32px;
            display: flex;
            gap: 48px;
            border-radius: 0 0 8px 8px;
            min-width: max-content;
            border-top: 3px solid var(--brand-green);
        }

        .dropdown-column h4 {
            color: var(--brand-blue);
            font-size: 14px;
            font-weight: 900;
            border-bottom: 2px solid var(--brand-light-green);
            padding-bottom: 8px;
            margin-bottom: 16px;
            text-transform: uppercase;
        }

        .dropdown-column ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
        .dropdown-column li { font-size: 12px; font-weight: 700; color: var(--text-gray); text-transform: uppercase; cursor: pointer; transition: color 0.2s; }
        .dropdown-column li:hover { color: var(--brand-green); }

        /* Hero & Content */
        .hero-banner {
            background: linear-gradient(135deg, var(--brand-blue) 0%, #1e40af 100%);
            height: 420px;
            display: flex;
            align-items: center;
            overflow: hidden;
            position: relative;
        }

        .hero-banner::after {
            content: '';
            position: absolute;
            bottom: -50px;
            right: -50px;
            width: 300px;
            height: 300px;
            background: var(--brand-green);
            opacity: 0.1;
            border-radius: 50%;
        }

        .hero-content { display: flex; justify-content: space-between; align-items: center; width: 100%; position: relative; z-index: 2; }
        .hero-text h2 { font-size: 56px; font-weight: 900; color: #fff; line-height: 1; margin-bottom: 16px; }
        .hero-text h2 span { color: var(--brand-green); }
        .hero-text p { font-size: 24px; color: rgba(255,255,255,0.9); font-style: italic; margin-bottom: 32px; font-weight: 300; }
        .hero-btn { background: var(--brand-green); color: #fff; padding: 18px 44px; border-radius: 40px; font-weight: 900; border: none; cursor: pointer; text-transform: uppercase; font-size: 16px; transition: transform 0.2s, background 0.2s; }
        .hero-btn:hover { background: #7ab534; transform: scale(1.05); }
        .hero-image img { width: 420px; border-radius: 20px; transform: rotate(2deg); box-shadow: 0 30px 60px rgba(0,0,0,0.3); border: 4px solid rgba(255,255,255,0.1); }

        .trust-panel { background: #fff; border-bottom: 1px solid var(--border-gray); padding: 28px 0; }
        .trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
        .trust-item { display: flex; align-items: center; gap: 16px; }
        .trust-icon { background: var(--brand-light-green); color: var(--brand-blue); padding: 14px; border-radius: 12px; display: flex; }
        .trust-item h4 { font-size: 14px; font-weight: 900; text-transform: uppercase; color: var(--brand-blue); }
        .trust-item p { font-size: 11px; color: #64748b; font-weight: 600; }

        .main-background { background-color: var(--bg-gray); padding: 60px 0; }
        .product-section { margin-bottom: 60px; }
        .section-header { display: flex; justify-content: space-between; align-items: center; border-bottom: 2px solid var(--brand-light-green); padding-bottom: 16px; margin-bottom: 30px; }
        .section-header h3 { font-size: 22px; font-weight: 900; text-transform: uppercase; color: var(--brand-blue); position: relative; }
        .section-header h3::after { content: ''; position: absolute; bottom: -18px; left: 0; width: 60px; height: 4px; background: var(--brand-green); }
        
        .product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
        .product-card { background: #fff; padding: 24px; border-radius: 12px; display: flex; flex-direction: column; transition: all 0.3s; box-shadow: 0 4px 6px rgba(0,0,0,0.02); border: 1px solid transparent; }
        .product-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); border-color: var(--brand-light-green); }
        .product-img { height: 200px; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; }
        .product-img img { max-height: 100%; max-width: 100%; object-fit: contain; }
        .product-name { font-size: 14px; font-weight: 700; height: 44px; overflow: hidden; margin-bottom: 16px; line-height: 1.5; color: var(--brand-blue); }
        
        .price-wrapper { margin-top: auto; border-top: 1px solid #f8fafc; padding-top: 16px; }
        .old-price { font-size: 12px; text-decoration: line-through; color: #94a3b8; margin-bottom: 6px; font-weight: 600; }
        .current-price { color: var(--brand-blue); font-weight: 900; }
        .price-int { font-size: 30px; }
        .price-dec { font-size: 14px; vertical-align: super; margin-left: 2px; }
        
        .add-to-cart-btn { 
            background: var(--brand-green); 
            color: #fff; 
            padding: 12px; 
            border-radius: 10px; 
            border: none; 
            cursor: pointer; 
            display: flex; 
            align-items: center; 
            justify-content: center;
            transition: background 0.2s;
        }
        .add-to-cart-btn:hover { background: var(--brand-blue); }

        .main-footer { background: var(--footer-bg); color: #94a3b8; padding: 80px 0 40px; border-top: 6px solid var(--brand-green); }
        .footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 48px; margin-bottom: 60px; }
        
        .footer-logo { 
            margin-bottom: 24px; 
            display: flex;
            align-items: center;
        }
        
        .footer-logo-img {
            height: 54px; /* Marit cu ~20% de la 45px */
            width: auto;
            object-fit: contain;
        }

        .main-footer h4 { color: #fff; font-size: 14px; margin-bottom: 28px; text-transform: uppercase; font-weight: 900; letter-spacing: 1px; }
        .main-footer ul { list-style: none; display: flex; flex-direction: column; gap: 14px; font-size: 13px; font-weight: 600; }
        .main-footer ul li:hover { color: #fff; cursor: pointer; }
        
        .footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 40px; text-align: center; font-size: 12px; margin-top: 40px; letter-spacing: 0.5px; }

        /* Media Queries */
        @media (max-width: 1150px) {
            #desktop-nav-list, .search-box-desktop { display: none; }
            .mobile-nav-row { display: flex; }
            .product-grid { grid-template-columns: repeat(3, 1fr); }
            .footer-grid { grid-template-columns: repeat(2, 1fr); }
            .logo-img { height: 54px; } /* Marit cu ~20% de la 45px */
        }

        @media (max-width: 768px) {
            .product-grid { grid-template-columns: repeat(2, 1fr); }
            .trust-grid { grid-template-columns: repeat(2, 1fr); }
            .hero-text h2 { font-size: 38px; }
            .mobile-search-box { flex: 0 1 200px; }
        }

        @media (max-width: 550px) {
            .footer-grid { grid-template-columns: 1fr; gap: 40px; }
            .product-grid { grid-template-columns: 1fr; }
            .hero-text h2 { font-size: 32px; }
        }

        @media (max-width: 480px) {
            .hero-image { display: none; }
            .mobile-category-trigger span { display: none; }
            .cart-nav .main-label { display: none; }
            .logo-img { height: 48px; } /* Marit cu ~20% de la 40px */
        }

        @media (max-width: 350px) {
            .trust-grid { grid-template-columns: repeat(1, 1fr); }
            .lucide-chevron-down {display: none;}
        }