/* ================= RESET & BASE ================= */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Poppins, Arial, sans-serif;
}

body{
  background:#ffffff
  color:#333;
  line-height:1.6;
}

a{
  text-decoration:none;
  color:inherit;
}

img{
  max-width:100%;
  display:block;
}

button{
  cursor:pointer;
  border:none;
}

/* ================= COMMON CONTAINER ================= */
.container{
  width:100%;
  max-width:1300px;
  margin:auto;
}

.page-wrap,
.product-wrap,
.cart-wrap,
.order-wrap,
.account-wrap{
  width:92%;
  max-width:1200px;
  margin:70px auto;
}

/* ================= HEADER ================= */
header{
  background:#fff;
  box-shadow:0 4px 20px rgba(0,0,0,.08);
}

.topbar{
  display:flex;
  align-items:center;
  gap:25px;
  padding:15px 0;
}

.logo{
  font-size:28px;
  font-weight:700;
  color:#bf912d;
}

.search{
  flex:1;
}

.search input{
  width:100%;
  padding:10px 18px;
  border-radius:30px;
  border:1px solid #ddd;
  outline:none;
}

.actions a{
  margin-left:18px;
  font-weight:500;
}

/* ================= NAVBAR ================= */
.navbar{
  display:flex;
  gap:22px;
  padding:12px 0 18px;
  flex-wrap:wrap;
}

.navbar a{
  font-weight:500;
  color:#444;
}

.order-btn{
  margin-left:auto;
  background:#bf912d;
  color:#fff;
  padding:8px 22px;
  border-radius:25px;
}

/* ================= HERO ================= */
.hero{
  margin-top:30px;
  background:linear-gradient(120deg,#bf912d,#e36b6b);
  border-radius:25px;
  padding:50px;
  color:#fff;
  display:grid;
  grid-template-columns:1.2fr 1fr;
  align-items:center;
}

.hero h1{
  font-size:42px;
}

.hero p{
  margin:15px 0 25px;
  font-size:18px;
}

/* ================= SLIDER ================= */
.slider{
  position:relative;
  height:740px;
  border-radius:0px;
  overflow:hidden;
}

.slide{
  position:absolute;
  inset:0;
  opacity:0;
  transition:.8s;
}

.slide.active{opacity:1;}

.slide img{
  width:100%;
  height:100%;
  object-fit:cover;
  filter:brightness(.7);
}

.slide-content{
  position:absolute;
  left:50px;
  bottom:50px;
  color:#fff;
  max-width:420px;
}
/* ========= PROMISE SECTION ========= */

.promise{
  width:92%;
  max-width:1200px;
  margin:80px auto;
  text-align:center;
}

.promise-head h2{
  font-size:34px;
  color:#3a0b28;
}

.promise-head p{
  color:#666;
  margin-bottom:30px;
}

.promise-icons{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(220px,1fr));
  gap:25px;
}

.promise-box{
  background:#fff;
  padding:25px;
  border-radius:22px;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
  transition:.3s;
}

.promise-box:hover{
  transform:translateY(-6px);
}

.promise-box img{
  width:70px;
  margin-bottom:10px;
}

.promise-box h4{
  color:#b63b3b;
}


/* ========= BLOG SECTION ========= */

.blog-section{
  width:92%;
  max-width:1200px;
  margin:90px auto;
  text-align:center;
}

.blog-head h2{
  font-size:34px;
  color:#3a0b28;
}

.blog-head p{
  color:#666;
  margin-bottom:35px;
}

.blog-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:30px;
}

.blog-card{
  background:#fff;
  border-radius:25px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
  transition:.3s;
}

.blog-card:hover{
  transform:translateY(-6px);
}

.blog-card img{
  width:100%;
  height:200px;
  object-fit:cover;
}

.blog-content{
  padding:20px;
}

.blog-btn{
  display:inline-block;
  margin-top:10px;
  background:#6ed1e3;
  color:#fff;
  padding:10px 22px;
  border-radius:25px;
}

/* ================= GRID CARDS ================= */
.grid,
.shop-grid,
.rv-grid,
.wishlist-grid,
.blog-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:30px;
}

.card,
.product-card,
.rv-card,
.wishlist-item,
.blog-card{
  background:#fff;
  padding:25px;
  border-radius:25px;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
  text-align:center;
  transition:.3s;
}

