/* =========================
   THEME VARIABLES
========================= */
:root {
  --theme-color: #b58f41;
  --theme-color-dark: #9b7933;
  --theme-color-light: #f7f1e3;
  --common-btn-radius: 999px;
  --soft-transition: all 0.22s ease !important;
}

/* =========================
   SECTION HEADINGS
========================= */
.section-heading-container,
#categories .section-heading-container.sh-section-heading,
.sh-section-heading,
.section-wrapper-1 .section-heading-container {
  width: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-wrap: wrap !important; /* prevents overlap */
  gap: 10px !important;
  text-align: center !important;
  margin: 20px 0 16px !important;
  position: relative !important;
}

.section-heading-container::before,
.section-heading-container::after,
#categories .section-heading-container.sh-section-heading::before,
#categories .section-heading-container.sh-section-heading::after,
.sh-section-heading::before,
.sh-section-heading::after {
  content: "" !important;
  flex: 1 !important;
  min-width: 30px !important;
  height: 1px !important;
  background: linear-gradient(
    90deg,
    transparent,
    var(--theme-color),
    transparent
  ) !important;
  opacity: 0.45 !important;
}

.section-heading-container h2,
.sh-section-heading h2,
h2.section-heading,
.section-heading {
  margin: 0 !important;
  padding: 6px 14px !important;   /* reduced width + height */
  font-size: 22px !important;     /* smaller heading */
  line-height: 1.15 !important;
  font-weight: 700 !important;
  color: var(--theme-color) !important;
  letter-spacing: 0.1px !important;
  text-transform: capitalize !important;
  font-family: "Poppins", sans-serif !important;
  position: relative !important;
  display: inline-block !important;
  background: #fff !important;
  border-radius: 999px !important;
}

.section-heading-container h2::after,
.sh-section-heading h2::after,
h2.section-heading::after,
.section-heading::after {
  content: "" !important;
  width: 28px !important;
  height: 3px !important;
  border-radius: 20px !important;
  background: var(--theme-color) !important;
  display: block !important;
  margin: 6px auto 0 !important;
}

/* =========================
   VIEW ALL BUTTON
========================= */
.section-heading-viewall,
#categories .section-heading-container.sh-section-heading a,
.sh-section-heading a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 7px 14px !important;
  border: 1.2px solid var(--theme-color) !important;
  border-radius: var(--common-btn-radius) !important;
  background: #fff !important;
  color: var(--theme-color) !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  box-shadow: 0 4px 10px rgba(181, 143, 65, 0.1) !important;
  transition: var(--soft-transition);
  white-space: nowrap !important;
  flex-shrink: 0 !important;
  margin-top: 2px !important;
}

.section-heading-viewall:hover,
#categories .section-heading-container.sh-section-heading a:hover,
.sh-section-heading a:hover {
  background: var(--theme-color) !important;
  color: #fff !important;
  transform: translateY(-1px) !important;
}

/* =========================
   CATEGORY SECTION
========================= */
.section-wrapper-1 {
  background: linear-gradient(180deg, #fffdf8 0%, #faf6eb 100%) !important;
  border-radius: 20px !important;
  padding: 8px 10px 20px !important;
}

.cat-card-img-root {
  border: 2px solid rgba(181, 143, 65, 0.16) !important;
  border-radius: 18px !important;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.07) !important;
  overflow: hidden !important;
  transition: var(--soft-transition);
  background: #fff !important;
}

.cat-card-img-root:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 20px rgba(181, 143, 65, 0.12) !important;
  border-color: rgba(181, 143, 65, 0.28) !important;
}

/* =========================
   PRODUCT CARD
========================= */
.sh-product-card,
.product-card,
.product-root,
.sh-list-product-card {
  background: #fff !important;
  border: 1px solid #efe7d5 !important;
  border-radius: 18px !important;
  overflow: hidden !important;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05) !important;
  transition: var(--soft-transition);
  position: relative !important;
}

