* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #fffaf7;
  color: #2c2c2c;
}


/* HEADER */
.brand-header {
  background: linear-gradient(135deg, #7b1123, #4a0d17);
  color: #fff;
  text-align: center;
  padding: 40px 20px;
}

.brand-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  letter-spacing: 1px;
}

.brand-header p {
  opacity: 0.85;
}



/* HERO */
.hero {
  background: linear-gradient(to bottom, #fffaf7, #fff);
  padding: 55px 20px;
  text-align: center;
}

.hero h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 10px;
}

.hero p {
  max-width: 520px;
  margin: auto;
  font-size: 0.95rem;
  color: #555;
}

.hero a {
  margin-top: 20px;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 30px;
  background: #7b1123;
  color: white;
  text-decoration: none;
}


/* CATEGORIES */
.categories {
  padding: 18px;
  background: #fff;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.categories button {
  border: 1px solid #e2e2e2;
  background: white;
  padding: 7px 20px;
  border-radius: 25px;
  font-size: 0.85rem;
}

.categories button.active {
  background: #7b1123;
  color: white;
  border-color: #7b1123;
}


/* CART */
.cart-btn {
  position: fixed;
  top: 15px;
  right: 15px;
  background: #111;
  color: white;
  padding: 10px 16px;
  border-radius: 25px;
  cursor: pointer;
  z-index: 999;
}

/* PRODUCTS */
.card {
  background: white;
  border-radius: 20px;
  padding: 16px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

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

.card h3 {
  font-size: 1rem;
  margin-top: 14px;
  font-weight: 500;
}

.price {
  color: #7b1123;
  font-weight: 600;
  margin-bottom: 10px;
}


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

/* BADGES */
.badge {
  background: linear-gradient(135deg, #c9a24d, #f3d27a);
  color: #3b2a00;
  font-size: 0.65rem;
  padding: 4px 10px;
  border-radius: 20px;
}

.badge.new {
  background: #ff4d6d;
  color: white;
}

/* IMAGE */
.img-box {
  overflow: hidden;
  border-radius: 14px;
}

.img-box img {
  width: 100%;
  transition: transform 0.4s;
}

.img-box:hover img {
  transform: scale(1.15);
}

.card h3 {
  margin: 12px 0 4px;
  font-weight: 500;
}

.price {
  font-weight: bold;
  color: #b11226;
}

/* BUTTON */
.card button {
  background: #7b1123;
  border-radius: 25px;
  padding: 10px;
  font-size: 0.85rem;
}

.card button:hover {
  background: #5e0e1c;
}

/* WHATSAPP */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: white;
  font-size: 28px;
  padding: 14px 16px;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
}
.cart-page {
  padding: 20px;
}
.cart-btn {
  background: #111;
  border-radius: 30px;
  padding: 10px 18px;
  font-size: 0.9rem;
}

.cart-item {
  background: white;
  border-radius: 14px;
  padding: 15px;
  margin-bottom: 15px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.cart-item h4 {
  margin: 0;
}

.qty {
  display: flex;
  gap: 10px;
  align-items: center;
}

.qty button {
  border: none;
  background: #b11226;
  color: white;
  padding: 5px 10px;
  border-radius: 6px;
}

.remove {
  margin-top: 10px;
  background: black;
  color: white;
  border: none;
  padding: 6px 10px;
  border-radius: 6px;
}

.cart-footer {
  position: sticky;
  bottom: 0;
  background: white;
  padding: 15px;
  box-shadow: 0 -4px 10px rgba(0,0,0,0.15);
}

.cart-footer button {
  width: 100%;
  background: #25d366;
  color: white;
  border: none;
  padding: 12px;
  font-size: 16px;
  border-radius: 10px;
}
