.btn.cancel {
  background-color: #ff4d4d;
  margin-top: 10px;
}
.btn.cancel:hover {
  background-color: #d63031;
}

.product-card-nykaa {
  display: flex;
  flex-direction: column;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  overflow: hidden;
  margin: 10px;
  width: 250px;
}
.product-card-nykaa img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.product-details {
  padding: 12px;
}
.product-details h3 {
  font-size: 16px;
  margin-bottom: 6px;
  color: #333;
}
.product-details .price {
  font-weight: bold;
  color: #b64e91;
  margin-bottom: 6px;
}
.product-details .desc {
  font-size: 14px;
  color: #555;
}
.btn-preview {
  background-color: #b64e91;
  color: white;
  padding: 8px;
  display: block;
  text-align: center;
  margin-top: 10px;
  text-decoration: none;
  border-radius: 5px;
}

.header-top {
  background: linear-gradient(to right, #fff0f6, #ffe4ec);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  flex-wrap: wrap;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  border-radius: 0 0 10px 10px;
}

.header-top .logo {
  height: 60px;
  border-radius: 8px;
}

.header-top .store-info {
  text-align: center;
  flex: 1;
}

.header-top .store-info h1 {
  margin: 0;
  font-size: 22px;
  color: #b64e91;
  font-family: 'Playfair Display', serif;
}

.header-top .store-info p {
  font-size: 14px;
  color: #555;
  margin: 2px 0 0;
}

.header-top .category-icons {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.header-top .category-icons div {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 12px;
  color: #b64e91;
}

.header-top .category-icons i {
  font-size: 20px;
  margin-bottom: 4px;
}
.horizontal-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
}

.horizontal-scroll::-webkit-scrollbar {
  display: none;
}

.single-offer {
  flex: 0 0 auto;
  width: 140px;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  text-align: center;
  scroll-snap-align: start;
}

.single-offer img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  display: block;
}

.offer-caption {
  font-weight: 500;
  font-size: 14px;
  color: #b1508a;
  padding: 6px;
  background: #fff0f7;
  border-top: 1px solid #f3c4da;
}





/* ✅ Desktop size adjustment ONLY for non-circle category-box */
@media (min-width: 769px) {
  .category-strip:not(.circle-strip) .category-box {
    width: 220px;
    height: 260px;
    padding: 15px;
  }

  .category-strip:not(.circle-strip) .category-box img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
  }

  .category-strip:not(.circle-strip) .category-box span {
    font-size: 22px;
  }
}

/* ✅ Mobile mein size chhota hi rahe (you can adjust as needed) */
@media (max-width: 768px) {
  .category-strip:not(.circle-strip) .category-box {
    width: 110px;
    height: auto;
    padding: 10px;
  }

  .category-strip:not(.circle-strip) .category-box img {
    width: 120px;
    height: 130px;
  }

  .category-strip:not(.circle-strip) .category-box span {
    font-size: 14px;
  }
}



/* === Product List Grid === */
.product-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  padding: 8px;
  box-sizing: border-box;
}

/* === Product Card Styling === */
.product-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 10px 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  box-sizing: border-box;
  overflow: hidden;
  transition: transform 0.2s ease;
}

/* Hover Effect (Optional for Desktop) */
.product-card:hover {
  transform: scale(1.02);
}

/* === Product Image === */
.product-card img {
  width: 100%;
  max-height: 200px;
  object-fit: contain;
  display: block;
  margin: 0 auto 8px;
  border-radius: 10px;
}

/* === Text & Price Section === */
.product-card h3,
.product-card p,
.product-card .price,
.product-card .offer {
  margin: 4px 0;
  text-align: center;
  font-size: 14px;
}

/* === Button Style (Optional if you haven't already) === */
.product-card .buy-button,
.product-card .details-button {
  margin: 6px 0;
  padding: 8px 12px;
  border: none;
  border-radius: 6px;
  background-color: #e91e63;
  color: white;
  cursor: pointer;
  font-weight: bold;
  font-size: 14px;
}

/* === Responsive Mobile View === */
@media (max-width: 480px) {
  .product-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 10px;
  }

  .product-card {
    padding: 8px;
  }
}