.sh-product-card:hover,
.product-card:hover,
.product-root:hover,
.sh-list-product-card:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 12px 24px rgba(181, 143, 65, 0.12) !important;
  border-color: rgba(181, 143, 65, 0.2) !important;
}

.sh-product-card img,
.product-card img,
.product-root img,
.sh-list-product-card img {
  border-radius: 16px 16px 0 0 !important;
  transition: transform 0.22s ease !important;
}

.sh-product-card:hover img,
.product-card:hover img,
.product-root:hover img,
.sh-list-product-card:hover img {
  transform: scale(1.02) !important;
}

/* =========================
   BUTTONS
========================= */
button,
a.button,
.btn,
.pr-outlined-button,
.sh-add-to-cart-btn,
.sh-product-card button,
.product-footer-root-dropdown .sh-product-plus-minus-button,
.section-heading-viewall,
.cta-btn,
.reel-cta-btn,
.arrow-btn,
.nav-arrow {
  border-radius: var(--common-btn-radius) !important;
  transition: var(--soft-transition);
}

.pr-outlined-button,
.sh-add-to-cart-btn,
.sh-product-card button,
.cta-btn,
.reel-cta-btn {
  background: var(--theme-color) !important;
  color: #fff !important;
  border: none !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  box-shadow: 0 8px 16px rgba(181, 143, 65, 0.14) !important;
}

.pr-outlined-button:hover,
.sh-add-to-cart-btn:hover,
.sh-product-card button:hover,
.cta-btn:hover,
.reel-cta-btn:hover {
  background: var(--theme-color-dark) !important;
  transform: translateY(-1px) !important;
}

/* =========================
   CARD CONTENT SPACING
========================= */
.sh-product-card-content,
.product-card-content,
.sh-product-card-details {
  padding: 12px 12px 14px !important;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
  .section-heading-container,
  #categories .section-heading-container.sh-section-heading,
  .sh-section-heading,
  .section-wrapper-1 .section-heading-container {
    gap: 8px !important;
    margin: 16px 0 14px !important;
  }

  .section-heading-container::before,
  .section-heading-container::after,
  #categories .section-heading-container.sh-section-heading::before,
  #categories .section-heading-container.sh-section-heading::after,
  .sh-section-heading::before,
  .sh-section-heading::after {
    min-width: 18px !important;
  }

  .section-heading-container h2,
  .sh-section-heading h2,
  h2.section-heading,
  .section-heading {
    font-size: 16px !important;
    line-height: 1.2 !important;
    padding: 5px 10px !important;
  }

  .section-heading-container h2::after,
  .sh-section-heading h2::after,
  h2.section-heading::after,
  .section-heading::after {
    width: 22px !important;
    height: 3px !important;
    margin-top: 5px !important;
  }

  .section-heading-viewall,
  #categories .section-heading-container.sh-section-heading a,
  .sh-section-heading a {
    padding: 6px 12px !important;
    font-size: 11px !important;
  }

  .section-wrapper-1 {
    border-radius: 16px !important;
    padding: 6px 6px 16px !important;
  }

  .sh-product-card,
  .product-card,
  .product-root,
  .sh-list-product-card {
    border-radius: 14px !important;
  }

  .sh-product-card-name,
  .sh-product-name,
  .product-name,
  .sh-product-card-title {
    font-size: 13px !important;
  }

  .sh-product-card-price,
  .sh-product-price,
  .product-price {
    font-size: 15px !important;
  }
}

/* extra existing styles */
.app-bar .logo {
  border-radius: 50px;
}
.sh-ge-collect-69b299ade658973ce02f1f55 img {
  border-radius: 16px !important;
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.08),
    0 2px 4px rgba(0, 0, 0, 0.05) !important;
}
.text-gray-500 {
  color: #fff;
}
.three-col-footer__footer {
  background-color: #000;
  color: #fff;
}
.sh-ge-collect-69b299ade658973ce02f1f55 .overflow-hidden {
  overflow: visible !important;
}