:root{
  --bg:#0e0f14; --panel:#151821; --panel2:#1a1e29; --border:#272a36; --soft:#343a4a;
  --text:#e9ecf1; --muted:#a9b0bf; --primary:#e44d61; --accent:#ffcc66; --radius:14px;
  --shadow: 0 10px 30px rgba(0,0,0,.35);
  --gradient-1:linear-gradient(135deg,#667eea 0%,#764ba2 100%);
  --gradient-2:linear-gradient(135deg,#f093fb 0%,#f5576c 100%);
  --gradient-3:linear-gradient(135deg,#4facfe 0%,#00f2fe 100%);
  --gradient-4:linear-gradient(135deg,#43e97b 0%,#38f9d7 100%);
  --gradient-5:linear-gradient(135deg,#fa709a 0%,#fee140 100%);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
html,body{margin:0;padding:0;background:var(--bg);color:var(--text);font:16px/1.6 system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Arial;position:relative}
body::before{content:'';position:fixed;top:0;left:0;width:100%;height:100%;background:radial-gradient(circle at 20% 20%,rgba(102,126,234,.05) 0%,transparent 50%),radial-gradient(circle at 80% 80%,rgba(228,77,97,.05) 0%,transparent 50%);pointer-events:none;z-index:0}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
.container{width:min(1600px,96%);margin:0 auto;position:relative;z-index:1}
.btn{display:inline-flex;align-items:center;gap:.5rem;background:var(--panel2);color:#fff;border:1px solid var(--border);padding:.65rem 1.1rem;border-radius:10px;cursor:pointer;font-size:.95rem;transition:all .2s;position:relative;overflow:hidden;box-shadow:0 2px 8px rgba(0,0,0,.2)}
.btn::before{content:'';position:absolute;top:50%;left:50%;width:0;height:0;border-radius:50%;background:rgba(255,255,255,.2);transform:translate(-50%,-50%);transition:width .5s,height .5s}
.btn:hover::before{width:300px;height:300px}
.btn:hover{transform:translateY(-2px);box-shadow:0 4px 12px rgba(0,0,0,.3)}
.btn.primary{background:linear-gradient(135deg,#e44d61 0%,#d63f52 100%);border-color:#cc3a4f;box-shadow:0 4px 15px rgba(228,77,97,.3)}
.btn.primary:hover{box-shadow:0 6px 20px rgba(228,77,97,.5);transform:translateY(-3px) scale(1.02)}
.btn.small{padding:.4rem .7rem;font-size:.9rem}
.badge{display:inline-flex;align-items:center;justify-content:center;min-width:20px;height:20px;padding:0 6px;border-radius:999px;background:linear-gradient(135deg,#e44d61 0%,#ff6b7a 100%);border:none;font-size:12px;margin-right:.3rem;font-weight:700;box-shadow:0 2px 8px rgba(228,77,97,.4);animation:pulse 2s ease-in-out infinite}
@keyframes pulse{0%,100%{transform:scale(1)}50%{transform:scale(1.05)}}
.row{display:flex;align-items:center;gap:1rem}
.muted{color:var(--muted)}
.accent{color:var(--accent)}

/* Announcement */
.announcement{background:linear-gradient(90deg,#e44d61 0%,#764ba2 50%,#4facfe 100%);color:#fff;padding:.45rem 0;border-bottom:1px solid rgba(255,255,255,.1);position:relative;overflow:hidden}
.announcement::before{content:'';position:absolute;top:0;left:-100%;width:100%;height:100%;background:linear-gradient(90deg,transparent,rgba(255,255,255,.2),transparent);animation:shimmer 3s infinite}
@keyframes shimmer{to{left:100%}}
.announcement .container{display:flex;justify-content:center;font-weight:500}

/* Header */
.site-header{position:sticky;top:0;background:rgba(21,24,33,.95);border-bottom:1px solid var(--border);z-index:20;backdrop-filter:blur(15px);box-shadow:0 4px 20px rgba(0,0,0,.3)}
.header-top{padding:1rem 0;justify-content:space-between;align-items:center}
.logo{display:flex;align-items:center;gap:.7rem;font-weight:900;font-size:1.05rem;transition:opacity .2s}
.logo:hover{opacity:.85}
.logo img{height:45px;width:auto;filter:drop-shadow(0 1px 0 rgba(0,0,0,.3))}
.header-actions{display:flex;align-items:center;gap:.7rem}
.search{display:flex;align-items:center;background:var(--panel2);border:1px solid var(--border);border-radius:10px;overflow:hidden;transition:border-color .2s}
.search:focus-within{border-color:var(--primary)}
.search input{all:unset;padding:.6rem .8rem;min-width:280px;font-size:.95rem}
.search button{all:unset;padding:.5rem .7rem;cursor:pointer;transition:transform .2s}
.search button:hover{transform:scale(1.1)}
.icon-btn{display:inline-flex;align-items:center;gap:.3rem;border:1px solid var(--border);background:linear-gradient(135deg,var(--panel2) 0%,var(--panel) 100%);padding:.4rem .6rem;border-radius:10px;transition:all .2s;position:relative;overflow:hidden}
.icon-btn::before{content:'';position:absolute;inset:0;background:linear-gradient(135deg,rgba(228,77,97,.1) 0%,rgba(102,126,234,.1) 100%);opacity:0;transition:opacity .2s}
.icon-btn:hover::before{opacity:1}
.icon-btn:hover{border-color:var(--primary);transform:translateY(-2px);box-shadow:0 4px 12px rgba(228,77,97,.3)}
.burger{display:none}
@media (max-width:980px){
  .burger{display:inline-flex}
  .header-top{justify-content:space-between}
}

/* Hide desktop navigation on mobile/tablet */
@media (max-width:1024px){
  .desktop-nav{display:none !important}
  .header-bottom{display:none !important}
  .mega{display:none !important}
  .mega-trigger{display:none !important}
  .mobile-menu-btn{display:flex !important}
  .mobile-search-btn{display:inline-flex !important}
}

/* Category triggers */
.header-bottom{display:flex;gap:.8rem;align-items:center;flex:1;justify-content:center;padding:0 1rem}
.mega-trigger{display:flex;gap:.4rem;align-items:center;background:var(--panel2);border:1px solid var(--border);padding:.5rem .8rem;border-radius:10px;cursor:pointer;transition:all .2s;font-size:.96rem}
.mega-trigger:hover{border-color:var(--primary);transform:translateY(-2px);box-shadow:0 3px 10px rgba(0,0,0,.25)}
.mega-trigger.hidden-mobile{display:flex}
.more-categories-btn{display:none}

/* Hide mobile elements on desktop */
.mobile-menu-btn{display:none}
.mobile-search-btn{display:none}
.mobile-search-bar{display:none}
.mobile-drawer{display:none}
.header-top{display:none !important}

/* Desktop navigation - visible by default on desktop - SINGLE ROW */
.desktop-nav{display:flex;align-items:center;gap:1rem;padding:0.8rem 0}
.desktop-logo{display:flex !important}

/* Mega menu */
.mega{position:absolute;left:0;right:0;top:100%;background:linear-gradient(180deg,#0f1219 0%,#0d0f15 100%);border-top:1px solid var(--border);display:none;box-shadow:0 10px 40px rgba(0,0,0,.5)}
.mega.open{display:block}
.mega-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1.2rem;padding:1.5rem 0}
.mega-col{background:linear-gradient(135deg,var(--panel) 0%,var(--panel2) 100%);border:1px solid var(--border);border-radius:14px;padding:1.2rem;transition:all .3s}
.mega-col:hover{border-color:var(--primary);transform:translateY(-3px);box-shadow:0 6px 20px rgba(228,77,97,.2)}
.mega-title{font-weight:800;margin:.2rem 0 .6rem;font-size:1.05rem;color:var(--accent)}
.mega-link{display:block;padding:.6rem .8rem;border:1px solid var(--border);background:var(--panel2);border-radius:10px;margin:.4rem 0;transition:all .2s}
.mega-link:hover{background:linear-gradient(90deg,rgba(228,77,97,.1) 0%,transparent 100%);border-color:var(--primary);transform:translateX(4px)}
.chips{display:flex;gap:.6rem;flex-wrap:wrap;margin-bottom:.8rem}
.chips a{border:1px solid var(--border);background:var(--panel2);border-radius:999px;padding:.35rem .8rem;transition:all .2s;font-size:.92rem}
.chips a:hover{background:linear-gradient(135deg,#e44d61 0%,#ff6b7a 100%);border-color:transparent;color:#fff;transform:scale(1.05)}

/* Drawer */
.drawer{position:fixed;inset:0;background:rgba(0,0,0,.65);display:none;z-index:40}
.drawer.open{display:block}
.drawer-panel{position:absolute;inset:0 35% 0 0;background:var(--panel);border-right:1px solid var(--border);padding:1rem;display:flex;flex-direction:column;gap:.6rem}
.drawer-head{display:flex;justify-content:space-between;align-items:center;margin-bottom:.5rem}

/* Hero */
.hero{background:radial-gradient(1200px 460px at 65% 30%, #3c2134 0, #0f1219 60%),linear-gradient(135deg,rgba(102,126,234,.1) 0%,rgba(118,75,162,.1) 100%);padding:2.5rem 0 3rem;border-top:1px solid #281b27;position:relative;overflow:hidden}
.hero::before{content:'';position:absolute;width:500px;height:500px;background:radial-gradient(circle,rgba(228,77,97,.15) 0%,transparent 70%);border-radius:50%;top:-200px;right:10%;animation:float 6s ease-in-out infinite}
.hero::after{content:'';position:absolute;width:400px;height:400px;background:radial-gradient(circle,rgba(102,126,234,.12) 0%,transparent 70%);border-radius:50%;bottom:-150px;left:5%;animation:float 8s ease-in-out infinite reverse}
@keyframes float{0%,100%{transform:translateY(0)}50%{transform:translateY(-20px)}}
.hero-grid{display:flex;justify-content:center;align-items:center;position:relative;z-index:1;text-align:center}
.hero-copy{max-width:900px}
.hero-copy h1{font-size:3.2rem;margin:.2rem 0 .8rem;line-height:1.2;background:linear-gradient(135deg,#fff 0%,#a9b0bf 100%);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}
.hero-copy p{color:var(--muted);font-size:1.2rem;margin-bottom:1.4rem}
.hero-cta{display:flex;gap:.8rem;margin:.8rem 0;justify-content:center}
.ticks{display:flex;gap:1.5rem;flex-wrap:wrap;margin:1.2rem 0 0 0;color:var(--muted);font-size:1rem;justify-content:center}
.ticks li::before{content:'✨';margin-right:.4rem}

/* Promotional Banner */
.promo-banner{padding:0;background:linear-gradient(135deg,#2d1520 0%,#1a0e1a 100%);position:relative;overflow:hidden}
.promo-banner .container{width:100%;max-width:100%;margin:0;padding:0}
.promo-banner img{width:100%;height:auto;display:block;object-fit:cover;object-position:center;transition:all .3s;cursor:pointer}
.promo-banner img:hover{opacity:.95;filter:brightness(1.05)}

/* Mobile Image Banner - Hidden on Desktop */
.mobile-image-banner{
  display:none;
}

/* Show the mobile banner on small screens */
@media (max-width: 768px){
  .mobile-image-banner{ display:block; }
  .promo-banner{ display:none; }
}

/* Carousel */

/* Sections */
.section{padding:2.2rem 0}
.section-head{position:relative;margin-bottom:.5rem;display:flex;justify-content:space-between;align-items:center}
.section-head h2{margin:.2rem 0 1.2rem;font-size:2rem;position:relative;display:inline-block;font-weight:800;letter-spacing:-.5px}
.section-head h2 .accent{background:linear-gradient(135deg,#ffcc66 0%,#ff6b7a 100%);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}
.section-head h2::after{content:'';position:absolute;bottom:-6px;left:0;width:80px;height:4px;background:linear-gradient(90deg,#e44d61,#ff6b7a,#ffcc66);border-radius:2px;box-shadow:0 2px 8px rgba(228,77,97,.4)}
.see-all-btn{display:inline-flex;align-items:center;gap:.4rem;padding:.6rem 1.2rem;background:linear-gradient(135deg,rgba(228,77,97,.1) 0%,rgba(255,107,122,.1) 100%);border:2px solid transparent;border-radius:10px;color:#fff;font-weight:600;font-size:.95rem;cursor:pointer;transition:all .3s;position:relative;overflow:hidden}
.see-all-btn::before{content:'';position:absolute;inset:0;border-radius:10px;padding:2px;background:linear-gradient(135deg,#e44d61,#ffcc66);-webkit-mask:linear-gradient(#fff 0 0) content-box,linear-gradient(#fff 0 0);mask:linear-gradient(#fff 0 0) content-box,linear-gradient(#fff 0 0);-webkit-mask-composite:xor;mask-composite:exclude;opacity:0;transition:opacity .3s}
.see-all-btn:hover::before{opacity:1}
.see-all-btn:hover{background:linear-gradient(135deg,rgba(228,77,97,.2) 0%,rgba(255,107,122,.2) 100%);transform:translateX(5px);box-shadow:0 4px 15px rgba(228,77,97,.3)}
.see-all-btn::after{content:'→';margin-left:.2rem;transition:transform .3s}
.see-all-btn:hover::after{transform:translateX(5px)}
.cat-grid{display:flex;gap:1.4rem;overflow-x:auto;overflow-y:hidden;scroll-behavior:smooth;padding:1rem .5rem 1.5rem .5rem}
.cat-grid::-webkit-scrollbar{display:none}
.cat-grid{-ms-overflow-style:none;scrollbar-width:none}
.cat-card{display:flex;flex-direction:column;align-items:center;justify-content:center;gap:.9rem;background:var(--panel);border:1px solid var(--border);border-radius:16px;padding:2rem 2.5rem;cursor:pointer;transition:all .3s;min-width:180px;position:relative;overflow:hidden}
.cat-card{box-shadow:0 6px 20px rgba(0,0,0,.25)}
.cat-card::before{content:'';position:absolute;top:0;left:0;right:0;height:4px;background:linear-gradient(90deg,#e44d61,#ff6b7a,#ffcc66,#66d9ff,#a78bfa);opacity:0;transition:opacity .3s}
.cat-card:hover::before{opacity:1}
.cat-card:hover{border-color:var(--primary);transform:translateY(-6px) scale(1.02);box-shadow:0 10px 30px rgba(228,77,97,.35)}
.cat-card img{width:64px;height:64px;opacity:.95;filter:drop-shadow(0 3px 12px rgba(228,77,97,.5))}
.cat-card span{font-size:1.05rem;white-space:nowrap;font-weight:600}

/* Products */
.product-grid{display:grid;grid-template-columns:repeat(6,1fr);gap:1rem}
@media (max-width:1600px){.product-grid{grid-template-columns:repeat(5,1fr)}}
@media (max-width:1200px){.product-grid{grid-template-columns:repeat(4,1fr)}}
@media (max-width:980px){.product-grid{grid-template-columns:repeat(3,1fr)}}
@media (max-width:820px){.product-grid{grid-template-columns:repeat(2,1fr)}}
@media (max-width:560px){.product-grid{grid-template-columns:1fr}}
.product-row-wrapper{position:relative;margin:0 -1rem}
.product-row{display:flex;gap:1rem;overflow-x:auto;overflow-y:hidden;scroll-behavior:smooth;padding:0 1rem .5rem 1rem;position:relative}
.product-row::-webkit-scrollbar{display:none}
.product-row{-ms-overflow-style:none;scrollbar-width:none}
.product-row .p-card{min-width:280px;max-width:280px;flex-shrink:0}

/* Scroll fade indicators */
.product-row-wrapper::before,
.product-row-wrapper::after{content:'';position:absolute;top:0;bottom:.5rem;width:60px;pointer-events:none;z-index:2;opacity:0;transition:opacity .3s}
.product-row-wrapper::before{left:0;background:linear-gradient(90deg,var(--bg) 0%,transparent 100%)}
.product-row-wrapper::after{right:0;background:linear-gradient(270deg,var(--bg) 0%,transparent 100%)}
.product-row-wrapper.show-left::before{opacity:1}
.product-row-wrapper.show-right::after{opacity:1}

/* Scroll navigation arrows */
.scroll-nav-btn{position:absolute;top:50%;transform:translateY(-50%);width:45px;height:45px;background:var(--panel);border:1px solid var(--border);border-radius:50%;display:grid;place-items:center;cursor:pointer;z-index:3;transition:all .3s;opacity:0;pointer-events:none}
.scroll-nav-btn.active{opacity:1;pointer-events:auto}
.scroll-nav-btn:hover{background:var(--primary);border-color:var(--primary);box-shadow:0 6px 20px rgba(228,77,97,.4);transform:translateY(-50%) scale(1.1)}
.scroll-nav-btn svg{width:20px;height:20px;fill:currentColor}
.scroll-nav-btn.prev{left:0.5rem}
.scroll-nav-btn.next{right:0.5rem}
.product-row.auto-scroll{animation:autoScrollProducts 30s linear infinite}
.product-row.auto-scroll:hover{animation-play-state:paused}
@keyframes autoScrollProducts{0%{scroll-behavior:auto}100%{scroll-behavior:auto}}
.p-card{background:var(--panel);border:1px solid var(--border);border-radius:14px;overflow:hidden;display:flex;flex-direction:column;transition:all .3s;position:relative}
.p-card::before{content:'';position:absolute;top:0;left:0;right:0;height:2px;background:linear-gradient(90deg,#e44d61,#ff6b7a,#ffcc66,#66d9ff,#a78bfa);opacity:0;transition:opacity .3s}
.p-card:hover::before{opacity:1}
.p-card:hover{border-color:var(--primary);transform:translateY(-6px);box-shadow:0 12px 35px rgba(228,77,97,.25)}
.p-card .media{display:grid;place-items:center;aspect-ratio:16/11;background:linear-gradient(135deg,#0e1118 0%,#151821 100%);border-bottom:1px solid var(--border);position:relative;overflow:hidden}
.p-card .media::after{content:'';position:absolute;inset:0;background:radial-gradient(circle at center,rgba(228,77,97,.1) 0%,transparent 70%);opacity:0;transition:opacity .3s}
.p-card:hover .media::after{opacity:1}
.p-card .media img{transition:transform .4s ease}
.p-card:hover .media img{transform:scale(1.08)}

/* Stock badge */
.p-card .stock-badge{position:absolute;top:10px;right:10px;background:rgba(0,0,0,.75);backdrop-filter:blur(10px);padding:.3rem .7rem;border-radius:20px;font-size:.75rem;font-weight:700;border:1px solid rgba(255,255,255,.1)}
.p-card .stock-badge.in-stock{background:rgba(34,197,94,.2);border-color:rgba(34,197,94,.3);color:#4ade80}
.p-card .stock-badge.low-stock{background:rgba(251,191,36,.2);border-color:rgba(251,191,36,.3);color:#fbbf24}
.p-card .stock-badge.pre-order{background:rgba(168,139,250,.2);border-color:rgba(168,139,250,.3);color:#a78bfa}
.p-card .body{padding:1rem}
.p-card .title{font-weight:800;display:block;margin-bottom:.3rem;font-size:1rem}
.p-card .meta{color:var(--muted);font-size:.93rem}
.p-card .price{margin:.4rem 0 .6rem;font-weight:900;font-size:1.05rem}
.p-card .price .now{background:linear-gradient(135deg,#ffcc66 0%,#ff6b7a 100%);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}
.p-card .price .old{text-decoration:line-through;color:var(--muted);margin-left:.4rem;font-size:.9rem}
.p-card .cta{display:flex;gap:.5rem;align-items:center;flex-direction:row}
.p-card.small .body{padding:.7rem}

/* P-Card optimizations for 220px grid */
.product-grid-vertical .p-card{
  width:100%;
  max-width:none !important;
  min-width:0 !important;
}

.product-grid-vertical .p-card .body{
  padding:0.8rem;
}

.product-grid-vertical .p-card .title{
  font-size:0.9rem;
}

.product-grid-vertical .p-card .meta{
  font-size:0.8rem;
}

.product-grid-vertical .p-card .price{
  font-size:0.95rem;
  margin:0.3rem 0 0.5rem;
}

.product-grid-vertical .p-card .cta{flex-direction:row;gap:0.5rem}

.product-grid-vertical .p-card .cta .btn{flex:1;min-width:0;padding:0.55rem 0.7rem;font-size:0.82rem;justify-content:center;transition:transform .2s ease}
.product-grid-vertical .p-card .cta .btn:hover{transform:translateY(-2px)}

.product-grid-vertical .p-card .media{
  aspect-ratio:1/1;
}

/* Two banners */
.two-banners{display:grid;grid-template-columns:1fr 1fr;gap:1.2rem}
.two-banners .banner{display:flex;align-items:center;justify-content:space-between;background:linear-gradient(135deg,var(--panel) 0%,var(--panel2) 100%);border:1px solid var(--border);border-radius:14px;padding:1.5rem;gap:1rem;cursor:pointer;transition:all .3s;position:relative;overflow:hidden}
.two-banners .banner::before{content:'';position:absolute;top:0;left:0;width:100%;height:100%;background:radial-gradient(circle at 80% 50%,rgba(74,172,254,.1) 0%,transparent 60%);opacity:0;transition:opacity .3s}
.two-banners .banner:first-child::before{background:radial-gradient(circle at 80% 50%,rgba(102,126,234,.15) 0%,transparent 60%)}
.two-banners .banner:hover::before{opacity:1}
.two-banners .banner:hover{border-color:var(--primary);transform:translateY(-4px);box-shadow:0 12px 40px rgba(228,77,97,.25)}
.two-banners .banner img{width:250px;height:auto;filter:drop-shadow(0 8px 20px rgba(228,77,97,.3))}
.two-banners .banner .banner-copy h3{margin:.2rem 0 .4rem;font-size:1.4rem;background:linear-gradient(135deg,#fff 0%,var(--accent) 100%);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}
.two-banners .banner .banner-copy p{font-size:1rem}
@media (max-width:820px){.two-banners{grid-template-columns:1fr}}

/* Why us */
.why-us{background:linear-gradient(180deg, #10131b 0, #0d0f15 100%);border-top:1px solid var(--border);border-bottom:1px solid var(--border);padding:1.2rem 0;position:relative;overflow:hidden}
.why-us::before{content:'';position:absolute;width:600px;height:600px;background:radial-gradient(circle,rgba(228,77,97,.08) 0%,transparent 70%);border-radius:50%;top:50%;left:50%;transform:translate(-50%,-50%)}
.features{display:grid;grid-template-columns:repeat(4,1fr);gap:1rem;position:relative;z-index:1}
.features .feat{display:flex;gap:.8rem;background:linear-gradient(135deg,#121623 0%,#0f131b 100%);border:1px solid var(--border);border-radius:14px;padding:1rem;align-items:center;transition:all .3s;position:relative;overflow:hidden}
.features .feat::before{content:'';position:absolute;top:0;left:0;right:0;height:2px;background:var(--gradient-1);opacity:0;transition:opacity .3s}
.features .feat:nth-child(2)::before{background:var(--gradient-2)}
.features .feat:nth-child(3)::before{background:var(--gradient-3)}
.features .feat:nth-child(4)::before{background:var(--gradient-4)}
.features .feat:hover::before{opacity:1}
.features .feat:hover{border-color:var(--primary);transform:translateY(-4px);box-shadow:0 8px 25px rgba(228,77,97,.2)}
.features .i{width:44px;height:44px;display:grid;place-items:center;border:1px solid var(--border);border-radius:10px;background:linear-gradient(135deg,#0e1118 0%,#1a1e29 100%);font-size:1.2rem}
.features b{display:block;font-size:1rem}
.features span{font-size:.95rem}
@media (max-width:980px){.features{grid-template-columns:repeat(2,1fr)}}
@media (max-width:560px){.features{grid-template-columns:1fr}}

/* Benefits strip */
.benefits{background:linear-gradient(135deg,#1a0e1a 0%,#0e0f14 50%,#1a0e1a 100%);padding:2rem 0;position:relative;overflow:hidden}
.benefits::before{content:'';position:absolute;inset:0;background:radial-gradient(circle at 20% 50%,rgba(228,77,97,.08) 0%,transparent 50%),radial-gradient(circle at 80% 50%,rgba(255,204,102,.08) 0%,transparent 50%)}
.benefits::after{content:'';position:absolute;top:0;left:0;right:0;height:2px;background:linear-gradient(90deg,transparent,#e44d61 20%,#ffcc66 50%,#e44d61 80%,transparent);animation:shimmer 3s linear infinite}
.strip{display:grid;grid-template-columns:repeat(4,1fr);gap:1.5rem;padding:0;position:relative;z-index:1}
.b{display:flex;flex-direction:column;gap:.8rem;align-items:center;justify-content:center;background:linear-gradient(135deg,rgba(15,15,20,.8) 0%,rgba(20,15,25,.8) 100%);backdrop-filter:blur(10px);border:2px solid transparent;border-radius:16px;padding:1.5rem 1rem;transition:all .4s cubic-bezier(.34,1.56,.64,1);cursor:pointer;position:relative;overflow:hidden}
.b::before{content:'';position:absolute;inset:0;border-radius:16px;padding:2px;background:linear-gradient(135deg,#e44d61,#ffcc66,#e44d61);-webkit-mask:linear-gradient(#fff 0 0) content-box,linear-gradient(#fff 0 0);mask:linear-gradient(#fff 0 0) content-box,linear-gradient(#fff 0 0);-webkit-mask-composite:xor;mask-composite:exclude;opacity:0;transition:opacity .4s}
.b:hover::before{opacity:1}
.b:hover{transform:translateY(-8px) scale(1.02);box-shadow:0 15px 40px rgba(228,77,97,.3),0 8px 20px rgba(255,204,102,.2),inset 0 1px 0 rgba(255,255,255,.1)}
.b .i{width:56px;height:56px;display:grid;place-items:center;background:linear-gradient(135deg,#e44d61 0%,#ff6b7a 50%,#ffcc66 100%);border:none;border-radius:14px;font-size:1.6rem;box-shadow:0 8px 24px rgba(228,77,97,.5),0 0 20px rgba(255,204,102,.3);transition:all .4s;animation:float 3s ease-in-out infinite}
.b:hover .i{transform:scale(1.15) rotate(5deg);box-shadow:0 12px 32px rgba(228,77,97,.7),0 0 30px rgba(255,204,102,.5)}
.b:nth-child(2) .i{background:linear-gradient(135deg,#ffcc66 0%,#ffd700 50%,#e44d61 100%);animation-delay:.5s}
.b:nth-child(3) .i{background:linear-gradient(135deg,#10b981 0%,#34d399 50%,#6ee7b7 100%);animation-delay:1s}
.b:nth-child(4) .i{background:linear-gradient(135deg,#3b82f6 0%,#60a5fa 50%,#93c5fd 100%);animation-delay:1.5s}
.b span{font-weight:700;font-size:1.05rem;letter-spacing:.3px;background:linear-gradient(135deg,#fff 0%,#e0e0e0 100%);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;transition:all .3s}
.b:hover span{background:linear-gradient(135deg,#fff 0%,#ffcc66 100%);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;transform:scale(1.05)}
@keyframes float{0%,100%{transform:translateY(0)}50%{transform:translateY(-5px)}}

/* Carousel */
.carousel{position:relative}
.carousel-track{display:grid;grid-auto-flow:column;grid-auto-columns:calc(16.66% - .7rem);gap:1rem;overflow:hidden;scroll-behavior:smooth}
@media (max-width:1600px){.carousel-track{grid-auto-columns:calc(20% - .7rem)}}
@media (max-width:1200px){.carousel-track{grid-auto-columns:calc(25% - .7rem)}}
@media (max-width:1100px){.carousel-track{grid-auto-columns:calc(33.33% - .6rem)}}
@media (max-width:820px){.carousel-track{grid-auto-columns:calc(50% - .6rem)}}
@media (max-width:560px){.carousel-track{grid-auto-columns:100%}}
.carousel-nav{position:absolute;top:50%;transform:translateY(-50%);background:var(--panel2);border:1px solid var(--border);width:40px;height:40px;border-radius:999px;display:grid;place-items:center;cursor:pointer;font-size:1.3rem;transition:all .2s}
.carousel-nav:hover{background:var(--primary);border-color:var(--primary);transform:translateY(-50%) scale(1.1)}
.carousel-nav.left{left:-12px}
.carousel-nav.right{right:-12px}

/* Reviews */
.review{background:linear-gradient(135deg,var(--panel) 0%,var(--panel2) 100%);border:1px solid var(--border);border-radius:12px;padding:1rem;transition:all .3s;position:relative;overflow:hidden}
.review::before{content:'';position:absolute;top:0;left:0;width:4px;height:100%;background:linear-gradient(180deg,#ffcc66,#e44d61);opacity:.8}
.review:hover{transform:translateY(-4px);box-shadow:0 8px 20px rgba(0,0,0,.3);border-color:var(--primary)}
.review .stars{color:#ffcc66;margin-bottom:.35rem;font-size:1.1rem;text-shadow:0 2px 8px rgba(255,204,102,.5)}
.review .who{color:var(--muted);margin-top:.3rem;font-style:italic}

/* Community banners */
.community .banner-row{display:grid;grid-template-columns:repeat(4,1fr);gap:1rem}
@media (max-width:980px){.community .banner-row{grid-template-columns:repeat(2,1fr)}}
@media (max-width:560px){.community .banner-row{grid-template-columns:1fr}}
.community img{background:linear-gradient(135deg,#0f1118 0%,#151821 100%);border:1px solid var(--border);border-radius:14px;padding:.8rem;transition:all .3s;cursor:pointer;position:relative;overflow:hidden}
.community img::before{content:'';position:absolute;inset:0;background:linear-gradient(135deg,rgba(228,77,97,.1) 0%,rgba(102,126,234,.1) 100%);opacity:0;transition:opacity .3s}
.community img:hover::before{opacity:1}
.community img:hover{transform:translateY(-6px);border-color:var(--primary);box-shadow:0 10px 30px rgba(228,77,97,.3)}

/* Accordion */
.accordion{display:grid;gap:.8rem}
.accordion .item{border:1px solid var(--border);border-radius:14px;background:linear-gradient(135deg,var(--panel) 0%,var(--panel2) 100%);transition:all .3s;position:relative}
.accordion .item::before{content:'';position:absolute;left:0;top:0;bottom:0;width:4px;background:var(--gradient-1);opacity:0;transition:opacity .3s;border-radius:14px 0 0 14px}
.accordion .item:nth-child(2)::before{background:var(--gradient-2)}
.accordion .item:nth-child(3)::before{background:var(--gradient-3)}
.accordion .item:nth-child(4)::before{background:var(--gradient-4)}
.accordion .item:hover{border-color:var(--primary);box-shadow:0 4px 15px rgba(228,77,97,.2)}
.accordion .item.open::before{opacity:1}
.accordion .head{all:unset;display:flex;width:100%;padding:1rem 1.2rem;cursor:pointer;font-weight:600;font-size:1.05rem;transition:color .2s}
.accordion .head:hover{color:var(--primary)}
.accordion .body{display:none;padding:.8rem 1.2rem 1rem;border-top:1px dashed var(--soft);color:var(--muted);font-size:.98rem;line-height:1.7}
.accordion .item.open .head{background:rgba(228,77,97,.05)}
.accordion .item.open .body{display:block}

/* Footer - Modern desktop/tablet design */
.site-footer{
  background:linear-gradient(135deg,#0f1118 0%,#141824 50%,#0f1118 100%);
  border-top:1px solid var(--border);
  margin-top:3rem;
  position:relative;
  overflow:hidden;
}

.site-footer::before{
  content:'';
  position:absolute;left:0;right:0;top:0;height:1px;
  background:linear-gradient(90deg,transparent,rgba(228,77,97,.6),transparent);
}

.footer-content{
  display:grid;
  grid-template-columns:1.6fr 1fr 1fr;
  gap:2.2rem;
  padding:2.6rem 0 2rem;
  border-bottom:1px solid rgba(255,255,255,.08);
}

.footer-company{padding-right:1rem}
.footer-logo{display:flex;align-items:center;gap:1rem;margin-bottom:1.2rem}
.footer-logo img{width:56px;height:56px;border-radius:12px;border:2px solid rgba(228,77,97,.5);box-shadow:0 4px 16px rgba(0,0,0,.3)}
.company-info h3{margin:0 0 .35rem;font-size:1.35rem;font-weight:900;letter-spacing:-.3px}
.company-info p{margin:0;color:rgba(233,236,241,.75)}

.footer-contact-info{margin-top:1.1rem}
.footer-contact-info h4{margin:0 0 .8rem;font-weight:800;font-size:.95rem;color:var(--accent);text-transform:uppercase;letter-spacing:.8px}
.contact-item{display:flex;align-items:center;gap:.7rem;margin:.75rem 0}
.contact-icon{
  width:36px;height:36px;border-radius:10px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.1);
  display:grid;place-items:center;position:relative;overflow:hidden;
  color:transparent; /* hide emoji if present */
}
.contact-icon::before{
  content:'';width:18px;height:18px;display:block;
  background:var(--primary);
  -webkit-mask-size:contain;mask-size:contain;
  -webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;
  -webkit-mask-position:center;mask-position:center;
}
/* Map icons by order without changing HTML */
.footer-contact-info .contact-item:nth-of-type(1) .contact-icon::before{ -webkit-mask-image:url('../icons/location.svg'); mask-image:url('../icons/location.svg') }
.footer-contact-info .contact-item:nth-of-type(2) .contact-icon::before{ -webkit-mask-image:url('../icons/phone.svg'); mask-image:url('../icons/phone.svg') }
.footer-contact-info .contact-item:nth-of-type(3) .contact-icon::before{ -webkit-mask-image:url('../icons/clock.svg'); mask-image:url('../icons/clock.svg') }
.footer-contact-info .contact-item:nth-of-type(4) .contact-icon::before{ -webkit-mask-image:url('../icons/mail.svg'); mask-image:url('../icons/mail.svg') }
.contact-item strong{font-size:.95rem;color:rgba(233,236,241,.9);font-weight:600}

.link-column h4{
  font-size:1.05rem;font-weight:800;color:#fff;margin:0 0 1rem;
  padding-bottom:.7rem;border-bottom:2px solid rgba(228,77,97,.35);text-transform:uppercase;letter-spacing:.5px
}
.link-column a{
  display:flex;align-items:center;gap:.45rem;font-size:.95rem;color:rgba(233,236,241,.75);
  padding:.35rem 0;margin:.45rem 0;transition:all .2s
}

/* Breadcrumbs */
.breadcrumbs{display:flex;align-items:center;gap:.5rem;color:var(--muted);font-size:.95rem;margin-bottom:.4rem}
.breadcrumbs a{color:rgba(233,236,241,.8);border-bottom:1px dashed transparent;transition:all .2s}
.breadcrumbs a:hover{color:var(--accent);border-bottom-color:var(--accent)}
.breadcrumbs span{opacity:.6}

/* Prevent anchored sections from being hidden behind sticky header */
.section[id], .supply-category-card[id]{
  scroll-margin-top: 100px;
}

/* Catalog layout with left sidebar filters */
.catalog-layout{display:grid;grid-template-columns:300px 1fr;gap:1.6rem}
@media (max-width:1100px){.catalog-layout{grid-template-columns:300px 1fr}}
@media (max-width:980px){.catalog-layout{grid-template-columns:1fr}}

.filter-sidebar{background:linear-gradient(135deg,var(--panel) 0%,var(--panel2) 100%);border:1px solid var(--border);border-radius:14px;padding:1rem;position:sticky;top:110px;align-self:start;height:auto;max-height:none;overflow:visible;box-shadow:0 8px 24px rgba(0,0,0,.25)}
/* spacing & typography remain */

.filter-sidebar h3{margin:.2rem 0 1rem;font-size:1.1rem;font-weight:800;letter-spacing:.3px}
.filter-sidebar .filter-group{padding:.6rem 0}
.filter-sidebar .filter-group + .filter-group{border-top:1px dashed var(--soft)}
.filter-sidebar .group-head{display:flex;align-items:center;justify-content:space-between;margin:0 0 .6rem}
.filter-sidebar .group-head h4{margin:0;font-size:1rem;font-weight:800;color:#fff}
.filter-sidebar .group-head .hint{color:var(--muted);font-size:.9rem}
.filter-sidebar .checklist{list-style:none;margin:0;padding:0;display:grid;gap:.45rem}
.filter-sidebar .checklist li{display:flex;align-items:center;gap:.55rem}
.filter-sidebar .checklist input[type="checkbox"]{appearance:none;-webkit-appearance:none;width:18px;height:18px;border-radius:4px;border:1px solid var(--border);background:var(--panel);display:inline-grid;place-items:center;cursor:pointer;transition:all .2s}
.filter-sidebar .checklist input[type="checkbox"]:checked{background:var(--primary);border-color:var(--primary)}
.filter-sidebar .checklist input[type="checkbox"]:checked::after{content:'✓';font-size:12px;color:#fff}
.filter-sidebar .checklist label{cursor:pointer;color:rgba(233,236,241,.9);font-size:.95rem}
.filter-sidebar .brand-more{display:none}
.filter-sidebar .brand-more.open{display:grid}
.filter-sidebar .show-more-brands{all:unset;display:inline-flex;align-items:center;gap:.35rem;color:var(--accent);cursor:pointer;margin-top:.5rem}

.filter-sidebar .price-box{background:linear-gradient(135deg,#0e1118 0%,#1a1e29 100%);border:1px solid var(--border);border-radius:12px;padding:.8rem}
.filter-sidebar .price-values{display:flex;justify-content:space-between;font-weight:700}
.filter-sidebar .range{position:relative;height:32px;margin:.6rem 0}
.filter-sidebar .range input[type="range"]{position:absolute;left:0;right:0;width:100%;pointer-events:none;background:transparent;height:32px;outline:none}
.filter-sidebar .range input[type="range"]::-webkit-slider-thumb{pointer-events:auto;appearance:none;-webkit-appearance:none;width:18px;height:18px;border-radius:50%;background:linear-gradient(135deg,#e44d61 0%,#ff6b7a 100%);border:none;box-shadow:0 2px 8px rgba(0,0,0,.35)}
.filter-sidebar .range input[type="range"]::-moz-range-thumb{pointer-events:auto;width:18px;height:18px;border-radius:50%;background:#e44d61;border:none}
.filter-sidebar .range input[type="range"]::-webkit-slider-runnable-track{height:4px;background:linear-gradient(90deg,#2a2f3d,#3a4152);border-radius:6px}

.filters-actions{display:flex;gap:.6rem;margin-top:.8rem}
.filters-actions .btn{flex:1;justify-content:center}
.filters-actions .btn.reset{background:transparent;border-color:var(--border)}

/* Mobile Filters toggle */
.filters-toggle{display:none;margin-bottom:1rem}
@media (max-width:980px){
  .filters-toggle{display:flex;position:sticky;top:66px;z-index:5}
  .filter-sidebar{position:fixed;inset:auto 0 0 0;max-height:65vh;transform:translateY(110%);transition:transform .25s ease;z-index:50;border-radius:14px 14px 0 0}
  .filter-sidebar.open{transform:translateY(0)}
  .filters-overlay{display:none;position:fixed;inset:0;background:rgba(0,0,0,.6);z-index:40}
  .filters-overlay.active{display:block}
}

.catalog-content{min-height:200px}
.link-column a::before{content:'›';color:var(--primary);opacity:0;transform:translateX(-6px);transition:all .2s}
.link-column a:hover{color:var(--primary);padding-left:.25rem}
.link-column a:hover::before{opacity:1;transform:translateX(0)}

.footer-bottom{padding:1.6rem 0;text-align:center;background:rgba(0,0,0,.25)}
.footer-bottom small{color:rgba(233,236,241,.55);font-size:.9rem;letter-spacing:.25px}

@media (max-width:1200px){
  .footer-content{grid-template-columns:1.2fr 1fr 1fr}
}
@media (max-width:900px){
  .footer-content{grid-template-columns:1fr 1fr}
}

/* ============================================
   FULLY RESPONSIVE DESIGN - MOBILE FIRST
   ============================================ */

/* Mobile & Tablet Styles (320px - 1024px) */
@media (max-width:1024px){
  html,body{font-size:16px;overflow-x:hidden;-webkit-text-size-adjust:100%}
  body{padding-bottom:env(safe-area-inset-bottom)}
  .container{width:100%;max-width:100%;padding:0 5%;margin:0 auto}
  
  /* ===== MOBILE HEADER ===== */
  .site-header{position:sticky;top:0;z-index:100;background:var(--bg);box-shadow:0 2px 10px rgba(0,0,0,0.3)}
  
  /* Show mobile header-top */
  .header-top{
    display:flex !important;
    justify-content:space-between;
    align-items:center;
    padding:1rem 0;
    gap:1rem;
    background:rgba(21,24,33,.98);
    backdrop-filter:blur(20px);
  }
  
  /* Hide desktop logo on mobile */
  .desktop-logo{display:none !important}
  
  /* Mobile Menu Button (Hamburger) - Enhanced */
  .mobile-menu-btn{
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    width:32px;
    height:26px;
    background:transparent;
    border:none;
    cursor:pointer;
    padding:4px;
    z-index:10;
    border-radius:8px;
    transition:all 0.3s;
  }
  .mobile-menu-btn:hover{
    background:rgba(228,77,97,0.1);
  }
  .mobile-menu-btn span{
    display:block;
    width:100%;
    height:3px;
    background:linear-gradient(135deg,#e44d61,#ff6b7a);
    border-radius:3px;
    transition:all 0.3s;
    box-shadow:0 1px 3px rgba(228,77,97,0.3);
  }
  .mobile-menu-btn.active span:nth-child(1){
    transform:rotate(45deg) translate(6px, 6px);
  }
  .mobile-menu-btn.active span:nth-child(2){
    opacity:0;
  }
  .mobile-menu-btn.active span:nth-child(3){
    transform:rotate(-45deg) translate(6px, -6px);
  }
  
  /* Logo - Enhanced Mobile */
  .logo{margin:0;flex:1;text-align:center}
  .logo img{height:42px;transition:all 0.3s}
  .logo:hover img{transform:scale(1.05)}
  
  /* Header Actions (Mobile) - Enhanced */
  .header-actions{
    display:flex;
    gap:0.6rem;
    align-items:center;
  }
  .header-actions .search{display:none}
  .desktop-actions{display:none !important}
  
  /* Show mobile-specific buttons */
  .mobile-search-btn{display:inline-flex !important}
  .mobile-menu-btn{display:flex !important}
  
  .header-actions .icon-btn{
    padding:0.6rem;
    font-size:1.2rem;
    min-width:44px;
    min-height:44px;
    display:inline-flex;
    justify-content:center;
    align-items:center;
    border-radius:12px;
    background:linear-gradient(135deg, rgba(228,77,97,0.1) 0%, rgba(102,126,234,0.05) 100%);
    border:1px solid rgba(228,77,97,0.2);
    transition:all 0.3s;
  }
  .header-actions .icon-btn:hover{
    transform:translateY(-2px);
    box-shadow:0 4px 12px rgba(228,77,97,0.3);
    background:linear-gradient(135deg, rgba(228,77,97,0.2) 0%, rgba(102,126,234,0.1) 100%);
  }
  .icon-btn .badge{
    min-width:16px;
    height:16px;
    font-size:9px;
    padding:0 4px;
  }
  
  /* Mobile Search Bar - Enhanced */
  .mobile-search-bar{
    display:none;
    background:linear-gradient(135deg, var(--panel) 0%, var(--panel2) 100%);
    border-top:1px solid var(--border);
    padding:1rem 0;
    box-shadow:0 4px 20px rgba(0,0,0,0.2);
  }
  .mobile-search-bar.active{
    display:block;
    animation:slideDown 0.3s ease-out;
  }
  @keyframes slideDown{
    from{opacity:0;transform:translateY(-10px)}
    to{opacity:1;transform:translateY(0)}
  }
  .mobile-search-bar .search{
    display:flex;
    width:100%;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 4px 16px rgba(0,0,0,0.1);
  }
  .mobile-search-bar .search input{
    width:100%;
    padding:0.9rem 1.2rem;
    font-size:0.95rem;
    background:rgba(255,255,255,0.05);
    border:1px solid var(--border);
    border-right:none;
  }
  .mobile-search-bar .search button{
    padding:0.9rem 1.2rem;
    font-size:1.2rem;
    background:linear-gradient(135deg,#e44d61,#d63f52);
    border:none;
    color:white;
    transition:all 0.3s;
  }
  .mobile-search-bar .search button:hover{
    background:linear-gradient(135deg,#d63f52,#c83248);
    transform:scale(1.05);
  }
  
  /* Desktop Navigation - Hide on Mobile */
  .desktop-nav{display:none !important}
  .header-bottom{display:none !important}
  .mega{display:none !important}
  
  /* ===== MOBILE DRAWER MENU ===== */
  .mobile-drawer{
    position:fixed;
    inset:0;
    z-index:200;
    display:none;
  }
  .mobile-drawer.open{
    display:block;
  }
  
  .mobile-drawer-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.7);
    backdrop-filter:blur(4px);
  }
  
  .mobile-drawer-panel{
    position:absolute;
    left:0;
    top:0;
    bottom:0;
    width:280px;
    background:linear-gradient(180deg, var(--panel) 0%, var(--bg) 100%);
    border-right:1px solid var(--border);
    box-shadow:4px 0 20px rgba(0,0,0,0.5);
    overflow-y:auto;
    transform:translateX(-100%);
    transition:transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .mobile-drawer.open .mobile-drawer-panel{
    transform:translateX(0);
  }
  
  .mobile-drawer-head{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:1.2rem 1rem;
    background:linear-gradient(135deg, rgba(228,77,97,0.1) 0%, rgba(255,107,122,0.1) 100%);
    border-bottom:2px solid var(--border);
  }
  .mobile-drawer-head strong{
    font-size:1.2rem;
    background:linear-gradient(135deg,#e44d61,#ffcc66);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text;
  }
  
  .close-drawer-btn{
    all:unset;
    width:36px;
    height:36px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:var(--panel2);
    border:1px solid var(--border);
    border-radius:8px;
    cursor:pointer;
    font-size:1.3rem;
    transition:all 0.3s;
  }
  .close-drawer-btn:hover{
    background:var(--primary);
    border-color:var(--primary);
    transform:rotate(90deg);
  }
  
  .mobile-menu-items{
    padding:0.5rem 0;
  }
  
  .mobile-menu-item{
    display:flex;
    align-items:center;
    gap:0.8rem;
    padding:0.9rem 1rem;
    margin:0.3rem 0;
    color:var(--text);
    font-size:0.95rem;
    font-weight:500;
    border-left:3px solid transparent;
    transition:all 0.3s;
    position:relative;
  }
  .mobile-menu-item span{
    font-size:1.3rem;
    width:28px;
    text-align:center;
  }
  .mobile-menu-item:hover{
    background:linear-gradient(90deg, rgba(228,77,97,0.1) 0%, transparent 100%);
    border-left-color:var(--primary);
    padding-left:1.3rem;
  }
  
  /* ===== PROMOTIONAL BANNER ===== */
  .promo-banner{margin:0 0 1.5rem 0}
  .promo-banner img{
    width:100%;
    height:auto;
    max-height:250px;
    object-fit:cover;
    border-radius:14px;
  }
  
  /* ===== MOBILE IMAGE BANNER ===== */
  .mobile-image-banner{
    display:block !important;
    margin:0 0 2rem 0;
    width:100vw;
    position:relative;
    left:50%;
    right:50%;
    margin-left:-50vw;
    margin-right:-50vw;
  }
  
  .mobile-image-banner .container{
    width:100% !important;
    max-width:100% !important;
    padding:0 !important;
    margin:0 !important;
  }
  
  .mobile-image-banner img{
    width:100%;
    height:auto;
    max-height:300px;
    min-height:250px;
    object-fit:cover;
    border-radius:0;
    cursor:pointer;
    transition:all 0.3s;
    box-shadow:0 12px 35px rgba(0,0,0,0.2);
    display:block;
  }
  
  .mobile-image-banner img:hover{
    transform:scale(1.01);
    box-shadow:0 16px 45px rgba(0,0,0,0.25);
  }
  
  /* ===== HERO SECTION ===== */
  .hero{
    padding:2rem 0;
  }
  .hero-copy h1{
    font-size:1.8rem !important;
    line-height:1.2;
  }
  .hero-copy p{
    font-size:0.95rem !important;
    margin-bottom:1rem;
  }
  .hero-cta{
    flex-direction:column;
    gap:0.6rem;
  }
  .hero-cta .btn{
    width:100%;
    padding:0.8rem 1.2rem;
    font-size:0.9rem;
  }
  
  /* ===== SECTIONS - Enhanced ===== */
  .section{padding:2rem 0}
  .section-head{
    flex-direction:row;
    align-items:center;
    justify-content:space-between;
    gap:1rem;
    margin-bottom:1.5rem;
    padding-bottom:0.8rem;
    border-bottom:1px solid rgba(228,77,97,0.1);
  }
  .section-head h2{
    font-size:1.6rem;
    margin:0;
    line-height:1.2;
    flex:1;
    background:linear-gradient(135deg, var(--text) 0%, var(--accent) 100%);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text;
  }
  .section-head h2::after{
    display:none;
  }
  .see-all-btn{
    padding:0.7rem 1.2rem;
    font-size:0.85rem;
    border-radius:12px;
    flex-shrink:0;
    background:linear-gradient(135deg, rgba(228,77,97,0.1) 0%, rgba(102,126,234,0.05) 100%);
    border:1px solid rgba(228,77,97,0.2);
    transition:all 0.3s;
  }
  .see-all-btn:hover{
    background:linear-gradient(135deg, rgba(228,77,97,0.2) 0%, rgba(102,126,234,0.1) 100%);
    transform:translateY(-2px);
    box-shadow:0 4px 12px rgba(228,77,97,0.2);
  }
  
  /* ===== SHOP BY CATEGORY - Pretty Mobile Design ===== */
  .cat-grid{
    display:flex;
    gap:1rem;
    padding:1rem 0 1.5rem 0;
    overflow-x:auto;
    -webkit-overflow-scrolling:touch;
    scrollbar-width:none;
    scroll-snap-type:x mandatory;
  }
  .cat-grid::-webkit-scrollbar{
    display:none;
  }
  
  .cat-card{
    min-width:110px;
    max-width:110px;
    padding:1.2rem 0.8rem;
    gap:0.6rem;
    border-radius:16px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg, 
      rgba(228,77,97,0.1) 0%, 
      rgba(102,126,234,0.1) 50%, 
      rgba(255,204,102,0.1) 100%);
    border:2px solid transparent;
    background-clip:padding-box;
    box-shadow:0 8px 32px rgba(0,0,0,0.12);
    transition:all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position:relative;
    overflow:hidden;
    flex-shrink:0;
    scroll-snap-align:center;
  }
  
  /* Animated gradient border */
  .cat-card::before{
    content:'';
    position:absolute;
    inset:-2px;
    background:linear-gradient(135deg, 
      #e44d61 0%, 
      #667eea 25%, 
      #ffcc66 50%, 
      #e44d61 75%, 
      #667eea 100%);
    border-radius:20px;
    z-index:-1;
    opacity:0;
    transition:opacity 0.4s;
    background-size:300% 300%;
    animation:gradientShift 4s ease infinite;
  }
  
  @keyframes gradientShift{
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
  }
  
  .cat-card:hover::before{
    opacity:1;
  }
  
  .cat-card:hover{
    transform:translateY(-8px) scale(1.05);
    box-shadow:0 16px 40px rgba(228,77,97,0.25);
  }
  
  /* Icon styling with glow effect */
  .cat-card img{
    width:60px;
    height:60px;
    object-fit:contain;
    filter:drop-shadow(0 4px 16px rgba(228,77,97,0.3));
    z-index:1;
    transition:all 0.3s;
  }
  
  .cat-card:hover img{
    filter:drop-shadow(0 6px 20px rgba(228,77,97,0.5));
    transform:scale(1.1);
  }
  
  .cat-card span{
    font-size:0.75rem;
    font-weight:800;
    text-align:center;
    line-height:1.2;
    z-index:1;
    color:var(--text);
    background:linear-gradient(135deg, var(--text) 0%, var (--accent) 100%);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text;
    letter-spacing:0.3px;
  }
  
  /* ===== PRODUCTS ===== */
  .product-row-wrapper{
    margin:0;
    position:relative;
  }
  .product-row{
    display:flex;
    gap:1rem;
    padding:0 0 1rem 0;
    overflow-x:auto;
    -webkit-overflow-scrolling:touch;
    scrollbar-width:none;
    scroll-snap-type:x mandatory;
  }
  /* ===== PRODUCTS (GRID LAYOUT) - Single Row Only ===== */
  .product-row-wrapper{
    margin:0 !important;
    position:relative;
    overflow:hidden;
  }
  
  /* Scroll indicator gradient */
  .product-row-wrapper::after{
    content:'';
    position:absolute;
    top:0;
    right:0;
    width:40px;
    height:100%;
    background:linear-gradient(270deg, var(--bg) 0%, transparent 100%);
    pointer-events:none;
    z-index:2;
  }
  
  .product-row{
    display:flex !important;
    grid-template-columns:none !important;
    gap:1rem;
    padding:0 0 0.5rem 0;
    overflow-x:auto;
    -webkit-overflow-scrolling:touch;
    scrollbar-width:none;
    scroll-snap-type:x mandatory;
    scroll-behavior:smooth;
  }
  .product-row::-webkit-scrollbar{
    display:none;
  }
  
  .product-row .p-card{
    min-width:180px !important;
    max-width:180px !important;
    flex-shrink:0 !important;
    scroll-snap-align:center !important;
  }
}

/* ===== PRODUCT PAGES & FILTERS ===== */
.page-header{
  background:linear-gradient(135deg,var(--panel2) 0%,var(--panel) 100%);
  border-bottom:1px solid var(--border);
  padding:2.5rem 0;
  text-align:center;
  margin-bottom:2rem;
}

.page-header h1{
  font-size:2.5rem;
  margin:0 0 0.5rem 0;
  font-weight:900;
}

.page-header p{
  color:var(--muted);
  font-size:1.1rem;
  margin:0;
}

/* Filters */
.filters-wrapper{
  background:var(--panel2);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:1.5rem;
  margin-bottom:2rem;
}

.filters-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:1rem;
}

.filters-head h3{
  margin:0;
  font-size:1.2rem;
}

.filters-toggle{
  background:var(--panel);
  border:1px solid var(--border);
  color:var(--text);
  padding:0.5rem 1rem;
  border-radius:8px;
  cursor:pointer;
  font-size:0.9rem;
  transition:all 0.2s;
}

.filters-toggle:hover{
  background:var(--soft);
}

.filters-content{
  display:flex;
  gap:2rem;
  flex-wrap:wrap;
}

.filter-group{
  flex:1;
  min-width:200px;
}

.filter-group h4{
  margin:0 0 1rem 0;
  font-size:1rem;
  font-weight:800;
  color:#fff;
}

.filter-options{
  display:flex;
  flex-direction:column;
  gap:0.5rem;
}

.filter-options label{
  display:flex;
  align-items:center;
  gap:0.5rem;
  cursor:pointer;
  padding:0.3rem 0;
  transition:color 0.2s;
}

.filter-options label:hover{
  color:var(--accent);
}

.filter-options input[type="checkbox"]{
  width:16px;
  height:16px;
  accent-color:var(--primary);
}

/* Modern filter toolbar */
.filter-toolbar{display:grid;gap:1rem}
.filter-toolbar .toolbar-head{font-weight:800;margin:0;color:var(--text)}
.category-tiles{display:flex;gap:.7rem;flex-wrap:wrap;align-items:center}
.category-tiles .tile{display:flex;align-items:center;gap:.5rem;padding:.6rem .9rem;border:1px solid var(--border);background:var(--panel);border-radius:12px;color:var(--text);cursor:pointer;transition:all .2s}
.category-tiles .tile:hover{border-color:var(--primary);transform:translateY(-2px);box-shadow:0 6px 18px rgba(228,77,97,.25)}
.category-tiles .tile.active{border-color:var(--primary);box-shadow:0 0 0 2px rgba(228,77,97,.15) inset}
.filter-row{display:flex;gap:.8rem;flex-wrap:wrap;align-items:center}
.filter-row select{appearance:none;background:var(--panel);border:1px solid var(--border);color:var(--text);padding:.6rem .9rem;border-radius:10px;min-width:180px;cursor:pointer}
.filter-row select:focus{outline:none;border-color:var(--primary)}
.price-range{display:flex;align-items:center;gap:.7rem;margin-left:auto}
.price-range .value{color:var(--muted);font-weight:700}
.range{position:relative;height:32px;margin:.6rem 0}
.range input[type=range]{-webkit-appearance:none;appearance:none;width:150px;background:transparent}
.range input[type=range]::-webkit-slider-runnable-track{height:4px;background:var(--soft);border-radius:999px}
.range input[type=range]::-webkit-slider-thumb{-webkit-appearance:none;margin-top:-6px;width:16px;height:16px;border-radius:50%;background:var(--primary);box-shadow:0 0 0 3px rgba(228,77,97,.2)}
.range input[type=range]::-moz-range-track{height:4px;background:var(--soft);border-radius:999px}
.range input[type=range]::-moz-range-thumb{width:16px;height:16px;border:none;border-radius:50%;background:var(--primary);box-shadow:0 0 0 3px rgba(228,77,97,.2)}

/* Large Product Cards */
.products-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:1.5rem;
  margin-bottom:3rem;
}

/* Vertical Product Grid - 220px Compact Layout */
.product-grid-vertical{
  display:grid !important;
  grid-template-columns:repeat(auto-fill,minmax(220px,1fr)) !important;
  gap:1.2rem;
  padding:1rem 0;
  margin-bottom:2rem;
}

/* High-specificity fallback to ensure grid activates on all pages */
.container .section .product-grid-vertical{
  display:grid !important;
  grid-template-columns:repeat(auto-fill,minmax(220px,1fr)) !important;
  width:100%;
}

/* Ensure children don't impose width constraints inside the grid */
.product-grid-vertical > *{min-width:0 !important; max-width:100%}

.product-card-large{
  background:var(--panel2);
  border:1px solid var(--border);
  border-radius:var(--radius);
  overflow:hidden;
  transition:all 0.3s;
  position:relative;
}

/* Optimize cards within 220px grid */
.product-grid-vertical .product-card-large .product-info{
  padding:1rem;
}

.product-grid-vertical .product-card-large .product-info h3{
  font-size:1.1rem;
  margin-bottom:0.8rem;
}

.product-grid-vertical .product-card-large .product-image{
  height:180px;
}

.product-grid-vertical .product-card-large .product-specs span{
  font-size:0.75rem;
  padding:0.25rem 0.5rem;
}

.product-grid-vertical .product-card-large .feature-tag{
  font-size:0.7rem;
  padding:0.15rem 0.4rem;
}

.product-grid-vertical .product-card-large .price-current{
  font-size:1.2rem;
}

.product-grid-vertical .product-card-large .price-old{
  font-size:0.9rem;
}

.product-grid-vertical .product-card-large .product-actions{
  flex-direction:column;
  gap:0.5rem;
}

.product-grid-vertical .product-card-large .btn{
  width:100%;
  padding:0.6rem;
  font-size:0.85rem;
}

.product-card-large:hover{
  transform:translateY(-5px);
  box-shadow:var(--shadow);
  border-color:var(--primary);
}

.product-badge{
  position:absolute;
  top:1rem;
  right:1rem;
  background:linear-gradient(135deg,var(--primary) 0%,#ff6b7a 100%);
  color:#fff;
  padding:0.3rem 0.8rem;
  border-radius:15px;
  font-size:0.8rem;
  font-weight:600;
  z-index:2;
  box-shadow:0 2px 8px rgba(228,77,97,0.4);
}

.product-image{
  height:200px;
  background:var(--panel);
  display:flex;
  align-items:center;
  justify-content:center;
  border-bottom:1px solid var(--border);
  position:relative;
  overflow:hidden;
}

.image-placeholder{
  font-size:1.2rem;
  font-weight:600;
  color:var(--muted);
  text-align:center;
  padding:2rem;
  background:linear-gradient(135deg,var(--panel) 0%,var(--panel2) 100%);
  border-radius:8px;
  border:1px solid var(--border);
}

.product-info{
  padding:1.5rem;
}

.product-info h3{
  margin:0 0 1rem 0;
  font-size:1.3rem;
  font-weight:700;
}

.product-specs{
  display:flex;
  flex-wrap:wrap;
  gap:0.5rem;
  margin-bottom:1rem;
}

.product-specs span{
  background:var(--panel);
  color:var(--muted);
  padding:0.3rem 0.6rem;
  border-radius:6px;
  font-size:0.85rem;
  border:1px solid var(--border);
}

.product-features{
  display:flex;
  flex-wrap:wrap;
  gap:0.5rem;
  margin-bottom:1.5rem;
}

.feature-tag{
  background:linear-gradient(135deg,var(--accent) 0%,#ffd700 100%);
  color:#000;
  padding:0.2rem 0.5rem;
  border-radius:4px;
  font-size:0.8rem;
  font-weight:600;
}

.product-price{
  margin-bottom:1.5rem;
}

.price-current{
  font-size:1.4rem;
  font-weight:900;
  color:var(--accent);
}

.price-old{
  font-size:1rem;
  color:var(--muted);
  text-decoration:line-through;
  margin-left:0.5rem;
}

.product-actions{
  display:flex;
  gap:0.8rem;
}

.btn-cart{
  background:linear-gradient(135deg, #28a745 0%, #20c997 100%) !important;
  border:none !important;
  color:white !important;
  box-shadow:0 3px 12px rgba(40,167,69,0.3) !important;
}

.btn-cart:hover{
  background:linear-gradient(135deg, #218838 0%, #17a2b8 100%) !important;
  transform:translateY(-2px);
  box-shadow:0 5px 16px rgba(40,167,69,0.4) !important;
}

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

.btn-outline:hover{
  background:var(--panel);
  border-color:var(--primary);
}

/* CTA Section */
.cta-section{
  background:var(--panel2);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:3rem 2rem;
  text-align:center;
  margin:3rem 0;
}

.cta-content h2{
  font-size:2rem;
  margin:0 0 1rem 0;
  color:var(--accent);
}

.cta-content p{
  font-size:1.1rem;
  color:var(--muted);
  margin:0 0 2rem 0;
}

.cta-buttons{
  display:flex;
  gap:1rem;
  justify-content:center;
  flex-wrap:wrap;
}

/* About Page Styles */
.about-grid{
  display:grid;
  grid-template-columns:2fr 1fr;
  gap:3rem;
  align-items:center;
  margin-bottom:3rem;
}

.about-content h2{
  font-size:2rem;
  margin:0 0 1.5rem 0;
  font-weight:900;
}

.about-content p{
  font-size:1.1rem;
  line-height:1.7;
  color:var(--muted);
  margin-bottom:1.5rem;
}

.about-image{
  display:flex;
  justify-content:center;
}

.mv-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:2rem;
  margin-bottom:3rem;
}

.mv-card{
  background:var(--panel2);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:2rem;
  text-align:center;
  transition:transform 0.3s;
}

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

.mv-icon{
  font-size:3rem;
  margin-bottom:1rem;
}

.mv-card h3{
  font-size:1.4rem;
  margin:0 0 1rem 0;
  color:var(--accent);
}

.features-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:1.5rem;
  margin-bottom:3rem;
}

.feature-card{
  background:var(--panel2);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:1.5rem;
  text-align:center;
  transition:all 0.3s;
}

.feature-card:hover{
  transform:translateY(-3px);
  border-color:var(--primary);
}

.feature-icon{
  font-size:2.5rem;
  margin-bottom:1rem;
}

.feature-card h3{
  margin:0 0 1rem 0;
  color:var(--accent);
}

.team-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:2rem;
  margin-bottom:3rem;
}

.team-card{
  background:var(--panel2);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:2rem;
  text-align:center;
  transition:transform 0.3s;
}

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

.team-avatar{
  font-size:4rem;
  margin-bottom:1rem;
}

.team-card h3{
  margin:0 0 0.5rem 0;
  color:var(--accent);
}

.team-card p{
  color:var(--primary);
  font-weight:600;
  margin:0 0 1rem 0;
}

.team-bio{
  color:var(--muted);
  font-size:0.95rem;
}

.stats-section{
  background:var(--panel2);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:3rem 2rem;
  margin:3rem 0;
}

.stats-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:2rem;
}

.stat-card{
  text-align:center;
  padding:1rem;
}

.stat-number{
  font-size:3rem;
  font-weight:900;
  color:var(--primary);
  margin-bottom:0.5rem;
}

.stat-label{
  color:var(--muted);
  font-size:1.1rem;
}

/* Contact Page Styles */
.contact-info-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:2rem;
  margin-bottom:3rem;
}

.contact-info-card{
  background:var(--panel2);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:2rem;
  text-align:center;
  transition:transform 0.3s;
}

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

.contact-icon{
  font-size:3rem;
  margin-bottom:1rem;
}

.contact-info-card h3{
  margin:0 0 1rem 0;
  color:var(--accent);
}

.hours-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:2rem;
  margin-bottom:3rem;
}

.hours-card{
  background:var(--panel2);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:2rem;
}

.hours-card h3{
  margin:0 0 1.5rem 0;
  color:var(--accent);
}

.hours-list{
  display:flex;
  flex-direction:column;
  gap:1rem;
}

.hours-item{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:0.5rem 0;
  border-bottom:1px solid var(--border);
}

.hours-item.special{
  color:var(--primary);
}

/* Contact Form */
.contact-form-wrapper{
  max-width:600px;
  margin:0 auto 3rem auto;
}

.contact-form{
  background:var(--panel2);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:2rem;
}

.form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:1rem;
  margin-bottom:1rem;
}

.form-group{
  margin-bottom:1rem;
}

.form-group label{
  display:block;
  margin-bottom:0.5rem;
  font-weight:600;
  color:var(--accent);
}

.form-group input,
.form-group select,
.form-group textarea{
  width:100%;
  padding:0.8rem;
  background:var(--panel);
  border:1px solid var(--border);
  border-radius:8px;
  color:var(--text);
  font-size:1rem;
  transition:border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
  outline:none;
  border-color:var(--primary);
}

.checkbox-group{
  display:flex;
  align-items:center;
  gap:0.5rem;
}

.checkbox-label{
  display:flex;
  align-items:center;
  gap:0.5rem;
  cursor:pointer;
  font-size:0.95rem;
}

.full-width{
  width:100%;
  justify-content:center;
  padding:1rem;
  font-size:1.1rem;
}

/* Map */
.map-wrapper{
  margin-bottom:3rem;
}

.map-placeholder{
  height:400px;
  background:var(--panel2);
  border:1px solid var(--border);
  border-radius:var(--radius);
  display:flex;
  align-items:center;
  justify-content:center;
}

.map-content{
  text-align:center;
  padding:2rem;
}

.map-content h3{
  margin:0 0 1rem 0;
  color:var(--accent);
}

.map-content p{
  color:var(--muted);
  margin:0.5rem 0;
}

/* FAQ */
.faq-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:1.5rem;
}

.faq-item{
  background:var(--panel2);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:1.5rem;
  transition:transform 0.3s;
}

.faq-item:hover{
  transform:translateY(-3px);
}

.faq-item h3{
  margin:0 0 1rem 0;
  color:var(--accent);
  font-size:1.1rem;
}

.faq-item p{
  color:var(--muted);
  margin:0;
}

/* Mobile Responsive */
@media (max-width:1024px){
  .page-header h1{
    font-size:2rem;
  }
  
  .filters-content{
    flex-direction:column;
    gap:1.5rem;
  }
  
  .products-grid{
    grid-template-columns:1fr;
    gap:1rem;
  }
  
  .product-actions{
    flex-direction:column;
  }
  
  .about-grid{
    grid-template-columns:1fr;
    gap:2rem;
  }
  
  .form-row{
    grid-template-columns:1fr;
  }
  
  .cta-buttons{
    flex-direction:column;
    align-items:center;
  }
  
  .filters-toggle{
    display:block;
  }
}

@media (max-width:414px){
  .filters-wrapper{
    padding:1rem;
  }
  
  .product-card-large{
    margin:0 -1rem;
    border-radius:0;
    border-left:none;
    border-right:none;
  }
  
  .contact-form{
    padding:1.5rem;
  }
  
  .stats-grid{
    grid-template-columns:repeat(2,1fr);
  }
  
  .team-grid,
  .features-grid{
    grid-template-columns:1fr;
  }
}

/* Custom Build Cards */
.custom-build-wrapper{
  margin-bottom:3rem;
}

.custom-build-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:2rem;
}

.custom-build-card{
  background:var(--panel2);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:2rem;
  text-align:center;
  transition:all 0.3s;
  position:relative;
  overflow:hidden;
}

.custom-build-card::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:4px;
  background:var(--gradient-4);
  transform:scaleX(0);
  transition:transform 0.3s;
}

.custom-build-card:hover::before{
  transform:scaleX(1);
}

.custom-build-card:hover{
  transform:translateY(-8px);
  box-shadow:var(--shadow);
  border-color:var(--primary);
}

.custom-icon{
  font-size:4rem;
  margin-bottom:1.5rem;
}

.custom-build-card h3{
  margin:0 0 1rem 0;
  font-size:1.5rem;
  color:var(--accent);
}

.custom-build-card p{
  color:var(--muted);
  margin-bottom:1.5rem;
  line-height:1.6;
}

.custom-features{
  list-style:none;
  padding:0;
  margin:0 0 2rem 0;
  text-align:left;
}

.custom-features li{
  padding:0.5rem 0;
  color:var(--muted);
  border-bottom:1px solid var(--border);
  position:relative;
  padding-left:1.5rem;
}

.custom-features li::before{
  content:'✓';
  position:absolute;
  left:0;
  color:var(--primary);
  font-weight:bold;
}

.custom-features li:last-child{
  border-bottom:none;
}

.custom-price{
  font-size:1.3rem;
  font-weight:900;
  color:var(--primary);
  margin-bottom:2rem;
}

@media (max-width:1024px){
  .custom-build-grid{
    grid-template-columns:1fr;
    gap:1.5rem;
  }
  
  .custom-build-card{
    padding:1.5rem;
  }
}

/* Supplies Grid */
.supplies-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:2rem;
  margin-bottom:3rem;
}

.supply-category-card{
  background:var(--panel2);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:2rem;
  text-align:center;
  transition:all 0.3s;
  position:relative;
  overflow:hidden;
}

.supply-category-card::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:3px;
  background:var(--gradient-3);
  transform:scaleX(0);
  transition:transform 0.3s;
}

.supply-category-card:hover::before{
  transform:scaleX(1);
}

.supply-category-card:hover{
  transform:translateY(-5px);
  box-shadow:var(--shadow);
  border-color:var(--primary);
}

.supply-icon{
  font-size:3rem;
  margin-bottom:1.5rem;
}

.supply-category-card h3{
  margin:0 0 1rem 0;
  font-size:1.3rem;
  color:var(--accent);
}

.supply-category-card p{
  color:var(--muted);
  margin-bottom:1.5rem;
  line-height:1.6;
}

.supply-brands{
  display:flex;
  flex-wrap:wrap;
  gap:0.5rem;
  justify-content:center;
  margin-bottom:2rem;
}

.brand-tag{
  background:var(--panel);
  color:var(--muted);
  padding:0.3rem 0.6rem;
  border-radius:15px;
  font-size:0.8rem;
  border:1px solid var(--border);
}

@media (max-width:1024px){
  .supplies-grid{
    grid-template-columns:1fr;
    gap:1.5rem;
  }
  
  .supply-category-card{
    padding:1.5rem;
  }
}

/* ===== SERVICES MEGAMENU ===== */
.services-megamenu{
  background:var(--panel2);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:3rem 2rem;
  margin-bottom:3rem;
}

.megamenu-header{
  text-align:center;
  margin-bottom:3rem;
}

.megamenu-header h2{
  font-size:2.5rem;
  margin:0 0 1rem 0;
  font-weight:900;
}

.megamenu-header p{
  font-size:1.2rem;
  color:var(--muted);
  margin:0;
}

.megamenu-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:2rem;
}

.megamenu-section{
  background:var(--panel);
  border:1px solid var(--border);
  border-radius:var(--radius);
  overflow:hidden;
  transition:all 0.3s;
}

.megamenu-section:hover{
  border-color:var(--primary);
  box-shadow:var(--shadow);
}

.megamenu-category{
  background:linear-gradient(135deg,var(--panel2) 0%,var(--soft) 100%);
  padding:1.5rem;
  text-align:center;
  border-bottom:1px solid var(--border);
}

.category-icon{
  font-size:3rem;
  margin-bottom:1rem;
}

.megamenu-category h3{
  margin:0;
  font-size:1.4rem;
  color:var(--accent);
}

.megamenu-items{
  padding:1rem;
}

.megamenu-item{
  display:flex;
  align-items:center;
  gap:1rem;
  padding:1rem;
  border-radius:8px;
  transition:all 0.2s;
  text-decoration:none;
  color:inherit;
  margin-bottom:0.5rem;
}

.megamenu-item:hover{
  background:var(--panel2);
  transform:translateX(5px);
}

.megamenu-item:last-child{
  margin-bottom:0;
}

.item-icon{
  font-size:1.5rem;
  min-width:2rem;
  text-align:center;
}

.item-content h4{
  margin:0 0 0.3rem 0;
  font-size:1rem;
  color:var(--text);
}

.item-content p{
  margin:0;
  font-size:0.9rem;
  color:var(--muted);
}

/* Service Packages */
.packages-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:2rem;
  margin-bottom:3rem;
}

.package-card{
  background:var(--panel2);
  border:1px solid var(--border);
  border-radius:var(--radius);
  overflow:hidden;
  transition:all 0.3s;
  position:relative;
}

.package-card.premium{
  border-color:var(--primary);
  transform:scale(1.05);
  box-shadow:var(--shadow);
}

.package-card:hover{
  transform:translateY(-5px) scale(1.02);
  box-shadow:var(--shadow);
}

.package-card.premium:hover{
  transform:translateY(-5px) scale(1.07);
}

.package-badge{
  position:absolute;
  top:1rem;
  right:1rem;
  background:linear-gradient(135deg,var(--primary) 0%,#ff6b7a 100%);
  color:#fff;
  padding:0.3rem 0.8rem;
  border-radius:15px;
  font-size:0.8rem;
  font-weight:600;
  z-index:2;
  box-shadow:0 2px 8px rgba(228,77,97,0.4);
}

.package-header{
  background:linear-gradient(135deg,var(--panel) 0%,var(--panel2) 100%);
  padding:2rem;
  text-align:center;
  border-bottom:1px solid var(--border);
}

.package-icon{
  font-size:3rem;
  margin-bottom:1rem;
}

.package-header h3{
  margin:0 0 1rem 0;
  font-size:1.5rem;
  color:var(--accent);
}

.package-price{
  font-size:2rem;
  font-weight:900;
  color:var(--primary);
}

.package-content{
  padding:2rem;
}

.package-features{
  list-style:none;
  padding:0;
  margin:0 0 2rem 0;
}

.package-features li{
  padding:0.5rem 0;
  color:var(--muted);
  border-bottom:1px solid var(--border);
  position:relative;
  padding-left:1.5rem;
}

.package-features li::before{
  content:'✓';
  position:absolute;
  left:0;
  color:var(--primary);
  font-weight:bold;
}

.package-features li:last-child{
  border-bottom:none;
}

.package-duration{
  text-align:center;
  color:var(--accent);
  font-weight:600;
  margin-bottom:1.5rem;
  padding:0.5rem;
  background:var(--panel);
  border-radius:8px;
}

/* Process Timeline */
.process-timeline{
  display:flex;
  flex-direction:column;
  gap:2rem;
  margin-bottom:3rem;
}

.process-step{
  display:flex;
  align-items:flex-start;
  gap:2rem;
  padding:2rem;
  background:var(--panel2);
  border:1px solid var(--border);
  border-radius:var(--radius);
  transition:all 0.3s;
  position:relative;
}

.process-step:hover{
  transform:translateX(10px);
  border-color:var(--primary);
}

.step-number{
  min-width:60px;
  height:60px;
  background:linear-gradient(135deg,var(--primary) 0%,#ff6b7a 100%);
  color:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.5rem;
  font-weight:900;
  box-shadow:0 4px 15px rgba(228,77,97,0.4);
}

.step-content h3{
  margin:0 0 1rem 0;
  font-size:1.4rem;
  color:var(--accent);
}

.step-content p{
  margin:0;
  color:var(--muted);
  line-height:1.6;
}

/* Warranty Grid */
.warranty-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:2rem;
  margin-bottom:3rem;
}

.warranty-card{
  background:var(--panel2);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:2rem;
  text-align:center;
  transition:all 0.3s;
}

.warranty-card:hover{
  transform:translateY(-5px);
  border-color:var(--primary);
  box-shadow:var(--shadow);
}

.warranty-icon{
  font-size:3rem;
  margin-bottom:1.5rem;
}

.warranty-card h3{
  margin:0 0 1rem 0;
  font-size:1.4rem;
  color:var(--accent);
}

.warranty-card p{
  color:var(--muted);
  margin-bottom:1.5rem;
  line-height:1.6;
}

.warranty-features{
  list-style:none;
  padding:0;
  margin:0;
  text-align:left;
}

.warranty-features li{
  padding:0.5rem 0;
  color:var(--muted);
  border-bottom:1px solid var(--border);
  position:relative;
  padding-left:1.5rem;
}

.warranty-features li::before{
  content:'✓';
  position:absolute;
  left:0;
  color:var(--primary);
  font-weight:bold;
}

.warranty-features li:last-child{
  border-bottom:none;
}

/* Mobile Responsive for Services */
@media (max-width:1024px){
  .services-megamenu{
    padding:2rem 1.5rem;
  }
  
  .megamenu-header h2{
    font-size:2rem;
  }
  
  .megamenu-grid{
    grid-template-columns:1fr;
    gap:1.5rem;
  }
  
  .packages-grid{
    grid-template-columns:1fr;
  }
  
  .package-card.premium{
    transform:none;
  }
  
  .package-card.premium:hover{
    transform:translateY(-5px);
  }
  
  .process-step{
    padding:1.5rem;
    flex-direction:column;
    text-align:center;
    gap:1rem;
  }
  
  .step-number{
    align-self:center;
  }
}

@media (max-width:414px){
  .megamenu-item{
    flex-direction:column;
    text-align:center;
    gap:0.5rem;
  }
  
  .process-step{
    padding:1.5rem;
  }
  
  .package-card{
    margin:0 -1rem;
    border-radius:0;
    border-left:none;
    border-right:none;
  }
}

/* ===== LEGAL PAGES ===== */
.legal-content{
  max-width:800px;
  margin:0 auto;
  background:var(--panel2);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:3rem;
}

.legal-intro{
  margin-bottom:3rem;
  padding-bottom:2rem;
  border-bottom:1px solid var(--border);
}

.legal-intro p:first-child{
  color:var(--muted);
  font-size:0.95rem;
  margin-bottom:1rem;
}

.legal-section{
  margin-bottom:3rem;
}

.legal-section h2{
  color:var(--accent);
  font-size:1.5rem;
  margin:0 0 1.5rem 0;
  padding-bottom:0.5rem;
  border-bottom:2px solid var(--border);
}

.legal-section h3{
  color:var(--primary);
  font-size:1.2rem;
  margin:2rem 0 1rem 0;
}

.legal-section ul{
  margin:1rem 0;
  padding-left:1.5rem;
}

.legal-section li{
  margin-bottom:0.5rem;
  color:var(--muted);
  line-height:1.6;
}

.contact-info{
  background:var(--panel);
  border:1px solid var(--border);
  border-radius:8px;
  padding:1.5rem;
  margin:1rem 0;
}

.contact-info p{
  margin:0;
  color:var(--text);
}

.legal-footer{
  margin-top:3rem;
  padding-top:2rem;
  border-top:1px solid var(--border);
  text-align:center;
}

.legal-footer p{
  color:var(--muted);
  font-size:0.9rem;
  margin:0;
}

/* ===== 404 ERROR PAGE ===== */
.error-section{
  min-height:60vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:4rem 0;
}

.error-content{
  text-align:center;
  max-width:600px;
  margin:0 auto;
}

.error-icon{
  font-size:8rem;
  margin-bottom:1rem;
  opacity:0.7;
}

.error-code{
  font-size:8rem;
  font-weight:900;
  color:var(--primary);
  margin:0;
  line-height:1;
  text-shadow:0 4px 20px rgba(228,77,97,0.3);
}

.error-content h1{
  font-size:3rem;
  margin:1rem 0;
  font-weight:900;
}

.error-message{
  font-size:1.2rem;
  color:var(--muted);
  margin:2rem 0;
  line-height:1.6;
}

.error-actions{
  display:flex;
  gap:1rem;
  justify-content:center;
  margin:3rem 0;
  flex-wrap:wrap;
}

.error-suggestions{
  background:var(--panel2);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:2rem;
  margin:3rem 0;
  text-align:left;
}

.error-suggestions h3{
  color:var(--accent);
  margin:0 0 1rem 0;
  text-align:center;
}

.error-suggestions ul{
  list-style:none;
  padding:0;
  margin:0;
}

.error-suggestions li{
  padding:0.5rem 0;
  color:var(--muted);
  position:relative;
  padding-left:1.5rem;
}

.error-suggestions li::before{
  content:'•';
  position:absolute;
  left:0;
  color:var(--primary);
  font-weight:bold;
}

/* Quick Links Grid */
.quick-links-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:1.5rem;
  margin-bottom:3rem;
}

.quick-link-card{
  background:var(--panel2);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:2rem;
  text-align:center;
  transition:all 0.3s;
  text-decoration:none;
  color:inherit;
  display:block;
}

.quick-link-card:hover{
  transform:translateY(-5px);
  border-color:var(--primary);
  box-shadow:var(--shadow);
}

.quick-link-icon{
  font-size:3rem;
  margin-bottom:1rem;
}

.quick-link-card h3{
  margin:0 0 0.5rem 0;
  color:var(--accent);
  font-size:1.2rem;
}

.quick-link-card p{
  margin:0;
  color:var(--muted);
  font-size:0.95rem;
}

/* Mobile Responsive for Legal and Error Pages */
@media (max-width:1024px){
  .legal-content{
    padding:2rem;
  }
  
  .error-code{
    font-size:6rem;
  }
  
  .error-content h1{
    font-size:2.5rem;
  }
  
  .error-actions{
    flex-direction:column;
    align-items:center;
  }
  
  .quick-links-grid{
    grid-template-columns:repeat(2,1fr);
    gap:1rem;
  }
}

@media (max-width:414px){
  .legal-content{
    padding:1.5rem;
    margin:0 -1rem;
    border-radius:0;
    border-left:none;
    border-right:none;
  }
  
  .error-icon{
    font-size:5rem;
  }
  
  .error-code{
    font-size:4rem;
  }
  
  .error-content h1{
    font-size:2rem;
  }
  
  .error-message{
    font-size:1rem;
  }
  
  .quick-links-grid{
    grid-template-columns:1fr;
  }
  
  .quick-link-card{
    margin:0 -1rem;
    border-radius:0;
    border-left:none;
    border-right:none;
  }
}

/* Responsive styles for 220px Product Grid */
@media (max-width:768px){
  .product-grid-vertical{
    grid-template-columns:repeat(auto-fill,minmax(200px,1fr));
    gap:1rem;
  }
  
  .products-grid{
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:1.2rem;
  }
  
  .product-grid-vertical .product-card-large .product-info{
    padding:0.8rem;
  }
  
  .product-grid-vertical .product-card-large .product-info h3{
    font-size:1rem;
  }
  
  .product-grid-vertical .product-card-large .product-image{
    height:160px;
  }
}

@media (max-width:480px){
  .product-grid-vertical{
    grid-template-columns:repeat(2,1fr);
    gap:0.8rem;
  }
  
  .products-grid{
    grid-template-columns:repeat(2,1fr);
    gap:1rem;
  }
  
  .product-card-large .product-info{
    padding:1rem;
  }
  
  .product-card-large .product-info h3{
    font-size:1rem;
  }
  
  .product-grid-vertical .product-card-large .product-info{
    padding:0.7rem;
  }
  
  .product-grid-vertical .product-card-large .product-info h3{
    font-size:0.9rem;
  }
  
  .product-grid-vertical .product-card-large .product-image{
    height:140px;
  }
  
  .product-grid-vertical .product-card-large .product-specs{
    gap:0.3rem;
  }
  
  .product-grid-vertical .product-card-large .product-specs span{
    font-size:0.7rem;
    padding:0.2rem 0.4rem;
  }
}

/* ========================================
   ENHANCED SEARCH RESULTS STYLES
   ======================================== */

/* Search Results Grid */
.product-grid-vertical {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

/* Product Card */
.product-card {
  background: var(--panel2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s ease;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(228, 77, 97, 0.25);
  border-color: var(--primary);
}

.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(228, 77, 97, 0.05) 0%, rgba(102, 126, 234, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s;
}

.product-card:hover::before {
  opacity: 1;
}

/* Card Image */
.card-image {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1rem;
  transition: transform 0.3s;
}

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

/* Badges */
.badge-discount {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 12px rgba(220, 53, 69, 0.4);
  z-index: 2;
}

.badge-stock {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 2;
}

/* Card Content */
.card-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-brand {
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-name {
  color: var(--text);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.product-model {
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.product-price {
  margin: 1rem 0;
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.price-current {
  color: var(--primary);
  font-size: 1.5rem;
  font-weight: 800;
}

.price-original {
  color: var(--muted);
  text-decoration: line-through;
  font-size: 1rem;
}

.product-category {
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.product-category i {
  color: var(--primary);
}

/* Add to Cart Button */
.btn-add-cart {
  width: 100%;
  padding: 0.85rem;
  background: linear-gradient(135deg, var(--primary) 0%, #d63f52 100%);
  color: white;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(228, 77, 97, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-add-cart:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(228, 77, 97, 0.5);
}

.btn-add-cart i {
  font-size: 1rem;
}

/* Search Results Info */
.search-results-info {
  padding: 1.25rem;
  background: var(--panel2);
  border-left: 4px solid var(--primary);
  margin-bottom: 2rem;
  border-radius: var(--radius);
  color: var(--text);
  box-shadow: var(--shadow);
}

/* Loading State */
.search-loading {
  grid-column: 1/-1;
  text-align: center;
  padding: 4rem 2rem;
}

.search-loading i {
  font-size: 3rem;
  color: var(--primary);
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Empty State */
.search-empty {
  grid-column: 1/-1;
  text-align: center;
  padding: 4rem 2rem;
}

.search-empty i {
  font-size: 4rem;
  color: var(--soft);
  margin-bottom: 1.5rem;
}

.search-empty h3 {
  color: var(--text);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.search-empty p {
  color: var(--muted);
  font-size: 1rem;
}

/* Search Input Highlight */
.search input:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(228, 77, 97, 0.2);
}

/* WhatsApp Floating Button */
.whatsapp-float{position:fixed;bottom:30px;right:30px;background:#25D366;color:#fff;border-radius:50%;width:60px;height:60px;display:flex;align-items:center;justify-content:center;box-shadow:0 3px 10px rgba(0,0,0,.3);z-index:9999;transition:all .3s ease}
.whatsapp-float img{width:35px;height:35px}
.whatsapp-float:hover{transform:scale(1.1);background:#22bb58}
@media (max-width:768px){.whatsapp-float{width:50px;height:50px;bottom:15px;right:15px}.whatsapp-float img{width:28px;height:28px}}
