/* ========== GLOBAL ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', Arial, sans-serif;
  background: #fff;
  color: #1a1a1a;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

/* ========== WRAPPERS ========== */
#main-wrapper {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  background: #fff;
  min-height: 100vh;
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
}

/* ========== HEADER ========== */
.header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: #ffffff;
  box-shadow: 0 1px 0 #eee;
}
.logo {
  font-size: 18px;
  font-weight: 700;
  color: #ad0061;
  letter-spacing: .2px;
  display: flex;
  align-items: center;
  gap: 9px;
  cursor: pointer;
}
.menu-icon {
  font-size: 21px;
  color: #ad0061;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.menu-icon:hover {
  transform: scale(1.05);
}
.icon-set {
  display: flex;
  gap: 20px;
}
.icon-set .icon {
  font-size: 21px;
  color: #ad0061;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.icon-set .icon:hover {
  transform: scale(1.05);
}

/* ========== MENU DROPDOWN ========== */
#menu-list {
  display: none;
  list-style: none;
  padding: 0;
  margin: 0;
}
.header + #menu-list {
  position: absolute;
  top: 52px;
  left: 0;
  right: 0;
  margin: 0;
  padding: 6px 0;
  background: #ffffff;
  border-bottom: 1px solid #eee;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  z-index: 999;
}
#menu-list li {
  padding: 8px 18px;
  transition: background 0.2s;
}
#menu-list a {
  display: block;
  font-size: 14px;
  color: #333;
  text-decoration: none;
}
#menu-list li:hover {
  background: #ffe6f4;
}
#menu-list a:hover {
  color: #ad0061;
}

/* ========== SEARCH ========== */
.search-bar {
  background:#fff;
  margin:15px 0 12px 0;
  padding:0 14px;
}
.search-input-wrap {
  display:flex;
  align-items:center;
  border-radius:22px;
  border:1.2px solid #FFC0E5;
  position:relative;
  background:#fff;
  transition: box-shadow 0.2s;
}
.search-input-wrap:focus-within {
  box-shadow: 0 0 0 2px rgba(173,0,97,0.2);
  border-color: #ad0061;
}
.search-input-wrap input {
  flex:1;
  border:none;
  outline:none;
  font-size:15px;
  padding:10px 15px 10px 18px;
  border-radius:22px;
  background:transparent;
}
.search-input-wrap .search-icn {
  position:absolute;
  right:19px;
  top:9px;
  color:#ad0061;
  font-size:20px;
  pointer-events: none;
}

/* ========== CATEGORY BUBBLES ========== */
.cat-row {
  display:flex;
  overflow-x:auto;
  gap:18px;
  padding:13px 0 14px 14px;
  background:#fbf4fd;
}
.cat-row::-webkit-scrollbar { display:none; }

.cat-bubble {
  flex:0 0 62px;
  text-align:center;
  text-decoration:none;
}
.cat-bubble img {
  width:38px;
  height:38px;
  object-fit:cover;
  border-radius:50%;
  border:2.5px solid #edbae2;
  margin-bottom:5px;
}
.cat-title {
  font-size:12px;
  color:#ad0061;
}

/* ========== BANNER ========== */
.banner-section {
  padding:0 9px;
}
.banner-card {
  background:#FFD9EF;
  border-radius:18px;
  max-width:400px;
  margin:15px auto 6px auto;
  box-shadow:0 6px 24px #F7CFEA48;
  text-align:center;
  padding:18px 16px;
}
.banner-img {
  width:78px;
  height:78px;
  border-radius:9px;
  object-fit:cover;
  display:block;
  margin:0 auto 11px auto;
}
.banner-title {
  color:#A5005B;
  font-size:17px;
  font-weight:700;
  margin-bottom:8px;
}
.banner-offer {
  color:#6a165d;
  font-size:13px;
}
.banner-btn {
  display: inline-block;
  background:#AD0061;
  color:#fff;
  border:none;
  border-radius:9px;
  font-weight:700;
  padding:10px 28px;
  font-size:15px;
  cursor:pointer;
  margin-top:15px;
  text-decoration:none;
  transition: background 0.2s;
}
.banner-btn:hover {
  background:#8a004d;
}
.superoffer-bar {
  background:#A5005B;
  color:#fff;
  padding:8px 0;
  text-align:center;
  font-size:15px;
  font-weight:700;
  margin:13px 0 10px 0;
  border-radius:8px;
  max-width:450px;
  margin-left:auto;
  margin-right:auto;
}

