*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  scroll-behavior:smooth;
}

body{
  font-family:'Inter',sans-serif;
  background:#f6f1eb;
  color:#2d241d;
  overflow-x:hidden;
}

img{
  width:100%;
  display:block;
}

a{
  text-decoration:none;
  color:inherit;
}

.container{
  width:100%;
  max-width:1280px;
  margin:auto;
  padding:0 24px;
}

/* NAVBAR */

header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:1000;
  backdrop-filter:blur(18px);
  background:rgba(255,255,255,0.72);
  border-bottom:1px solid #e7dfd6;
}

.navbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:24px 0;
}

.logo{
  font-size:28px;
  font-weight:800;
  letter-spacing:4px;
}

nav{
  display:flex;
  gap:42px;
}

nav a{
  font-size:15px;
  font-weight:500;
  transition:0.3s;
}

nav a:hover{
  color:#9b6b43;
}

.btn{
  background:#9b6b43;
  color:white;
  border:none;
  padding:15px 32px;
  border-radius:999px;
  cursor:pointer;
  transition:0.35s;
  font-weight:600;
  box-shadow:0 10px 30px rgba(0,0,0,0.12);
}

.btn:hover{
  background:#7c5433;
  transform:translateY(-3px) scale(1.03);
}

.btn-outline{
  background:transparent;
  border:1px solid #9b6b43;
  color:#9b6b43;
}

.btn-outline:hover{
  background:#9b6b43;
  color:white;
}

/* HERO */

.hero{
  padding-top:180px;
  padding-bottom:100px;
}

.hero-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  align-items:center;
}

.tag{
  text-transform:uppercase;
  letter-spacing:5px;
  color:#9b6b43;
  font-size:14px;
  margin-bottom:20px;
}

.hero h1{
  font-size:74px;
  line-height:1.05;
  margin-bottom:30px;
}

.hero p{
  font-size:18px;
  line-height:1.9;
  color:#5b5148;
  max-width:600px;
  margin-bottom:40px;
}

.hero-buttons{
  display:flex;
  gap:20px;
  flex-wrap:wrap;
}

.hero-image{
  position:relative;
}

.glow{
  position:absolute;
  inset:0;
  background:#d8c1ab;
  opacity:0.3;
  filter:blur(120px);
  border-radius:50%;
}

.hero-image img{
  position:relative;
  height:750px;
  object-fit:cover;
  border-radius:40px;
  box-shadow:0 30px 80px rgba(0,0,0,0.15);
}

/* FEATURES */

.features{
  padding:20px 0 80px;
}

.features-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.feature-card{
  background:rgba(255,255,255,0.72);
  backdrop-filter:blur(14px);
  border:1px solid rgba(255,255,255,0.5);
  padding:40px;
  border-radius:32px;
  transition:0.35s;
  box-shadow:0 10px 30px rgba(0,0,0,0.06);
}

.feature-card:hover{
  transform:translateY(-10px);
}

.feature-card h3{
  font-size:28px;
  margin-bottom:20px;
}

.feature-card p{
  color:#5b5148;
  line-height:1.8;
}

/* PRODUCTS GRID */

.products-section{
  padding:120px 0;
}

.products-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.product-card{
  background:white;
  border-radius:32px;
  overflow:hidden;
  transition:0.35s;
  box-shadow:0 10px 30px rgba(0,0,0,0.06);
}

.product-card:hover{
  transform:translateY(-10px);
  box-shadow:0 25px 60px rgba(0,0,0,0.12);
}

.product-card img{
  height:340px;
  object-fit:cover;
}

.product-content{
  padding:28px;
}

.product-content h3{
  font-size:24px;
  margin-bottom:14px;
}

.product-price{
  font-size:28px;
  font-weight:700;
  color:#9b6b43 !important;
  margin-bottom:25px !important;
}

@media(max-width:992px){

  .products-grid{
    grid-template-columns:1fr;
  }

}


/* DISCOUNT PRICE */

.price-box{
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom:25px;
}

.old-price{
  text-decoration:line-through;
  color:#888;
  font-size:18px;
}

.new-price{
  font-size:30px;
  font-weight:800;
  color:#9b6b43;
}

.discount-badge{
  background:#9b6b43;
  color:white;
  padding:6px 12px;
  border-radius:999px;
  font-size:13px;
  font-weight:700;
  letter-spacing:1px;
}

/* PRODUCT PAGE */

.product-page{
  padding:160px 0 100px;
}

.product-page-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
}

.product-page-image img{
  border-radius:40px;
  height:700px;
  object-fit:cover;
  box-shadow:0 30px 80px rgba(0,0,0,0.15);
}

