html { scroll-behavior: smooth; }
body { background:#0a0a0a; color:#fafafa; }
::selection { background:#fafafa; color:#0a0a0a; }
::-webkit-scrollbar { width:8px; height:8px; }
::-webkit-scrollbar-track { background:#0a0a0a; }
::-webkit-scrollbar-thumb { background:#2b2b2b; border-radius:9999px; }

.font-display { font-family:"Space Grotesk","Inter",sans-serif; letter-spacing:-0.04em; }
.text-stroke { -webkit-text-stroke:1px #fafafa; color:transparent; }

.navlink { font-size:14px; font-weight:500; letter-spacing:.02em; color:rgba(250,250,250,.8); position:relative; }
.navlink:hover { color:#fafafa; }
.iconbtn { padding:10px; border-radius:9999px; transition:background .2s; }
.iconbtn:hover { background:#1f1f1f; }

.btn-primary { display:inline-flex; align-items:center; gap:12px; background:#fafafa; color:#0a0a0a; padding:16px 28px; border-radius:9999px; font-size:13px; font-weight:600; text-transform:uppercase; letter-spacing:.08em; transition:opacity .2s; }
.btn-primary:hover { opacity:.9; }
.btn-outline { display:inline-flex; align-items:center; gap:12px; border:1px solid #2b2b2b; padding:16px 28px; border-radius:9999px; font-size:13px; font-weight:600; text-transform:uppercase; letter-spacing:.08em; transition:background .2s; }
.btn-outline:hover { background:#1f1f1f; }

/* Marquee */
.marquee { animation: marquee 40s linear infinite; }
@keyframes marquee { from { transform:translateX(0); } to { transform:translateX(-50%); } }

/* Spin */
.spin-slow { animation:spin 40s linear infinite; }
.spin-rev { animation:spin 50s linear infinite reverse; }
@keyframes spin { to { transform:rotate(360deg); } }

/* Float */
.float-y { animation:floaty 6s ease-in-out infinite; }
@keyframes floaty { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-20px);} }

/* Grain */
.grain::before { content:""; position:absolute; inset:0; pointer-events:none; opacity:.06; mix-blend-mode:overlay;
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>"); }

/* Categories */
.cat { position:relative; overflow:hidden; border-radius:16px; border:1px solid #2b2b2b; display:block; }
.cat img { width:100%; height:100%; object-fit:cover; transition:transform .7s; }
.cat:hover img { transform:scale(1.05); }
.catcap { position:absolute; left:24px; bottom:24px; right:24px; }
.catcap div { font-family:"Space Grotesk",sans-serif; font-size:28px; font-weight:700; letter-spacing:-.03em; }
.catcap span { font-size:11px; text-transform:uppercase; letter-spacing:.2em; color:#9a9a9a; }

/* Steps */
.step { display:flex; gap:20px; align-items:flex-start; padding:20px; border:1px solid #2b2b2b; border-radius:16px; transition:background .2s; }
.step:hover { background:#1f1f1f; }
.step .num { font-family:"Space Grotesk",sans-serif; font-size:28px; font-weight:700; color:#9a9a9a; width:40px; }
.step .ico { width:48px; height:48px; border:1px solid #2b2b2b; border-radius:9999px; display:flex; align-items:center; justify-content:center; }

/* Why */
.why { background:#0a0a0a; padding:40px; transition:background .2s; }
.why:hover { background:#141414; }
.why .ico { width:56px; height:56px; border:1px solid #2b2b2b; border-radius:9999px; display:flex; align-items:center; justify-content:center; font-size:22px; margin-bottom:24px; }
.why h3 { font-family:"Space Grotesk",sans-serif; font-size:22px; font-weight:700; margin-bottom:12px; }
.why p { color:#9a9a9a; font-size:14px; line-height:1.6; }

/* Manufacturing checklist */
.mfg { padding:20px; border:1px solid rgba(250,250,250,.2); border-radius:16px; font-size:14px; font-weight:500; }

/* Reviews */
.review { background:#0a0a0a; border:1px solid #2b2b2b; border-radius:16px; padding:32px; display:flex; flex-direction:column; }
.review .stars { color:#fafafa; letter-spacing:2px; margin-bottom:20px; }
.review blockquote { flex:1; line-height:1.6; }
.review figcaption { margin-top:24px; padding-top:24px; border-top:1px solid #2b2b2b; }
.review .role { font-size:11px; text-transform:uppercase; letter-spacing:.2em; color:#9a9a9a; margin-top:4px; }

/* Product cards */
.prod { display:block; }
.prod .imgwrap { position:relative; aspect-ratio:4/5; border-radius:16px; overflow:hidden; background:#141414; border:1px solid #2b2b2b; margin-bottom:16px; }
.prod img { width:100%; height:100%; object-fit:cover; transition:transform .7s; }
.prod:hover img { transform:scale(1.05); }
.prod .tag { position:absolute; top:16px; left:16px; padding:4px 12px; font-size:10px; text-transform:uppercase; letter-spacing:.2em; background:#fafafa; color:#0a0a0a; border-radius:9999px; font-weight:700; }
.prod .wish { position:absolute; top:16px; right:16px; height:40px; width:40px; border-radius:9999px; background:rgba(10,10,10,.8); backdrop-filter:blur(8px); display:flex; align-items:center; justify-content:center; }
.prod .meta { display:flex; justify-content:space-between; gap:16px; }
.prod .name { font-family:"Space Grotesk",sans-serif; font-size:18px; font-weight:700; line-height:1.2; }
.prod .rating { font-size:12px; color:#9a9a9a; margin-top:4px; }
.prod .price { font-family:"Space Grotesk",sans-serif; font-size:18px; font-weight:700; white-space:nowrap; }

/* FAQ */
.faq { border-bottom:1px solid #2b2b2b; }
.faq button { width:100%; padding:28px 0; display:flex; justify-content:space-between; gap:24px; text-align:left; }
.faq .q { font-family:"Space Grotesk",sans-serif; font-size:22px; font-weight:700; transition:transform .2s; }
.faq button:hover .q { transform:translateX(8px); }
.faq .plus { transition:transform .3s; }
.faq.open .plus { transform:rotate(45deg); }
.faq .a { max-height:0; overflow:hidden; transition:max-height .3s; color:#9a9a9a; line-height:1.6; }
.faq.open .a { max-height:200px; padding-bottom:28px; }

/* Footer */
.social { height:40px; width:40px; border-radius:9999px; border:1px solid #2b2b2b; display:flex; align-items:center; justify-content:center; font-size:11px; font-weight:700; transition:all .2s; }
.social:hover { background:#fafafa; color:#0a0a0a; }
.ftitle { font-size:11px; text-transform:uppercase; letter-spacing:.3em; color:#9a9a9a; margin-bottom:20px; }
.flinks li { margin-bottom:12px; }
.flinks a { font-size:14px; }
.flinks a:hover { text-decoration:underline; }

/* Cart */
#cartDrawer.open { transform:translateX(0); }

/* Navbar scrolled */
#navbar.scrolled{ background:rgba(0,0,0,0.6); backdrop-filter:blur(20px); border-bottom:1px solid rgba(255,255,255,0.08); box-shadow:0 10px 40px rgba(0,0,0,0.5); } { background:rgba(10,10,10,.8); backdrop-filter:blur(20px); border-bottom:1px solid #2b2b2b; }
/* ===== MOBILE RESPONSIVE FIX ===== */
@media (max-width: 768px) {

  /* Hero Heading */
  h1 {
    font-size: 52px !important;
    line-height: 0.95 !important;
  }

  /* Paragraph Text */
  p {
    font-size: 16px !important;
    line-height: 1.6 !important;
  }

  /* Buttons Stack */
  .btn-primary,
  .btn-outline {
    width: 100%;
    justify-content: center;
    padding: 16px 20px;
  }

  /* Button Wrapper */
  .hero-buttons,
  .button-group {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  /* Decorative Floating Shapes Hide */
  .float-y,
  .spin-slow,
  .spin-rev {
    display: none !important;
  }

  /* Product Grid Better */
  .prod .name {
    font-size: 16px;
  }

  .prod .price {
    font-size: 16px;
  }

  /* Review Cards */
  .review {
    padding: 24px;
  }

  /* Why Choose Us Cards */
  .why {
    padding: 24px;
  }

  /* FAQ Text */
  .faq .q {
    font-size: 18px;
  }

  /* Stats Section */
  .stats,
  .stats-section {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  /* Fix Bottom Cutoff */
  section {
    overflow: hidden;
  }

}
/* ================= MOBILE HERO FIX ================= */

@media (max-width: 1024px) {

  .hero {
    grid-template-columns: 1fr !important;
    gap: 60px !important;
    padding-top: 140px !important;
  }

  .hero-copy {
    order: 2;
    width: 100%;
  }

  .hero-visual {
    order: 1;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .hero-card {
    width: 100% !important;
    max-width: 420px;
  }

  h1 {
    font-size: clamp(52px, 13vw, 90px) !important;
    line-height: 0.92 !important;
  }

  .hero p {
    font-size: 16px !important;
    line-height: 1.7 !important;
    max-width: 100% !important;
  }

  .hero-cta {
    flex-direction: column !important;
    width: 100%;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    justify-content: center;
  }

  .float-shape,
  .circle-text {
    display: none !important;
  }

}
/* ================= IPAD + MOBILE FIX ================= */

@media (max-width: 1024px) {

  body{
    overflow-x:hidden;
  }

  section{
    overflow:hidden;
  }

  h1{
    font-size: clamp(54px, 11vw, 90px) !important;
    line-height: 0.9 !important;
  }

  .hero-grid,
  .hero{
    display:flex !important;
    flex-direction:column !important;
    gap:50px !important;
  }

  .hero-content,
  .hero-left{
    width:100% !important;
    max-width:100% !important;
  }

  .hero-image,
  .hero-right{
    width:100% !important;
    display:flex;
    justify-content:center;
  }

  .hero-image img,
  .hero-right img{
    max-width:420px !important;
    width:100% !important;
    height:auto !important;
  }

  .hero-buttons,
  .hero-cta{
    flex-direction:column !important;
    width:100% !important;
  }

  .hero-buttons a,
  .hero-cta a,
  .btn-primary,
  .btn-outline{
    width:100% !important;
    justify-content:center !important;
  }

}
/* MOBILE MANUFACTURING FIX */

@media (max-width:768px){

.manufacturing-card,
.b2b-card{

width:100% !important;
max-width:100% !important;

margin-left:0 !important;
margin-right:0 !important;

padding:32px 24px !important;

overflow:hidden !important;

border-radius:32px !important;

}

.manufacturing-card h2,
.b2b-card h2{

font-size:52px !important;
line-height:0.95 !important;

}

}
.catcap div{
color:#000 !important;
-webkit-text-stroke:1px #fff;
font-weight:700;
}

.catcap span{
color:#000 !important;
opacity:0.8;
}
#cursorGlow{
position:fixed;
width:300px;
height:300px;
background:radial-gradient(circle,rgba(255,255,255,0.08),transparent 70%);
pointer-events:none;
border-radius:50%;
transform:translate(-50%,-50%);
z-index:9999;
mix-blend-mode:screen;
transition:
transform 0.08s linear,
opacity 0.3s ease;
}
#loader{
position:fixed;
inset:0;
background:#000;
display:flex;
align-items:center;
justify-content:center;
z-index:999999;
transition:all 1s ease;
}

.loader-logo{
font-size:42px;
font-weight:800;
letter-spacing:12px;
color:white;
animation:pulse 1.5s infinite;
}

@keyframes pulse{

0%{
opacity:0.5;
transform:scale(0.95);
}

50%{
opacity:1;
transform:scale(1);
}

100%{
opacity:0.5;
transform:scale(0.95);
}

}
.prod{
transition:all 0.4s ease;
}

.prod:hover{
transform:translateY(-10px);
}

.prod .imgwrap::after{
content:'';
position:absolute;
inset:0;
background:linear-gradient(
to top,
rgba(0,0,0,0.5),
transparent
);
opacity:0;
transition:0.4s;
}

.prod:hover .imgwrap::after{
opacity:1;
}
@media(max-width:768px){

h1{
font-size:48px !important;
line-height:1 !important;
}

.hero-buttons{
flex-direction:column;
}

.btn-primary,
.btn-outline{
width:100%;
justify-content:center;
}

}
#mainProductImage{
cursor:zoom-in;
transition:
transform 0.5s ease;
}

#mainProductImage:hover{
transform:scale(1.12);
}
.reveal{
opacity:0;
transform:translateY(60px);
transition:
all 1s ease;
}

.reveal.active{
opacity:1;
transform:translateY(0);
}
#cartDrawer{
transition:
transform 0.5s cubic-bezier(
0.22,
1,
0.36,
1
);
}
body{

background:
radial-gradient(
circle at top left,
rgba(255,255,255,0.04),
transparent 25%
),

radial-gradient(
circle at bottom right,
rgba(255,255,255,0.03),
transparent 25%
),

#000;

}
.shimmer{

background:
linear-gradient(
90deg,
#fff 0%,
#777 50%,
#fff 100%
);

background-size:200% auto;

color:transparent;

background-clip:text;
-webkit-background-clip:text;

animation:shimmer 4s linear infinite;

}

@keyframes shimmer{

0%{
background-position:-200% center;
}

100%{
background-position:200% center;
}

}
footer{

position:relative;
overflow:hidden;

}

footer::before{

content:'';

position:absolute;

width:500px;
height:500px;

background:
radial-gradient(
circle,
rgba(255,255,255,0.05),
transparent 70%
);

top:-250px;
left:50%;
transform:translateX(-50%);

pointer-events:none;

}
img{

animation:fadeImage 1s ease;

}

@keyframes fadeImage{

from{
opacity:0;
transform:scale(1.03);
}

to{
opacity:1;
transform:scale(1);
}

}
html{

scroll-behavior:smooth;

}

body{

-webkit-font-smoothing:antialiased;

text-rendering:optimizeLegibility;

}
.cursor-particle{

position:fixed;

width:10px;
height:10px;

border-radius:50%;

background:
rgba(255,255,255,0.15);

pointer-events:none;

transform:
translate(-50%,-50%);

animation:
particleFade 0.6s linear forwards;

z-index:9999;

}

@keyframes particleFade{

0%{

opacity:1;
transform:
translate(-50%,-50%) scale(1);

}

100%{

opacity:0;
transform:
translate(-50%,-50%) scale(3);

}

}
#pageTransition{

position:fixed;

inset:0;

background:#000;

z-index:999999;

pointer-events:none;

opacity:0;

transition:opacity 0.5s ease;

}
#mobileNav{

transition:
all 0.4s ease;

transform-origin:top;

}

#mobileNav.hidden{

opacity:0;
transform:scaleY(0.95);

}

#mobileNav:not(.hidden){

opacity:1;
transform:scaleY(1);

}
.prod .imgwrap{

position:relative;

}

.prod .imgwrap::before{

content:'';

position:absolute;

top:0;
left:-100%;

width:50%;
height:100%;

background:
linear-gradient(
90deg,
transparent,
rgba(255,255,255,0.15),
transparent
);

transform:skewX(-25deg);

transition:0.8s;

z-index:2;

}

.prod:hover .imgwrap::before{

left:150%;

}
.blob{

position:fixed;

width:400px;
height:400px;

border-radius:50%;

filter:blur(120px);

opacity:0.12;

pointer-events:none;

z-index:-1;

animation:blobMove 20s infinite alternate;

}

.blob1{

background:#ffffff;

top:-100px;
left:-100px;

}

.blob2{

background:#888888;

bottom:-100px;
right:-100px;

}

@keyframes blobMove{

0%{
transform:translate(0,0);
}

100%{
transform:translate(100px,-50px);
}

}
.active-link{

color:white !important;

position:relative;

}

.active-link::after{

content:'';

position:absolute;

left:0;
bottom:-8px;

width:100%;
height:2px;

background:white;

border-radius:999px;

}