/* ========== PRODUCT GRID ========== */
.section-title {
  padding:12px 0 0 14px;
  font-weight:600;
  font-size:16.5px;
  color:#341232;
}
.product-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
  padding:18px;
  background:#fff;
  max-width:900px;
  margin:0 auto 35px auto;
}
.product-grid .product-card {
  flex-direction:column;
  box-shadow:0 2px 12px #efe1ec77;
  border:1px solid #eee;
  padding:11px 10px 10px 10px;
  background:#fff;
  border-radius:13px;
  text-decoration:none;
  color:#181020;
  transition: transform 0.2s ease, box-shadow 0.2s;
}
.product-grid .product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 20px rgba(173,0,97,0.1);
}
.prod-img-wrapper {
  position: relative;
  display: block;
  width: 100%;
  line-height: 0;
}
/* Discount badge removed – no styles for .off-badge */
.prodimg {
  width: 100%;
  height: 180px;
  object-fit: contain;
  background: #fcf1f7;
  border-radius: 8px;
  display: block;
}
.prod-title {
  min-height: 36px;
  font-size: 13.8px;
  font-weight: 600;
  line-height: 1.2;
  color: #2b133d;
  margin: 8px 0 5px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.prod-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 2.5px;
}
.prod-price {
  font-size: 15px;
  font-weight: 700;
  color: #159647;
}
.prod-mrp {
  font-size: 13.2px;
  color: #888;
  text-decoration: line-through;
}
.prod-extra {
  font-size: 12px;
  color: #159647;
}
.prod-special {
  color: #159647;
  font-weight: 500;
}
.f-delivery {
  background: #e9faf1;
  color: #129a58;
  font-size: 12px;
  border-radius: 7px;
  padding: 2px 9px;
  display: inline-block;
}
.prod-rating {
  margin-top: 6px;
}
.rbox {
  background: #159647;
  color: #fff;
  padding: 2px 11px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 700;
}
.rcount {
  color: #999;
  font-size: 13px;
  margin-left: 3px;
}

/* ========== PRODUCT DETAIL PAGE ========== */
.main-product {
  border-radius:15px;
  box-shadow:0 5px 24px #F7CFEA22;
  margin:12px auto 0 auto;
  padding:18px 10px 35px 10px;
  background:#fff;
}
.main-img {
  width:100%;
  border-radius: 12px;
  overflow: hidden;
}
.main-img img {
  width:100%;
  max-width:320px;
  height:320px;
  object-fit:cover;
  background:#fae6f3;
  display:block;
  margin:0 auto;
}
.main-title {
  font-size:18.5px;
  color:#291234;
  font-weight:700;
  text-align:center;
  margin-top:18px;
}
.main-pricebar {
  display:flex;
  justify-content:center;
  align-items:center;
  gap:12px;
  margin:10px 0 5px 0;
}
.main-price {
  color:#159647;
  font-size:20px;
  font-weight:700;
}
.main-mrp {
  color:#bba1bb;
  text-decoration:line-through;
  font-size:14px;
}
.main-off {
  color:#ad0061;
  font-size:13px;
  font-weight:700;
}
.free-delivery {
  color:#20b355;
  font-size:14px;
  text-align:center;
  margin-top:5px;
}
.main-buybtn {
  background:#ad0061;
  color:#fff;
  border:none;
  border-radius:30px;
  padding:12px 24px;
  margin:10px auto;
  display:inline-block;
  font-weight:700;
  font-size:16px;
  cursor:pointer;
}
.main-ratingpill {
  text-align:center;
  margin:18px 0 12px 0;
}
.main-rating {
  background:#20b355;
  color:#fff;
  padding:5px 16px;
  border-radius:18px;
  font-weight:700;
}
.main-rating-count {
  color:#8a8a8a;
  font-size:13px;
  margin-left:7px;
}
.main-sectitle {
  font-weight:700;
  color:#a5005b;
  font-size:16px;
  margin:22px 0 8px 0;
}
.main-desc {
  font-size:15px;
  color:#232021;
  margin:13px 0 18px 0;
  line-height:1.5;
  padding:0 8px;
}

/* ========== SIMILAR PRODUCTS ========== */
.similar-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 10px 0 30px;
  padding: 0 10px;
}
.similar-card {
  background: white;
  border-radius: 12px;
  padding: 8px;
  text-decoration: none;
  color: #1a1a1a;
  border: 1px solid #f0e0ea;
}
.similar-img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  border-radius: 8px;
}