.product-page-info h1{
  font-size:60px;
  line-height:1.1;
  margin:20px 0;
}

.product-big-price{
  font-size:54px;
  font-weight:800;
  color:#9b6b43;
  margin-bottom:25px;
}

.product-page-info p{
  font-size:18px;
  line-height:1.9;
  color:#5b5148;
  margin-bottom:35px;
}

.product-features{
  margin-bottom:40px;
}

.product-features div{
  margin-bottom:18px;
  font-size:18px;
}

.sizes{
  display:flex;
  align-items:center;
  gap:15px;
  margin-bottom:40px;
  flex-wrap:wrap;
}

.sizes span{
  font-weight:700;
  font-size:20px;
}

.sizes button{
  width:52px;
  height:52px;
  border-radius:50%;
  border:none;
  background:white;
  cursor:pointer;
  font-weight:700;
  transition:0.3s;
  box-shadow:0 5px 15px rgba(0,0,0,0.08);
}

.sizes button:hover{
  background:#9b6b43;
  color:white;
}

.buy-big-btn{
  padding:18px 45px;
  font-size:18px;
}

@media(max-width:992px){

  .product-page-grid{
    grid-template-columns:1fr;
  }

  .product-page-image img{
    height:500px;
  }

  .product-page-info h1{
    font-size:42px;
  }

}

/* PRODUCT */

.product{
  padding:110px 0;
}

.product-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
}

.product-image{
  position:relative;
}

.product-image img{
  border-radius:40px;
  position:relative;
  box-shadow:0 20px 60px rgba(0,0,0,0.15);
}

.product h2{
  font-size:60px;
  line-height:1.15;
  margin-bottom:30px;
}

.product p{
  font-size:18px;
  line-height:1.9;
  color:#5b5148;
  margin-bottom:40px;
}

.check-list{
  margin-bottom:40px;
}

.check-list div{
  margin-bottom:18px;
  font-size:18px;
}

.price-area{
  display:flex;
  align-items:center;
  gap:30px;
  flex-wrap:wrap;
}

.price{
  font-size:54px;
  font-weight:800;
}

/* REVIEWS */

.reviews{
  background:white;
  padding:120px 0;
}

.section-title{
  text-align:center;
  margin-bottom:70px;
}

.section-title h2{
  font-size:56px;
  margin-top:15px;
}

.reviews-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.review-card{
  background:#f8f5f1;
  border:1px solid #eee3d8;
  padding:40px;
  border-radius:32px;
  transition:0.35s;
}

.review-card:hover{
  transform:translateY(-8px);
  box-shadow:0 20px 50px rgba(0,0,0,0.08);
}

.stars{
  color:#ffb400;
  font-size:28px;
  margin-bottom:24px;
}

.review-card p{
  color:#5b5148;
  line-height:1.9;
  margin-bottom:30px;
}

.review-name{
  font-weight:700;
}

/* CTA */

.cta{
  padding:120px 0;
}

.cta-box{
  background:#9b6b43;
  color:white;
  padding:100px 50px;
  text-align:center;
  border-radius:50px;
  box-shadow:0 20px 80px rgba(155,107,67,0.35);
}

.cta-box h2{
  font-size:68px;
  line-height:1.15;
  margin-bottom:30px;
}

.cta-box p{
  max-width:760px;
  margin:auto;
  line-height:1.9;
  opacity:0.92;
  font-size:18px;
  margin-bottom:40px;
}

.cta-box .btn{
  background:white;
  color:#9b6b43;
  font-size:18px;
  padding:18px 40px;
}

.cta-box .btn:hover{
  background:#f6f1eb;
}

/* FOOTER */

footer{
  border-top:1px solid #e7dfd6;
  text-align:center;
  padding:50px 20px;
  color:#5b5148;
}

footer h3{
  font-size:28px;
  margin-bottom:14px;
  letter-spacing:3px;
}

footer p{
  margin-bottom:10px;
}

/* MOBILE */

@media(max-width:992px){

  .hero-grid,
  .product-grid,
  .features-grid,
  .reviews-grid{
    grid-template-columns:1fr;
  }

  nav{
    display:none;
  }

  .hero h1{
    font-size:52px;
  }

  .product h2{
    font-size:46px;
  }

  .section-title h2{
    font-size:42px;
  }

  .cta-box h2{
    font-size:48px;
  }

  .hero-image img{
    height:500px;
  }

}

@media(max-width:600px){

 .navbar h1 {
    font-size:22px;
  }

  .btn{
    display:none;
  }

  .hero h1{
    font-size:42px;
  }


  .cta-box{
    padding:70px 30px;
  }

  .cta-box h2{
    font-size:38px;
  }

}