:root{--primary-color:#1a5632;--primary-dark:#144526;--primary-light:#2e8b57;--accent-gold:#ffc107;--accent-gold-dark:#ffa000;--accent-gold-light:#ffd54f;--secondary-color:#e67e22;--text-dark:#2c3e50;--text-medium:#34495e;--text-light:#7f8c8d;--text-lighter:#95a5a6;--bg-white:#fff;--bg-light:#f8f9fa;--bg-gray:#ecf0f1;--border-light:#e0e0e0;--border-medium:#bdc3c7;--success:#27ae60;--warning:var(--accent-gold);--error:#e74c3c;--info:#3498db;--btn-primary:var(--primary-color);--btn-primary-hover:var(--primary-dark);--btn-accent:var(--accent-gold);--btn-accent-hover:var(--accent-gold-dark);--btn-secondary:#f8f9fa;--btn-secondary-hover:#e9ecef;--space-1:0.25rem;--space-2:0.5rem;--space-3:0.75rem;--space-4:1rem;--space-5:1.5rem;--space-6:2rem;--space-8:3rem;--space-10:4rem;--font-primary:"Inter","Segoe UI",Tahoma,Geneva,Verdana,sans-serif;--font-size-xs:0.75rem;--font-size-sm:0.875rem;--font-size-base:1rem;--font-size-lg:1.125rem;--font-size-xl:1.25rem;--font-size-2xl:1.5rem;--font-size-3xl:1.875rem;--font-size-4xl:2.25rem;--radius-sm:0.25rem;--radius-md:0.5rem;--radius-lg:0.75rem;--radius-xl:1rem;--shadow-sm:0 1px 3px #0000001a;--shadow-md:0 4px 6px #0000001a;--shadow-lg:0 10px 15px #0000001a;--shadow-gold:0 4px 12px #ffc1074d}*{box-sizing:border-box;margin:0;padding:0}body{background-color:var(--bg-white);color:var(--text-medium);font-family:var(--font-primary);font-size:var(--font-size-base);line-height:1.6}h1,h2,h3,h4,h5,h6{color:var(--text-dark);font-weight:600;line-height:1.3}h1{font-size:var(--font-size-3xl);font-weight:700}.accent-gold{color:var(--accent-gold)}a{color:var(--text-medium);text-decoration:none;transition:color .2s ease}a:hover{color:var(--accent-gold)}.btn{align-items:center;border:none;border-radius:var(--radius-md);cursor:pointer;display:inline-flex;font-family:var(--font-primary);font-size:var(--font-size-base);font-weight:500;gap:var(--space-2);justify-content:center;padding:var(--space-3) var(--space-5);transition:all .2s ease}.btn-primary{background-color:var(--btn-primary);border:1px solid var(--btn-primary);color:#fff}.btn-primary:hover{background-color:var(--btn-primary-hover);box-shadow:var(--shadow-md);transform:translateY(-1px)}.btn-gold{background-color:var(--accent-gold);border:1px solid var(--accent-gold);color:var(--text-dark);font-weight:600}.btn-gold:hover{background-color:var(--accent-gold-dark);box-shadow:var(--shadow-gold);transform:translateY(-1px)}.btn-secondary{background-color:var(--btn-secondary);border:1px solid var(--border-medium);color:var(--text-dark)}.btn-secondary:hover{background-color:var(--btn-secondary-hover);border-color:var(--text-light)}.card{background:var(--bg-white);border:1px solid var(--border-light);border-radius:var(--radius-lg);box-shadow:var(--shadow-sm);overflow:hidden;transition:all .2s ease}.card:hover{box-shadow:var(--shadow-md)}.card-gold{border-top:3px solid var(--accent-gold)}.card-header{background-color:var(--bg-light);border-bottom:1px solid var(--border-light)}.card-body,.card-header{padding:var(--space-5)}.admin-layout{background-color:var(--bg-light);display:flex;min-height:100vh}.admin-sidebar{background:var(--bg-white);border-right:1px solid var(--border-light);box-shadow:var(--shadow-sm);color:var(--text-dark);height:100vh;overflow-y:auto;position:fixed;width:280px}.admin-main{flex:1 1;margin-left:280px;min-height:100vh}.admin-header{align-items:center;background:var(--bg-white);border-bottom:1px solid var(--border-light);box-shadow:var(--shadow-sm);display:flex;justify-content:space-between;padding:var(--space-4) var(--space-6)}.admin-content{background-color:var(--bg-light);min-height:calc(100vh - 80px);padding:var(--space-6)}.sidebar-nav-item{align-items:center;border-left:3px solid #0000;color:var(--text-medium);display:flex;gap:var(--space-3);padding:var(--space-4);text-decoration:none;transition:all .2s ease}.sidebar-nav-item:hover{background-color:var(--bg-light);color:var(--text-dark)}.sidebar-nav-item.active{background-color:#ffc1071a;border-left-color:var(--accent-gold);color:var(--accent-gold);font-weight:600}.stat-card{background:var(--bg-white);border:1px solid var(--border-light);border-radius:var(--radius-lg);box-shadow:var(--shadow-sm);padding:var(--space-5);transition:all .2s ease}.stat-card:hover{box-shadow:var(--shadow-md);transform:translateY(-2px)}.stat-card.gold{border-top:4px solid var(--accent-gold)}.stat-value{font-size:var(--font-size-3xl);font-weight:700;margin-bottom:var(--space-2)}.stat-value,.text-gold{color:var(--accent-gold)}.bg-gold{background-color:var(--accent-gold)}.border-gold{border-color:var(--accent-gold)}.text-success{color:var(--success)}.text-warning{color:var(--warning)}.text-error{color:var(--error)}.text-info{color:var(--info)}.bg-success{background-color:var(--success)}.bg-warning{background-color:var(--warning)}.bg-error{background-color:var(--error)}.bg-info{background-color:var(--info)}.badge-gold{background-color:var(--accent-gold);border-radius:var(--radius-sm);color:var(--text-dark);font-size:var(--font-size-xs);font-weight:600;padding:var(--space-1) var(--space-3)}.form-input:focus,.form-select:focus,.form-textarea:focus{border-color:var(--accent-gold);box-shadow:0 0 0 3px #ffc1071a;outline:none}@media (max-width:768px){.admin-layout{flex-direction:column}.admin-sidebar{box-shadow:var(--shadow-lg);height:100vh;left:-280px;position:fixed;top:0;transition:left .3s ease;width:280px;z-index:1000}.admin-sidebar.mobile-open{left:0}.admin-main{margin-left:0;width:100%}.admin-content{padding:var(--space-4)}.mobile-menu-toggle{align-items:center;background:none;border:none;color:var(--text-dark);cursor:pointer;display:flex;font-size:1.5rem;height:40px;justify-content:center;width:40px}.sidebar-overlay{background-color:#00000080;bottom:0;display:none;left:0;position:fixed;right:0;top:0;z-index:999}.sidebar-overlay.active{display:block}.admin-header{padding:var(--space-3) var(--space-4);position:-webkit-sticky;position:sticky;top:0;z-index:100}.user-name{display:none}.btn{font-size:var(--font-size-sm);padding:var(--space-2) var(--space-3)}.sidebar-header{padding:var(--space-4)!important}.sidebar-nav-item{padding:var(--space-3) var(--space-4)}}@media (max-width:480px){.admin-header{flex-wrap:wrap;gap:var(--space-2)}.admin-header>div{justify-content:flex-end;order:2;width:100%}.admin-header>div:first-child{order:1;width:auto}}.mobile-menu-toggle{background:none;border:none;border-radius:var(--radius-sm);color:var(--text-dark);cursor:pointer;display:none;font-size:1.5rem;padding:var(--space-2);z-index:1001}.mobile-menu-toggle:hover{background-color:var(--bg-light)}.sidebar-overlay{background-color:#00000080;bottom:0;display:none;left:0;position:fixed;right:0;top:0;z-index:999}.sidebar-overlay.active{display:block}@media (max-width:768px){.mobile-menu-toggle{align-items:center;display:flex!important;justify-content:center}.admin-layout{display:flex;flex-direction:column;min-height:100vh}.admin-sidebar{background:var(--bg-white)!important;box-shadow:var(--shadow-lg)!important;height:100vh!important;left:-280px!important;overflow-y:auto!important;position:fixed!important;top:0!important;transition:left .3s ease-in-out!important;width:280px!important;z-index:1000!important}.admin-sidebar.mobile-open{left:0!important}.admin-main{flex:1 1!important;margin-left:0!important;width:100%!important}.admin-header{background:var(--bg-white)!important;border-bottom:1px solid var(--border-light)!important;box-shadow:var(--shadow-sm)!important;padding:var(--space-3) var(--space-4)!important;position:-webkit-sticky!important;position:sticky!important;top:0!important;z-index:100!important}.user-name{display:none!important}.admin-content{background-color:var(--bg-light)!important;min-height:calc(100vh - 80px)!important;padding:var(--space-4)!important}.sidebar-close{background:none!important;border:none!important;border-radius:var(--radius-sm)!important;color:var(--text-light)!important;cursor:pointer!important;font-size:1.5rem!important;padding:var(--space-1)!important;position:absolute!important;right:var(--space-4)!important;top:var(--space-4)!important;z-index:1001!important}.sidebar-close:hover{background-color:var(--bg-light)!important}}@media (max-width:480px){.admin-header{padding:var(--space-2) var(--space-3)!important}.admin-content{padding:var(--space-3)!important}.mobile-menu-toggle{font-size:1.3rem!important;padding:var(--space-1)!important}}@media (max-width:1024px){.admin-content{padding:var(--space-4)!important}.card{margin-bottom:var(--space-3)!important}}@media (max-width:768px){.mobile-menu-toggle{align-items:center;background:none;border:none;border-radius:var(--radius-sm);color:var(--text-dark);cursor:pointer;display:flex!important;font-size:1.3rem;height:36px;justify-content:center;padding:var(--space-1);width:36px;z-index:1001}.mobile-menu-toggle:hover{background-color:var(--bg-light)}.admin-sidebar{background:var(--bg-white)!important;box-shadow:var(--shadow-xl)!important;height:100vh!important;left:-100%!important;max-width:280px!important;overflow-y:auto!important;position:fixed!important;top:0!important;transition:left .3s ease-in-out!important;width:85vw!important;z-index:1000!important}.admin-sidebar.mobile-open{left:0!important}.sidebar-overlay{background-color:#000000b3;bottom:0;display:none;left:0;position:fixed;right:0;top:0;z-index:999}.sidebar-overlay.active{display:block}.admin-main{margin-left:0!important;width:100%!important}.admin-header{background:var(--bg-white);min-height:56px;padding:var(--space-2) var(--space-3)!important;position:-webkit-sticky;position:sticky;top:0;z-index:100}.admin-header h1{font-size:var(--font-size-base)!important;max-width:150px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.user-name{display:none!important}.admin-content{min-height:calc(100vh - 56px)!important;padding:var(--space-3)!important}.sidebar-close{align-items:center;background:none!important;border:none!important;color:var(--text-light)!important;cursor:pointer!important;display:flex;font-size:1.3rem!important;height:32px;justify-content:center;padding:var(--space-1)!important;position:absolute!important;right:var(--space-3)!important;top:var(--space-3)!important;width:32px;z-index:1001!important}.sidebar-nav-item{min-height:48px;padding:var(--space-3)!important}.sidebar-nav-item span:first-child{font-size:1.1rem!important}.sidebar-nav-item span:last-child{font-size:var(--font-size-sm)!important}}@media (max-width:480px){.admin-header{gap:var(--space-2)!important;padding:var(--space-2) var(--space-2)!important}.admin-header h1{font-size:var(--font-size-sm)!important;max-width:120px}.mobile-menu-toggle{font-size:1.2rem;height:32px;width:32px}.admin-header>div{gap:var(--space-2)!important}.btn{min-height:32px;padding:var(--space-1) var(--space-2)!important}.btn,.user-avatar{font-size:var(--font-size-xs)!important}.user-avatar{height:28px!important;width:28px!important}.admin-content{padding:var(--space-2)!important}.card{border-radius:var(--radius-md)!important;margin-bottom:var(--space-2)!important}.card-header{padding:var(--space-2) var(--space-3)!important}.card-body{padding:var(--space-3)!important}.admin-sidebar{width:90vw!important}.sidebar-header{padding:var(--space-3)!important}.sidebar-header h2{font-size:var(--font-size-base)!important}}@media (max-width:375px){.admin-header{min-height:48px}.admin-header h1{font-size:var(--font-size-xs)!important;max-width:100px}.mobile-menu-toggle{height:28px;width:28px}.admin-content{padding:var(--space-1)!important}.btn{font-size:11px!important;padding:4px 8px!important}.logout-btn span{display:none}.logout-btn:after{content:"🚪"}.notifications-container{min-width:auto!important}}@media (max-height:480px) and (orientation:landscape){.admin-sidebar{height:100vh!important;overflow-y:auto!important}.sidebar-header,.sidebar-nav-item{padding:var(--space-2)!important}.sidebar-nav-item{min-height:40px}}.table-container{-webkit-overflow-scrolling:touch;overflow-x:auto}table{min-width:600px}th{font-size:var(--font-size-sm);white-space:nowrap}td,th{padding:var(--space-2) var(--space-3)!important}td{vertical-align:middle}@media (max-width:768px){table{min-width:400px}td,th{font-size:var(--font-size-xs)!important;padding:8px 12px!important}}.Navbar_navbar__n7ygh{background:#fff;border-bottom:2px solid #e8f5e9;box-shadow:0 2px 20px #0000001a;position:-webkit-sticky;position:sticky;top:0;z-index:1000}.Navbar_navContainer__kQ8aQ{align-items:center;display:flex;height:70px;justify-content:space-between;margin:0 auto;max-width:1200px;padding:0 2rem}.Navbar_logo__jA5Pb{align-items:center;color:#2e7d32;display:flex;font-size:1.8rem;font-weight:700;gap:.5rem;text-decoration:none}.Navbar_logo__jA5Pb span{color:gold}.Navbar_navMenu__wDre2{align-items:center;display:flex;gap:2rem}.Navbar_navLink__6hnmd{border-radius:8px;color:#333;font-weight:500;padding:.5rem 1rem;position:relative;text-decoration:none;transition:all .3s ease}.Navbar_navLink__6hnmd:hover{background:#f8fdf8;color:#2e7d32}.Navbar_navLink__6hnmd:after{background:#2e7d32;bottom:-2px;content:"";height:2px;left:50%;position:absolute;transform:translateX(-50%);transition:all .3s ease;width:0}.Navbar_navLink__6hnmd:hover:after{width:80%}.Navbar_userSection__HN6lz{align-items:center;display:flex;gap:1.5rem}.Navbar_userMenu__Wqss3{display:inline-block;position:relative}.Navbar_userGreeting__eCN55{align-items:center;background:#f8fdf8;border:2px solid #e8f5e9;border-radius:25px;color:#2e7d32;cursor:pointer;display:flex;font-weight:600;gap:.5rem;padding:.75rem 1.5rem;transition:all .3s ease}.Navbar_userGreeting__eCN55:hover{background:#e8f5e9;box-shadow:0 4px 12px #2e7d3233;transform:translateY(-2px)}.Navbar_userDropdown__iOF4W{background:#fff;border:1px solid #e8f5e9;border-radius:12px;box-shadow:0 8px 30px #00000026;margin-top:8px;min-width:200px;opacity:0;padding:.5rem;position:absolute;right:0;top:100%;transform:translateY(-10px);transition:all .3s ease;visibility:hidden;z-index:1001}.Navbar_userMenu__Wqss3:hover .Navbar_userDropdown__iOF4W{opacity:1;transform:translateY(0);visibility:visible}.Navbar_dropdownItem__POg6i{background:none;border:none;border-radius:8px;color:#333;cursor:pointer;display:block;font-family:Poppins,sans-serif;font-size:.9rem;padding:.75rem 1rem;text-align:left;text-decoration:none;transition:background .3s ease;width:100%}.Navbar_dropdownItem__POg6i:hover{background:#f8fdf8;color:#2e7d32}.Navbar_authSection__YosUd{align-items:center;display:flex;gap:1rem}.Navbar_authLink__7aknt{border-radius:25px;font-weight:600;padding:.75rem 1.5rem;text-decoration:none;transition:all .3s ease}.Navbar_authLink__7aknt:first-child{border:2px solid #2e7d32;color:#2e7d32}.Navbar_authLink__7aknt:first-child:hover{background:#2e7d32;color:#fff}.Navbar_authLink__7aknt:last-child{background:#2e7d32;border:2px solid #2e7d32;color:#fff}.Navbar_authLink__7aknt:last-child:hover{background:#1b5e20;box-shadow:0 4px 12px #2e7d324d;transform:translateY(-2px)}.Navbar_cartLink__e4evN{align-items:center;background:#f8fdf8;border:2px solid #e8f5e9;border-radius:50%;display:flex;height:50px;justify-content:center;position:relative;text-decoration:none;transition:all .3s ease;width:50px}.Navbar_cartLink__e4evN:hover{background:#e8f5e9;box-shadow:0 4px 12px #2e7d3233;transform:translateY(-2px)}.Navbar_cartIcon__4O5Um{color:#2e7d32;font-size:1.2rem}.Navbar_cartCount__zjvE3{align-items:center;background:#e53e3e;border-radius:50%;color:#fff;display:flex;font-size:.7rem;font-weight:600;height:20px;justify-content:center;position:absolute;right:-5px;top:-5px;width:20px}.Navbar_menuToggle__IPiTw{background:none;border:none;cursor:pointer;display:none;flex-direction:column;gap:4px;padding:.5rem}.Navbar_hamburger__CqGwx{background:#2e7d32;border-radius:2px;height:3px;transition:all .3s ease;width:25px}@media (max-width:768px){.Navbar_navContainer__kQ8aQ{padding:0 1rem}.Navbar_menuToggle__IPiTw{display:flex}.Navbar_navMenu__wDre2{align-items:center;background:#fff;box-shadow:0 4px 20px #0000001a;flex-direction:column;gap:2rem;height:calc(100vh - 70px);justify-content:flex-start;left:-100%;padding:2rem;position:fixed;top:70px;transition:left .3s ease;width:100%}.Navbar_navMenu__wDre2.Navbar_navMenuActive__6xlsz{left:0}.Navbar_navLink__6hnmd{border-radius:12px;font-size:1.1rem;padding:1rem 2rem;text-align:center;width:100%}.Navbar_authSection__YosUd,.Navbar_userSection__HN6lz{flex-direction:column;gap:1rem;width:100%}.Navbar_userMenu__Wqss3{width:100%}.Navbar_userGreeting__eCN55{justify-content:center;width:100%}.Navbar_userDropdown__iOF4W{border:1px solid #e8f5e9;box-shadow:none;margin-top:1rem;opacity:1;position:static;transform:none;visibility:visible;width:100%}.Navbar_authLink__7aknt{padding:1rem 2rem;text-align:center;width:100%}.Navbar_cartLink__e4evN{border-radius:12px;height:60px;width:100%}}@media (max-width:480px){.Navbar_logo__jA5Pb{font-size:1.5rem}.Navbar_navContainer__kQ8aQ{padding:0 .5rem}}.Home_homePage__QwIuy{background:linear-gradient(180deg,#fff,#f8fdf8);font-family:Inter,-apple-system,BlinkMacSystemFont,sans-serif;min-height:100vh}.Home_heroSection__DvuHx{background:linear-gradient(135deg,#e8f5e9,#fff 50%);overflow:hidden;padding:80px 5%;position:relative}.Home_heroContent__C-aql{grid-gap:60px;align-items:center;display:grid;gap:60px;grid-template-columns:1fr 1fr;margin:0 auto;max-width:1400px}.Home_heroText__XwiSk{animation:Home_fadeInLeft__yjdiB .8s ease-out}.Home_heroBadges__S8Hir{display:flex;flex-wrap:wrap;gap:12px;margin-bottom:24px}.Home_badge__-5QOV{-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);background:#4caf501a;border:1px solid #4caf5033;border-radius:50px;color:#2e7d32;font-size:.875rem;font-weight:600;padding:8px 16px}.Home_heroTitle__ChTsc{color:#1a202c;font-size:3.5rem;font-weight:800;letter-spacing:-.02em;line-height:1.1;margin-bottom:20px}.Home_highlight__JhexC{color:#2e7d32;display:inline-block;position:relative}.Home_highlight__JhexC:after{background:#4caf5033;bottom:5px;content:"";height:6px;left:0;position:absolute;width:100%;z-index:-1}.Home_heroDescription__lYKx3{color:#4a5568;font-size:1.125rem;line-height:1.6;margin-bottom:32px;max-width:500px}.Home_heroActions__bN51G{display:flex;gap:16px;margin-bottom:40px}.Home_primaryButton__yywU4{align-items:center;background:linear-gradient(135deg,#4caf50,#2e7d32);border-radius:12px;box-shadow:0 4px 20px #4caf504d;color:#fff;display:inline-flex;font-size:1.125rem;font-weight:600;gap:8px;padding:16px 32px;text-decoration:none;transition:all .3s ease}.Home_primaryButton__yywU4:hover{box-shadow:0 8px 30px #4caf5066;transform:translateY(-3px)}.Home_secondaryButton__J4CBB{background:#fff;border:2px solid #2e7d32;border-radius:12px;color:#2e7d32;font-size:1.125rem;font-weight:600;padding:16px 32px;text-decoration:none;transition:all .3s ease}.Home_secondaryButton__J4CBB:hover{background:#2e7d32;color:#fff;transform:translateY(-2px)}.Home_promotionSection__GMaOj{animation:Home_fadeInRight__XUwlf .8s ease-out}.Home_promotionHeader__3I4L-{align-items:center;display:flex;justify-content:space-between;margin-bottom:16px}.Home_promotionHeader__3I4L- h3{color:#1a202c;font-size:1.5rem;margin:0}.Home_promoIndicators__HIyF1{display:flex;gap:6px}.Home_indicator__kaWPk{background:#e2e8f0;border:none;border-radius:50%;cursor:pointer;height:8px;padding:0;transition:all .3s ease;width:8px}.Home_indicator__kaWPk.Home_active__bd9F1{background:#4caf50;border-radius:4px;width:20px}.Home_activePromotion__\+PbTV{background:linear-gradient(135deg,#4caf50,#2e7d32);border-radius:20px;box-shadow:0 20px 60px #00000026;color:#fff;margin-bottom:16px;overflow:hidden;padding:0;transition:transform .3s ease}.Home_activePromotion__\+PbTV:hover{transform:translateY(-5px)}.Home_promoBanner__AzvFs{border-radius:12px 12px 0 0;height:180px;overflow:hidden;position:relative}.Home_promoImage__YM7xZ{height:100%;object-fit:cover;transition:transform .5s ease;width:100%}.Home_activePromotion__\+PbTV:hover .Home_promoImage__YM7xZ{transform:scale(1.05)}.Home_promoImageFallback__nSASK{align-items:center;background:#0000001a;color:#ffffffe6;display:flex;font-size:4rem;font-weight:700;height:100%;justify-content:center;width:100%}.Home_promoContent__yDynf{padding:24px}.Home_promoHeaderRow__gqNge{align-items:center;display:flex;flex-wrap:wrap;gap:10px;justify-content:space-between;margin-bottom:16px}.Home_promoType__bN-cZ{-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);background:#fff3;border:1px solid #ffffff4d;border-radius:50px;color:#fff;font-size:.75rem;font-weight:700;letter-spacing:1px;padding:6px 16px;text-transform:uppercase}.Home_discountBadge__BGlpp{background:#ff4081;border-radius:6px;color:#fff;font-size:.875rem;font-weight:700;padding:6px 12px}.Home_promoTitle__H9UB4{font-size:1.5rem;font-weight:700;line-height:1.3;margin:0 0 12px}.Home_promoDescription__IPZUo{font-size:.95rem;line-height:1.5;margin:0 0 16px;opacity:.9}.Home_countdown__Geg0u{align-items:center;-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);background:#fff3;border-radius:8px;display:flex;gap:8px;margin:16px 0;padding:12px}.Home_countdownIcon__tg8aA{font-size:1.25rem}.Home_countdownText__\+jgua{font-size:.95rem;font-weight:600}.Home_timeBox__ne7qi{-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);background:#fff3;border-radius:8px;padding:8px 12px;text-align:center}.Home_timeValue__LehVJ{display:block;font-size:1.5rem;font-weight:700;line-height:1}.Home_timeLabel__daxd\+{font-size:.75rem;opacity:.9}.Home_promoButton__1acgj{background:#fff;border-radius:50px;box-shadow:0 4px 15px #0003;color:#2e7d32;display:inline-block;font-weight:600;padding:12px 24px;text-align:center;text-decoration:none;transition:all .3s ease}.Home_promoButton__1acgj:hover{background:#f8f9fa;transform:translateX(5px)}.Home_promoTarget__YyooD{font-size:.85rem;font-weight:500;margin:12px 0}.Home_nextPromotions__wlfCc{background:#fff;border-radius:12px;box-shadow:0 4px 20px #00000014;padding:20px}.Home_nextPromotions__wlfCc p{color:#4a5568;font-size:.875rem;margin-bottom:12px}.Home_nextPromo__0eOpH{align-items:center;border-bottom:1px solid #e2e8f0;display:flex;justify-content:space-between;padding:12px 0}.Home_nextPromo__0eOpH:last-child{border-bottom:none}.Home_nextPromoType__PNKDf{background:#f8f9fa;border-radius:4px;color:#4a5568;font-size:.75rem;font-weight:600;padding:4px 12px}.Home_nextPromoTitle__q0tjS{color:#1a202c;font-size:.875rem;font-weight:500}.Home_categoriesSection__p9KwQ{background:#fff;padding:80px 5%}.Home_sectionHeader__0-U\+5{margin-bottom:60px;text-align:center}.Home_sectionHeader__0-U\+5 h2{color:#1a202c;font-size:2.5rem;font-weight:700;margin-bottom:16px}.Home_sectionHeader__0-U\+5 p{color:#4a5568;font-size:1.125rem;margin:0 auto;max-width:600px}.Home_categoriesGrid__hjfG8{grid-gap:24px;display:grid;gap:24px;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));margin:0 auto;max-width:1000px}.Home_categoryCard__HuEgE{background:#f8f9fa;border:2px solid #e2e8f0;border-radius:16px;color:inherit;padding:24px;text-align:center;text-decoration:none;transition:all .3s ease}.Home_categoryCard__HuEgE:hover{background:#e8f5e9;border-color:#4caf50;box-shadow:0 15px 40px #00000026;transform:translateY(-5px)}.Home_categoryIcon__Bvpa8{align-items:center;display:flex;font-size:2.5rem;height:60px;justify-content:center;margin-bottom:16px}.Home_categoryCard__HuEgE h3{color:#1a202c;font-size:1.25rem;font-weight:600;margin-bottom:8px}.Home_categoryDescription__sI0KH{color:#4a5568;font-size:.875rem;line-height:1.5}.Home_categoryLink__OZxg4{align-items:center;color:inherit;display:inline-flex;font-size:.875rem;font-weight:600;gap:4px;margin-top:12px;opacity:.8}.Home_categoryCard__HuEgE:hover .Home_categoryLink__OZxg4{gap:8px;opacity:1}.Home_noCategories__aBvHz{background:#f8f9fa;border-radius:12px;color:#4a5568;margin:0 auto;max-width:600px;padding:60px;text-align:center}.Home_bestSellingSection__pAWEg,.Home_featuredSection__7lHAn,.Home_randomSection__cuFQj,.Home_topPicksSection__ZwcB5{padding:80px 5%}.Home_featuredSection__7lHAn{background:#f8fdf8}.Home_bestSellingSection__pAWEg{background:linear-gradient(135deg,#fff9f9,#fff5f5);overflow:hidden;position:relative}.Home_bestSellingSection__pAWEg:before{background:linear-gradient(135deg,#ff6b35,#ff4081);content:"";height:4px;left:0;position:absolute;right:0;top:0}.Home_randomSection__cuFQj{background:#f8fdf8}.Home_topPicksSection__ZwcB5{background:linear-gradient(135deg,#f0f9ff,#e6f7ff);overflow:hidden;position:relative}.Home_topPicksSection__ZwcB5:before{animation:Home_gradientShift__kBOpZ 3s ease infinite;background:linear-gradient(135deg,#2196f3,#03a9f4,#00bcd4);background-size:200% 200%;content:"";height:4px;left:0;position:absolute;right:0;top:0}@keyframes Home_gradientShift__kBOpZ{0%{background-position:0 50%}50%{background-position:100% 50%}to{background-position:0 50%}}.Home_bestSellingHeader__atk3l{margin-bottom:40px;position:relative;text-align:center;z-index:1}.Home_bestSellingHeader__atk3l h2{align-items:center;color:#1a202c;display:flex;font-size:2.5rem;font-weight:800;gap:10px;justify-content:center;margin-bottom:12px}.Home_bestSellingHeader__atk3l p{color:#4a5568;font-size:1.125rem;margin:0 auto 20px;max-width:600px}.Home_salesStats__fGJPb{display:flex;flex-wrap:wrap;gap:24px;justify-content:center;margin-top:20px}.Home_statItem__u2yFe{align-items:center;background:#fff;border:1px solid #e2e8f0;border-radius:50px;box-shadow:0 4px 15px #0000000d;display:flex;gap:8px;padding:8px 16px}.Home_statIcon__uUgex{font-size:1.25rem}.Home_statValue__BF5G9{color:#2e7d32;font-weight:700}.Home_statLabel__n24bo{color:#4a5568;font-size:.875rem}.Home_weekInfo__NKAgN{align-items:center;display:flex;flex-wrap:wrap;gap:20px;justify-content:center;margin-top:15px}.Home_weekBadge__hg7Oc{background:#2196f3;border-radius:20px;color:#fff;font-weight:600;padding:8px 16px}.Home_refreshInfo__iBMb2,.Home_weekBadge__hg7Oc{align-items:center;display:flex;font-size:.875rem;gap:6px}.Home_refreshInfo__iBMb2{color:#2196f3;font-weight:500}.Home_productsGrid__Cln3o{grid-gap:24px;display:grid;gap:24px;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));margin:0 auto;max-width:1200px}.Home_bestSellingGrid__NYSwD,.Home_productsGridSmall__4gq5d,.Home_topPicksGrid__OpZbz{grid-gap:24px;display:grid;gap:24px;grid-template-columns:repeat(auto-fill,minmax(250px,1fr));margin:0 auto;max-width:1400px}.Home_productsGridSmall__4gq5d{gap:20px}.Home_productCard__t-oQp{background:#fff;border:2px solid #e2e8f0;border-radius:16px;box-shadow:0 4px 20px #00000014;color:inherit;display:flex;flex-direction:column;overflow:hidden;text-decoration:none;transition:all .3s ease}.Home_productCard__t-oQp:hover{border-color:#4caf50;box-shadow:0 15px 40px #00000026;transform:translateY(-5px)}.Home_productCard__t-oQp.Home_medium__KzPL\+{height:320px}.Home_productCard__t-oQp.Home_small__sdn2t{border-radius:10px;height:280px}.Home_productCard__t-oQp.Home_bestSelling__HolV-{border:none;box-shadow:0 10px 30px #0000001a;height:320px;overflow:visible;position:relative;transition:all .4s ease}.Home_productCard__t-oQp.Home_bestSelling__HolV-:hover{box-shadow:0 20px 40px #00000026;transform:translateY(-8px)}.Home_productCard__t-oQp.Home_bestSelling__HolV-:after{background:linear-gradient(135deg,#ff6b35,#ff4081);border-radius:16px 16px 0 0;content:"";height:4px;left:0;position:absolute;right:0;top:0}.Home_topPickCard__j06xS{background:#fff;border:2px solid #e3f2fd;border-radius:16px;box-shadow:0 10px 30px #2196f31a;color:inherit;display:flex;flex-direction:column;height:340px;overflow:hidden;position:relative;text-decoration:none;transition:all .4s ease}.Home_topPickCard__j06xS:hover{border-color:#2196f3;box-shadow:0 20px 40px #2196f326;transform:translateY(-8px)}.Home_productImage__UcCPA{background:#f8f9fa;height:160px;overflow:hidden;position:relative}.Home_productCard__t-oQp.Home_small__sdn2t .Home_productImage__UcCPA,.Home_topPickCard__j06xS .Home_productImage__UcCPA{height:120px}.Home_productCard__t-oQp.Home_bestSelling__HolV- .Home_productImage__UcCPA,.Home_productCard__t-oQp.Home_medium__KzPL\+ .Home_productImage__UcCPA{height:150px}.Home_topPickCard__j06xS .Home_productImage__UcCPA{height:140px}.Home_productImg__ff\+Ai{height:100%;object-fit:cover;transition:transform .3s ease;width:100%}.Home_productCard__t-oQp:hover .Home_productImg__ff\+Ai,.Home_topPickCard__j06xS:hover .Home_productImg__ff\+Ai{transform:scale(1.05)}.Home_imageFallback__ccnJi,.Home_imagePlaceholder__xJjJz{align-items:center;background:linear-gradient(135deg,#e8f5e9,#c8e6c9);color:#2e7d32;display:flex;font-weight:700;height:100%;justify-content:center;width:100%}.Home_imageFallback__ccnJi{font-size:2.5rem}.Home_imagePlaceholder__xJjJz{font-size:2rem}.Home_imageFallback__ccnJi.Home_hidden__cIwd4{display:none}.Home_newBadge__m68iL,.Home_saleBadge__u7bY1{border-radius:6px;color:#fff;font-size:.75rem;font-weight:700;padding:6px 12px;position:absolute;right:12px;top:12px;z-index:2}.Home_saleBadge__u7bY1{background:#ff4081}.Home_newBadge__m68iL{background:#2196f3}.Home_productCard__t-oQp.Home_small__sdn2t .Home_newBadge__m68iL,.Home_productCard__t-oQp.Home_small__sdn2t .Home_saleBadge__u7bY1{font-size:.6rem;padding:3px 8px;right:8px;top:8px}.Home_positionBadge__sa3CP{align-items:center;border-radius:50%;box-shadow:0 4px 15px #0003;display:flex;font-size:1.125rem;font-weight:900;height:45px;justify-content:center;position:absolute;right:-12px;top:-12px;width:45px;z-index:3}.Home_weeklyBadge__HD8lX{-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);background:#2196f31a;border:1px solid #2196f333;border-radius:15px;color:#2196f3;font-weight:600}.Home_salesCount__ytlgr,.Home_weeklyBadge__HD8lX{font-size:.75rem;left:12px;padding:6px 12px;position:absolute;top:12px}.Home_salesCount__ytlgr{background:linear-gradient(135deg,#ff6b35,#ff4081);border-radius:20px;font-weight:700;gap:4px}.Home_rankBadge__kNONR,.Home_salesCount__ytlgr{align-items:center;color:#fff;display:flex;z-index:3}.Home_rankBadge__kNONR{border-radius:50%;font-size:1.125rem;font-weight:900;height:40px;justify-content:center;position:absolute;right:-10px;top:-10px;width:40px}.Home_rank1__i00pv{background:linear-gradient(135deg,gold,orange);box-shadow:0 4px 15px #ffa5004d}.Home_rank2__\+FlhQ{background:linear-gradient(135deg,silver,#a9a9a9);box-shadow:0 4px 15px #a9a9a94d}.Home_rank3__f9acT{background:linear-gradient(135deg,#cd7f32,#8b4513);box-shadow:0 4px 15px #cd7f324d}.Home_rankOther__cQa74{background:linear-gradient(135deg,#4caf50,#2e7d32);box-shadow:0 4px 15px #4caf504d}.Home_topPickBadge__aJZT7{align-items:center;background:#2196f3;border-radius:50%;color:#fff;display:flex;font-size:.875rem;font-weight:700;height:30px;justify-content:center;position:absolute;right:12px;top:12px;width:30px;z-index:2}.Home_productInfo__PQAIm{display:flex;flex:1 1;flex-direction:column;padding:20px}.Home_productCard__t-oQp.Home_small__sdn2t .Home_productInfo__PQAIm,.Home_topPickCard__j06xS .Home_productInfo__PQAIm{padding:16px}.Home_productCategory__VaT37{color:#4a5568;font-size:.75rem;font-weight:600;letter-spacing:.5px;margin-bottom:8px;text-transform:uppercase}.Home_productCard__t-oQp.Home_small__sdn2t .Home_productCategory__VaT37{font-size:.7rem;margin-bottom:4px}.Home_productName__3HYSs{color:#1a202c;font-size:1.125rem;font-weight:600;line-height:1.3;margin-bottom:8px}.Home_productCard__t-oQp.Home_small__sdn2t .Home_productName__3HYSs,.Home_topPickCard__j06xS .Home_productName__3HYSs{font-size:.95rem;line-height:1.3;margin-bottom:6px}.Home_topPickCard__j06xS .Home_productName__3HYSs{font-size:1rem;margin-bottom:10px}.Home_productDescription__Rh5tk{color:#4a5568;flex:1 1;font-size:.875rem;line-height:1.4;margin-bottom:16px}.Home_productCard__t-oQp.Home_small__sdn2t .Home_productDescription__Rh5tk,.Home_topPickCard__j06xS .Home_productDescription__Rh5tk{font-size:.85rem}.Home_productCard__t-oQp.Home_small__sdn2t .Home_productDescription__Rh5tk{display:none}.Home_productStats__P662t{display:flex;flex-wrap:wrap;gap:12px;margin-bottom:10px}.Home_rating__2Ld1W,.Home_sales__0t\+nL,.Home_views__pT1Yz{align-items:center;color:#4a5568;display:flex;font-size:.75rem;gap:4px}.Home_rating__2Ld1W{color:#ff9800}.Home_views__pT1Yz{color:#2196f3}.Home_sales__0t\+nL{color:#ff4081}.Home_priceSection__GTwIM{margin-bottom:12px}.Home_productPrice__bngg1{color:#2e7d32;font-size:1.25rem;font-weight:700}.Home_productCard__t-oQp.Home_small__sdn2t .Home_productPrice__bngg1,.Home_topPickCard__j06xS .Home_productPrice__bngg1{font-size:1rem}.Home_topPickCard__j06xS .Home_productPrice__bngg1{font-size:1.125rem}.Home_comparePrice__HMtLa{color:#a0aec0;font-size:.875rem;text-decoration:line-through}.Home_productCard__t-oQp.Home_small__sdn2t .Home_comparePrice__HMtLa{font-size:.8rem}.Home_productMeta__E7xAJ{align-items:center;display:flex;justify-content:space-between;margin-top:auto}.Home_stockStatus__iBjGo{align-items:center;border-radius:15px;display:inline-flex;font-size:.75rem;font-weight:600;gap:4px;padding:6px 12px}.Home_productCard__t-oQp.Home_small__sdn2t .Home_stockStatus__iBjGo{border-radius:12px;font-size:.7rem;padding:4px 10px}.Home_stockStatus__iBjGo.Home_inStock__\+NJ-B{background:#c6f6d5;color:#22543d}.Home_stockStatus__iBjGo.Home_outOfStock__fXPRw{background:#fed7d7;color:#c53030}.Home_ctaSection__DQndv{background:linear-gradient(135deg,#2e7d32,#4caf50);color:#fff;padding:80px 5%;text-align:center}.Home_ctaContent__7pkYf{margin:0 auto;max-width:800px}.Home_ctaContent__7pkYf h2{font-size:2.5rem;font-weight:700;margin-bottom:16px}.Home_ctaContent__7pkYf p{font-size:1.125rem;margin-bottom:32px;opacity:.9}.Home_ctaButton__rSbgR{background:#fff;border-radius:50px;color:#2e7d32;display:inline-block;font-size:1.125rem;font-weight:600;padding:16px 32px;text-decoration:none;transition:all .3s ease}.Home_ctaButton__rSbgR:hover{background:#f8f9fa;transform:translateY(-3px)}.Home_footer__cODD0{background:linear-gradient(135deg,#1a202c,#2d3748);color:#fff;margin-top:60px;padding:40px 5% 20px}.Home_footerContent__tBnGP{grid-gap:60px;border-bottom:1px solid #ffffff1a;display:grid;gap:60px;grid-template-columns:2fr 1fr;margin:0 auto;max-width:1200px;padding-bottom:30px}.Home_footerBrand__EvJDq{padding-right:20px}.Home_brandHeader__ix36D{align-items:center;display:flex;gap:12px;margin-bottom:16px}.Home_logoIcon__ZokMF{font-size:2rem}.Home_brandName__2kbNZ{color:#4caf50;font-size:1.75rem;font-weight:700;margin:0}.Home_brandTagline__K5Bfr{color:#cbd5e0;font-size:.95rem;line-height:1.6;margin-bottom:24px}.Home_socialLinks__6BDnR{flex-wrap:wrap;gap:16px}.Home_socialLink__hvkMa{align-items:center;background:#ffffff1a;border:1px solid #ffffff1a;border-radius:8px;color:#fff;display:inline-flex;gap:8px;padding:8px 16px;transition:all .3s ease}.Home_socialLink__hvkMa:hover{background:#4caf5033;border-color:#4caf50;transform:translateY(-2px)}.Home_socialIcon__Cboif{font-size:1.125rem}.Home_socialText__wodwZ{font-weight:500}.Home_linkColumn__icc\+9{display:flex;flex-direction:column;gap:12px}.Home_columnTitle__yfvPG{color:#fff;font-size:1.125rem;font-weight:600;margin:0 0 16px;padding-bottom:8px;position:relative}.Home_columnTitle__yfvPG:after{background:#4caf50;bottom:0;content:"";height:2px;left:0;position:absolute;width:40px}.Home_footerLink__hIsJw{color:#cbd5e0;font-size:.875rem;padding:4px 0;position:relative;text-decoration:none;transition:all .3s ease}.Home_footerLink__hIsJw:hover{color:#4caf50;transform:translateX(5px)}.Home_footerLink__hIsJw:before{content:"→";left:-15px;opacity:0;position:absolute;transition:all .3s ease}.Home_footerLink__hIsJw:hover:before{left:-10px;opacity:1}.Home_footerBottom__myWvP{padding-top:20px}.Home_bottomContent__n5qwV{align-items:center;display:flex;flex-wrap:wrap;gap:16px;justify-content:space-between}.Home_copyright__XKpI8{color:#a0aec0;font-size:.875rem;margin:0}.Home_contactInfo__pIB-e{align-items:center;display:flex;flex-wrap:wrap;gap:12px}.Home_contactItem__UGBxb{align-items:center;color:#cbd5e0;display:flex;font-size:.875rem;gap:6px;text-decoration:none;transition:color .3s ease}.Home_contactItem__UGBxb:hover{color:#4caf50}.Home_divider__LQZPT{color:#718096;font-size:.75rem}@media (max-width:768px){.Home_footerContent__tBnGP{gap:40px;grid-template-columns:1fr}.Home_footerBrand__EvJDq{padding-right:0;text-align:center}.Home_brandHeader__ix36D,.Home_socialLinks__6BDnR{justify-content:center}.Home_linkColumn__icc\+9{align-items:center}.Home_columnTitle__yfvPG:after{left:50%;transform:translateX(-50%)}.Home_bottomContent__n5qwV{flex-direction:column;gap:12px;text-align:center}.Home_contactInfo__pIB-e{justify-content:center}}.Home_socialLinks__6BDnR{display:flex;gap:20px}.Home_socialLink__hvkMa{color:#cbd5e0;font-size:.875rem;text-decoration:none;transition:color .3s ease}.Home_socialLink__hvkMa:hover{color:#4caf50}.Home_footerLinks__uMF-e{grid-gap:40px;display:grid;gap:40px;grid-template-columns:repeat(3,1fr)}.Home_linkColumn__icc\+9 h4{color:#fff;font-size:1.125rem;font-weight:600;margin-bottom:20px}.Home_linkColumn__icc\+9 a{color:#cbd5e0;display:block;font-size:.875rem;margin-bottom:12px;text-decoration:none;transition:color .3s ease}.Home_linkColumn__icc\+9 a:hover{color:#4caf50}.Home_footerBottom__myWvP{border-top:1px solid #2d3748;color:#cbd5e0;font-size:.875rem;margin:0 auto;max-width:1200px;padding-top:30px;text-align:center}.Home_footerBottom__myWvP p{margin:8px 0}.Home_sectionFooter__VqhzO{margin-top:40px;text-align:center}.Home_viewAllBtn__WrfVF{border:2px solid #2e7d32;border-radius:50px;color:#2e7d32;display:inline-block;font-weight:600;padding:12px 24px;text-decoration:none;transition:all .3s ease}.Home_viewAllBtn__WrfVF:hover{background:#2e7d32;color:#fff}.Home_randomNote__Sx5Na{align-items:center;color:#4a5568;display:flex;font-size:.875rem;gap:8px;justify-content:center;margin-top:24px;text-align:center}.Home_refreshIcon__7kDV3{animation:Home_spin__Met83 2s linear infinite}@keyframes Home_fadeInLeft__yjdiB{0%{opacity:0;transform:translateX(-30px)}to{opacity:1;transform:translateX(0)}}@keyframes Home_fadeInRight__XUwlf{0%{opacity:0;transform:translateX(30px)}to{opacity:1;transform:translateX(0)}}@keyframes Home_spin__Met83{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.Home_loadingContainer__PehxW{align-items:center;display:flex;flex-direction:column;gap:1rem;height:100vh;justify-content:center}.Home_loadingSpinner__KeqxF{animation:Home_spin__Met83 1s linear infinite;border:4px solid #e8f5e9;border-radius:50%;border-top-color:#4caf50;height:50px;width:50px}@media (max-width:1024px){.Home_footerContent__tBnGP,.Home_heroContent__C-aql{gap:40px;grid-template-columns:1fr}.Home_heroTitle__ChTsc{font-size:2.8rem}.Home_bestSellingGrid__NYSwD,.Home_productsGridSmall__4gq5d{grid-template-columns:repeat(auto-fill,minmax(220px,1fr))}.Home_topPicksGrid__OpZbz{grid-template-columns:repeat(auto-fill,minmax(250px,1fr))}}@media (max-width:768px){.Home_heroTitle__ChTsc{font-size:2.2rem}.Home_heroActions__bN51G{flex-direction:column}.Home_categoriesGrid__hjfG8,.Home_productsGrid__Cln3o{gap:16px;grid-template-columns:repeat(2,1fr)}.Home_footerLinks__uMF-e{grid-template-columns:repeat(2,1fr)}.Home_sectionHeader__0-U\+5 h2{font-size:2rem}.Home_promoHeaderRow__gqNge{align-items:flex-start;flex-direction:column;gap:8px}.Home_productsGridSmall__4gq5d{gap:15px;grid-template-columns:repeat(3,1fr)}.Home_productCard__t-oQp.Home_small__sdn2t{height:260px}.Home_productCard__t-oQp.Home_small__sdn2t .Home_productImage__UcCPA{height:110px}.Home_bestSellingGrid__NYSwD,.Home_topPicksGrid__OpZbz{gap:16px;grid-template-columns:repeat(2,1fr)}.Home_topPickCard__j06xS{height:320px}.Home_topPickCard__j06xS .Home_productImage__UcCPA{height:120px}.Home_weekInfo__NKAgN{flex-direction:column;gap:10px}.Home_salesStats__fGJPb{gap:12px}}@media (max-width:640px){.Home_productsGridSmall__4gq5d{grid-template-columns:repeat(2,1fr)}.Home_productCard__t-oQp.Home_small__sdn2t{height:250px}.Home_productCard__t-oQp.Home_small__sdn2t .Home_productImage__UcCPA{height:100px}.Home_productCard__t-oQp.Home_small__sdn2t .Home_productName__3HYSs{font-size:.9rem}.Home_bestSellingGrid__NYSwD,.Home_topPicksGrid__OpZbz{grid-template-columns:1fr;max-width:400px}.Home_topPickCard__j06xS{height:310px}}@media (max-width:480px){.Home_heroTitle__ChTsc{font-size:1.8rem}.Home_categoriesGrid__hjfG8,.Home_footerLinks__uMF-e,.Home_productsGrid__Cln3o{grid-template-columns:1fr}.Home_productCard__t-oQp{height:300px}.Home_heroBadges__S8Hir{align-items:flex-start;flex-direction:column}.Home_productsGridSmall__4gq5d{grid-template-columns:1fr;max-width:300px}}.ProductCatalog_productCatalog__7Oinh{background:#f8fdf8;font-family:Poppins,sans-serif;min-height:100vh}.ProductCatalog_desktopSidebarToggle__81Vy-{align-items:center;background:#4caf50;border:none;border-radius:50%;box-shadow:0 4px 15px #0003;color:#fff;cursor:pointer;display:none;font-size:1.2rem;height:40px;justify-content:center;left:20px;position:fixed;top:120px;transition:all .3s ease;width:40px;z-index:100}.ProductCatalog_desktopSidebarToggle__81Vy-:hover{background:#2e7d32;transform:scale(1.1)}.ProductCatalog_mobileSidebarToggle__bZWGF{align-items:center;background:#4caf50;border:none;border-radius:8px;box-shadow:0 4px 12px #4caf5033;color:#fff;cursor:pointer;display:none;font-weight:600;gap:.5rem;justify-content:center;margin:0 auto 1rem;max-width:300px;padding:.8rem 1.5rem;width:90%}.ProductCatalog_shopHeader__HZmfu{background:linear-gradient(135deg,#4caf50,#2e7d32);color:#fff;padding:2rem 5%;text-align:center}.ProductCatalog_shopHeader__HZmfu h1{font-size:2.5rem;font-weight:700;margin-bottom:1rem}.ProductCatalog_breadcrumbs__1UCz3{color:#e8f5e9;font-size:.95rem}.ProductCatalog_breadcrumbs__1UCz3 a{color:#fff;text-decoration:none}.ProductCatalog_breadcrumbs__1UCz3 a:hover{text-decoration:underline}.ProductCatalog_topSearchBar__ZdssF{background:#fff;border-bottom:1px solid #e8f5e9;box-shadow:0 2px 10px #0000000d;padding:1.5rem 5%}.ProductCatalog_searchForm__d5um\+{display:flex;gap:1rem;margin:0 auto;max-width:600px}.ProductCatalog_searchInput__bOPwL{border:2px solid #e8f5e9;border-radius:8px;flex:1 1;font-size:1rem;padding:.75rem 1rem;transition:border-color .3s ease}.ProductCatalog_searchInput__bOPwL:focus{border-color:#4caf50;outline:none}.ProductCatalog_searchButton__lc8Yx{background:#4caf50;border:none;border-radius:8px;color:#fff;cursor:pointer;font-weight:600;padding:.75rem 1.5rem;transition:background .3s ease}.ProductCatalog_searchButton__lc8Yx:hover{background:#2e7d32}.ProductCatalog_shopContainer__K41zj{display:flex;gap:2rem;margin:0 auto;max-width:1400px;padding:2rem 5%;position:relative}.ProductCatalog_filters__Hznor{background:#fff;border:1px solid #e2e8f0;border-radius:12px;box-shadow:0 4px 20px #00000014;flex-shrink:0;height:-webkit-fit-content;height:fit-content;max-height:calc(100vh - 4rem);overflow-y:auto;padding:1.5rem;position:-webkit-sticky;position:sticky;top:2rem;transition:all .3s ease;width:280px;z-index:10}.ProductCatalog_filters__Hznor.ProductCatalog_hidden__R1PB6{border:none;margin:0;opacity:0;overflow:hidden;padding:0;transform:translateX(-300px);width:0}.ProductCatalog_sidebarHeader__WOTxs{align-items:center;border-bottom:1px solid #e8f5e9;display:flex;justify-content:space-between;margin-bottom:1.5rem;padding-bottom:1rem;position:relative}.ProductCatalog_sidebarHeader__WOTxs h3{color:#2e7d32;font-size:1.1rem;font-weight:600;margin:0}.ProductCatalog_closeSidebar__tc4IC{background:#ff6b6b;height:40px;width:40px;z-index:1001}.ProductCatalog_closeSidebarDesktop__kBuvT,.ProductCatalog_closeSidebar__tc4IC{align-items:center;border:none;border-radius:50%;color:#fff;cursor:pointer;display:none;font-size:1.2rem;justify-content:center}.ProductCatalog_closeSidebarDesktop__kBuvT{background:#4caf50;box-shadow:0 2px 8px #0003;height:30px;position:absolute;right:-10px;top:-10px;width:30px;z-index:10}.ProductCatalog_filterSection__\+Wngz{background:#fff;border:1px solid #e8f5e9;border-radius:12px;box-shadow:0 2px 10px #00000014;margin-bottom:2rem;padding:1.5rem}.ProductCatalog_filterSection__\+Wngz h3{color:#2e7d32;font-size:1.1rem;font-weight:600;margin-bottom:1rem}.ProductCatalog_categoryList__aC3\+5{list-style:none;margin:0;padding:0}.ProductCatalog_categoryList__aC3\+5 li{margin-bottom:.5rem}.ProductCatalog_categoryList__aC3\+5 button{background:none;border:none;border-radius:6px;color:#666;cursor:pointer;display:block;font-family:Poppins,sans-serif;font-size:.95rem;padding:.5rem 0;text-align:left;text-decoration:none;transition:all .3s ease;width:100%}.ProductCatalog_categoryList__aC3\+5 button.ProductCatalog_active__ed8MG,.ProductCatalog_categoryList__aC3\+5 button:hover{background:#f8fdf8;color:#4caf50;font-weight:500;padding-left:.75rem}.ProductCatalog_flagFilters__dK91u{display:flex;flex-direction:column;gap:.75rem}.ProductCatalog_flagOption__8fHs3{align-items:center;border-radius:6px;cursor:pointer;display:flex;gap:.5rem;padding:.5rem;transition:background .3s ease}.ProductCatalog_flagOption__8fHs3:hover{background:#f8fdf8}.ProductCatalog_flagOption__8fHs3 input{margin:0}.ProductCatalog_priceRangeContainer__Al6aw{padding:.5rem 0}.ProductCatalog_priceRange__VPwbO{-webkit-appearance:none;background:#e2e8f0;border-radius:3px;height:6px;outline:none;width:100%}.ProductCatalog_priceRange__VPwbO::-webkit-slider-thumb{-webkit-appearance:none;background:#4caf50;border:3px solid #fff;border-radius:50%;box-shadow:0 2px 5px #0003;cursor:pointer;height:20px;width:20px}.ProductCatalog_priceInputGroup__iUgEl{align-items:center;display:flex;gap:.5rem;margin:1rem 0}.ProductCatalog_priceLabel__Z5jTc{color:#666;font-size:.9rem}.ProductCatalog_priceInput__Q46Hg{border:1px solid #e8f5e9;border-radius:6px;flex:1 1;font-size:.9rem;padding:.5rem}.ProductCatalog_priceValues__xgQrt{color:#666;display:flex;font-size:.85rem;justify-content:space-between}.ProductCatalog_sortFilter__uQkqA{background:#fff;border:1px solid #e8f5e9;border-radius:8px;color:#333;cursor:pointer;font-size:.95rem;padding:.75rem;width:100%}.ProductCatalog_sortFilter__uQkqA:focus{border-color:#4caf50;outline:none}.ProductCatalog_activeFilters__CF\+YY{display:flex;flex-wrap:wrap;gap:.5rem}.ProductCatalog_activeFilter__hP2Ou{align-items:center;background:#4caf50;border-radius:20px;color:#fff;display:flex;font-size:.85rem;gap:.5rem;padding:.4rem .8rem}.ProductCatalog_activeFilter__hP2Ou button{align-items:center;background:none;border:none;color:#fff;cursor:pointer;display:flex;font-size:1rem;height:16px;justify-content:center;padding:0;width:16px}.ProductCatalog_clearAll__fiq5H{background:#ff6b6b;border:none;border-radius:20px;color:#fff;cursor:pointer;font-size:.85rem;margin-top:.5rem;padding:.4rem .8rem}.ProductCatalog_clearAll__fiq5H:hover{background:#ff5252}.ProductCatalog_productGrid__vUryO{flex:1 1;min-width:0;transition:all .3s ease}.ProductCatalog_paginationInfo__9Hg9j{align-items:center;background:#fff;border:1px solid #e8f5e9;border-radius:12px;box-shadow:0 2px 10px #0000000d;color:#666;display:flex;font-size:.95rem;justify-content:space-between;margin-bottom:1.5rem;padding:1rem 1.5rem}.ProductCatalog_pageInfo__tZsCo{color:#4caf50;font-weight:600}.ProductCatalog_productsList__LzZpa{grid-gap:1rem;display:grid;gap:1rem;grid-template-columns:repeat(3,1fr);margin-bottom:2rem}.ProductCatalog_filters__Hznor.ProductCatalog_hidden__R1PB6~.ProductCatalog_productGrid__vUryO .ProductCatalog_productsList__LzZpa{grid-template-columns:repeat(4,1fr)}.ProductCatalog_productCard__\+uFTA{background:#fff;border:1px solid #e8f5e9;border-radius:12px;box-shadow:0 4px 12px #00000014;display:flex;flex-direction:column;height:100%;min-height:380px;overflow:hidden;position:relative;transition:all .3s ease}.ProductCatalog_productCard__\+uFTA:hover{box-shadow:0 8px 25px #0000001f;transform:translateY(-4px)}.ProductCatalog_productImage__uYofD{align-items:center;background:#f8fdf8;background-position:50%;background-size:cover;display:flex;height:140px;justify-content:center;position:relative}.ProductCatalog_badgeContainer__cFgTJ{display:flex;flex-direction:column;gap:4px;left:8px;position:absolute;top:8px;z-index:2}.ProductCatalog_productBadge__4bfUw{-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);border:1px solid #fff3;border-radius:16px;box-shadow:0 2px 6px #0000001a;color:#fff;font-size:.7rem;font-weight:600;padding:4px 10px;white-space:nowrap}.ProductCatalog_outOfStock__YqHHJ{background:#e53e3e}.ProductCatalog_growing__PDpbg{background:#38a169}.ProductCatalog_preOrder__q5Kje{background:#dd6b20}.ProductCatalog_new__Zdy5k{background:#2196f3}.ProductCatalog_limited__6zAsE{background:#b83280}.ProductCatalog_sale__PG9Mj{background:#d69e2e}.ProductCatalog_bestSeller__sgd3H{background:#c05621}.ProductCatalog_noImagePlaceholder__EdPSW{color:#9ca3af;font-size:.9rem;text-align:center;z-index:1}.ProductCatalog_productInfo__jA9J6{display:flex;flex:1 1;flex-direction:column;gap:.5rem;overflow:hidden;padding:1rem}.ProductCatalog_categoryTag__yMWOm{align-self:flex-start;background:#e8f5e9;border-radius:10px;color:#2e7d32;display:inline-block;font-size:.75rem;font-weight:500;margin-bottom:.4rem;padding:.3rem .7rem}.ProductCatalog_productTitle__FW3VT{color:#1f2937;font-size:.95rem;font-weight:600;line-height:1.3}.ProductCatalog_productDescription__SkQlz,.ProductCatalog_productTitle__FW3VT{-webkit-line-clamp:2;-webkit-box-orient:vertical;display:-webkit-box;margin:0;min-height:2.4em;overflow:hidden}.ProductCatalog_productDescription__SkQlz{color:#6b7280;flex:1 1;font-size:.8rem;line-height:1.4}.ProductCatalog_productTags__kVPrg{display:flex;flex-wrap:wrap;gap:.3rem;margin:.2rem 0}.ProductCatalog_tag__L99wk{background:#e8f5e9;border-radius:8px;color:#2e7d32;font-size:.7rem;font-weight:500;padding:.2rem .5rem}.ProductCatalog_growingProgress__\+Iikk{background:#f0fff4;border:1px solid #c6f6d5;border-radius:6px;margin:.4rem 0;padding:.5rem}.ProductCatalog_progressLabel__gQCSs{color:#22543d;font-size:.72rem;font-weight:500;margin-bottom:.3rem}.ProductCatalog_progressBar__VUVTv{background:#e2e8f0;border-radius:8px;height:4px;overflow:hidden}.ProductCatalog_progressFill__PAms7{background:linear-gradient(90deg,#48bb78,#38a169);border-radius:8px;height:100%;transition:width .3s ease}.ProductCatalog_priceSection__ksLNE{align-items:center;display:flex;flex-wrap:wrap;gap:.5rem;margin:.4rem 0}.ProductCatalog_currentPrice__\+ZFhr{font-size:1.1rem;font-weight:700}.ProductCatalog_priceFarm__lm9l\+{color:#dd6b20}.ProductCatalog_priceCosmetics__1cAmR{color:#9f7aea}.ProductCatalog_priceFashion__uzBKm{color:#ed64a6}.ProductCatalog_priceHome__XJPxc{color:#4299e1}.ProductCatalog_comparePrice__DuDfw{color:#9ca3af;font-size:.85rem;text-decoration:line-through}.ProductCatalog_discountBadge__qsibz{background:#fed7d7;border-radius:8px;color:#c53030;font-size:.7rem;font-weight:600;padding:.2rem .5rem}.ProductCatalog_stockInfo__FOTyF{align-items:center;display:flex;font-size:.78rem;justify-content:space-between;margin:.4rem 0}.ProductCatalog_stockStatus__DOSqN{border-radius:10px;font-weight:600;padding:.2rem .5rem}.ProductCatalog_inStock__WsMsM{background:#c6f6d5;color:#22543d}.ProductCatalog_outOfStock__YqHHJ{background:#fed7d7;color:#c53030}.ProductCatalog_preOrderStatus__iCq1I{background:#feebc8;border-radius:10px;color:#744210;font-weight:600;padding:.2rem .5rem}.ProductCatalog_stockQuantity__tyf1U{color:#6b7280;font-size:.74rem}.ProductCatalog_addToCart__Vgr0R{border:none;border-radius:6px;color:#fff;cursor:pointer;font-family:Poppins,sans-serif;font-size:.85rem;font-weight:600;margin-top:auto;padding:.6rem;transition:all .3s ease;width:100%}.ProductCatalog_btnFarm__soddN{background:linear-gradient(135deg,#ed8936,#dd6b20)}.ProductCatalog_btnCosmetics__ZW1NK{background:linear-gradient(135deg,#9f7aea,#805ad5)}.ProductCatalog_btnFashion__cghEg{background:linear-gradient(135deg,#ed64a6,#d53f8c)}.ProductCatalog_btnHome__0xUo7{background:linear-gradient(135deg,#4299e1,#3182ce)}.ProductCatalog_addToCart__Vgr0R:hover:not(:disabled){box-shadow:0 3px 8px #0000001f;transform:translateY(-2px)}.ProductCatalog_addToCart__Vgr0R:disabled{background:#d1d5db;box-shadow:none;cursor:not-allowed;transform:none}.ProductCatalog_quickView__7WlJI{color:#4caf50;display:block;font-size:.8rem;font-weight:500;margin-top:.5rem;text-align:center;text-decoration:none;transition:color .3s ease}.ProductCatalog_quickView__7WlJI:hover{color:#2e7d32}.ProductCatalog_pagination__qyXy8{align-items:center;background:#fff;border:1px solid #e8f5e9;border-radius:10px;box-shadow:0 2px 8px #0000000d;display:flex;gap:1rem;justify-content:center;margin-top:2rem;padding:1rem}.ProductCatalog_pageButton__vaZEe{background:#4caf50;border:none;border-radius:6px;color:#fff;cursor:pointer;font-size:.85rem;font-weight:600;min-width:90px;padding:.5rem 1rem;transition:all .3s ease}.ProductCatalog_pageButton__vaZEe:hover:not(:disabled){background:#2e7d32;transform:translateY(-2px)}.ProductCatalog_pageButton__vaZEe:disabled{background:#e2e8f0;color:#a0aec0;cursor:not-allowed}.ProductCatalog_pageNumbers__Za05X{align-items:center;display:flex;gap:.5rem}.ProductCatalog_pageNumber__Xs5pk{align-items:center;background:#f8f9fa;border:1px solid #e2e8f0;border-radius:6px;cursor:pointer;display:flex;font-size:.85rem;font-weight:500;height:34px;justify-content:center;transition:all .3s ease;width:34px}.ProductCatalog_pageNumber__Xs5pk:hover{background:#e2e8f0}.ProductCatalog_pageNumber__Xs5pk.ProductCatalog_active__ed8MG{background:#4caf50;border-color:#4caf50;color:#fff}.ProductCatalog_loading__Vrpgo,.ProductCatalog_noProducts__BbJ-G{font-size:1rem;grid-column:1/-1;padding:2rem;text-align:center}.ProductCatalog_loading__Vrpgo{color:#4caf50}.ProductCatalog_loadingSpinner__6HhZb{animation:ProductCatalog_spin__L7UDQ 1s linear infinite;border:3px solid #e8f5e9;border-radius:50%;border-top-color:#4caf50;height:36px;margin:0 auto 1rem;width:36px}@keyframes ProductCatalog_spin__L7UDQ{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.ProductCatalog_noProducts__BbJ-G{color:#6b7280}.ProductCatalog_ctaSecondary__hVzFF{background:#4caf50;border-radius:6px;color:#fff;display:inline-block;font-weight:600;margin-top:.8rem;padding:.6rem 1.2rem;text-decoration:none;transition:all .3s ease}.ProductCatalog_ctaSecondary__hVzFF:hover{background:#2e7d32;transform:translateY(-2px)}.ProductCatalog_errorMessage__gZJm9{background:#fed7d7;border:1px solid #fc8181;border-radius:10px;color:#c53030;padding:1.5rem;text-align:center}.ProductCatalog_sidebarOverlay__bMVhW{background:#00000080;bottom:0;display:none;left:0;opacity:0;position:fixed;right:0;top:0;transition:opacity .3s ease;z-index:998}.ProductCatalog_sidebarOverlay__bMVhW:not(.ProductCatalog_hidden__R1PB6){display:block;opacity:1}@media (min-width:1025px){.ProductCatalog_closeSidebarDesktop__kBuvT,.ProductCatalog_desktopSidebarToggle__81Vy-{display:flex}.ProductCatalog_closeSidebar__tc4IC,.ProductCatalog_mobileSidebarToggle__bZWGF{display:none!important}.ProductCatalog_filters__Hznor{display:block!important}.ProductCatalog_sidebarOverlay__bMVhW{display:none!important}}@media (max-width:1024px){.ProductCatalog_shopContainer__K41zj{flex-direction:column;gap:1rem;padding:1rem}.ProductCatalog_mobileSidebarToggle__bZWGF{display:flex}.ProductCatalog_filters__Hznor{background:#fff;border:none;border-radius:0;box-shadow:0 0 25px #00000026;height:100vh;left:-320px;margin:0;opacity:1!important;overflow-y:auto;padding:60px 1.5rem 1.5rem;position:fixed;top:0;transform:none!important;transition:left .3s ease;width:300px;z-index:999}.ProductCatalog_filters__Hznor.ProductCatalog_sidebarOpen__UhUEf{left:0}.ProductCatalog_closeSidebar__tc4IC{background:#4caf50;border-radius:50%;box-shadow:0 4px 12px #0003;color:#fff;display:flex!important;font-size:1.8rem;height:45px;position:fixed;right:15px;top:15px;width:45px;z-index:1001}.ProductCatalog_closeSidebarDesktop__kBuvT,.ProductCatalog_desktopSidebarToggle__81Vy-{display:none!important}.ProductCatalog_filters__Hznor.ProductCatalog_hidden__R1PB6{left:-320px!important}.ProductCatalog_sidebarOverlay__bMVhW{display:block;opacity:0;pointer-events:none;transition:opacity .3s ease}.ProductCatalog_sidebarOverlay__bMVhW.ProductCatalog_sidebarOpen__UhUEf{opacity:1;pointer-events:all}.ProductCatalog_productsList__LzZpa{gap:1rem;grid-template-columns:repeat(2,1fr)}.ProductCatalog_filters__Hznor.ProductCatalog_hidden__R1PB6~.ProductCatalog_productGrid__vUryO .ProductCatalog_productsList__LzZpa{grid-template-columns:repeat(2,1fr)}.ProductCatalog_productCard__\+uFTA{height:auto;min-height:360px}.ProductCatalog_productImage__uYofD{height:130px}.ProductCatalog_productInfo__jA9J6{padding:.9rem}.ProductCatalog_productTitle__FW3VT{font-size:.92rem}.ProductCatalog_addToCart__Vgr0R{font-size:.85rem;padding:.6rem}}@media (max-width:768px){.ProductCatalog_shopHeader__HZmfu h1{font-size:1.8rem}.ProductCatalog_breadcrumbs__1UCz3{font-size:.85rem}.ProductCatalog_searchForm__d5um\+{flex-direction:column;gap:.5rem}.ProductCatalog_searchButton__lc8Yx,.ProductCatalog_searchInput__bOPwL{width:100%}.ProductCatalog_productsList__LzZpa{gap:.8rem}.ProductCatalog_productCard__\+uFTA{min-height:340px}.ProductCatalog_productImage__uYofD{height:120px}.ProductCatalog_productTitle__FW3VT{font-size:.88rem;min-height:2.2em}.ProductCatalog_productDescription__SkQlz{font-size:.78rem}.ProductCatalog_priceSection__ksLNE{margin:.3rem 0}.ProductCatalog_currentPrice__\+ZFhr{font-size:1.05rem}.ProductCatalog_addToCart__Vgr0R{font-size:.82rem;padding:.55rem}.ProductCatalog_pagination__qyXy8{flex-direction:column;gap:1rem;padding:1rem}.ProductCatalog_pageNumbers__Za05X{flex-wrap:wrap;justify-content:center;order:1}.ProductCatalog_pageButton__vaZEe{order:2;width:100%}.ProductCatalog_paginationInfo__9Hg9j{flex-direction:column;font-size:.9rem;gap:.5rem;padding:.8rem;text-align:center}}@media (max-width:640px){.ProductCatalog_productsList__LzZpa{gap:1rem;grid-template-columns:1fr;margin:0 auto 1.5rem;max-width:400px}.ProductCatalog_productCard__\+uFTA{max-width:100%;min-height:320px}.ProductCatalog_productImage__uYofD{height:110px}.ProductCatalog_productTitle__FW3VT{font-size:.85rem}.ProductCatalog_addToCart__Vgr0R{font-size:.8rem;padding:.5rem}.ProductCatalog_mobileSidebarToggle__bZWGF{font-size:.9rem;padding:.7rem}.ProductCatalog_filters__Hznor{left:-280px;width:280px}.ProductCatalog_filters__Hznor.ProductCatalog_sidebarOpen__UhUEf{left:0}}@media (max-width:480px){.ProductCatalog_shopHeader__HZmfu{padding:1.5rem 1rem}.ProductCatalog_shopHeader__HZmfu h1{font-size:1.5rem}.ProductCatalog_topSearchBar__ZdssF{padding:1rem}.ProductCatalog_productCard__\+uFTA{min-height:300px}.ProductCatalog_productImage__uYofD{height:100px}.ProductCatalog_productTitle__FW3VT{font-size:.82rem}.ProductCatalog_productDescription__SkQlz{font-size:.75rem}.ProductCatalog_addToCart__Vgr0R{font-size:.78rem;padding:.45rem}}@media (min-width:769px) and (max-width:1024px){.ProductCatalog_productsList__LzZpa{grid-template-columns:repeat(2,1fr)}}@media (min-width:1201px){.ProductCatalog_filters__Hznor.ProductCatalog_hidden__R1PB6~.ProductCatalog_productGrid__vUryO .ProductCatalog_productsList__LzZpa{grid-template-columns:repeat(4,1fr)}}@media (min-width:1025px) and (max-width:1200px){.ProductCatalog_productsList__LzZpa{grid-template-columns:repeat(2,1fr)}.ProductCatalog_filters__Hznor.ProductCatalog_hidden__R1PB6~.ProductCatalog_productGrid__vUryO .ProductCatalog_productsList__LzZpa{grid-template-columns:repeat(3,1fr)}}@media (min-width:1025px){.ProductCatalog_filters__Hznor.ProductCatalog_hidden__R1PB6{border:none;margin:0;opacity:0;overflow:hidden;padding:0;transform:translateX(-300px);width:0}.ProductCatalog_filters__Hznor.ProductCatalog_hidden__R1PB6~.ProductCatalog_productGrid__vUryO{margin-left:0}}@media (max-width:1024px){.ProductCatalog_filters__Hznor:not(.ProductCatalog_sidebarOpen__UhUEf){left:-320px!important}.ProductCatalog_filters__Hznor.ProductCatalog_sidebarOpen__UhUEf{left:0!important}}.CategoryPage_categoryPage__AXJMP{background:#f8f9fa;min-height:100vh}.CategoryPage_categoryHeader__7R0TB{background:linear-gradient(135deg,#667eea,#764ba2);color:#fff;padding:3rem 5%;text-align:center}.CategoryPage_categoryHeader__7R0TB h1{font-size:2.5rem;font-weight:700;margin-bottom:1rem}.CategoryPage_categoryHeader__7R0TB p{font-size:1.1rem;margin:0 auto;max-width:600px;opacity:.9}.CategoryPage_breadcrumbs__QaYvE{color:#fffc;font-size:.9rem;margin-bottom:1rem}.CategoryPage_breadcrumbs__QaYvE a{color:#fff;text-decoration:none}.CategoryPage_breadcrumbs__QaYvE a:hover{text-decoration:underline}.CategoryPage_filtersNavbar__qXTnZ{background:#fff;border-bottom:1px solid #e9ecef;box-shadow:0 2px 10px #0000001a;position:-webkit-sticky;position:sticky;top:0;z-index:100}.CategoryPage_navbarContent__ydmS3{align-items:center;display:flex;flex-wrap:wrap;gap:2rem;justify-content:space-between;padding:1rem 5%}.CategoryPage_searchForm__7xku8{background:#f8f9fa;border:1px solid #dee2e6;border-radius:25px;display:flex;min-width:300px;overflow:hidden}.CategoryPage_searchInput__Up8gg{background:#0000;border:none;flex:1 1;font-size:.95rem;outline:none;padding:.75rem 1.5rem}.CategoryPage_searchButton__f0\+jL{background:#6c757d;border:none;color:#fff;cursor:pointer;padding:.75rem 1.5rem;transition:background .3s ease}.CategoryPage_searchButton__f0\+jL:hover{background:#5a6268}.CategoryPage_subcategoryFilters__KXhSI{display:flex;flex:1 1;flex-wrap:wrap;gap:.5rem;justify-content:center}.CategoryPage_subcategoryBtn__iOkmA{background:#0000;border:2px solid;border-radius:20px;cursor:pointer;font-size:.9rem;font-weight:500;padding:.5rem 1rem;transition:all .3s ease;white-space:nowrap}.CategoryPage_subcategoryBtn__iOkmA:hover{transform:translateY(-1px)}.CategoryPage_subcategoryBtn__iOkmA.CategoryPage_active__4PXm0{color:#fff}.CategoryPage_navbarControls__rMLk1{align-items:center;display:flex;gap:1rem}.CategoryPage_sortDropdown__3WtpA{background:#fff;border:1px solid #dee2e6;border-radius:6px;cursor:pointer;font-size:.9rem;padding:.5rem 1rem}.CategoryPage_filterToggle__WYSAC{background:#007bff;border:none;border-radius:6px;color:#fff;cursor:pointer;font-size:.9rem;padding:.5rem 1rem;transition:background .3s ease}.CategoryPage_filterToggle__WYSAC:hover{background:#0056b3}.CategoryPage_expandedFilters__trG3i{grid-gap:2rem;background:#f8f9fa;border-top:1px solid #dee2e6;display:grid;gap:2rem;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));padding:1.5rem 5%}.CategoryPage_filterSection__ml0Ck h4{color:#495057;font-size:1rem;margin-bottom:1rem}.CategoryPage_priceFilter__lglJB{display:flex;flex-direction:column;gap:.5rem}.CategoryPage_priceRange__r86ys{width:100%}.CategoryPage_flagFilters__7rwFQ{display:flex;flex-direction:column;gap:.75rem}.CategoryPage_flagOption__Q6eWt{align-items:center;cursor:pointer;display:flex;font-size:.9rem;gap:.5rem}.CategoryPage_activeFilters__Y0K8S{align-items:center;display:flex}.CategoryPage_clearAll__qQ4MG{background:#dc3545;border:none;border-radius:4px;color:#fff;cursor:pointer;font-size:.9rem;padding:.5rem 1rem}.CategoryPage_clearAll__qQ4MG:hover{background:#c82333}.CategoryPage_productsMain__EVLEM{margin:0 auto;max-width:1400px;padding:2rem 5%}.CategoryPage_resultsInfo__NsaYU{background:#fff;border:1px solid #e9ecef;border-radius:10px;box-shadow:0 2px 8px #0000000d;color:#6c757d;font-size:.95rem;margin-bottom:2rem;padding:1rem 1.5rem}.CategoryPage_filterInfo__BiC68{color:#495057;font-weight:500}.CategoryPage_productsGrid__Q\+R1s{grid-gap:2rem;display:grid;gap:2rem;grid-template-columns:repeat(auto-fill,minmax(280px,1fr));min-height:400px}.CategoryPage_productCard__bhsqX{background:#fff;border:1px solid #e9ecef;border-radius:12px;box-shadow:0 4px 20px #00000014;display:flex;flex-direction:column;height:100%;min-height:480px;overflow:hidden;transition:all .3s ease}.CategoryPage_productCard__bhsqX:hover{box-shadow:0 8px 30px #0000001f;transform:translateY(-5px)}.CategoryPage_productImage__YPmba{align-items:center;background:#f8f9fa;background-position:50%;background-size:cover;display:flex;height:200px;justify-content:center;position:relative}.CategoryPage_badgeContainer__Oq7j0{display:flex;flex-direction:column;gap:.5rem;left:1rem;position:absolute;top:1rem}.CategoryPage_productBadge__4OvXm{border-radius:12px;color:#fff;font-size:.75rem;font-weight:600;padding:.3rem .7rem}.CategoryPage_productBadge__4OvXm.CategoryPage_outOfStock__JJ\+\+3{background:#dc3545}.CategoryPage_productBadge__4OvXm.CategoryPage_growing__kR4zi{background:#28a745}.CategoryPage_productBadge__4OvXm.CategoryPage_preOrder__4oNHM{background:#fd7e14}.CategoryPage_productBadge__4OvXm.CategoryPage_new__slWDr{background:#17a2b8}.CategoryPage_productBadge__4OvXm.CategoryPage_sale__WOxY7{background:#e83e8c}.CategoryPage_productBadge__4OvXm.CategoryPage_bestSeller__DD9AU{background:#dc3545}.CategoryPage_noImagePlaceholder__OFIj2{color:#6c757d;font-size:1rem}.CategoryPage_productInfo__fQA1l{display:flex;flex:1 1;flex-direction:column;padding:1.5rem}.CategoryPage_productTitle__sfLuJ{color:#212529;font-size:1.1rem;font-weight:600;margin-bottom:.5rem}.CategoryPage_productDescription__six7z{color:#6c757d;font-size:.9rem;line-height:1.5;margin-bottom:1rem}.CategoryPage_priceSection__sNcSW{align-items:center;display:flex;flex-wrap:wrap;gap:.75rem;margin-bottom:1.5rem}.CategoryPage_currentPrice__mJBod{font-size:1.25rem;font-weight:700}.CategoryPage_comparePrice__o7fpA{color:#6c757d;font-size:.9rem;text-decoration:line-through}.CategoryPage_addToCart__Mkn88{border:none;border-radius:6px;color:#fff;cursor:pointer;font-weight:600;margin-bottom:.75rem;margin-top:auto;padding:.75rem;transition:all .3s ease;width:100%}.CategoryPage_addToCart__Mkn88:hover:not(:disabled){box-shadow:0 4px 12px #00000026;transform:translateY(-2px)}.CategoryPage_addToCart__Mkn88:disabled{cursor:not-allowed;opacity:.6}.CategoryPage_quickView__ULgwh{display:block;font-size:.9rem;font-weight:500;text-align:center;text-decoration:none;transition:color .3s ease}.CategoryPage_quickView__ULgwh:hover{text-decoration:underline}.CategoryPage_pagination__GqPfc{align-items:center;background:#fff;border:1px solid #e9ecef;border-radius:12px;box-shadow:0 2px 15px #00000014;display:flex;gap:1rem;justify-content:center;margin-top:3rem;padding:1.5rem}.CategoryPage_pageButton__rY4EK{border:none;border-radius:8px;color:#fff;cursor:pointer;font-size:.9rem;font-weight:600;min-width:100px;padding:.6rem 1.2rem;transition:all .3s ease}.CategoryPage_pageButton__rY4EK:hover:not(:disabled){box-shadow:0 4px 12px #00000026;transform:translateY(-2px)}.CategoryPage_pageButton__rY4EK:disabled{background:#e2e8f0;box-shadow:none;color:#a0aec0;cursor:not-allowed;transform:none}.CategoryPage_pageNumbers__973CR{align-items:center;display:flex;flex-wrap:wrap;gap:.5rem;justify-content:center}.CategoryPage_pageNumber__fQxMx{align-items:center;border:1px solid #e2e8f0;border-radius:8px;cursor:pointer;display:flex;font-size:.9rem;font-weight:500;height:38px;justify-content:center;transition:all .3s ease;width:38px}.CategoryPage_pageNumber__fQxMx:hover{background:#e9ecef;transform:translateY(-1px)}.CategoryPage_pageNumber__fQxMx.CategoryPage_active__4PXm0{box-shadow:0 2px 8px #0000004d;color:#fff}.CategoryPage_noProducts__Aqd9m{background:#fff;border-radius:12px;box-shadow:0 4px 20px #00000014;padding:4rem 2rem;text-align:center}.CategoryPage_noProducts__Aqd9m h3{color:#212529;margin-bottom:1rem}.CategoryPage_ctaButton__GrNSz{border:none;border-radius:6px;color:#fff;cursor:pointer;font-weight:600;padding:.75rem 2rem;transition:all .3s ease}.CategoryPage_ctaButton__GrNSz:hover{box-shadow:0 4px 12px #0003;transform:translateY(-2px)}.CategoryPage_loadingContainer__0T277{align-items:center;display:flex;flex-direction:column;gap:1rem;justify-content:center;min-height:50vh}.CategoryPage_loadingSpinner__2\+sSH{animation:CategoryPage_spin__v6F\+f 1s linear infinite;border:4px solid #f3f3f3;border-radius:50%;border-top-color:#007bff;height:40px;width:40px}@keyframes CategoryPage_spin__v6F\+f{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.CategoryPage_fashionFilters__n\+c6g{display:flex;flex-direction:column;gap:15px;width:100%}.CategoryPage_genderFilters__17PxJ{display:flex;flex-wrap:wrap;gap:10px}.CategoryPage_genderBtn__scYEO{background:#0000;border:2px solid;border-radius:25px;cursor:pointer;font-weight:600;padding:8px 16px;transition:all .3s ease}.CategoryPage_genderBtn__scYEO.CategoryPage_active__4PXm0{color:#fff}.CategoryPage_itemFilters__-9fYE{align-items:center;display:flex;flex-wrap:wrap;gap:10px}.CategoryPage_filterLabel__\+xUBH{color:#666;font-weight:600;margin-right:5px}.CategoryPage_itemBtn__sp4PY{background:#0000;border:1px solid;border-radius:20px;cursor:pointer;font-size:14px;padding:6px 12px;transition:all .3s ease}.CategoryPage_itemBtn__sp4PY.CategoryPage_active__4PXm0{color:#fff}.CategoryPage_activeFilterPills__OQ9WK{display:flex;flex-wrap:wrap;gap:8px;margin-top:10px}.CategoryPage_filterPill__5nosO{border-radius:20px;cursor:pointer;font-size:14px;padding:4px 12px;transition:all .2s}.CategoryPage_filterPill__5nosO:hover{opacity:.8;transform:scale(1.05)}@media (max-width:1024px){.CategoryPage_navbarContent__ydmS3{flex-direction:column;gap:1rem}.CategoryPage_searchForm__7xku8{min-width:100%}.CategoryPage_subcategoryFilters__KXhSI{justify-content:flex-start;overflow-x:auto;padding-bottom:.5rem}}@media (max-width:768px){.CategoryPage_categoryHeader__7R0TB{padding:2rem 5%}.CategoryPage_categoryHeader__7R0TB h1{font-size:2rem}.CategoryPage_productsMain__EVLEM{padding:1.5rem 5%}.CategoryPage_productsGrid__Q\+R1s{gap:1.5rem;grid-template-columns:repeat(auto-fill,minmax(250px,1fr))}.CategoryPage_expandedFilters__trG3i{gap:1.5rem;grid-template-columns:1fr}.CategoryPage_pagination__GqPfc{flex-direction:column;gap:1rem;padding:1rem}.CategoryPage_pageNumbers__973CR{order:1}.CategoryPage_pageButton__rY4EK{min-width:auto;order:2;width:100%}.CategoryPage_pageNumber__fQxMx{font-size:.85rem;height:34px;width:34px}}@media (max-width:480px){.CategoryPage_productsGrid__Q\+R1s{grid-template-columns:1fr}.CategoryPage_navbarContent__ydmS3{padding:1rem}.CategoryPage_categoryHeader__7R0TB h1{font-size:1.75rem}.CategoryPage_pageNumbers__973CR{gap:.3rem}.CategoryPage_pageNumber__fQxMx{font-size:.8rem;height:32px;width:32px}.CategoryPage_pageButton__rY4EK{font-size:.85rem;padding:.5rem}}.CustomerProductDetail_customerProductDetail__FReo6{margin:0 auto;max-width:1200px;min-height:100vh;padding:2rem}.CustomerProductDetail_breadcrumbs__3CZrC{color:#666;margin-bottom:2rem}.CustomerProductDetail_breadcrumbs__3CZrC a{color:#4caf50;text-decoration:none}.CustomerProductDetail_breadcrumbs__3CZrC a:hover{text-decoration:underline}.CustomerProductDetail_productContainer__slrR1{grid-gap:3rem;display:grid;gap:3rem;grid-template-columns:1fr 1fr;margin-bottom:3rem}.CustomerProductDetail_imageSection__9QhGw{display:flex;flex-direction:column;gap:1rem}.CustomerProductDetail_mainImage__Mu0HY{align-items:center;background:#f8f9fa;border-radius:12px;display:flex;height:500px;justify-content:center;overflow:hidden;width:100%}.CustomerProductDetail_mainImage__Mu0HY img{height:100%;object-fit:cover;width:100%}.CustomerProductDetail_noImage__726wx{color:#9ca3af;font-size:1.1rem}.CustomerProductDetail_thumbnailContainer__YZS8v{display:flex;gap:.5rem;overflow-x:auto}.CustomerProductDetail_thumbnail__ZEpnc{border:2px solid #0000;border-radius:8px;cursor:pointer;height:80px;overflow:hidden;transition:border-color .3s ease;width:80px}.CustomerProductDetail_thumbnail__ZEpnc.CustomerProductDetail_active__-A5WM{border-color:#4caf50}.CustomerProductDetail_thumbnail__ZEpnc img{height:100%;object-fit:cover;width:100%}.CustomerProductDetail_infoSection__knTZA{display:flex;flex-direction:column;gap:1.5rem}.CustomerProductDetail_categoryBadge__wLD9c{align-self:flex-start;background:#e8f5e9;border-radius:20px;color:#2e7d32;font-size:.9rem;font-weight:500;padding:.5rem 1rem}.CustomerProductDetail_productTitle__wxaHM{color:#1f2937;font-size:2rem;margin:0}.CustomerProductDetail_productDescription__uUXhQ{color:#6b7280;font-size:1.1rem;line-height:1.6}.CustomerProductDetail_tags__7uQ46{display:flex;flex-wrap:wrap;gap:.5rem}.CustomerProductDetail_tag__-DBzT{background:#f3f4f6;border-radius:12px;color:#4b5563;font-size:.85rem;padding:.3rem .8rem}.CustomerProductDetail_growingInfo__-dkKF{background:#f0fff4;border:1px solid #c6f6d5;border-radius:8px;padding:1.5rem}.CustomerProductDetail_growingInfo__-dkKF h3{color:#22543d;margin:0 0 1rem}.CustomerProductDetail_progressLabel__MVfTP{color:#22543d;font-weight:600;margin-bottom:.5rem}.CustomerProductDetail_progressBar__-x361{background:#e2e8f0;border-radius:10px;height:8px;margin-bottom:.5rem;overflow:hidden}.CustomerProductDetail_progressFill__tAKJP{background:linear-gradient(90deg,#48bb78,#38a169);border-radius:10px;height:100%;transition:width .3s ease}.CustomerProductDetail_progressText__12uKJ{color:#4a5568;font-size:.9rem}.CustomerProductDetail_priceSection__BmiY9{align-items:center;display:flex;flex-wrap:wrap;gap:1rem}.CustomerProductDetail_currentPrice__2fv8C{font-size:2rem;font-weight:700}.CustomerProductDetail_currentPrice__2fv8C.CustomerProductDetail_farm__KgM5y{color:#dd6b20}.CustomerProductDetail_currentPrice__2fv8C.CustomerProductDetail_cosmetics__CBPPJ{color:#9f7aea}.CustomerProductDetail_currentPrice__2fv8C.CustomerProductDetail_fashion__Y5dUV{color:#ed64a6}.CustomerProductDetail_currentPrice__2fv8C.CustomerProductDetail_home__b9fbV{color:#4299e1}.CustomerProductDetail_comparePrice__4xtTH{color:#9ca3af;font-size:1.2rem;text-decoration:line-through}.CustomerProductDetail_discountBadge__pETuH{background:#fed7d7;border-radius:12px;color:#c53030;font-size:.9rem;font-weight:600;padding:.5rem 1rem}.CustomerProductDetail_stockInfo__Af6W9{align-items:center;display:flex;gap:1rem}.CustomerProductDetail_stockStatus__SQRwA{border-radius:12px;font-size:.9rem;font-weight:600;padding:.5rem 1rem}.CustomerProductDetail_inStock__xSPRQ{background:#c6f6d5;color:#22543d}.CustomerProductDetail_outOfStock__V8\+\+h{background:#fed7d7;color:#c53030}.CustomerProductDetail_preOrderStatus__KdAGn{background:#feebc8;border-radius:12px;color:#744210;font-weight:600;padding:.5rem 1rem}.CustomerProductDetail_stockQuantity__GtNL2{color:#6b7280;font-size:.9rem}.CustomerProductDetail_additionalFlags__\+h4UO{display:flex;flex-wrap:wrap;gap:.5rem}.CustomerProductDetail_additionalFlags__\+h4UO span{background:#f3f4f6;border-radius:12px;color:#4b5563;font-size:.85rem;padding:.5rem 1rem}.CustomerProductDetail_actionSection__AL9fk{align-items:center;display:flex;flex-wrap:wrap;gap:1rem}.CustomerProductDetail_quantitySelector__70elW{align-items:center;display:flex;gap:1rem}.CustomerProductDetail_quantityControls__RA-ST{align-items:center;background:#f8f9fa;border-radius:8px;display:flex;gap:.5rem;padding:.5rem}.CustomerProductDetail_quantityControls__RA-ST button{align-items:center;background:#4caf50;border:none;border-radius:6px;color:#fff;cursor:pointer;display:flex;font-weight:600;height:30px;justify-content:center;width:30px}.CustomerProductDetail_quantityControls__RA-ST button:disabled{background:#d1d5db;cursor:not-allowed}.CustomerProductDetail_quantityControls__RA-ST span{font-weight:600;min-width:40px;text-align:center}.CustomerProductDetail_addToCartButton__K0iPK{border:none;border-radius:8px;color:#fff;cursor:pointer;flex:1 1;font-size:1.1rem;font-weight:600;min-width:200px;padding:1rem 2rem;transition:all .3s ease}.CustomerProductDetail_addToCartButton__K0iPK.CustomerProductDetail_farm__KgM5y{background:linear-gradient(135deg,#ed8936,#dd6b20)}.CustomerProductDetail_addToCartButton__K0iPK.CustomerProductDetail_cosmetics__CBPPJ{background:linear-gradient(135deg,#9f7aea,#805ad5)}.CustomerProductDetail_addToCartButton__K0iPK.CustomerProductDetail_fashion__Y5dUV{background:linear-gradient(135deg,#ed64a6,#d53f8c)}.CustomerProductDetail_addToCartButton__K0iPK.CustomerProductDetail_home__b9fbV{background:linear-gradient(135deg,#4299e1,#3182ce)}.CustomerProductDetail_addToCartButton__K0iPK:hover:not(:disabled){box-shadow:0 4px 12px #00000026;transform:translateY(-2px)}.CustomerProductDetail_addToCartButton__K0iPK:disabled{background:#d1d5db;box-shadow:none;cursor:not-allowed;transform:none}.CustomerProductDetail_detailsSection__ZIeKa{background:#f8f9fa;border-radius:8px;padding:1.5rem}.CustomerProductDetail_detailsSection__ZIeKa h3{color:#1f2937;margin:0 0 1rem}.CustomerProductDetail_detailsGrid__SGYP3{grid-gap:1rem;display:grid;gap:1rem;grid-template-columns:repeat(auto-fit,minmax(200px,1fr))}.CustomerProductDetail_detailItem__k8GHw{border-bottom:1px solid #e5e7eb;display:flex;justify-content:space-between;padding:.5rem 0}.CustomerProductDetail_detailItem__k8GHw:last-child{border-bottom:none}.CustomerProductDetail_detailItem__k8GHw strong{color:#374151}.CustomerProductDetail_detailItem__k8GHw span{color:#6b7280}.CustomerProductDetail_errorContainer__\+3EtP,.CustomerProductDetail_loadingContainer__j6qiK{align-items:center;display:flex;flex-direction:column;gap:1rem;justify-content:center;min-height:50vh;text-align:center}.CustomerProductDetail_loadingContainer__j6qiK{color:#4caf50}.CustomerProductDetail_errorContainer__\+3EtP{color:#d32f2f}.CustomerProductDetail_loadingSpinner__0bFML{animation:CustomerProductDetail_spin__NQMX9 1s linear infinite;border:4px solid #e8f5e9;border-radius:50%;border-top-color:#4caf50;height:40px;width:40px}.CustomerProductDetail_backButton__yqGTP{background:#4caf50;border-radius:8px;color:#fff;font-weight:600;padding:.75rem 1.5rem;text-decoration:none;transition:background .3s ease}.CustomerProductDetail_backButton__yqGTP:hover{background:#2e7d32}@keyframes CustomerProductDetail_spin__NQMX9{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}@media (max-width:768px){.CustomerProductDetail_productDetail__bd6ss{padding:1rem}.CustomerProductDetail_productContainer__slrR1{gap:2rem;grid-template-columns:1fr}.CustomerProductDetail_mainImage__Mu0HY{height:300px}.CustomerProductDetail_productTitle__wxaHM{font-size:1.5rem}.CustomerProductDetail_actionSection__AL9fk{align-items:stretch;flex-direction:column}.CustomerProductDetail_quantitySelector__70elW{justify-content:space-between}}.CustomerProductDetail_cartHeader__RzwKp{position:fixed;right:20px;top:20px;z-index:1000}.CustomerProductDetail_cartLink__buAB0{align-items:center;background:#fff;border:2px solid #4caf50;border-radius:50px;box-shadow:0 4px 20px #00000026;display:flex;gap:8px;padding:12px 20px;text-decoration:none;transition:all .3s ease}.CustomerProductDetail_cartLink__buAB0:hover{box-shadow:0 6px 25px #0003;transform:translateY(-2px)}.CustomerProductDetail_cartIcon__t78\+A{font-size:1.2rem}.CustomerProductDetail_cartCount__4059d{align-items:center;background:#e53e3e;border-radius:50%;color:#fff;display:flex;font-size:.8rem;font-weight:600;height:20px;justify-content:center;width:20px}.CustomerProductDetail_cartText__Rn4dR{color:#2e7d32;font-size:.9rem;font-weight:600}.CustomerProductDetail_totalPriceSection__ltI-L{align-items:center;background:#f8f9fa;border-radius:8px;display:flex;justify-content:space-between;margin:1rem 0;padding:1rem}.CustomerProductDetail_totalPriceLabel__JSpQz{color:#374151;font-weight:600}.CustomerProductDetail_totalPrice__phyt9{font-size:1.3rem;font-weight:700}.CustomerProductDetail_totalPrice__phyt9.CustomerProductDetail_farm__KgM5y{color:#dd6b20}.CustomerProductDetail_totalPrice__phyt9.CustomerProductDetail_cosmetics__CBPPJ{color:#9f7aea}.CustomerProductDetail_totalPrice__phyt9.CustomerProductDetail_fashion__Y5dUV{color:#ed64a6}.CustomerProductDetail_totalPrice__phyt9.CustomerProductDetail_home__b9fbV{color:#4299e1}.CustomerProductDetail_quickActions__WM9Gi{border-top:1px solid #e5e7eb;display:flex;justify-content:space-between;margin-top:2rem;padding-top:2rem}.CustomerProductDetail_continueShopping__1-JDY,.CustomerProductDetail_viewCart__5LIJk{border-radius:8px;font-weight:600;padding:.75rem 1.5rem;text-decoration:none;transition:all .3s ease}.CustomerProductDetail_continueShopping__1-JDY{background:#f3f4f6;border:1px solid #d1d5db;color:#374151}.CustomerProductDetail_continueShopping__1-JDY:hover{background:#e5e7eb}.CustomerProductDetail_viewCart__5LIJk{background:#4caf50;color:#fff}.CustomerProductDetail_viewCart__5LIJk:hover{background:#2e7d32;transform:translateY(-2px)}:root{--customer-primary:#4caf50;--customer-primary-light:#e8f5e9;--customer-primary-dark:#2e7d32;--customer-accent:#ffc107;--customer-bg-dark:#121212;--customer-bg-light:#f9f9f9;--fashion-pink:#ff6b8b;--cosmetics-purple:#9c27b0;--home-blue:#2196f3;--farm-orange:#ff9800;--success-main:#28a745;--warning-main:#ffc107;--error-main:#dc3545;--info-main:#17a2b8}.customer-body{background-color:#f9f9f9;background-color:var(--customer-bg-light);color:#333;font-family:Poppins,sans-serif;line-height:1.6}.customer-btn{align-items:center;border:none;border-radius:.375rem;cursor:pointer;display:inline-flex;font-size:1rem;font-weight:600;justify-content:center;padding:.75rem 1.5rem;text-decoration:none;transition:all .3s ease}.customer-btn-primary{background:#4caf50;background:var(--customer-primary);color:#fff}.customer-btn-primary:hover{background:#2e7d32;background:var(--customer-primary-dark);transform:translateY(-2px)}.customer-btn-gold{background:#ffc107;background:var(--customer-accent);color:#121212}.customer-btn-gold:hover{background:#ff8f00;transform:translateY(-2px)}
/*# sourceMappingURL=main.6af9d657.css.map*/