.card:hover,
.product-card:hover{
  transform:translateY(-5px);
}

.card img,
.product-card img,
.rv-card img{
  width:160px;
  height:160px;
  object-fit:cover;
  border-radius:20px;
  margin:auto;
}

.price{
  color:#bf912d;
  font-weight:700;
}

/* ================= CATEGORY PAGE ================= */
.category-wrap{
  width:92%;
  max-width:1300px;
  margin:60px auto;
  display:grid;
  grid-template-columns:280px 1fr;
  gap:40px;
}

.sidebar{
  background:#fff;
  padding:30px;
  border-radius:30px;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.filter-group{
  margin-bottom:25px;
}

.filter-group label{
  display:block;
  margin-bottom:8px;
}


/* ===== COOKIE SECTION ===== */

.cookie-section{
  width:92%;
  max-width:1200px;
  margin:80px auto;
  text-align:center;
}

.section-head h2{
  font-size:34px;
  color:#3a0b28;
  margin-bottom:10px;
}

.section-head p{
  color:#666;
  margin-bottom:40px;
}

/* GRID */
.cookie-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(240px, 1fr));
  gap:25px;
}

/* CARD */
.cookie-card{
  border-radius:30px;
  padding:15px;
  position:relative;
  transition:.3s;
}

/* COLORS */
.cookie-card.peach{ background:#ffe8d6; }
.cookie-card.pink{ background:#ffd6e0; }
.cookie-card.blue{ background:#d6f3ff; }

/* OFFER BADGE */
.offer{
  background:#fff;
  display:inline-block;
  padding:6px 12px;
  border-radius:20px;
  font-size:13px;
  margin-bottom:10px;
}

/* IMAGE */
.img-box{
  width:160px;
  height:160px;
  margin:10px auto;
}

.img-box img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:50%;
}

/* CONTENT */
.content{
  background:#fff;
  border-radius:20px;
  padding:12px;
  margin-top:10px;
}

.content h3{
  margin:5px 0;
  color:#3a0b28;
}

.content p{
  font-size:13px;
  color:#666;
}

/* HOVER */
.cookie-card:hover{
  transform:translateY(-6px);
}
/* ===== BLOG SECTION ===== */

.blog-section{
  width:92%;
  max-width:1200px;
  margin:90px auto;
}

.blog-head{
  text-align:center;
  margin-bottom:40px;
}

.blog-head h2{
  font-size:34px;
  color:#3a0b28;
}

.blog-head p{
  color:#666;
  margin-top:8px;
}

/* GRID */
.blog-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
  gap:30px;
}

/* CARD */
.blog-card{
  background:#f1f8fc;
  border-radius:25px;
  overflow:hidden;
  transition:.3s;
}

.blog-card:hover{
  transform:translateY(-6px);
}

/* IMAGE */
.blog-img img{
  width:100%;
  height:200px;
  object-fit:cover;
}

/* CONTENT */
.blog-content{
  padding:20px;
}

.blog-content h3{
  color:#3a0b28;
  margin-bottom:8px;
}

.blog-content p{
  font-size:14px;
  color:#555;
  margin-bottom:12px;
}

/* BUTTON */
.blog-btn{
  display:inline-block;
  background:#bf912d;
  color:#fff;
  padding:10px 22px;
  border-radius:25px;
  font-size:14px;
}

/* ================= PRODUCT PAGE ================= */
.product-grid{
  display:grid;
  grid-template-columns:1fr 1.1fr;
  gap:50px;
}

.main-img{
  background:#fff;
  padding:30px;
  border-radius:30px;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.thumb-row{
  display:flex;
  gap:12px;
  margin-top:15px;
}

.thumb-row img{
  width:80px;
  height:80px;
  border-radius:15px;
  cursor:pointer;
}

/* ================= CART ================= */
.cart-grid{
  display:grid;
  grid-template-columns:1.4fr .6fr;
  gap:40px;
}

.cart-box,
.summary{
  background:#fff;
  padding:30px;
  border-radius:30px;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.cart-item{
  display:flex;
  gap:20px;
  align-items:center;
  border-bottom:1px solid #eee;
  padding:20px 0;
}

.cart-item img{
  width:120px;
  border-radius:20px;
}

/* ================= FORMS ================= */
input,
textarea,
select{
  width:100%;
  padding:12px 16px;
  border-radius:25px;
  border:1px solid #ddd;
  outline:none;
 

/* ================= BUTTONS ================= */
.btn,
button,
.place-order{
  background:#bf912d;
  color:#fff;
  padding:8px 12px;
  border-radius:30px;
  font-weight:600;
}

/* ================= FOOTER ================= */
footer{
  background:#bf912d;
  color:#fff;
  padding:50px 0 20px;
  margin-top:80px;
}

footer a{
  display:block;
  color:#f2dede;
  margin-bottom:8px;
  font-size:14px;
}

/* ================= MOBILE RESPONSIVE ================= */
@media(max-width:768px){

  body{font-size:14px;}

  .topbar{
    flex-direction:column;
    gap:12px;
  }

  .navbar{
    justify-content:center;
  }

  .hero{
    grid-template-columns:1fr;
    padding:30px 20px;
    text-align:center;
  }

  .hero h1{font-size:30px;}

  .slider{height:160px;}

  .category-wrap,
  .product-grid,
  .cart-grid,
  .order-grid,
  .account-grid{
    grid-template-columns:1fr;
  }

  .sidebar{
    margin-top:30px;
  }

  .cart-item{
    flex-direction:column;
    align-items:flex-start;
  }

  h1{font-size:26px;}
  h2{font-size:22px;}
}
/* ===== CATEGORY SECTION ===== */

.category-section{
  width:92%;
  max-width:1200px;
  margin:80px auto;
  text-align:center;
}

.cat-title{
  font-size:36px;
  color:#6b3e26;
  margin-bottom:35px;
}

/* GRID */
.cat-grid{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:30px;
}

/* CARD */
.cat-card{
  text-align:center;
  cursor:pointer;
  transition:.3s;
}

.cat-card:hover{
  transform:translateY(-6px);
}

/* CIRCLE BG */
.cat-img{
  width:130px;
  height:130px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:10px;
}

/* COLORS */
.cat-card.peach .cat-img{ background:#ffd8b5; }
.cat-card.mint .cat-img{ background:#c7efd9; }
.cat-card.pink .cat-img{ background:#ffd1d9; }
.cat-card.brown .cat-img{ background:#6b3e26; }
.cat-card.yellow .cat-img{ background:#ffd26a; }

.cat-img img{
  width:70px;
}

.cat-card h4{
  font-weight:600;
  color:#333;
}

/* MOBILE */
@media(max-width:768px){
  .cat-img{
    width:100px;
    height:100px;
  }

  .cat-img img{
    width:55px;
  }
}

/* ===== TREATS SECTION ===== */

.treats-section{
  padding:70px 20px;
  position:relative;
}

/* TABS */
.treat-tabs{
  display:flex;
  justify-content:center;
  gap:10px;
  margin-bottom:30px;
}

.treat-tabs span{
  padding:8px 18px;
  border-radius:30px;
  color:#000000;
  border:1px solid #a46c1f;
  cursor:pointer;
}

.treat-tabs .active{
  background:#f5a700;
  color:#000;
  border:none;
}

/* GRID */
.treat-grid{
  width:92%;
  max-width:1100px;
  margin:auto;
  padding-bottom: 20px;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
  gap:20px;
}

/* CARD */
.treat-card{
  background:#2e1f18;
  padding:12px;
  border-radius:12px;
}

.treat-card img{
  width:100%;
  height:170px;
  object-fit:cover;
  border-radius:10px;
}

/* INFO */
.treat-info{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-top:8px;
  color:#fff;
}

.treat-info h4{
  font-size:14px;
}

.treat-info small{
  opacity:.8;
}

/* ADD BTN */
.add{
  background:#f5a700;
  width:32px;
  height:32px;
  border-radius:6px;
  font-weight:bold;
}

/* LOAD MORE */
.load-wrap{
  text-align:center;
  margin-top:25px;
}

.load{
  background:#f5a700;
  padding:10px 24px;
  border-radius:8px;
}

/* WAVE EFFECT */
.treats-section::after{
  content:'';
  position:absolute;
  bottom:0;
  left:0;
  width:100%;
  height:40px;
  background:#fff5ef;
  border-radius:50% 50% 0 0;
}

/* MOBILE */
@media(max-width:768px){

  .treat-tabs{
    flex-wrap:wrap;
  }

  .treat-card img{
    height:140px;
  }

}