/* Buttons */
.btn-nb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.4rem;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s, color 0.25s;
  text-align: center;
  line-height: 1.2;
}

.btn-nb:hover {
  transform: translateY(-2px);
}

.btn-nb:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

.btn-nb--primary {
  background: var(--gradient-brand);
  color: var(--white);
  box-shadow: var(--shadow);
  border-color: transparent;
}

.btn-nb--primary:hover {
  background: linear-gradient(145deg, #2f1f18 0%, var(--olive-deep) 55%, #4a3228 100%);
  box-shadow: var(--shadow-hover);
  color: var(--white);
}

.btn-nb--gold {
  background: var(--gradient-gold);
  color: var(--soil);
}

.btn-nb--gold:hover {
  background: linear-gradient(135deg, var(--gold-deep) 0%, #9a6b1f 100%);
  color: var(--white);
}

.btn-nb--outline {
  background: transparent;
  border-color: var(--olive);
  color: var(--olive);
}

.btn-nb--outline:hover {
  background: var(--olive);
  color: var(--white);
}

.btn-nb--light {
  background: var(--white);
  color: var(--olive-deep);
  border-color: var(--border);
}

.btn-nb--light:hover {
  background: var(--sand);
  color: var(--olive-deep);
}

.btn-nb--whatsapp {
  background: var(--whatsapp);
  color: var(--white);
}

.btn-nb--meesho {
  background: var(--meesho);
  color: var(--white);
}

.btn-nb--meesho:hover {
  background: var(--meesho-deep);
  color: var(--white);
}

.btn-nb--sm {
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
}

.btn-nb--block {
  width: 100%;
}

/* Announcement */
.announce {
  background: var(--gradient-brand);
  color: var(--on-dark);
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 0.55rem 1rem;
  min-height: var(--announce-h);
  display: flex;
  align-items: center;
  justify-content: center;
}

.announce a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1040;
  background: rgba(251, 247, 240, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(212, 160, 84, 0.08);
}

.navbar-nb {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
  padding-block: 0.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.brand__logo {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 50%;
}

.brand__text {
  display: none;
  flex-direction: column;
  line-height: 1.1;
}

.brand__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--olive-deep);
}

.brand__tag {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

@media (min-width: 576px) {
  .brand__text {
    display: flex;
  }
}

.nav-links {
  display: none;
  align-items: center;
  gap: 1.35rem;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--soil);
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent-spice);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.25s var(--ease);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

@media (min-width: 992px) {
  .nav-links {
    display: flex;
  }
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.icon-btn {
  position: relative;
  width: 42px;
  height: 42px;
  border: none;
  background: transparent;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--soil);
  cursor: pointer;
  transition: background 0.2s;
}

.icon-btn:hover {
  background: var(--sand);
  color: var(--olive);
}

.icon-btn svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-btn svg path[d*="20.8 4.6"] {
  fill: none;
}

.badge-count {
  position: absolute;
  top: 4px;
  right: 4px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--olive);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  display: grid;
  place-items: center;
}

.nav-shop-cta {
  display: none;
}

@media (min-width: 768px) {
  .nav-shop-cta {
    display: inline-flex;
    margin-left: 0.35rem;
  }
}

.menu-toggle {
  display: inline-flex;
}

@media (min-width: 992px) {
  .menu-toggle {
    display: none;
  }
}

.mobile-drawer {
  display: none;
  border-top: 1px solid var(--border);
  background: var(--card);
  padding: 1rem;
}

.mobile-drawer.is-open {
  display: block;
}

.mobile-drawer a {
  display: block;
  padding: 0.75rem 0.5rem;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
}

/* Product card */
.product-card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  border: 1px solid var(--border);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.product-card__media {
  position: relative;
  aspect-ratio: 1;
  background: var(--surface-warm);
  overflow: hidden;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.75rem;
  transition: transform 0.4s var(--ease);
}

.product-card:hover .product-card__media img {
  transform: scale(1.04);
}

.product-card__collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  height: 100%;
  padding: 0.5rem;
}

.product-card__collage img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--white);
  border-radius: 8px;
  padding: 0.25rem;
}

.product-card__badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: linear-gradient(135deg, var(--accent-spice), var(--gold-deep));
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  z-index: 2;
}

.product-card__wish {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  z-index: 2;
  background: rgba(255, 252, 247, 0.94);
  box-shadow: var(--shadow);
}

.product-card__body {
  padding: 1rem 1.1rem 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.5rem;
}

.product-card__title {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.35;
}

.product-card__title a:hover {
  color: var(--olive);
}

.product-card__meta {
  font-size: 0.8125rem;
  color: var(--muted);
}

.product-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-top: auto;
}

.price-now {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--olive-deep);
}

.price-mrp {
  font-size: 0.9rem;
  color: var(--muted);
  text-decoration: line-through;
}

.product-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.product-card__meesho {
  margin-top: 0.35rem;
}

/* Category tile */
.cat-tile {
  display: block;
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  height: 100%;
}

.cat-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.cat-tile__img {
  aspect-ratio: 1;
  background: var(--surface-warm);
  padding: 0.75rem;
}

