:root{
  --primary-red:#d90429;
  --dark-red:#a60321;

  --gold:#ffb703;
  --gold-dark:#f59e0b;

  --cream:#fff8e7;

  --text:#111827;
  --muted:#6b7280;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Inter',sans-serif;
  background:#ffffff;
  color:var(--text);
  line-height:1.6;
  overflow-x:hidden;
}

img{
  width:100%;
  display:block;
  object-fit:cover;
}

a{
  text-decoration:none;
}

.container{
  width:90%;
  max-width:1200px;
  margin:auto;
}

/* =========================
   HERO
========================= */

.hero{
  min-height:100vh;
  background:
    radial-gradient(circle at top left,#d9042922,transparent 40%),
    radial-gradient(circle at bottom right,#ffb70333,transparent 40%),
    linear-gradient(135deg,#fff8e7,#ffffff);
  padding-bottom:80px;
}

/* =========================
   NAVBAR
========================= */

.navbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:28px 0;
}

.logo{
  font-size:28px;
  font-weight:900;
  color:var(--text);

}

.logo span{
  color:var(--primary-red);
}

.sub-brand{
  margin-top:6px;
  font-size:12px;
  font-weight:600;
  color:#6b7280;
  letter-spacing:1px;
  text-transform:uppercase;
  transition:0.3s;
}

.sub-brand:hover{
  color:var(--gold-dark);
}
@media (max-width: 768px) {
.navbar{
   display: grid;
   justify-content:flex-start;
   align-items:left;
}
  .sub-brand {
    display: block;
    font-size: 12px;
    margin-top: 4px;
    text-align:left;
    margin-left:0px;
    padding-left:0px;
  }
}
.menu{
  display:flex;
  gap:32px;
  list-style:none;
}

.menu a{
  color:#374151;
  font-weight:600;
  transition:0.3s;
}

.menu a:hover{
  color:var(--primary-red);
}

/* =========================
   HERO CONTENT
========================= */

.hero-content{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
  padding-top:40px;
}

.badge{
  display:inline-block;
  padding:10px 18px;
  background:#ffe5e5;
  color:var(--primary-red);
  border-radius:999px;
  font-size:14px;
  font-weight:700;
  margin-bottom:24px;
}

.hero-text h1{
  font-size:68px;
  line-height:1.05;
  font-weight:900;
  margin-bottom:24px;
  color:var(--text);
}

.hero-text h1 span{
  color:var(--primary-red);
}

.hero-text p{
  font-size:18px;
  color:#4b5563;
  max-width:550px;
  margin-bottom:36px;
}

/* =========================
   BUTTONS
========================= */

.hero-buttons{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}

.btn{
  padding:16px 28px;
  border-radius:14px;
  font-weight:700;
  transition:0.3s;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

.btn.primary{
  background:linear-gradient(
    135deg,
    var(--primary-red),
    var(--gold)
  );
  color:#fff;
  box-shadow:0 10px 30px rgba(217,4,41,0.2);
}

.btn.primary:hover{
  transform:translateY(-2px);
  filter:brightness(1.05);
}

.btn.secondary{
  background:#fff;
  color:var(--text);
  border:1px solid #e5e7eb;
}

.btn.secondary:hover{
  background:#fff7ed;
}

.btn.white{
  background:#fff;
  color:var(--primary-red);
}

.btn.outline{
  border:2px solid #fff;
  color:#fff;
}

/* =========================
   STATS
========================= */

.stats{
  display:flex;
  gap:50px;
  margin-top:50px;
  flex-wrap:wrap;
}

.stats h3{
  font-size:34px;
  color:var(--primary-red);
}

.stats span{
  color:#6b7280;
  font-size:14px;
}

/* =========================
   HERO IMAGE
========================= */

.hero-image img{
  height:650px;
  border-radius:30px;
  box-shadow:0 25px 60px rgba(0,0,0,0.12);
  border:1px solid rgba(255,183,3,0.15);
}

/* =========================
   SECTION TITLE
========================= */

.section-title{
  text-align:center;
  margin-bottom:60px;
}

.section-title span{
  color:var(--primary-red);
  font-weight:800;
  letter-spacing:1px;
  font-size:14px;
}

.section-title h2{
  font-size:42px;
  margin-top:16px;
  color:var(--text);
}

/* =========================
   PRODUCTS
========================= */

.products{
  padding:110px 0;
  background:#ffffff;
}

.product-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.card{
  background:#fff;
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 10px 35px rgba(0,0,0,0.06);
  transition:0.3s;
  border:1px solid rgba(255,183,3,0.15);
}

.card:hover{
  transform:translateY(-10px);
  box-shadow:
    0 20px 40px rgba(217,4,41,0.12);
}

.card img{
  height:280px;
}

.card-content{
  padding:28px;
}

.card-content h3{
  font-size:24px;
  margin-bottom:12px;
  color:var(--text);
}

.card-content p{
  color:#6b7280;
}

/* =========================
   FEATURES
========================= */

.features{
  padding:110px 0;
  background:#fff8f0;
}

.feature-wrapper{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

.feature-text span{
  color:var(--primary-red);
  font-weight:800;
  font-size:14px;
}

.feature-text h2{
  font-size:46px;
  line-height:1.15;
  margin:18px 0 34px;
}

.feature-list{
  display:flex;
  flex-direction:column;
  gap:20px;
}

.feature-item{
  background:#fff;
  padding:22px 24px;
  border-radius:18px;
  box-shadow:0 5px 20px rgba(217,4,41,0.08);
  font-weight:600;
  border-left:5px solid var(--gold);
}

.feature-item-red{
  background:#fff;
  padding:22px 24px;
  border-radius:18px;
  box-shadow:0 5px 20px rgba(217,4,41,0.08);
  font-weight:600;
  border-left:5px solid var(--primary-red);
}

.feature-item-cream{
  background:#fff;
  padding:22px 24px;
  border-radius:18px;
  box-shadow:0 5px 20px rgba(217,4,41,0.08);
  font-weight:600;
  border-left:5px solid var(--cream);
}

.feature-image img{
  height:620px;
  border-radius:30px;
  box-shadow:0 20px 50px rgba(0,0,0,0.12);
  border:1px solid rgba(255,183,3,0.15);
}

/* =========================
   CTA
========================= */

.cta{
  padding:110px 0;
  background:linear-gradient(
    135deg,
    var(--primary-red),
    var(--gold-dark)
  );
  text-align:center;
  color:#fff;
}

.cta h2{
  font-size:52px;
  margin-bottom:20px;
}

.cta p{
  font-size:18px;
  max-width:700px;
  margin:auto;
  opacity:0.92;
}

.center{
  justify-content:center;
  margin-top:40px;
}

/* =========================
   FOOTER
========================= */

/* FOOTER */
.footer{
  background:#0f172a;
  color:#fff;
  padding:70px 8% 25px;
  margin-top:80px;
}

.footer-container{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:50px;
  margin-bottom:40px;
}

.footer-logo{
  font-size:32px;
  font-weight:800;
  margin-bottom:15px;
  letter-spacing:-1px;
}

.footer-logo span{
  color:var(--primary-red);
}

.footer-brand p{
  color:#cbd5e1;
  line-height:1.8;
  max-width:320px;
}

.footer-links h4,
.footer-contact h4{
  font-size:18px;
  margin-bottom:18px;
}

.footer-links a{
  display:block;
  color:#cbd5e1;
  text-decoration:none;
  margin-bottom:12px;
  transition:.3s;
}

.footer-links a:hover{
  color:#f59e0b;
  transform:translateX(3px);
}

.footer-contact p{
  color:#cbd5e1;
  margin-bottom:12px;
  line-height:1.7;
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,0.1);
  padding-top:20px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:10px;
}

.footer-bottom p{
  color:#94a3b8;
  font-size:14px;
}

.footer-bottom .credit a{
  color:#f59e0b;
  text-decoration:none;
  font-weight:600;
}

.footer-bottom .credit a:hover{
  text-decoration:underline;
}

/* MOBILE */
@media(max-width:768px){

  .footer{
    padding:60px 6% 25px;
  }

  .footer-bottom{
    flex-direction:column;
    text-align:center;
  }

}
/* =========================
   RESPONSIVE
========================= */

@media(max-width:992px){

  .hero-content,
  .feature-wrapper{
    grid-template-columns:1fr;
  }

  .product-grid{
    grid-template-columns:1fr;
  }

  .hero-text h1{
    font-size:52px;
  }

  .section-title h2,
  .feature-text h2,
  .cta h2{
    font-size:36px;
  }

  .hero-image img,
  .feature-image img{
    height:auto;
  }
}

@media(max-width:768px){

  .navbar{
    flex-direction:column;
    gap:20px;
  }

  .menu{
    gap:18px;
    flex-wrap:wrap;
    justify-content:center;
  }

  .hero-text h1{
    font-size:42px;
  }

  .stats{
    gap:24px;
  }

  .btn{
    width:100%;
  }

  .hero-buttons{
    flex-direction:column;
  }
}

/* =========================
   COMPARISON SECTION
========================= */

.comparison-section{
  padding:120px 0;
  background:
    radial-gradient(circle at top left,#d9042910,transparent 30%),
    radial-gradient(circle at bottom right,#ffb70322,transparent 30%),
    #fff;
}

.section-header{
  text-align:center;
  max-width:800px;
  margin:auto;
  margin-bottom:70px;
}

.section-header span{
  color:var(--primary-red);
  font-size:14px;
  font-weight:800;
  letter-spacing:1px;
}

.section-header h2{
  font-size:48px;
  line-height:1.1;
  margin:18px 0;
}

.section-header p{
  color:#6b7280;
  font-size:18px;
}

/* =========================
   GRID
========================= */

.comparison-grid{
  width:90%;
  max-width:1200px;
  margin:auto;

  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
}

/* =========================
   CARD
========================= */

.compare-card{
  position:relative;
  overflow:hidden;

  background:rgba(255,255,255,0.7);

  backdrop-filter:blur(18px);

  border-radius:34px;

  padding:50px 40px;

  border:1px solid rgba(255,255,255,0.4);

  box-shadow:
    0 10px 40px rgba(0,0,0,0.06);

  transition:0.4s;
}

.compare-card:hover{
  transform:translateY(-10px);
}

/* =========================
   CARD VARIANTS
========================= */

.rayon{
  background:
    linear-gradient(
      180deg,
      rgba(217,4,41,0.05),
      rgba(255,255,255,0.9)
    );
}

.polyester{
  background:
    linear-gradient(
      180deg,
      rgba(255,183,3,0.10),
      rgba(255,255,255,0.9)
    );
}

/* =========================
   GLOW
========================= */

.glow{
  position:absolute;
  width:240px;
  height:240px;

  border-radius:50%;

  top:-80px;
  right:-80px;

  filter:blur(50px);

  opacity:0.35;
}

.rayon .glow{
  background:#d90429;
}

.polyester .glow{
  background:#ffb703;
}

/* =========================
   IMAGE
========================= */

.product-image{
  width:240px;
  margin:auto;
  margin-bottom:30px;

  transition:0.4s;
}

.compare-card:hover .product-image{
  transform:
    translateY(-10px)
    rotate(-3deg);
}

/* =========================
   BADGE
========================= */

.product-badge{
  width:max-content;

  margin:auto;
  margin-bottom:24px;

  padding:10px 18px;

  border-radius:999px;

  font-size:13px;
  font-weight:800;
  letter-spacing:1px;
}

.red{
  background:#ffe5e5;
  color:#d90429;
}

.gold{
  background:#fff3d6;
  color:#d97706;
}

/* =========================
   TYPOGRAPHY
========================= */

.compare-card h3{
  text-align:center;

  font-size:38px;
  font-weight:900;

  margin-bottom:18px;
}

.description{
  text-align:center;

  color:#6b7280;

  font-size:17px;

  max-width:420px;

  margin:auto;
  margin-bottom:36px;
}

/* =========================
   FEATURE LIST
========================= */

.feature-list{
  display:flex;
  flex-direction:column;
  gap:16px;

  margin-bottom:40px;
}

.feature-item{
  background:#fff;

  border-radius:16px;

  padding:18px 20px;

  font-weight:600;

  box-shadow:
    0 5px 20px rgba(0,0,0,0.04);
}

/* =========================
   BEST FOR
========================= */

.best-for{
  padding-top:10px;
}

.best-for h4{
  margin-bottom:18px;

  font-size:14px;

  letter-spacing:1px;

  color:#6b7280;
}

.tags{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.tags span{
  padding:10px 16px;

  border-radius:999px;

  background:#fff;

  font-size:14px;
  font-weight:700;

  box-shadow:
    0 5px 15px rgba(0,0,0,0.04);
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:992px){

  .comparison-grid{
    grid-template-columns:1fr;
  }

  .section-header h2{
    font-size:38px;
  }
}

@media(max-width:768px){

  .compare-card{
    padding:40px 26px;
  }

  .compare-card h3{
    font-size:30px;
  }

  .section-header h2{
    font-size:32px;
  }

  .product-image{
    width:200px;
  }
}

/* SHOWCASE SECTION */
.showcase-section{
  padding:100px 0;
  background:#f8fafc;
  overflow:hidden;
}

.section-title{
  text-align:center;
  margin-bottom:60px;
  padding:0 20px;
}

.section-title span{
  display:inline-block;
  color:#f59e0b;
  font-weight:700;
  margin-bottom:12px;
  text-transform:uppercase;
  letter-spacing:2px;
}

.section-title h2{
  font-size:48px;
  color:#0f172a;
  margin-bottom:18px;
  line-height:1.2;
}

.section-title p{
  max-width:700px;
  margin:auto;
  color:#64748b;
  line-height:1.8;
  font-size:17px;
}

/* MARQUEE */
.marquee{
  width:100%;
  overflow:hidden;
  margin-bottom:28px;
}

.marquee-content{
  display:flex;
  gap:24px;
  width:max-content;
  animation:scrollLeft 35s linear infinite;
}

.marquee.reverse .marquee-content{
  animation:scrollRight 35s linear infinite;
}

.showcase-card{
  width:320px;
  height:220px;
  border-radius:24px;
  overflow:hidden;
  flex-shrink:0;
  background:#fff;
  box-shadow:0 10px 35px rgba(0,0,0,0.08);
  transition:.4s;
}

.showcase-card.large{
  width:420px;
  height:280px;
}

.showcase-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.showcase-card:hover{
  transform:translateY(-8px);
}

@keyframes scrollLeft{
  from{
    transform:translateX(0);
  }
  to{
    transform:translateX(-50%);
  }
}

@keyframes scrollRight{
  from{
    transform:translateX(-50%);
  }
  to{
    transform:translateX(0);
  }
}

/* MOBILE */
@media(max-width:768px){

  .showcase-section{
    padding:70px 0;
  }

  .section-title h2{
    font-size:34px;
  }

  .showcase-card{
    width:240px;
    height:170px;
  }

  .showcase-card.large{
    width:300px;
    height:200px;
  }

}