.cat-tile__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cat-tile__label {
  padding: 0.9rem 1rem 1.1rem;
  text-align: center;
}

.cat-tile__label h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  margin: 0 0 0.25rem;
}

.cat-tile__label span {
  font-size: 0.8rem;
  color: var(--muted);
}

/* Benefit */
.benefit {
  text-align: center;
  padding: 1.25rem 1rem;
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  height: 100%;
  box-shadow: var(--shadow);
}

.benefit__icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 0.85rem;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--sand), var(--stone));
  color: var(--accent-spice);
  display: grid;
  place-items: center;
  border: 1px solid var(--border-soft);
}

.benefit__icon svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.benefit p {
  margin: 0;
  font-size: 0.9rem;
}

/* Testimonial */
.testimonial {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  height: 100%;
}

.testimonial__stars {
  color: var(--gold-deep);
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
}

.testimonial p {
  font-style: italic;
  color: var(--text);
}

.testimonial__author {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--olive-deep);
}

/* FAQ */
.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 0.65rem;
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  padding: 1rem 1.15rem;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  color: var(--olive);
  font-size: 1.25rem;
  font-weight: 400;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item .faq-body {
  padding: 0 1.15rem 1.1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Modals / overlays */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(42, 34, 28, 0.45);
  z-index: 1100;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 5rem 1rem 2rem;
  overflow-y: auto;
}

.overlay.is-open {
  display: flex;
}

.modal-panel {
  background: var(--card);
  border-radius: var(--radius);
  width: min(520px, 100%);
  padding: 1.5rem;
  box-shadow: var(--shadow-hover);
  position: relative;
}

.modal-panel--wide {
  width: min(720px, 100%);
}

.modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
}

.search-input {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  margin-bottom: 1rem;
}

.search-results {
  max-height: 360px;
  overflow-y: auto;
}

.search-result {
  display: flex;
  gap: 0.85rem;
  align-items: center;
  padding: 0.65rem;
  border-radius: var(--radius-xs);
}

.search-result:hover {
  background: var(--sand);
}

.search-result img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  background: var(--white);
  border-radius: 8px;
}

/* Toast */
.toast-wrap {
  position: fixed;
  bottom: calc(var(--mobile-nav-h) + 1rem);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: min(360px, calc(100% - 2rem));
  pointer-events: none;
}

@media (min-width: 992px) {
  .toast-wrap {
    bottom: 1.5rem;
    left: auto;
    right: 1.5rem;
    transform: none;
  }
}

.toast {
  background: var(--olive-deep);
  color: var(--white);
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-hover);
  animation: toastIn 0.35s var(--ease);
}

@keyframes toastIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* Floats */
.float-wa {
  position: fixed;
  right: 1rem;
  bottom: 1.25rem;
  z-index: 1050;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-hover);
  transition: transform 0.25s var(--ease);
}

.float-wa:hover {
  transform: scale(1.06);
  color: var(--white);
}

.float-wa svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.back-top {
  position: fixed;
  right: 1rem;
  bottom: 5.5rem;
  z-index: 1050;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--olive);
  color: var(--white);
  display: none;
  place-items: center;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.back-top.is-visible {
  display: grid;
}

@media (min-width: 992px) {
  .float-wa {
    bottom: 1.5rem;
    right: 1.5rem;
  }

  .back-top {
    bottom: 5.5rem;
    right: 1.7rem;
  }
}

/* Mobile bottom nav — hidden; hamburger menu only */
.mobile-bottom {
  display: none !important;
}

.mobile-bottom a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--muted);
  position: relative;
}

.mobile-bottom a.active,
.mobile-bottom a:hover {
  color: var(--olive);
}

.mobile-bottom svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mobile-bottom .badge-count {
  top: 4px;
  right: calc(50% - 18px);
}

@media (min-width: 992px) {
  .mobile-bottom {
    display: none;
  }
}

/* Footer */
.site-footer {
  background: var(--gradient-brand);
  color: var(--on-dark);
  padding: 3rem 0 1.5rem;
  margin-top: 0;
}

.site-footer a {
  color: var(--on-dark);
}

.site-footer a:hover {
  color: var(--gold);
}

.footer-brand img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 0.75rem;
}

.footer-brand p {
  color: var(--on-dark-muted);
  font-size: 0.9rem;
}

.footer-title {
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-links li {
  margin-bottom: 0.45rem;
}

.footer-links a {
  font-size: 0.92rem;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.newsletter-form input {
  flex: 1;
  min-width: 160px;
  padding: 0.7rem 0.9rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.newsletter-form input::placeholder {
  color: var(--on-dark-muted);
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(245, 237, 224, 0.15);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--on-dark-muted);
}

@media (max-width: 991px) {
  .site-footer .row > [class*="col"] {
    text-align: center;
  }

  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-brand img {
    margin-inline: auto;
  }

  .social-row {
    justify-content: center;
  }

  .footer-links {
    padding-left: 0;
  }

  .newsletter-form {
    justify-content: center;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }
}

.social-row {
  display: flex;
  gap: 0.65rem;
  margin-top: 1rem;
}

.social-row a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: grid;
  place-items: center;
}

.social-row svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
