/**
 * Solaivanam — lightweight premium overlay
 *
 * Visual layer only. Does not change layouts, markup, WooCommerce
 * behaviour, or existing stylesheets. Loaded after Divi CSS.
 */

:root {
  --sv-cream: #faf6ee;
  --sv-cream-soft: #f7f2e7;
  --sv-green: #123b2c;
  --sv-green-deep: #0f3525;
  --sv-gold: #c49a45;
  --sv-gold-mute: rgba(196, 154, 69, 0.35);
  --sv-ink: #1e2a22;
  --sv-ink-soft: #6e746c;
  --sv-line: #ede6d6;
  --sv-card: #fffdf8;
  --sv-radius: 8px;
}

/* ---------------------------------------------------------
   Shipping bar + header
--------------------------------------------------------- */

.sv-shipping-bar {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 34px !important;
  min-height: 34px !important;
  padding: 0 16px !important;
  overflow: hidden !important;
  color: var(--sv-gold) !important;
  background: var(--sv-green-deep) !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.14em !important;
  line-height: 1 !important;
  text-align: center !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
}

.sv-main-header {
  background: var(--sv-cream) !important;
  border-bottom: 1px solid var(--sv-line) !important;
  box-shadow: none !important;
}

.sv-desktop-nav a {
  font-weight: 500 !important;
  letter-spacing: 0.04em !important;
  font-size: 13px !important;
}

.sv-icon-button,
.sv-menu-button {
  background: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
}

.sv-cart-count {
  font-size: 10px !important;
  min-width: 16px !important;
  height: 16px !important;
  line-height: 16px !important;
  font-weight: 700 !important;
}

.sv-cart-count:empty {
  display: none !important;
}

.sv-cart-toast {
  position: fixed;
  right: 20px;
  bottom: 22px;
  z-index: 100050;
  pointer-events: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.sv-cart-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.sv-cart-toast__card {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 220px;
  max-width: min(360px, calc(100vw - 40px));
  padding: 12px 16px;
  border: 1px solid var(--sv-line);
  border-radius: 10px;
  background: var(--sv-card);
  box-shadow: 0 10px 28px rgba(18, 59, 44, 0.14);
}

.sv-cart-toast__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--sv-green);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
}

.sv-cart-toast__text {
  margin: 0;
  color: var(--sv-green);
  font-size: 14px;
  line-height: 1.35;
}

.sv-cart-toast__text strong {
  font-weight: 600;
}

.sv-category-menu,
.sv-search-panel,
.sv-mobile-menu {
  box-shadow: none !important;
  border: 1px solid var(--sv-line) !important;
  background: var(--sv-card) !important;
}

/* Header mega menu — homepage Shop by Category later sets
   .sv-category-grid to 6 columns, which leaves empty space
   in this 3-child dropdown. Keep both layouts independent. */
.sv-category-menu,
.sv-search-panel {
  top: 100% !important;
  margin-top: -1px !important;
}

.sv-category-menu {
  box-sizing: border-box !important;
  width: 100% !important;
  left: 0 !important;
  right: 0 !important;
  padding: 32px 0 !important;
}

.sv-category-menu .sv-category-grid {
  display: grid !important;
  grid-template-columns: minmax(220px, 1.15fr) minmax(0, 1fr) minmax(0, 1fr) !important;
  align-items: start !important;
  gap: 40px 48px !important;
  width: calc(100% - 80px) !important;
  max-width: 1500px !important;
  margin: 0 auto !important;
  height: auto !important;
  min-height: 0 !important;
  overflow: visible !important;
}

.sv-category-menu .sv-category-intro,
.sv-category-menu .sv-category-column {
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
}

.sv-category-menu .sv-category-column a {
  display: block !important;
  width: auto !important;
  max-width: none !important;
}

/* ---------------------------------------------------------
   Hero
--------------------------------------------------------- */

.sv-hero {
  background: var(--sv-cream-soft) !important;
}

.sv-title,
.sv-hero h1 {
  font-size: clamp(40px, 5vw, 56px) !important;
  line-height: 1.12 !important;
  font-weight: 400 !important;
  letter-spacing: -0.02em !important;
  padding-bottom: 6px !important;
}

.sv-eyebrow,
.sv-category-eyebrow,
.sv-why-eyebrow,
.sv-bestseller-eyebrow {
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 0.3em !important;
  color: var(--sv-gold) !important;
}

/* Hero eyebrow — same gold-rule pattern as Why Solaivanam */
.sv-hero .sv-eyebrow {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  gap: 12px !important;
  margin-bottom: 18px !important;
  max-width: 100% !important;
  min-width: 0 !important;
  text-transform: uppercase !important;
}

.sv-hero .sv-eyebrow::before,
.sv-hero .sv-eyebrow::after {
  content: "" !important;
  display: block !important;
  width: 25px !important;
  height: 1px !important;
  background: rgb(196, 154, 69) !important;
  flex-shrink: 0 !important;
}

.sv-hero .sv-eyebrow-mark {
  display: none !important;
}

.sv-hero .sv-eyebrow i {
  font-style: normal !important;
  margin: 0 6px !important;
  color: var(--sv-gold) !important;
}

.sv-description {
  color: var(--sv-ink-soft) !important;
  font-size: 15px !important;
  line-height: 1.7 !important;
  max-width: 34em;
}

.sv-glow-one,
.sv-glow-two {
  opacity: 0.05 !important;
}

.sv-gold-line,
.sv-heading-line {
  height: 1px !important;
  width: 48px !important;
  background: var(--sv-gold-mute) !important;
  opacity: 1 !important;
}

.sv-trust,
.sv-trust-item,
.sv-trust-text {
  color: var(--sv-ink-soft) !important;
  font-size: 12px !important;
  font-weight: 500 !important;
}

.sv-trust-icon,
.sv-category-icon,
.sv-featured-icon {
  opacity: 0.85;
}

/* Hero trust — compact 3-node road, same pattern as Why */
.sv-hero .sv-trust {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  align-items: start !important;
  gap: 0 8px !important;
  flex-wrap: nowrap !important;
  position: relative !important;
  width: min(100%, 520px) !important;
  max-width: 520px !important;
}

.sv-hero .sv-trust::before {
  content: "" !important;
  position: absolute !important;
  top: 18px !important;
  left: 16.5% !important;
  right: 16.5% !important;
  height: 1px !important;
  background: rgba(196, 154, 69, 0.35) !important;
  z-index: 0 !important;
  pointer-events: none !important;
}

.sv-hero .sv-trust-item {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  gap: 8px !important;
  min-width: 0 !important;
  flex: none !important;
  position: relative !important;
}

.sv-hero .sv-trust-icon {
  width: 36px !important;
  height: 36px !important;
  min-width: 36px !important;
  min-height: 36px !important;
  opacity: 1 !important;
  border-radius: 50% !important;
  border: 0.8px solid rgba(196, 154, 69, 0.75) !important;
  background: var(--sv-cream-soft) !important;
  color: rgb(196, 154, 69) !important;
  position: relative !important;
  z-index: 1 !important;
  box-sizing: border-box !important;
}

.sv-hero .sv-trust-icon svg {
  width: 16px !important;
  height: 16px !important;
  stroke: currentColor !important;
  fill: none !important;
}

.sv-hero .sv-trust-item strong {
  white-space: normal !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  line-height: 1.3 !important;
  color: var(--sv-ink-soft) !important;
}

.sv-hero .sv-trust-item:hover .sv-trust-icon {
  color: rgb(23, 63, 42) !important;
  background: rgb(196, 154, 69) !important;
  transform: translateY(-3px) !important;
}

/* ---------------------------------------------------------
   Buttons — filled primary, ghost secondary / Buy Now
--------------------------------------------------------- */

.sv-btn,
.sv-btn-primary,
.sv-btn-secondary {
  height: 44px !important;
  min-height: 44px !important;
  padding: 0 22px !important;
  border-radius: 6px !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.12em !important;
  box-shadow: none !important;
  transform: none !important;
}

.sv-btn-primary,
.et_pb_button.sv-btn-primary {
  background: var(--sv-green) !important;
  border: 1px solid var(--sv-green) !important;
  color: #fff !important;
}

.sv-btn-secondary,
.et_pb_button.sv-btn-secondary {
  background: transparent !important;
  border: 1px solid var(--sv-gold-mute) !important;
  color: var(--sv-green) !important;
}

.sv-add-cart,
.sv-cart-button,
a.button.add_to_cart_button,
a.custom-add-cart-btn,
.ajax_add_to_cart,
.single_add_to_cart_button,
button.single_add_to_cart_button,
html body.woocommerce ul.products li.product a.button.add_to_cart_button,
html body.woocommerce ul.products li.product a.custom-add-cart-btn {
  background: var(--sv-green) !important;
  border: 1px solid var(--sv-green) !important;
  color: #fff !important;
  box-shadow: none !important;
}

.sv-buy-now,
.sv-buy-button,
.sv-buy-now-button,
.sc-buy-now-button,
a.sv-buy-now,
a.buy-now-btn,
html body a.buy-now-btn,
html body.woocommerce ul.products li.product a.buy-now-btn {
  background: transparent !important;
  border: 1px solid var(--sv-green) !important;
  color: var(--sv-green) !important;
  box-shadow: none !important;
}

.sv-add-cart:hover,
.sv-cart-button:hover,
.sv-btn-primary:hover,
.single_add_to_cart_button:hover,
a.button.add_to_cart_button:hover {
  background: var(--sv-green-deep) !important;
  border-color: var(--sv-green-deep) !important;
  color: #fff !important;
}

.sv-buy-now:hover,
.sv-buy-button:hover,
.sv-buy-now-button:hover,
.sc-buy-now-button:hover,
.sv-btn-secondary:hover {
  background: var(--sv-cream) !important;
  color: var(--sv-green) !important;
}

.sv-product-card:hover,
.sv-category-card:hover,
.sv-why-card:hover,
li.product:hover {
  transform: none !important;
  box-shadow: none !important;
}

.sc-buy-now-button .sc-icon,
.single_add_to_cart_button::before,
ul.products li.product a.added_to_cart,
.woocommerce a.added_to_cart,
.woocommerce a.added_to_cart.wc-forward,
a.added_to_cart.wc-forward,
html body.woocommerce ul.products li.product a.added_to_cart,
html body.woocommerce-shop a.added_to_cart,
html body.tax-product_cat a.added_to_cart,
html body .et_pb_shop a.added_to_cart,
html body .custom-product-buttons a.added_to_cart,
html body.tax-product_cat .custom-product-buttons a.added_to_cart,
html body.woocommerce-shop .custom-product-buttons a.added_to_cart {
  display: none !important;
  visibility: hidden !important;
  width: 0 !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  font-size: 0 !important;
}

/* ---------------------------------------------------------
   Category + why + bestsellers
--------------------------------------------------------- */

.sv-category-section,
.sv-bestseller-section,
.sv-trust-section {
  background: var(--sv-cream-soft) !important;
}

.sv-category-heading,
.sv-why-heading,
.sv-bestseller-header h2,
.sv-bestseller-title-row {
  font-weight: 400 !important;
  letter-spacing: -0.02em !important;
}

.sv-category-card,
.sv-category-featured,
.sv-why-card {
  box-shadow: none !important;
}

/* Shop by Category — cleaner cards and consistently fitted images */
.sv-category-section {
  padding: 64px 24px 70px !important;
}

.sv-category-section .sv-category-heading {
  margin-bottom: 42px !important;
}

.sv-category-section .sv-category-card,
.sv-category-section .sv-category-card.sv-category-featured {
  min-height: 350px !important;
  margin: 0 !important;
  padding: 6px 12px 28px !important;
  border-radius: 0 !important;
  background: transparent !important;
}

.sv-category-section .sv-category-icon {
  display: none !important;
}

.sv-category-section .sv-category-image,
.sv-category-section .sv-category-featured .sv-category-image {
  flex: 0 0 auto !important;
  width: min(170px, calc(100% - 8px)) !important;
  height: auto !important;
  min-width: 0 !important;
  min-height: 0 !important;
  max-width: 170px !important;
  max-height: none !important;
  aspect-ratio: 1 / 1 !important;
  margin: 0 auto 20px !important;
  border: 1px solid rgba(196, 154, 69, 0.45) !important;
  border-radius: 50% !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
}

.sv-category-section .sv-category-image img,
.sv-category-section .sv-category-featured .sv-category-image img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  min-width: 100% !important;
  min-height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  object-position: center !important;
  filter: none !important;
}

.sv-category-section .sv-category-card:nth-child(4) .sv-category-image img {
  object-position: center 42% !important;
}

.sv-category-section .sv-category-card h3 {
  min-height: 48px !important;
  margin-bottom: 7px !important;
}

.sv-category-section .sv-category-card p {
  min-height: 58px !important;
  margin-bottom: 16px !important;
}

.sv-category-link {
  letter-spacing: 0.12em !important;
  font-weight: 600 !important;
}

/* Bestsellers — compact editorial section header */
.sv-bestseller-section {
  padding: 44px 0 38px !important;
  border-top: 1px solid rgba(18, 59, 44, 0.14) !important;
  border-bottom: 1px solid var(--sv-line) !important;
}

.sv-bestseller-section .sv-bestseller-header {
  width: min(1180px, 100%) !important;
  max-width: 1180px !important;
  margin: 0 auto !important;
  padding: 0 24px !important;
  box-sizing: border-box !important;
}

.sv-bestseller-section .sv-bestseller-eyebrow {
  justify-content: flex-start !important;
  margin: 0 0 13px !important;
  gap: 10px !important;
  font-size: 9px !important;
  letter-spacing: 0.28em !important;
}

.sv-bestseller-section .sv-bestseller-eyebrow span {
  width: 22px !important;
  height: 1px !important;
  background: var(--sv-gold) !important;
}

.sv-bestseller-section .sv-bestseller-title-row {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 24px !important;
}

.sv-bestseller-section .sv-bestseller-title-row h2 {
  margin: 0 !important;
  padding: 0 !important;
  font-size: clamp(40px, 4.2vw, 54px) !important;
  line-height: 1.04 !important;
}

.sv-bestseller-section .sv-bestseller-header > p {
  max-width: 570px !important;
  margin: 13px 0 0 !important;
  font-size: 13px !important;
  line-height: 1.65 !important;
}

.sv-bestseller-section .sv-view-all {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  min-height: 40px !important;
  padding: 0 16px !important;
  border: 1px solid var(--sv-gold-mute) !important;
  border-radius: 999px !important;
  background: transparent !important;
  color: var(--sv-green) !important;
  font-size: 9px !important;
  font-weight: 700 !important;
  letter-spacing: 0.14em !important;
  white-space: nowrap !important;
  transition: border-color 0.25s ease, background 0.25s ease !important;
}

.sv-bestseller-section .sv-view-all:hover {
  border-color: var(--sv-gold) !important;
  background: var(--sv-cream) !important;
}

.sv-bestseller-section .sv-view-all b {
  font-size: 15px !important;
}

@media (max-width: 640px) {
  .sv-bestseller-section {
    padding: 34px 0 30px !important;
  }

  .sv-bestseller-section .sv-bestseller-header {
    padding: 0 18px !important;
  }

  .sv-bestseller-section .sv-bestseller-title-row {
    align-items: flex-end !important;
    gap: 12px !important;
  }

  .sv-bestseller-section .sv-bestseller-title-row h2 {
    font-size: 34px !important;
  }

  .sv-bestseller-section .sv-bestseller-header > p {
    max-width: 32em !important;
    font-size: 12px !important;
  }

  .sv-bestseller-section .sv-view-all {
    min-height: 36px !important;
    padding: 0 12px !important;
    font-size: 8px !important;
    letter-spacing: 0.08em !important;
  }
}

.sv-why-number {
  font-weight: 400 !important;
}

.sv-product-card,
.sv-shop-products ul.products li.product,
ul.products li.product {
  background: var(--sv-card) !important;
  border: 1px solid var(--sv-line) !important;
  border-radius: var(--sv-radius) !important;
  box-shadow: none !important;
}

.sv-product-title,
.sv-product-title a,
ul.products li.product .woocommerce-loop-product__title {
  font-weight: 400 !important;
  color: var(--sv-green) !important;
}

.sv-product-price,
ul.products li.product .price {
  color: var(--sv-green) !important;
  font-weight: 500 !important;
}

.sv-product-price ins,
ul.products li.product .price ins {
  color: var(--sv-green) !important;
  text-decoration: none !important;
}

.sv-product-actions a,
.sv-product-actions .button {
  min-height: 40px !important;
  border-radius: 6px !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
}

/* ---------------------------------------------------------
   Sale badges — quieter, still visible
--------------------------------------------------------- */

.onsale,
.sv-sale-badge,
span.onsale,
html body span.onsale,
html body.woocommerce ul.products li.product span.onsale,
html body.single-product span.onsale {
  padding: 3px 9px !important;
  font-size: 9px !important;
  font-weight: 600 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  background: var(--sv-cream) !important;
  color: var(--sv-green) !important;
  border: 1px solid var(--sv-gold) !important;
  border-radius: 999px !important;
  box-shadow: none !important;
}

/* ---------------------------------------------------------
   Shop archive (child template + Divi body)
--------------------------------------------------------- */

.sv-shop-page,
.sv-shop-hero {
  background: var(--sv-cream) !important;
}

.sv-shop-hero h1 {
  font-size: clamp(36px, 5vw, 52px) !important;
  font-weight: 400 !important;
}

.sv-filter-box,
.sv-shop-help {
  background: var(--sv-card) !important;
  border: 1px solid var(--sv-line) !important;
  border-radius: var(--sv-radius) !important;
  box-shadow: none !important;
}

.sv-help-button {
  border-radius: 6px !important;
  box-shadow: none !important;
}

/* Divi Theme Builder shop archive */
body.woocommerce-shop .et_pb_section_0_tb_body {
  padding: 42px 0 72px !important;
  background: var(--sv-cream-soft) !important;
}

body.woocommerce-shop .et_pb_section_0_tb_body::before {
  content: "Shop";
  display: block;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 30px;
  color: var(--sv-green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.05;
}

body.woocommerce-shop .et_pb_row_0_tb_body {
  display: grid !important;
  grid-template-columns: 230px minmax(0, 1fr) !important;
  gap: 28px !important;
  width: min(1180px, calc(100% - 40px)) !important;
  max-width: 1180px !important;
  margin: 0 auto !important;
  padding: 0 !important;
}

body.woocommerce-shop .et_pb_row_0_tb_body > .et_pb_column {
  float: none !important;
  width: auto !important;
  margin: 0 !important;
  min-width: 0 !important;
}

body.woocommerce-shop .et_pb_column_0_tb_body {
  align-self: start !important;
  position: sticky !important;
  top: 110px !important;
}

body.woocommerce-shop .sv-sidebar-widget,
body.woocommerce-shop .sv-need-help-box {
  margin: 0 0 16px !important;
  padding: 20px 18px !important;
  border: 1px solid var(--sv-line) !important;
  border-radius: 8px !important;
  background: var(--sv-card) !important;
  box-shadow: none !important;
  box-sizing: border-box !important;
}

body.woocommerce-shop .sv-sidebar-title,
body.woocommerce-shop .sv-need-help-box h4 {
  margin: 0 0 13px !important;
  color: var(--sv-green) !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: 17px !important;
  font-weight: 500 !important;
}

body.woocommerce-shop .sv-cat-list {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

body.woocommerce-shop .sv-cat-item:has(a[href*="/product-category/uncategorized"]),
body.woocommerce-shop .sv-category-list li:has(a[href*="/product-category/uncategorized"]),
body.woocommerce-shop .product-categories li:has(> a[href*="/product-category/uncategorized"]) {
  display: none !important;
}

body.woocommerce-shop .sv-cat-item,
body.woocommerce-shop .sv-cat-item::before,
body.woocommerce-shop .sv-cat-item::after {
  list-style: none !important;
}

body.woocommerce-shop .sv-cat-item::marker {
  content: "" !important;
}

body.woocommerce-shop .sv-cat-item a {
  min-height: 38px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  margin-bottom: 6px !important;
  padding: 0 10px !important;
  color: var(--sv-ink-soft) !important;
  border: 0 !important;
  border-radius: 5px !important;
  background: rgba(196, 154, 69, 0.07) !important;
  font-size: 12px !important;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease !important;
}

body.woocommerce-shop .sv-cat-item a:hover,
body.woocommerce-shop .sv-cat-item a:focus-visible {
  color: var(--sv-green) !important;
  background: rgba(196, 154, 69, 0.17) !important;
  transform: translateX(2px) !important;
}

body.woocommerce-shop .sv-cat-item:last-child > a {
  margin-bottom: 0 !important;
}

body.woocommerce-shop .sv-cat-children,
body.tax-product_cat .sv-cat-children {
  margin: 0 0 6px !important;
  padding: 0 0 0 10px !important;
  list-style: none !important;
  border-left: 1px solid rgba(196, 154, 69, 0.28) !important;
}

body.woocommerce-shop .sv-cat-children .sv-cat-item a,
body.tax-product_cat .sv-cat-children .sv-cat-item a {
  min-height: 32px !important;
  margin-bottom: 4px !important;
  padding: 0 8px 0 10px !important;
  background: transparent !important;
  font-size: 12px !important;
}

body.woocommerce-shop .sv-cat-item.is-current > a,
body.woocommerce-shop .sv-cat-item.is-current-ancestor > a,
body.tax-product_cat .sv-cat-item.is-current > a,
body.tax-product_cat .sv-cat-item.is-current-ancestor > a {
  color: var(--sv-green) !important;
  background: rgba(196, 154, 69, 0.18) !important;
}

body.woocommerce-shop .sv-cat-count {
  color: var(--sv-gold) !important;
  font-size: 10px !important;
}

body.woocommerce-shop .sv-need-help-box {
  text-align: left !important;
}

body.woocommerce-shop .sv-need-help-box p {
  margin: 0 0 14px !important;
  color: var(--sv-ink-soft) !important;
  font-size: 12px !important;
}

body.woocommerce-shop .sv-need-help-box a {
  min-height: 36px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 14px !important;
  border: 1px solid var(--sv-green) !important;
  border-radius: 6px !important;
  color: var(--sv-green) !important;
  font-size: 9px !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
}

html body.woocommerce-shop .sv-need-help-box a:hover,
html body.woocommerce-shop .sv-need-help-box a:focus-visible {
  background: var(--sv-green) !important;
  border-color: var(--sv-green) !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  opacity: 1 !important;
}

body.woocommerce-shop .sv-price-inputs input {
  height: 38px !important;
  padding: 0 9px !important;
  border: 1px solid var(--sv-line) !important;
  background: var(--sv-cream) !important;
  box-shadow: none !important;
}

body.woocommerce-shop .sv-price-apply {
  min-height: 38px !important;
  border-radius: 6px !important;
  background: var(--sv-green) !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}

html body.woocommerce-shop .sv-price-apply:hover,
html body.woocommerce-shop .sv-price-apply:focus-visible {
  background: var(--sv-green-deep) !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  opacity: 1 !important;
}

body.woocommerce-shop .woocommerce-result-count {
  margin: 0 0 18px !important;
  color: var(--sv-ink-soft) !important;
  font-size: 12px !important;
}

body.woocommerce-shop .woocommerce-ordering {
  margin: 0 0 18px !important;
}

body.woocommerce-shop .woocommerce-ordering select {
  height: 40px !important;
  min-width: 180px !important;
  padding: 0 34px 0 12px !important;
  border: 1px solid var(--sv-line) !important;
  border-radius: 6px !important;
  background-color: var(--sv-card) !important;
  color: var(--sv-ink-soft) !important;
  box-shadow: none !important;
  font-size: 11px !important;
}

body.woocommerce-shop .et_pb_shop_0_tb_body ul.products {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 20px !important;
  clear: both !important;
  margin: 0 !important;
  padding: 0 !important;
}

body.woocommerce-shop .et_pb_shop_0_tb_body ul.products::before,
body.woocommerce-shop .et_pb_shop_0_tb_body ul.products::after {
  display: none !important;
  content: none !important;
}

body.woocommerce-shop .et_pb_shop_0_tb_body ul.products li.product {
  float: none !important;
  width: auto !important;
  max-width: none !important;
  min-width: 0 !important;
  height: 100% !important;
  min-height: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  margin: 0 !important;
  padding: 0 0 16px !important;
  overflow: hidden !important;
  border: 1px solid var(--sv-line) !important;
  border-radius: 10px !important;
  background: var(--sv-card) !important;
  box-shadow: none !important;
}

body.woocommerce-shop .et_pb_shop_0_tb_body ul.products li.product > a.woocommerce-loop-product__link {
  min-height: 0 !important;
  display: flex !important;
  flex: 1 1 auto !important;
  flex-direction: column !important;
}

body.woocommerce-shop .et_pb_shop_0_tb_body .et_shop_image {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 1 / 1 !important;
  margin: 0 !important;
  overflow: hidden !important;
  border-radius: 0 !important;
  background:
    radial-gradient(circle at 50% 42%, rgba(196, 154, 69, 0.13), transparent 38%),
    linear-gradient(135deg, var(--sv-cream), var(--sv-cream-soft)) !important;
}

body.woocommerce-shop .et_pb_shop_0_tb_body .et_shop_image > img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  min-width: 100% !important;
  min-height: 100% !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background:
    radial-gradient(circle at 50% 42%, rgba(196, 154, 69, 0.13), transparent 38%),
    linear-gradient(135deg, var(--sv-cream), var(--sv-cream-soft)) !important;
  color: transparent !important;
  font-size: 0 !important;
  object-fit: contain !important;
  object-position: center !important;
  padding: 6px !important;
  box-sizing: border-box !important;
  transition: transform 0.3s ease !important;
}

body.woocommerce-shop .et_pb_shop_0_tb_body ul.products li.product:hover .et_shop_image > img {
  transform: scale(1.015) !important;
}

body.woocommerce-shop .et_pb_shop_0_tb_body .et_overlay {
  display: none !important;
}

body.woocommerce-shop .et_pb_shop_0_tb_body .woocommerce-loop-product__title {
  min-height: 52px !important;
  margin: 0 !important;
  padding: 14px 15px 6px !important;
  color: var(--sv-green) !important;
  font-size: 17px !important;
  font-weight: 400 !important;
  line-height: 1.3 !important;
}

body.woocommerce-shop .et_pb_shop_0_tb_body ul.products li.product .star-rating {
  margin: 0 15px 6px !important;
  font-size: 11px !important;
}

body.woocommerce-shop .et_pb_shop_0_tb_body ul.products li.product .price {
  min-height: 22px !important;
  margin: auto 0 0 !important;
  padding: 0 15px !important;
  color: var(--sv-green) !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
  line-height: 1.5 !important;
}

body.woocommerce-shop .et_pb_shop_0_tb_body .custom-product-buttons {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 8px !important;
  margin: 14px 15px 0 !important;
}

body.woocommerce-shop .et_pb_shop_0_tb_body .custom-product-buttons .custom-add-cart-btn {
  grid-column: 1 !important;
  grid-row: 1 !important;
}

body.woocommerce-shop .et_pb_shop_0_tb_body .custom-product-buttons .buy-now-btn {
  grid-column: 2 !important;
  grid-row: 1 !important;
}

body.woocommerce-shop .et_pb_shop_0_tb_body .custom-product-buttons a:not(.added_to_cart) {
  width: auto !important;
  min-width: 0 !important;
  min-height: 40px !important;
  margin: 0 !important;
  padding: 8px 6px !important;
  border-radius: 6px !important;
  font-size: 9px !important;
  font-weight: 700 !important;
  letter-spacing: 0.07em !important;
  line-height: 1.2 !important;
}

body.woocommerce-shop .et_pb_shop_0_tb_body .custom-product-buttons .custom-add-cart-btn {
  background: var(--sv-green) !important;
  border: 1px solid var(--sv-green) !important;
  color: #fff !important;
}

body.woocommerce-shop .et_pb_shop_0_tb_body .custom-product-buttons .custom-add-cart-btn::before,
body.woocommerce-shop .et_pb_shop_0_tb_body .custom-product-buttons .custom-add-cart-btn::after,
body.woocommerce-shop .et_pb_shop_0_tb_body .custom-product-buttons .custom-add-cart-btn:hover::before,
body.woocommerce-shop .et_pb_shop_0_tb_body .custom-product-buttons .custom-add-cart-btn:hover::after {
  display: none !important;
  content: none !important;
  opacity: 0 !important;
}

body.woocommerce-shop .et_pb_shop_0_tb_body .custom-product-buttons .custom-add-cart-btn:hover {
  padding: 8px 6px !important;
  background: var(--sv-green-deep) !important;
  border-color: var(--sv-green-deep) !important;
  color: #fff !important;
}

body.woocommerce-shop .et_pb_shop_0_tb_body .custom-product-buttons .buy-now-btn {
  background: transparent !important;
  border: 1px solid var(--sv-green) !important;
  color: var(--sv-green) !important;
}

body.woocommerce-shop .et_pb_shop_0_tb_body .custom-product-buttons .buy-now-btn:hover,
body.woocommerce-shop .et_pb_shop_0_tb_body .custom-product-buttons .buy-now-btn:focus-visible {
  background: var(--sv-green) !important;
  border-color: var(--sv-green) !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  opacity: 1 !important;
}

html body.woocommerce-shop .et_pb_shop_0_tb_body ul.products li.product .custom-product-buttons a.custom-add-cart-btn,
html body.woocommerce-shop .et_pb_shop_0_tb_body ul.products li.product .custom-product-buttons a.buy-now-btn {
  min-height: 40px !important;
  padding: 8px 6px !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 0.07em !important;
  line-height: 1.2 !important;
  text-transform: uppercase !important;
}

@media (max-width: 1100px) and (min-width: 981px) {
  body.woocommerce-shop .et_pb_row_0_tb_body {
    grid-template-columns: 210px minmax(0, 1fr) !important;
    gap: 22px !important;
  }

  body.woocommerce-shop .et_pb_shop_0_tb_body ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 980px) {
  body.woocommerce-shop .et_pb_section_0_tb_body {
    padding: 34px 0 58px !important;
  }

  body.woocommerce-shop .et_pb_row_0_tb_body {
    grid-template-columns: 1fr !important;
  }

  body.woocommerce-shop .et_pb_column_0_tb_body {
    position: static !important;
  }

  body.woocommerce-shop .et_pb_column_0_tb_body .et_pb_text_inner {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px !important;
  }

  body.woocommerce-shop .et_pb_column_0_tb_body .et_pb_text_inner > p {
    display: none !important;
  }

  body.woocommerce-shop .et_pb_column_0_tb_body .sv-sidebar-widget:first-of-type {
    grid-column: 1 / -1 !important;
  }

  body.woocommerce-shop .sv-sidebar-widget,
  body.woocommerce-shop .sv-need-help-box {
    margin: 0 !important;
  }

  body.woocommerce-shop .sv-cat-list {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 0 18px !important;
  }

  body.woocommerce-shop .et_pb_shop_0_tb_body ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 600px) {
  body.woocommerce-shop .et_pb_section_0_tb_body::before,
  body.woocommerce-shop .et_pb_row_0_tb_body {
    width: calc(100% - 28px) !important;
  }

  body.woocommerce-shop .et_pb_section_0_tb_body::before {
    margin-bottom: 24px !important;
    font-size: 36px !important;
  }

  body.woocommerce-shop .et_pb_column_0_tb_body .et_pb_text_inner {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    width: 100% !important;
    min-width: 0 !important;
  }

  body.woocommerce-shop .et_pb_column_0_tb_body .sv-sidebar-widget:first-of-type {
    grid-column: auto !important;
  }

  body.woocommerce-shop .sv-sidebar-widget {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    padding: 15px !important;
    box-sizing: border-box !important;
  }

  body.woocommerce-shop .sv-sidebar-title {
    margin-bottom: 10px !important;
    font-size: 16px !important;
  }

  body.woocommerce-shop .sv-cat-list {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    display: flex !important;
    gap: 7px !important;
    overflow-x: auto !important;
    padding-bottom: 3px !important;
    scrollbar-width: none !important;
  }

  body.woocommerce-shop .sv-cat-list::-webkit-scrollbar {
    display: none !important;
  }

  body.woocommerce-shop .sv-cat-item {
    flex: 0 0 auto !important;
  }

  body.woocommerce-shop .sv-cat-item a,
  body.woocommerce-shop .sv-cat-item:last-child a {
    min-height: 32px !important;
    gap: 9px !important;
    padding: 0 10px !important;
    border: 1px solid var(--sv-line) !important;
    border-radius: 999px !important;
    background: var(--sv-cream) !important;
    font-size: 11px !important;
  }

  body.woocommerce-shop .sv-price-filter {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 74px !important;
    gap: 8px !important;
    min-width: 0 !important;
  }

  body.woocommerce-shop .sv-price-inputs {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) !important;
    margin: 0 !important;
    gap: 5px !important;
    min-width: 0 !important;
  }

  body.woocommerce-shop .sv-price-inputs input {
    width: 100% !important;
    min-width: 0 !important;
    height: 36px !important;
  }

  body.woocommerce-shop .sv-price-apply {
    min-height: 36px !important;
    padding: 0 8px !important;
  }

  body.woocommerce-shop .sv-need-help-box {
    display: none !important;
  }

  body.woocommerce-shop .et_pb_shop_0_tb_body ul.products {
    gap: 12px !important;
  }

  body.woocommerce-shop .et_pb_shop_0_tb_body .woocommerce-loop-product__title {
    min-height: 48px !important;
    padding: 11px 10px 5px !important;
    font-size: 14px !important;
  }

  body.woocommerce-shop .et_pb_shop_0_tb_body ul.products li.product .price {
    padding: 0 10px !important;
    font-size: 11px !important;
  }

  body.woocommerce-shop .et_pb_shop_0_tb_body .custom-product-buttons {
    grid-template-columns: 1fr !important;
    margin: 11px 10px 0 !important;
    gap: 6px !important;
  }
}

@media (max-width: 420px) {
  body.woocommerce-shop .et_pb_shop_0_tb_body ul.products {
    grid-template-columns: 1fr !important;
  }

  body.woocommerce-shop .et_pb_shop_0_tb_body .custom-product-buttons {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

/* ---------------------------------------------------------
   Product category archives
--------------------------------------------------------- */

body.tax-product_cat .et_pb_section_0_tb_body {
  padding: 34px 0 !important;
  background: var(--sv-green-deep) !important;
}

body.tax-product_cat .et_pb_row_0_tb_body {
  width: min(1180px, calc(100% - 40px)) !important;
  max-width: 1180px !important;
  margin: 0 auto !important;
  padding: 0 !important;
}

body.tax-product_cat .et_pb_text_0_tb_body {
  margin: 0 !important;
}

body.tax-product_cat .et_pb_text_0_tb_body .et_pb_text_inner {
  color: var(--sv-cream) !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: clamp(32px, 4vw, 44px) !important;
  font-weight: 400 !important;
  letter-spacing: -0.02em !important;
  line-height: 1.1 !important;
  text-align: center !important;
}

body.tax-product_cat .et_pb_text_0_tb_body .et_pb_text_inner > * {
  margin: 0 !important;
  padding: 0 !important;
  color: inherit !important;
  font: inherit !important;
  line-height: inherit !important;
}

body.tax-product_cat .et_pb_section_1_tb_body {
  padding: 56px 0 68px !important;
  background: var(--sv-cream-soft) !important;
}

body.tax-product_cat .et_pb_row_1_tb_body {
  display: grid !important;
  grid-template-columns: 230px minmax(0, 1fr) !important;
  gap: 28px !important;
  align-items: start !important;
  width: min(1180px, calc(100% - 40px)) !important;
  max-width: 1180px !important;
  margin: 0 auto !important;
  padding: 0 !important;
}

body.tax-product_cat .sv-category-nav-widget {
  margin: 0 !important;
  padding: 20px 18px !important;
  border: 1px solid var(--sv-line) !important;
  border-radius: 8px !important;
  background: var(--sv-card) !important;
  box-sizing: border-box !important;
}

body.tax-product_cat .sv-category-nav-widget .sv-sidebar-title {
  margin: 0 0 13px !important;
  color: var(--sv-green) !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: 17px !important;
  font-weight: 500 !important;
}

body.tax-product_cat .sv-cat-list {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

body.tax-product_cat .sv-cat-item a {
  min-height: 38px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  margin-bottom: 6px !important;
  padding: 0 10px !important;
  color: var(--sv-ink-soft) !important;
  border-radius: 5px !important;
  background: rgba(196, 154, 69, 0.07) !important;
  font-size: 12px !important;
  text-decoration: none !important;
}

body.tax-product_cat .sv-cat-item a:hover,
body.tax-product_cat .sv-cat-item a:focus-visible {
  color: var(--sv-green) !important;
  background: rgba(196, 154, 69, 0.17) !important;
}

body.tax-product_cat .sv-cat-count {
  color: var(--sv-gold) !important;
  font-size: 10px !important;
}

body.tax-product_cat .sv-subcat-strip {
  margin: 0 0 22px !important;
}

body.tax-product_cat .sv-subcat-strip__label {
  margin: 0 0 10px !important;
  color: var(--sv-green) !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
}

body.tax-product_cat .sv-subcat-strip__list {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

body.tax-product_cat .sv-subcat-strip__list a {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  min-height: 34px !important;
  padding: 0 12px !important;
  border: 1px solid rgba(196, 154, 69, 0.35) !important;
  border-radius: 999px !important;
  background: var(--sv-card) !important;
  color: var(--sv-green) !important;
  font-size: 13px !important;
  text-decoration: none !important;
}

body.tax-product_cat .sv-subcat-strip__list a span {
  color: var(--sv-gold) !important;
  font-size: 11px !important;
}

body.tax-product_cat .et_pb_shop_0_tb_body ul.products {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(240px, 280px)) !important;
  justify-content: center !important;
  gap: 22px !important;
  margin: 0 !important;
  padding: 0 !important;
}

body.tax-product_cat .et_pb_shop_0_tb_body ul.products::before,
body.tax-product_cat .et_pb_shop_0_tb_body ul.products::after {
  display: none !important;
  content: none !important;
}

html body.tax-product_cat #page-container .et_pb_shop_0_tb_body ul.products li.product {
  float: none !important;
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  margin: 0 !important;
  padding: 0 0 16px !important;
  overflow: hidden !important;
  border: 1px solid var(--sv-line) !important;
  border-radius: 10px !important;
  background: var(--sv-card) !important;
  box-shadow: none !important;
}

body.tax-product_cat .et_pb_shop_0_tb_body ul.products li.product > a.woocommerce-loop-product__link {
  min-height: 0 !important;
  display: flex !important;
  flex: 1 1 auto !important;
  flex-direction: column !important;
}

body.tax-product_cat .et_pb_shop_0_tb_body .et_shop_image {
  position: relative !important;
  width: 100% !important;
  aspect-ratio: 1 / 1 !important;
  margin: 0 !important;
  overflow: hidden !important;
  background:
    radial-gradient(circle at 50% 42%, rgba(196, 154, 69, 0.13), transparent 38%),
    linear-gradient(135deg, var(--sv-cream), var(--sv-cream-soft)) !important;
}

body.tax-product_cat .et_pb_shop_0_tb_body .et_shop_image > img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  padding: 5px !important;
  border: 0 !important;
  border-radius: 0 !important;
  color: transparent !important;
  font-size: 0 !important;
  object-fit: contain !important;
  box-sizing: border-box !important;
}

body.tax-product_cat .et_pb_shop_0_tb_body .et_overlay {
  display: none !important;
}

html body.tax-product_cat #page-container .et_pb_shop_0_tb_body ul.products li.product h2.woocommerce-loop-product__title {
  min-height: 58px !important;
  margin: 0 !important;
  padding: 14px 15px 6px !important;
  color: var(--sv-green) !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: 17px !important;
  font-weight: 400 !important;
  line-height: 1.3 !important;
}

body.tax-product_cat .et_pb_shop_0_tb_body ul.products li.product .price {
  min-height: 22px !important;
  margin: auto 0 0 !important;
  padding: 0 15px !important;
  color: var(--sv-green) !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
  line-height: 1.5 !important;
}

html body.tax-product_cat #page-container .et_pb_shop_0_tb_body ul.products li.product .price del,
html body.tax-product_cat #page-container .et_pb_shop_0_tb_body ul.products li.product .price del .amount {
  color: var(--sv-ink-soft) !important;
  -webkit-text-fill-color: var(--sv-ink-soft) !important;
  font-weight: 400 !important;
  opacity: 0.85 !important;
}

html body.tax-product_cat #page-container .et_pb_shop_0_tb_body ul.products li.product .price ins,
html body.tax-product_cat #page-container .et_pb_shop_0_tb_body ul.products li.product .price ins .amount {
  color: var(--sv-gold) !important;
  -webkit-text-fill-color: var(--sv-gold) !important;
  font-weight: 700 !important;
  opacity: 1 !important;
  text-decoration: none !important;
}

body.tax-product_cat .et_pb_shop_0_tb_body .custom-product-buttons {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 8px !important;
  margin: 14px 15px 0 !important;
}

html body.tax-product_cat #page-container .et_pb_shop_0_tb_body .custom-product-buttons .custom-add-cart-btn {
  grid-column: 1 !important;
  grid-row: 1 !important;
}

html body.tax-product_cat #page-container .et_pb_shop_0_tb_body .custom-product-buttons .buy-now-btn {
  grid-column: 2 !important;
  grid-row: 1 !important;
}

html body.tax-product_cat #page-container .et_pb_shop_0_tb_body .custom-product-buttons a:not(.added_to_cart) {
  min-width: 0 !important;
  min-height: 40px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 !important;
  padding: 8px 6px !important;
  border-radius: 6px !important;
  box-shadow: none !important;
  font-size: 9px !important;
  font-weight: 700 !important;
  letter-spacing: 0.07em !important;
  line-height: 1.2 !important;
  text-align: center !important;
  text-transform: uppercase !important;
}

html body.tax-product_cat #page-container .et_pb_shop_0_tb_body .custom-product-buttons .custom-add-cart-btn {
  border: 1px solid var(--sv-green) !important;
  background: var(--sv-green) !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}

html body.tax-product_cat #page-container .et_pb_shop_0_tb_body .custom-product-buttons .custom-add-cart-btn::before,
html body.tax-product_cat #page-container .et_pb_shop_0_tb_body .custom-product-buttons .custom-add-cart-btn::after,
html body.tax-product_cat #page-container .et_pb_shop_0_tb_body .custom-product-buttons .custom-add-cart-btn:hover::before,
html body.tax-product_cat #page-container .et_pb_shop_0_tb_body .custom-product-buttons .custom-add-cart-btn:hover::after {
  display: none !important;
  content: none !important;
  opacity: 0 !important;
}

html body.tax-product_cat #page-container .et_pb_shop_0_tb_body .custom-product-buttons .custom-add-cart-btn:hover {
  padding: 8px 6px !important;
  border-color: var(--sv-green-deep) !important;
  background: var(--sv-green-deep) !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}

html body.tax-product_cat #page-container .et_pb_shop_0_tb_body .custom-product-buttons .buy-now-btn {
  border: 1.5px solid var(--sv-green) !important;
  background: transparent !important;
  color: var(--sv-green) !important;
  -webkit-text-fill-color: var(--sv-green) !important;
}

html body.tax-product_cat #page-container .et_pb_shop_0_tb_body .custom-product-buttons .buy-now-btn:hover,
html body.tax-product_cat #page-container .et_pb_shop_0_tb_body .custom-product-buttons .buy-now-btn:focus-visible {
  border-color: var(--sv-green) !important;
  background: var(--sv-green) !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  opacity: 1 !important;
}

@media (max-width: 600px) {
  body.tax-product_cat .et_pb_section_0_tb_body {
    padding: 28px 0 !important;
  }

  body.tax-product_cat .et_pb_text_0_tb_body .et_pb_text_inner {
    font-size: 30px !important;
  }

  body.tax-product_cat .et_pb_section_1_tb_body {
    padding: 42px 0 52px !important;
  }

  body.tax-product_cat .et_pb_row_0_tb_body,
  body.tax-product_cat .et_pb_row_1_tb_body {
    width: calc(100% - 28px) !important;
  }

  body.tax-product_cat .et_pb_row_1_tb_body {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  body.tax-product_cat .et_pb_shop_0_tb_body ul.products {
    grid-template-columns: minmax(0, 300px) !important;
    gap: 16px !important;
  }

  html body.tax-product_cat #page-container .et_pb_shop_0_tb_body ul.products li.product {
    min-width: 100% !important;
    grid-column: 1 / -1 !important;
  }
}

/* ---------------------------------------------------------
   Single product
--------------------------------------------------------- */

body.single-product #main-content,
body.single-product #content-area,
.sc-product {
  background: var(--sv-cream) !important;
}

.sc-product-layout,
.sv-product-layout {
  box-shadow: none !important;
  border: 1px solid var(--sv-line) !important;
  border-radius: 12px !important;
}

.woocommerce div.product .product_title,
.sc-summary h1,
.sv-summary h1 {
  font-weight: 400 !important;
  color: var(--sv-green) !important;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: var(--sv-green) !important;
  font-weight: 500 !important;
}

.woocommerce-breadcrumb,
.woocommerce-breadcrumb a {
  color: var(--sv-ink-soft) !important;
  font-size: 12px !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
}

.quantity .qty,
.woocommerce .quantity .qty {
  border: 1px solid var(--sv-line) !important;
  background: var(--sv-cream) !important;
  box-shadow: none !important;
  border-radius: 6px !important;
}

.sc-trust-strip,
.sv-trust-strip {
  border-top-color: var(--sv-line) !important;
}

.sc-trust-icon {
  font-size: 14px !important;
  opacity: 0.7;
}

/* Divi Theme Builder single-product layout */
body.single-product .et_pb_section_0_tb_body {
  padding: 38px 0 54px !important;
}

body.single-product .et_pb_row_0_tb_body {
  display: none !important;
}

body.single-product .et_pb_row_1_tb_body,
body.single-product .et_pb_row_2_tb_body,
body.single-product .et_pb_row_3_tb_body {
  width: min(1180px, calc(100% - 40px)) !important;
  max-width: 1180px !important;
  margin-right: auto !important;
  margin-left: auto !important;
}

body.single-product .et_pb_row_1_tb_body {
  padding: 0 !important;
}

body.single-product .et_pb_wc_breadcrumb_0_tb_body {
  margin-bottom: 14px !important;
}

body.single-product .et_pb_wc_breadcrumb_0_tb_body .woocommerce-breadcrumb {
  padding: 0 !important;
  color: var(--sv-ink-soft) !important;
  font-size: 10px !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
}

body.single-product .et_pb_wc_title_0_tb_body {
  margin-bottom: 16px !important;
}

body.single-product .et_pb_wc_title_0_tb_body h1 {
  margin: 0 !important;
  color: var(--sv-green) !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: clamp(40px, 4.2vw, 52px) !important;
  font-weight: 400 !important;
  letter-spacing: -0.025em !important;
  line-height: 1.08 !important;
}

body.single-product .et_pb_wc_description_0_tb_body {
  max-width: 570px !important;
  margin-bottom: 20px !important;
  color: var(--sv-ink-soft) !important;
  font-size: 14px !important;
  line-height: 1.72 !important;
}

body.single-product .et_pb_wc_description_0_tb_body p {
  margin: 0 0 10px !important;
}

body.single-product .et_pb_wc_description_0_tb_body p:first-child {
  color: var(--sv-green) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0.015em !important;
}

body.single-product .et_pb_wc_description_0_tb_body p:last-child {
  margin-bottom: 0 !important;
}

body.single-product .et_pb_wc_price_0_tb_body {
  margin-bottom: 22px !important;
}

body.single-product .et_pb_wc_price_0_tb_body .price,
body.single-product .et_pb_wc_price_0_tb_body .price .amount {
  margin: 0 !important;
  color: var(--sv-green) !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: clamp(30px, 3vw, 38px) !important;
  font-weight: 500 !important;
  letter-spacing: -0.02em !important;
  line-height: 1.1 !important;
}

body.single-product .et_pb_wc_add_to_cart_0_tb_body {
  margin-bottom: 18px !important;
}

body.single-product .et_pb_wc_add_to_cart_0_tb_body table.variations {
  width: 100% !important;
  margin: 0 0 18px !important;
}

body.single-product .et_pb_wc_add_to_cart_0_tb_body table.variations tr {
  display: grid !important;
  grid-template-columns: 110px minmax(0, 1fr) !important;
  align-items: center !important;
  gap: 18px !important;
}

body.single-product .et_pb_wc_add_to_cart_0_tb_body table.variations th,
body.single-product .et_pb_wc_add_to_cart_0_tb_body table.variations td {
  display: block !important;
  padding: 0 !important;
}

body.single-product .et_pb_wc_add_to_cart_0_tb_body table.variations label {
  margin: 0 !important;
  color: var(--sv-green) !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
}

body.single-product .et_pb_wc_add_to_cart_0_tb_body table.variations select {
  width: 100% !important;
  max-width: none !important;
  height: 46px !important;
  padding: 0 42px 0 14px !important;
  border: 1px solid var(--sv-line) !important;
  border-radius: 7px !important;
  background-color: var(--sv-card) !important;
  color: var(--sv-green) !important;
  box-shadow: none !important;
  font-size: 12px !important;
}

body.single-product .et_pb_wc_add_to_cart_0_tb_body .woocommerce-variation-add-to-cart,
body.single-product .et_pb_wc_add_to_cart_0_tb_body form.cart:not(.variations_form) {
  display: flex !important;
  align-items: center !important;
  gap: 9px !important;
}

body.single-product .et_pb_wc_add_to_cart_0_tb_body .quantity {
  float: none !important;
  width: 58px !important;
  margin: 0 !important;
}

body.single-product .et_pb_wc_add_to_cart_0_tb_body .quantity .qty {
  width: 58px !important;
  height: 46px !important;
  padding: 0 !important;
  border: 1px solid var(--sv-green) !important;
  border-radius: 7px !important;
  background: var(--sv-card) !important;
  color: var(--sv-green) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  text-align: center !important;
}

html body.single-product .et_pb_wc_add_to_cart_0_tb_body .single_add_to_cart_button,
html body.single-product .et_pb_wc_add_to_cart_0_tb_body .sv-buy-now-button {
  min-width: 0 !important;
  height: 46px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 !important;
  padding: 0 22px !important;
  border-radius: 7px !important;
  box-shadow: none !important;
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 0.09em !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
}

html body.single-product .et_pb_wc_add_to_cart_0_tb_body .single_add_to_cart_button {
  border: 1px solid var(--sv-green) !important;
  background: var(--sv-green) !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}

html body.single-product .et_pb_wc_add_to_cart_0_tb_body .single_add_to_cart_button::before,
html body.single-product .et_pb_wc_add_to_cart_0_tb_body .single_add_to_cart_button::after {
  display: none !important;
  content: none !important;
  opacity: 0 !important;
}

html body.single-product .et_pb_wc_add_to_cart_0_tb_body .single_add_to_cart_button:hover {
  padding: 0 22px !important;
  border-color: var(--sv-green-deep) !important;
  background: var(--sv-green-deep) !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}

html body.single-product .et_pb_wc_add_to_cart_0_tb_body .single_add_to_cart_button.disabled {
  border-color: rgba(18, 59, 44, 0.25) !important;
  background: rgba(18, 59, 44, 0.42) !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  opacity: 1 !important;
}

html body.single-product .et_pb_wc_add_to_cart_0_tb_body .sv-buy-now-button {
  border: 1px solid var(--sv-gold) !important;
  background: rgba(196, 154, 69, 0.14) !important;
  color: var(--sv-green) !important;
  -webkit-text-fill-color: var(--sv-green) !important;
}

html body.single-product .et_pb_wc_add_to_cart_0_tb_body .sv-buy-now-button:hover,
html body.single-product .et_pb_wc_add_to_cart_0_tb_body .sv-buy-now-button:focus-visible {
  border-color: var(--sv-gold) !important;
  background: var(--sv-gold) !important;
  color: var(--sv-green-deep) !important;
  -webkit-text-fill-color: var(--sv-green-deep) !important;
  opacity: 1 !important;
}

body.single-product .sv-trust-strip {
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

body.single-product .sv-trust-inner {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 10px !important;
  padding: 0 !important;
}

body.single-product .sv-trust-separator {
  display: none !important;
}

body.single-product .sv-trust-item {
  min-width: 0 !important;
  min-height: 62px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 9px !important;
  padding: 10px 12px !important;
  border: 1px solid var(--sv-line) !important;
  border-radius: 8px !important;
  background: rgba(196, 154, 69, 0.07) !important;
  color: var(--sv-green) !important;
  text-align: left !important;
}

body.single-product .sv-trust-icon {
  width: 30px !important;
  height: 30px !important;
  flex: 0 0 30px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 50% !important;
  background: rgba(196, 154, 69, 0.16) !important;
  color: var(--sv-gold) !important;
  opacity: 1 !important;
}

body.single-product .sv-trust-icon svg {
  width: 17px !important;
  height: 17px !important;
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 1.7 !important;
}

body.single-product .sv-trust-item span {
  color: var(--sv-green) !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  line-height: 1.35 !important;
}

body.single-product .et_pb_section_1_tb_body {
  padding: 66px 0 72px !important;
  background: var(--sv-card) !important;
}

body.single-product .et_pb_row_2_tb_body {
  display: grid !important;
  grid-template-columns: minmax(0, 1.65fr) minmax(280px, 0.85fr) !important;
  align-items: start !important;
  gap: 54px !important;
  padding: 0 !important;
}

body.single-product .et_pb_row_2_tb_body > .et_pb_column {
  float: none !important;
  width: auto !important;
  margin: 0 !important;
}

body.single-product .et_pb_text_0_tb_body {
  margin-bottom: 20px !important;
}

body.single-product .et_pb_text_0_tb_body h3 {
  margin: 0 !important;
  color: var(--sv-green) !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: 30px !important;
  font-weight: 400 !important;
  letter-spacing: -0.02em !important;
  line-height: 1.15 !important;
  text-transform: none !important;
}

body.single-product .et_pb_wc_description_1_tb_body {
  color: var(--sv-ink-soft) !important;
  font-size: 15px !important;
  line-height: 1.72 !important;
}

body.single-product .et_pb_wc_description_1_tb_body .et_pb_module_inner > p:first-child {
  display: none !important;
}

body.single-product .et_pb_wc_description_1_tb_body h2,
body.single-product .et_pb_wc_description_1_tb_body h3 {
  margin: 30px 0 10px !important;
  color: var(--sv-green) !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-weight: 400 !important;
  line-height: 1.25 !important;
}

body.single-product .et_pb_wc_description_1_tb_body h2 {
  font-size: 23px !important;
}

body.single-product .et_pb_wc_description_1_tb_body h3 {
  font-size: 18px !important;
}

body.single-product .et_pb_wc_description_1_tb_body h2:first-of-type {
  margin-top: 0 !important;
}

body.single-product .et_pb_wc_description_1_tb_body p {
  margin-bottom: 15px !important;
}

body.single-product .et_pb_wc_description_1_tb_body ul,
body.single-product .et_pb_wc_description_1_tb_body ol {
  margin: 0 0 20px !important;
  padding-left: 20px !important;
}

body.single-product .et_pb_wc_description_1_tb_body li {
  margin-bottom: 5px !important;
  padding-left: 3px !important;
}

body.single-product .et_pb_wc_description_1_tb_body li::marker {
  color: var(--sv-gold) !important;
}

body.single-product .et_pb_wc_description_1_tb_body p:nth-of-type(3) {
  padding: 14px 16px !important;
  border-left: 3px solid var(--sv-gold) !important;
  background: rgba(196, 154, 69, 0.08) !important;
}

body.single-product .et_pb_wc_additional_info_0_tb_body {
  position: sticky !important;
  top: 110px !important;
  padding: 30px !important;
  border: 0 !important;
  border-radius: 12px !important;
  background: var(--sv-green) !important;
  box-shadow: none !important;
}

body.single-product .et_pb_wc_additional_info_0_tb_body h2 {
  margin: 0 0 18px !important;
  color: #fff !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: 22px !important;
  font-weight: 400 !important;
  text-align: left !important;
}

body.single-product .et_pb_wc_additional_info_0_tb_body table,
body.single-product .et_pb_wc_additional_info_0_tb_body th,
body.single-product .et_pb_wc_additional_info_0_tb_body td {
  border-color: rgba(255, 255, 255, 0.18) !important;
  color: rgba(255, 255, 255, 0.88) !important;
}

body.single-product .et_pb_section_2_tb_body {
  padding: 64px 0 70px !important;
  background: var(--sv-green-deep) !important;
}

body.single-product .et_pb_row_3_tb_body {
  padding: 0 !important;
}

body.single-product .related.products {
  width: 100% !important;
  padding: 0 !important;
}

body.single-product .related.products > h2 {
  margin: 0 0 30px !important;
  color: var(--sv-cream) !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: 30px !important;
  font-weight: 400 !important;
  text-align: center !important;
}

body.single-product .related.products ul.products {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(240px, 280px)) !important;
  justify-content: center !important;
  gap: 22px !important;
  margin: 0 !important;
  padding: 0 !important;
}

body.single-product .related.products ul.products::before,
body.single-product .related.products ul.products::after {
  display: none !important;
  content: none !important;
}

body.single-product .related.products ul.products li.product {
  float: none !important;
  width: auto !important;
  max-width: none !important;
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  margin: 0 !important;
  padding: 0 0 16px !important;
  overflow: hidden !important;
  border: 1px solid rgba(196, 154, 69, 0.28) !important;
  border-radius: 10px !important;
  background: var(--sv-card) !important;
  box-shadow: none !important;
}

body.single-product .related.products ul.products li.product > a.woocommerce-loop-product__link {
  min-height: 0 !important;
  display: flex !important;
  flex: 1 1 auto !important;
  flex-direction: column !important;
}

body.single-product .related.products .et_shop_image {
  width: 100% !important;
  aspect-ratio: 1 / 1 !important;
  overflow: hidden !important;
  background: var(--sv-cream) !important;
}

body.single-product .related.products .et_shop_image img {
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  object-fit: cover !important;
}

body.single-product .related.products .et_overlay {
  display: none !important;
}

body.single-product .related.products .woocommerce-loop-product__title {
  min-height: 58px !important;
  margin: 0 !important;
  padding: 14px 15px 6px !important;
  color: var(--sv-green) !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: 17px !important;
  font-weight: 400 !important;
  line-height: 1.3 !important;
  text-align: left !important;
}

body.single-product .related.products .price {
  margin: auto 0 0 !important;
  padding: 0 15px !important;
  color: var(--sv-green) !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  text-align: left !important;
}

body.single-product .related.products .price del {
  color: var(--sv-ink-soft) !important;
}

body.single-product .related.products .price ins {
  color: var(--sv-gold) !important;
  text-decoration: none !important;
}

body.single-product .related.products .custom-product-buttons {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 8px !important;
  margin: 14px 15px 0 !important;
}

html body.single-product .related.products .custom-product-buttons .custom-add-cart-btn {
  grid-column: 1 !important;
  grid-row: 1 !important;
}

html body.single-product .related.products .custom-product-buttons .buy-now-btn {
  grid-column: 2 !important;
  grid-row: 1 !important;
}

html body.single-product .related.products .custom-product-buttons a:not(.added_to_cart) {
  min-width: 0 !important;
  min-height: 40px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 !important;
  padding: 8px 6px !important;
  border-radius: 6px !important;
  font-size: 9px !important;
  font-weight: 700 !important;
  letter-spacing: 0.07em !important;
  line-height: 1.2 !important;
}

html body.single-product .related.products .custom-add-cart-btn {
  border: 1px solid var(--sv-green) !important;
  background: var(--sv-green) !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}

html body.single-product .related.products .custom-add-cart-btn::before,
html body.single-product .related.products .custom-add-cart-btn::after {
  display: none !important;
  content: none !important;
}

html body.single-product .related.products .buy-now-btn {
  border: 1px solid var(--sv-gold) !important;
  background: rgba(196, 154, 69, 0.12) !important;
  color: var(--sv-green) !important;
  -webkit-text-fill-color: var(--sv-green) !important;
}

html body.single-product .related.products .buy-now-btn:hover,
html body.single-product .related.products .buy-now-btn:focus-visible {
  border-color: var(--sv-gold) !important;
  background: var(--sv-gold) !important;
  color: var(--sv-green-deep) !important;
  -webkit-text-fill-color: var(--sv-green-deep) !important;
}

html body.single-product #page-container .et_pb_wc_price_0_tb_body .price,
html body.single-product #page-container .et_pb_wc_price_0_tb_body .price .amount {
  color: var(--sv-green) !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: 36px !important;
  font-weight: 500 !important;
  line-height: 1.1 !important;
}

html body.single-product #page-container .et_pb_wc_add_to_cart_0_tb_body .quantity input.qty {
  width: 58px !important;
  height: 46px !important;
  padding: 0 !important;
  border: 1px solid var(--sv-green) !important;
  border-radius: 7px !important;
  background: var(--sv-card) !important;
  color: var(--sv-green) !important;
  -webkit-text-fill-color: var(--sv-green) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
}

html body.single-product #page-container .et_pb_section .et_pb_wc_add_to_cart_0_tb_body table.variations select {
  border-color: var(--sv-line) !important;
  background-color: var(--sv-card) !important;
  color: var(--sv-green) !important;
  -webkit-text-fill-color: var(--sv-green) !important;
}

html body.single-product #page-container .et_pb_section .et_pb_wc_add_to_cart_0_tb_body .quantity input.input-text.qty.text {
  border-color: var(--sv-green) !important;
  background-color: var(--sv-card) !important;
  color: var(--sv-green) !important;
  -webkit-text-fill-color: var(--sv-green) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
}

html body.single-product #page-container .et_pb_wc_add_to_cart_0_tb_body button.single_add_to_cart_button.button.alt {
  height: 46px !important;
  padding: 0 22px !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  font-size: 10px !important;
  line-height: 1 !important;
}

body.single-product .et_pb_wc_description_1_tb_body p,
body.single-product .et_pb_wc_description_1_tb_body h2,
body.single-product .et_pb_wc_description_1_tb_body h3 {
  padding-bottom: 0 !important;
}

html body.single-product #page-container .et_pb_wc_related_products_0_tb_body ul.products li.product h2.woocommerce-loop-product__title {
  min-height: 58px !important;
  margin: 0 !important;
  padding: 14px 15px 6px !important;
  color: var(--sv-green) !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: 17px !important;
  font-weight: 400 !important;
  line-height: 1.3 !important;
  text-align: left !important;
}

html body.single-product #page-container .et_pb_wc_related_products_0_tb_body ul.products li.product .price del,
html body.single-product #page-container .et_pb_wc_related_products_0_tb_body ul.products li.product .price del .amount {
  color: var(--sv-ink-soft) !important;
  font-weight: 400 !important;
  opacity: 0.85 !important;
}

html body.single-product #page-container .et_pb_wc_related_products_0_tb_body ul.products li.product .price ins,
html body.single-product #page-container .et_pb_wc_related_products_0_tb_body ul.products li.product .price ins .amount {
  color: var(--sv-gold) !important;
  -webkit-text-fill-color: var(--sv-gold) !important;
  font-weight: 700 !important;
  opacity: 1 !important;
  text-decoration: none !important;
}

html body.single-product #page-container div.et_pb_section .et_pb_wc_related_products_0_tb_body.et_pb_wc_related_products ul.products li.product span.price del span.woocommerce-Price-amount.amount {
  color: var(--sv-ink-soft) !important;
  -webkit-text-fill-color: var(--sv-ink-soft) !important;
}

html body.single-product #page-container div.et_pb_section .et_pb_wc_related_products_0_tb_body.et_pb_wc_related_products ul.products li.product span.price ins span.woocommerce-Price-amount.amount {
  color: var(--sv-gold) !important;
  -webkit-text-fill-color: var(--sv-gold) !important;
}

html body.single-product #page-container .et_pb_wc_related_products_0_tb_body ul.products li.product .custom-product-buttons a.buy-now-btn {
  border: 1.5px solid var(--sv-green) !important;
  background: transparent !important;
  color: var(--sv-green) !important;
  -webkit-text-fill-color: var(--sv-green) !important;
}

html body.single-product #page-container .et_pb_wc_related_products_0_tb_body ul.products li.product .custom-product-buttons a.buy-now-btn:hover,
html body.single-product #page-container .et_pb_wc_related_products_0_tb_body ul.products li.product .custom-product-buttons a.buy-now-btn:focus-visible {
  border-color: var(--sv-green) !important;
  background: var(--sv-green) !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}

html body.single-product #page-container .et_pb_wc_related_products_0_tb_body ul.products li.product {
  width: 100% !important;
  max-width: none !important;
  justify-self: stretch !important;
}

@media (max-width: 980px) {
  body.single-product .et_pb_section_0_tb_body {
    padding: 28px 0 44px !important;
  }

  body.single-product .et_pb_row_1_tb_body,
  body.single-product .et_pb_row_2_tb_body,
  body.single-product .et_pb_row_3_tb_body {
    width: calc(100% - 32px) !important;
  }

  body.single-product .et_pb_row_1_tb_body > .et_pb_column {
    width: 100% !important;
    margin-right: 0 !important;
  }

  body.single-product .et_pb_wc_title_0_tb_body h1 {
    font-size: clamp(30px, 7vw, 40px) !important;
  }

  body.single-product .et_pb_row_2_tb_body {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  body.single-product .et_pb_wc_additional_info_0_tb_body {
    position: static !important;
  }
}

@media (max-width: 600px) {
  body.single-product .et_pb_row_1_tb_body,
  body.single-product .et_pb_row_2_tb_body,
  body.single-product .et_pb_row_3_tb_body {
    width: calc(100% - 28px) !important;
  }

  body.single-product .et_pb_wc_add_to_cart_0_tb_body table.variations tr {
    grid-template-columns: 1fr !important;
    gap: 7px !important;
  }

  body.single-product .et_pb_wc_add_to_cart_0_tb_body .woocommerce-variation-add-to-cart,
  body.single-product .et_pb_wc_add_to_cart_0_tb_body form.cart:not(.variations_form) {
    display: grid !important;
    grid-template-columns: 56px minmax(0, 1fr) minmax(0, 1fr) !important;
    gap: 7px !important;
  }

  body.single-product .et_pb_wc_add_to_cart_0_tb_body .quantity,
  body.single-product .et_pb_wc_add_to_cart_0_tb_body .quantity .qty {
    width: 56px !important;
  }

  html body.single-product .et_pb_wc_add_to_cart_0_tb_body .single_add_to_cart_button,
  html body.single-product .et_pb_wc_add_to_cart_0_tb_body .sv-buy-now-button {
    width: 100% !important;
    padding: 0 8px !important;
    font-size: 11px !important;
  }

  body.single-product .sv-trust-inner {
    gap: 6px !important;
  }

  body.single-product .sv-trust-item {
    min-height: 76px !important;
    flex-direction: column !important;
    gap: 6px !important;
    padding: 9px 6px !important;
    text-align: center !important;
  }

  body.single-product .sv-trust-item span {
    font-size: 9px !important;
  }

  body.single-product .et_pb_section_1_tb_body,
  body.single-product .et_pb_section_2_tb_body {
    padding: 48px 0 54px !important;
  }

  body.single-product .et_pb_text_0_tb_body h3 {
    font-size: 26px !important;
  }

  body.single-product .et_pb_wc_description_1_tb_body {
    font-size: 14px !important;
  }

  body.single-product .related.products ul.products {
    grid-template-columns: minmax(0, 300px) !important;
  }

  html body.single-product #page-container .et_pb_wc_related_products_0_tb_body ul.products li.product {
    min-width: 100% !important;
    grid-column: 1 / -1 !important;
  }
}

/* ---------------------------------------------------------
   Footer
--------------------------------------------------------- */

.sv-footer {
  background: var(--sv-green-deep) !important;
}

.sv-footer a {
  font-weight: 400 !important;
  text-decoration: none !important;
}

.sv-footer .sv-logo-link,
.sv-footer .sv-logo-link img {
  color: inherit !important;
}

.sv-footer .sv-logo-link,
.sv-footer .sv-logo-frame {
  background: transparent !important;
  box-shadow: none !important;
}

.sv-footer .sv-logo-frame {
  width: 280px !important;
  height: 72px !important;
  overflow: hidden !important;
  mix-blend-mode: normal !important;
  background: url("../img/solaivanam-logo-footer.png") no-repeat left center / contain !important;
}

.sv-footer .sv-logo-frame img {
  opacity: 0 !important;
  width: 280px !important;
  height: 72px !important;
  object-fit: contain !important;
}

.sv-footer a[href*="millet-health-foods"],
.sv-footer li:has(a[href*="millet-health-foods"]) {
  display: none !important;
}

.sv-footer-col ul {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.sv-footer-col li,
.sv-footer-col a {
  margin-left: 0 !important;
  padding-left: 0 !important;
  text-indent: 0 !important;
}

.sv-footer-col a:hover,
.sv-legal a:hover,
.sv-powered-link:hover {
  color: var(--sv-gold) !important;
}

.sv-footer-bottom {
  align-items: center !important;
  gap: 12px 28px !important;
}

.sv-powered {
  justify-content: center !important;
  gap: 6px !important;
  color: rgba(245, 238, 220, 0.42) !important;
  font-size: 12px !important;
}

.sv-bloogle-mascot {
  display: none !important;
}

.sv-footer-divider {
  opacity: 0.2 !important;
}

.sv-social a,
.sv-socials a {
  box-shadow: none !important;
}

.sv-social a,
.sv-socials a {
  box-shadow: none !important;
}

/* ---------------------------------------------------------
   Mobile header
--------------------------------------------------------- */

@media (max-width: 980px) {
  .sv-shipping-bar {
    height: 32px !important;
    min-height: 32px !important;
    font-size: 9px !important;
    letter-spacing: 0.08em !important;
  }

  .sv-hero,
  .sv-hero-inner,
  .sv-hero-content {
    max-width: 100% !important;
    min-width: 0 !important;
    overflow-x: hidden !important;
  }

  .sv-title,
  .sv-hero h1 {
    font-size: clamp(32px, 8vw, 42px) !important;
    overflow-wrap: break-word !important;
  }

  .sv-hero .sv-eyebrow {
    gap: 0 !important;
    letter-spacing: 0.12em !important;
    font-size: 9px !important;
    line-height: 1.45 !important;
  }

  .sv-hero .sv-eyebrow::before,
  .sv-hero .sv-eyebrow::after {
    display: none !important;
    content: none !important;
    width: 0 !important;
  }

  .sv-hero .sv-eyebrow i {
    margin: 0 3px !important;
  }

  .sv-hero .sv-trust-item strong {
    font-size: 10px !important;
  }

  .sv-btn,
  .sv-btn-primary,
  .sv-btn-secondary {
    height: 42px !important;
    min-height: 42px !important;
  }

  .sv-footer {
    overflow-x: hidden !important;
  }

  .sv-footer-top {
    grid-template-columns: 1fr 1fr !important;
    gap: 28px 24px !important;
  }

  .sv-footer-bottom,
  .sv-legal {
    justify-content: flex-start !important;
  }

  .sv-legal {
    flex-wrap: wrap !important;
  }
}

/* ---------------------------------------------------------
   Mobile — keep overlay !important from breaking phone layouts
--------------------------------------------------------- */

@media (max-width: 767px) {
  .sv-shipping-bar {
    height: 30px !important;
    min-height: 30px !important;
    padding: 0 12px !important;
    font-size: 8px !important;
    letter-spacing: 0.08em !important;
  }

  .sv-mobile-menu,
  .sv-search-panel {
    top: 100% !important;
    margin-top: -1px !important;
    max-height: calc(100vh - 100%) !important;
  }

  .sv-title,
  .sv-hero h1 {
    overflow-wrap: break-word !important;
    word-break: normal !important;
    font-size: clamp(32px, 9vw, 40px) !important;
  }

  .sv-hero .sv-actions {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
  }

  .sv-hero .sv-trust {
    width: 100% !important;
    max-width: 100% !important;
  }

  .sv-hero .sv-trust-item strong {
    font-size: 9px !important;
  }

  .sv-category-section {
    padding: 48px 18px 52px !important;
  }

  .sv-category-section .sv-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px 14px !important;
  }

  .sv-category-section .sv-category-card,
  .sv-category-section .sv-category-card.sv-category-featured {
    min-height: 0 !important;
    padding: 8px 8px 22px !important;
  }

  .sv-category-section .sv-category-image,
  .sv-category-section .sv-category-featured .sv-category-image {
    width: min(132px, calc(100% - 8px)) !important;
    max-width: 132px !important;
  }

  .sv-category-section .sv-category-card h3,
  .sv-category-section .sv-category-card p {
    min-height: 0 !important;
  }

  .sv-footer-brand,
  .sv-contact-col {
    grid-column: 1 / -1 !important;
  }

  .sv-footer .sv-logo-frame,
  .sv-footer .sv-logo-frame img {
    width: min(260px, 100%) !important;
    max-width: 100% !important;
    height: 64px !important;
  }

  .sv-hero,
  .sv-category-section,
  .sv-why-section,
  .sv-bestseller-section,
  .sv-footer {
    overflow-x: hidden !important;
  }
}

@media (max-width: 480px) {
  .sv-hero .sv-actions {
    flex-direction: column !important;
    align-items: stretch !important;
  }

  .sv-hero .sv-actions .sv-btn,
  .sv-hero .sv-actions .sv-btn-primary,
  .sv-hero .sv-actions .sv-btn-secondary {
    width: 100% !important;
  }

  .sv-category-section .sv-category-grid {
    grid-template-columns: 1fr !important;
  }

  .sv-footer-top {
    grid-template-columns: 1fr !important;
    gap: 22px !important;
  }

  .sv-footer-brand,
  .sv-contact-col {
    grid-column: auto !important;
  }
}

/* ---------------------------------------------------------
   Why Choose Solaivanam — compact road map / tree of trust
   Same colours. Heading is the trunk; five nodes sit on one road.
--------------------------------------------------------- */

.sv-why-section {
  padding: 40px 24px 32px !important;
  overflow: hidden !important;
}

.sv-why-section .sv-why-glow,
.sv-why-section .sv-glow-one,
.sv-why-section .sv-glow-two {
  display: block !important;
  opacity: 0.1 !important;
  z-index: 0 !important;
  pointer-events: none !important;
}

.sv-why-container {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 0 !important;
  width: min(1180px, 100%) !important;
  max-width: 1180px !important;
  margin: 0 auto !important;
  position: relative !important;
  z-index: 1 !important;
}

.sv-why-heading {
  text-align: center !important;
  margin: 0 auto !important;
  max-width: 540px !important;
}

.sv-why-heading h2 {
  text-align: center !important;
  margin: 6px 0 8px !important;
  padding-bottom: 0 !important;
  line-height: 1.15 !important;
}

.sv-why-heading h2 em::before,
.sv-why-heading h2 em::after {
  display: none !important;
  content: none !important;
}

.sv-why-tagline {
  text-align: center !important;
  margin: 0 auto !important;
  max-width: 34em !important;
}

/* Trunk from the heading down to the road */
.sv-why-heading::after {
  content: "" !important;
  display: block !important;
  width: 1px !important;
  height: 20px !important;
  margin: 14px auto 0 !important;
  background: rgba(229, 207, 155, 0.35) !important;
}

.sv-why-grid {
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  gap: 0 12px !important;
  position: relative !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
}

/* The road — a gold path through the five icon nodes */
.sv-why-grid::before {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  top: 29px !important;
  left: 10% !important;
  right: 10% !important;
  height: 1px !important;
  background: rgba(229, 207, 155, 0.35) !important;
  z-index: 0 !important;
}

.sv-why-grid::after {
  display: none !important;
}

.sv-why-card,
.sv-why-card.sv-why-featured,
.sv-why-card:nth-child(4),
.sv-why-card:nth-child(5) {
  grid-column: auto !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  background: transparent !important;
  border: 0 !important;
  border-right: 0 !important;
  border-bottom: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 0 6px !important;
  min-height: 0 !important;
  height: auto !important;
  transform: none !important;
  position: relative !important;
}

.sv-why-card:hover,
.sv-why-card.sv-why-featured:hover {
  transform: none !important;
  box-shadow: none !important;
  background: transparent !important;
}

.sv-why-icon {
  order: 1 !important;
  width: 58px !important;
  height: 58px !important;
  min-width: 58px !important;
  min-height: 58px !important;
  margin: 0 0 10px !important;
  color: rgb(208, 168, 78) !important;
  background: rgb(23, 63, 42) !important;
  position: relative !important;
  z-index: 1 !important;
}

.sv-why-icon svg,
.sv-why-icon svg path {
  stroke: currentColor !important;
  fill: none !important;
}

.sv-why-card:hover .sv-why-icon,
.sv-why-card.sv-why-featured:hover .sv-why-icon {
  color: rgb(23, 63, 42) !important;
  background: rgb(208, 168, 78) !important;
  transform: translateY(-4px) !important;
  box-shadow: 0 10px 24px rgba(208, 168, 78, 0.18) !important;
}

.sv-why-number {
  order: 2 !important;
  position: static !important;
  top: auto !important;
  right: auto !important;
  margin: 0 0 2px !important;
  text-align: center !important;
}

.sv-why-card h3 {
  order: 3 !important;
  text-align: center !important;
  margin: 0 0 6px !important;
  font-size: 15px !important;
  line-height: 1.2 !important;
}

.sv-why-card p {
  order: 4 !important;
  text-align: center !important;
  margin: 0 !important;
  font-size: 12px !important;
  line-height: 1.4 !important;
}

.sv-why-line {
  display: none !important;
}

.sv-why-bottom {
  margin-top: 22px !important;
}

/* Tablets: two readable cards per row. Hide the desktop road. */
@media (max-width: 980px) {
  .sv-why-section {
    padding: 36px 20px 32px !important;
    overflow-x: hidden !important;
  }

  .sv-why-heading {
    max-width: 100% !important;
    padding: 0 4px !important;
  }

  .sv-why-heading::after {
    display: none !important;
  }

  .sv-why-tagline {
    max-width: none !important;
    font-size: 14px !important;
    line-height: 1.55 !important;
  }

  .sv-why-section .sv-why-glow,
  .sv-why-section .sv-glow-one,
  .sv-why-section .sv-glow-two {
    width: 240px !important;
    height: 240px !important;
  }

  .sv-why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px !important;
    margin-top: 22px !important;
  }

  .sv-why-grid::before,
  .sv-why-grid::after {
    display: none !important;
  }

  .sv-why-card,
  .sv-why-card.sv-why-featured,
  .sv-why-card:nth-child(4),
  .sv-why-card:nth-child(5) {
    display: grid !important;
    grid-template-columns: 52px minmax(0, 1fr) !important;
    grid-template-rows: auto auto auto !important;
    grid-column: auto !important;
    column-gap: 14px !important;
    row-gap: 2px !important;
    align-items: start !important;
    text-align: left !important;
    width: 100% !important;
    padding: 16px 14px !important;
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(229, 207, 155, 0.16) !important;
    border-radius: 12px !important;
    box-sizing: border-box !important;
  }

  .sv-why-icon {
    order: 0 !important;
    grid-column: 1 !important;
    grid-row: 1 / span 3 !important;
    width: 48px !important;
    height: 48px !important;
    min-width: 48px !important;
    min-height: 48px !important;
    margin: 2px 0 0 !important;
  }

  .sv-why-number {
    order: 0 !important;
    grid-column: 2 !important;
    grid-row: 1 !important;
    text-align: left !important;
    margin: 0 !important;
  }

  .sv-why-card h3 {
    order: 0 !important;
    grid-column: 2 !important;
    grid-row: 2 !important;
    text-align: left !important;
    font-size: 17px !important;
    line-height: 1.25 !important;
    margin: 0 0 4px !important;
  }

  .sv-why-card p {
    order: 0 !important;
    grid-column: 2 !important;
    grid-row: 3 !important;
    text-align: left !important;
    font-size: 14px !important;
    line-height: 1.55 !important;
    margin: 0 !important;
  }

  .sv-why-card:hover .sv-why-icon,
  .sv-why-card.sv-why-featured:hover .sv-why-icon {
    transform: none !important;
  }

  .sv-why-bottom {
    margin-top: 22px !important;
    padding: 0 8px !important;
    font-size: 15px !important;
    line-height: 1.55 !important;
    text-align: center !important;
  }
}

/* Phones: one full-width card so 04 / 05 copy is never clipped */
@media (max-width: 600px) {
  .sv-why-section {
    padding: 32px 16px 28px !important;
  }

  .sv-why-heading h2 {
    font-size: 28px !important;
    line-height: 1.2 !important;
  }

  .sv-why-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .sv-why-card,
  .sv-why-card.sv-why-featured,
  .sv-why-card:nth-child(4),
  .sv-why-card:nth-child(5) {
    padding: 14px 12px !important;
  }
}

/* =========================================================
   OUR STORY — COMPACT PREMIUM LAYOUT
   Keeps the Divi Code module and page content intact.
   ========================================================= */
body.page-id-31 #main-content .et_pb_section,
body.page-id-31 #main-content .et_pb_row,
body.page-id-31 #main-content .et_pb_column,
body.page-id-31 #main-content .et_pb_code,
body.page-id-31 #main-content .et_pb_code_inner {
  overflow: visible !important;
}

body.page-id-31 #main-content > .et_pb_section {
  padding: 0 !important;
}

body.page-id-31 #main-content .et_pb_row_0 {
  width: min(1180px, calc(100% - 48px)) !important;
  max-width: 1180px !important;
  padding: 38px 0 56px !important;
}

body.page-id-31 .solaivanam-story {
  max-width: 1120px !important;
  padding: 0 !important;
}

body.page-id-31 .solaivanam-story-hero {
  margin-bottom: 16px !important;
  padding: 54px 40px !important;
  border-radius: 22px !important;
}

body.page-id-31 .solaivanam-story-hero h1 {
  margin-bottom: 14px !important;
  font-size: clamp(40px, 4.2vw, 50px) !important;
  line-height: 1.12 !important;
}

body.page-id-31 .solaivanam-story-hero p {
  max-width: 720px !important;
  font-size: 16px !important;
  line-height: 1.65 !important;
}

body.page-id-31 .solaivanam-story-section {
  padding: 34px 5px !important;
}

body.page-id-31 .solaivanam-story-section h2 {
  margin-bottom: 12px !important;
  font-size: clamp(27px, 2.5vw, 32px) !important;
}

body.page-id-31 .solaivanam-story-section h3 {
  margin-bottom: 6px !important;
}

body.page-id-31 .solaivanam-story-section p {
  margin-bottom: 10px !important;
  line-height: 1.68 !important;
}

body.page-id-31 .solaivanam-story-intro {
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.28fr) !important;
  gap: 34px !important;
}

body.page-id-31 .solaivanam-story-quote {
  padding: 26px !important;
}

body.page-id-31 .solaivanam-story-quote p {
  font-size: 18px !important;
}

body.page-id-31 .solaivanam-story-cards,
body.page-id-31 .solaivanam-story-process,
body.page-id-31 .solaivanam-story-checks,
body.page-id-31 .solaivanam-story-values {
  margin-top: 20px !important;
}

body.page-id-31 .solaivanam-story-card {
  padding: 24px 22px !important;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease !important;
}

body.page-id-31 .solaivanam-story-card:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 14px 32px rgba(63, 53, 41, 0.08) !important;
}

/* Replace platform-dependent emoji with consistent numbered trust marks. */
body.page-id-31 .solaivanam-story-icon {
  width: 44px !important;
  height: 44px !important;
  margin-bottom: 13px !important;
  font-size: 0 !important;
  font-family: inherit !important;
}

body.page-id-31 .solaivanam-story-icon::before {
  font-size: 12px !important;
  font-weight: 800 !important;
  letter-spacing: 0.06em !important;
}

body.page-id-31 .solaivanam-story-card:nth-child(1) .solaivanam-story-icon::before {
  content: "01" !important;
}

body.page-id-31 .solaivanam-story-card:nth-child(2) .solaivanam-story-icon::before {
  content: "02" !important;
}

body.page-id-31 .solaivanam-story-card:nth-child(3) .solaivanam-story-icon::before {
  content: "03" !important;
}

body.page-id-31 .solaivanam-story-process {
  gap: 12px !important;
}

body.page-id-31 .solaivanam-story-process-item {
  padding: 22px 17px !important;
}

body.page-id-31 .solaivanam-story-process-number {
  margin-bottom: 11px !important;
}

body.page-id-31 .solaivanam-story-feature {
  margin-top: 20px !important;
  padding: 32px 34px !important;
}

body.page-id-31 .solaivanam-story-checks {
  gap: 12px !important;
}

body.page-id-31 .solaivanam-story-check {
  gap: 12px !important;
  padding: 18px !important;
}

body.page-id-31 .solaivanam-story-product {
  margin-top: 20px !important;
  padding: 30px 32px !important;
}

body.page-id-31 .solaivanam-story-product h3 {
  font-size: 25px !important;
}

body.page-id-31 .solaivanam-story-values {
  gap: 10px !important;
}

body.page-id-31 .solaivanam-story-value {
  padding: 19px 12px !important;
}

body.page-id-31 .solaivanam-story-tradition {
  margin-top: 20px !important;
  padding: 34px 36px !important;
}

body.page-id-31 .solaivanam-story-vision {
  padding: 42px 36px !important;
}

body.page-id-31 .solaivanam-story-cta {
  padding: 38px 20px 0 !important;
}

body.page-id-31 .solaivanam-story-btn {
  min-width: 158px !important;
  padding: 13px 24px !important;
  line-height: 1.2 !important;
  text-align: center !important;
}

body.page-id-31 .solaivanam-story-btn-primary:hover,
body.page-id-31 .solaivanam-story-btn-primary:focus-visible {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  opacity: 1 !important;
}

body.page-id-31 .solaivanam-story-btn-secondary:hover,
body.page-id-31 .solaivanam-story-btn-secondary:focus-visible {
  color: #51483c !important;
  -webkit-text-fill-color: #51483c !important;
  opacity: 1 !important;
}

@media (max-width: 767px) {
  body.page-id-31 #main-content .et_pb_row_0 {
    width: calc(100% - 28px) !important;
    padding: 24px 0 38px !important;
  }

  body.page-id-31 .solaivanam-story-hero {
    margin-bottom: 8px !important;
    padding: 34px 18px !important;
    border-radius: 17px !important;
  }

  body.page-id-31 .solaivanam-story-eyebrow {
    margin-bottom: 10px !important;
    font-size: 11px !important;
    letter-spacing: 1.25px !important;
  }

  body.page-id-31 .solaivanam-story-hero h1 {
    margin-bottom: 13px !important;
    font-size: clamp(32px, 9.2vw, 38px) !important;
    line-height: 1.14 !important;
  }

  body.page-id-31 .solaivanam-story-hero p {
    font-size: 14px !important;
    line-height: 1.62 !important;
  }

  body.page-id-31 .solaivanam-story-section {
    padding: 26px 2px !important;
  }

  body.page-id-31 .solaivanam-story-section h2 {
    margin-bottom: 10px !important;
    font-size: 24px !important;
    line-height: 1.25 !important;
  }

  body.page-id-31 .solaivanam-story-section p {
    margin-bottom: 8px !important;
    font-size: 13px !important;
    line-height: 1.62 !important;
  }

  body.page-id-31 .solaivanam-story-intro {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  body.page-id-31 .solaivanam-story-quote {
    padding: 20px !important;
  }

  body.page-id-31 .solaivanam-story-quote p {
    font-size: 16px !important;
  }

  body.page-id-31 .solaivanam-story-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
    margin-top: 16px !important;
  }

  body.page-id-31 .solaivanam-story-card {
    padding: 18px 14px !important;
  }

  body.page-id-31 .solaivanam-story-card:nth-child(3) {
    grid-column: 1 / -1 !important;
  }

  body.page-id-31 .solaivanam-story-card h3 {
    font-size: 16px !important;
  }

  body.page-id-31 .solaivanam-story-card p {
    font-size: 12px !important;
    line-height: 1.55 !important;
  }

  body.page-id-31 .solaivanam-story-icon {
    width: 38px !important;
    height: 38px !important;
    margin-bottom: 10px !important;
  }

  body.page-id-31 .solaivanam-story-process {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 9px !important;
    margin-top: 16px !important;
  }

  body.page-id-31 .solaivanam-story-process-item {
    display: block !important;
    padding: 16px 12px !important;
    text-align: center !important;
  }

  body.page-id-31 .solaivanam-story-process-number {
    width: 34px !important;
    height: 34px !important;
    margin: 0 auto 9px !important;
  }

  body.page-id-31 .solaivanam-story-process-item h3 {
    font-size: 15px !important;
  }

  body.page-id-31 .solaivanam-story-process-item p {
    font-size: 11px !important;
    line-height: 1.5 !important;
  }

  body.page-id-31 .solaivanam-story-feature {
    margin-top: 16px !important;
    padding: 24px 20px !important;
  }

  body.page-id-31 .solaivanam-story-checks {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 9px !important;
    margin-top: 16px !important;
  }

  body.page-id-31 .solaivanam-story-check {
    display: block !important;
    padding: 15px 12px !important;
  }

  body.page-id-31 .solaivanam-story-check-mark {
    width: 30px !important;
    height: 30px !important;
    margin-bottom: 9px !important;
  }

  body.page-id-31 .solaivanam-story-check h3 {
    font-size: 15px !important;
  }

  body.page-id-31 .solaivanam-story-check p {
    font-size: 11px !important;
    line-height: 1.5 !important;
  }

  body.page-id-31 .solaivanam-story-product {
    margin-top: 16px !important;
    padding: 23px 18px !important;
  }

  body.page-id-31 .solaivanam-story-product h3 {
    font-size: 21px !important;
  }

  body.page-id-31 .solaivanam-story-tags {
    gap: 6px !important;
    margin-top: 14px !important;
  }

  body.page-id-31 .solaivanam-story-tags span {
    padding: 6px 10px !important;
    font-size: 10px !important;
  }

  body.page-id-31 .solaivanam-story-values {
    gap: 8px !important;
    margin-top: 16px !important;
  }

  body.page-id-31 .solaivanam-story-value {
    padding: 15px 8px !important;
  }

  body.page-id-31 .solaivanam-story-tradition {
    margin-top: 16px !important;
    padding: 24px 18px !important;
  }

  body.page-id-31 .solaivanam-story-vision {
    padding: 30px 18px !important;
  }

  body.page-id-31 .solaivanam-story-vision h2 {
    font-size: 25px !important;
  }

  body.page-id-31 .solaivanam-story-cta {
    padding: 28px 0 0 !important;
  }

  body.page-id-31 .solaivanam-story-buttons {
    gap: 9px !important;
    margin-top: 18px !important;
  }

  body.page-id-31 .solaivanam-story-btn {
    min-width: 0 !important;
  }
}

/* Our Story — visual storytelling layer */
body.page-id-31 #main-content {
  background:
    linear-gradient(180deg, rgba(250, 246, 238, 0.54) 0, #fff 420px) !important;
}

body.page-id-31 .solaivanam-story-hero {
  background:
    radial-gradient(circle at 88% 5%, rgba(196, 154, 69, 0.12) 0 145px, transparent 146px),
    radial-gradient(circle at 4% 108%, rgba(18, 59, 44, 0.08) 0 125px, transparent 126px),
    var(--sv-cream-soft) !important;
  border-color: rgba(196, 154, 69, 0.34) !important;
  box-shadow: 0 20px 54px rgba(18, 59, 44, 0.06) !important;
}

body.page-id-31 .solaivanam-story-hero::before,
body.page-id-31 .solaivanam-story-hero::after {
  display: none !important;
}

body.page-id-31 .solaivanam-story-eyebrow {
  display: inline-flex !important;
  align-items: center !important;
  gap: 12px !important;
  color: var(--sv-gold) !important;
  letter-spacing: 0.2em !important;
}

body.page-id-31 .solaivanam-story-eyebrow::before,
body.page-id-31 .solaivanam-story-eyebrow::after {
  content: "" !important;
  width: 28px !important;
  height: 1px !important;
  background: var(--sv-gold-mute) !important;
}

body.page-id-31 .solaivanam-story-hero h1,
body.page-id-31 .solaivanam-story-section h2,
body.page-id-31 .solaivanam-story-section h3,
body.page-id-31 .solaivanam-story-product h3,
body.page-id-31 .solaivanam-story-value strong {
  color: var(--sv-green) !important;
}

body.page-id-31 .solaivanam-story-section > h2 {
  position: relative !important;
  padding-bottom: 14px !important;
}

body.page-id-31 .solaivanam-story-section > h2::after {
  content: "" !important;
  display: block !important;
  width: 42px !important;
  height: 2px !important;
  margin-top: 12px !important;
  background: var(--sv-gold) !important;
}

body.page-id-31 .solaivanam-story-label {
  color: var(--sv-gold) !important;
  letter-spacing: 0.2em !important;
}

body.page-id-31 .solaivanam-story-quote {
  position: relative !important;
  background: var(--sv-card) !important;
  border-color: var(--sv-line) !important;
  border-left: 3px solid var(--sv-gold) !important;
  border-radius: 4px 16px 16px 4px !important;
  box-shadow: 0 12px 32px rgba(18, 59, 44, 0.045) !important;
}

body.page-id-31 .solaivanam-story-quote p {
  color: var(--sv-green) !important;
}

body.page-id-31 .solaivanam-story-card {
  position: relative !important;
  overflow: hidden !important;
  background: var(--sv-card) !important;
  border-color: var(--sv-line) !important;
  border-top: 2px solid rgba(196, 154, 69, 0.68) !important;
}

body.page-id-31 .solaivanam-story-icon {
  color: var(--sv-gold) !important;
  background: var(--sv-green) !important;
  box-shadow: 0 8px 18px rgba(18, 59, 44, 0.14) !important;
}

body.page-id-31 .solaivanam-story-process {
  position: relative !important;
}

body.page-id-31 .solaivanam-story-process::before {
  content: "" !important;
  position: absolute !important;
  top: 42px !important;
  left: 12.5% !important;
  right: 12.5% !important;
  height: 1px !important;
  background: linear-gradient(90deg, transparent, var(--sv-gold), transparent) !important;
  opacity: 0.58 !important;
}

body.page-id-31 .solaivanam-story-process-item {
  position: relative !important;
  background: rgba(250, 246, 238, 0.75) !important;
  border-color: var(--sv-line) !important;
}

body.page-id-31 .solaivanam-story-process-number {
  position: relative !important;
  z-index: 1 !important;
  color: var(--sv-gold) !important;
  background: var(--sv-green) !important;
  box-shadow: 0 0 0 6px var(--sv-cream-soft) !important;
}

body.page-id-31 .solaivanam-story-feature,
body.page-id-31 .solaivanam-story-vision {
  position: relative !important;
  overflow: hidden !important;
  background:
    radial-gradient(circle at 96% 0, rgba(196, 154, 69, 0.18) 0 120px, transparent 121px),
    var(--sv-green) !important;
  box-shadow: 0 18px 44px rgba(18, 59, 44, 0.12) !important;
}

body.page-id-31 .solaivanam-story-feature h2,
body.page-id-31 .solaivanam-story-vision h2 {
  color: #fff !important;
}

body.page-id-31 .solaivanam-story-feature p,
body.page-id-31 .solaivanam-story-vision p {
  color: rgba(255, 255, 255, 0.84) !important;
}

body.page-id-31 .solaivanam-story-check {
  background: linear-gradient(135deg, var(--sv-card), rgba(250, 246, 238, 0.72)) !important;
  border-color: var(--sv-line) !important;
  transition: border-color 180ms ease, transform 180ms ease !important;
}

body.page-id-31 .solaivanam-story-check:hover {
  transform: translateY(-2px) !important;
  border-color: rgba(196, 154, 69, 0.54) !important;
}

body.page-id-31 .solaivanam-story-check-mark {
  color: var(--sv-gold) !important;
  background: var(--sv-green) !important;
}

body.page-id-31 .solaivanam-story-product {
  position: relative !important;
  overflow: hidden !important;
  background:
    linear-gradient(110deg, var(--sv-cream-soft) 0 72%, rgba(196, 154, 69, 0.12) 72%) !important;
  border-color: rgba(196, 154, 69, 0.34) !important;
  border-left: 4px solid var(--sv-gold) !important;
}

body.page-id-31 .solaivanam-story-product-badge {
  color: var(--sv-green) !important;
  border: 1px solid rgba(196, 154, 69, 0.36) !important;
}

body.page-id-31 .solaivanam-story-tags span {
  color: var(--sv-green) !important;
  border-color: rgba(196, 154, 69, 0.34) !important;
}

body.page-id-31 .solaivanam-story-value {
  position: relative !important;
  background: var(--sv-card) !important;
  border-color: var(--sv-line) !important;
}

body.page-id-31 .solaivanam-story-value::before {
  content: "" !important;
  display: block !important;
  width: 5px !important;
  height: 5px !important;
  margin: 0 auto 10px !important;
  border-radius: 50% !important;
  background: var(--sv-gold) !important;
  box-shadow: 0 0 0 4px rgba(196, 154, 69, 0.12) !important;
}

body.page-id-31 .solaivanam-story-tradition {
  background:
    linear-gradient(135deg, rgba(250, 246, 238, 0.96), rgba(247, 242, 231, 0.82)) !important;
  border-color: rgba(196, 154, 69, 0.28) !important;
}

body.page-id-31 .solaivanam-story-btn-primary {
  color: #fff !important;
  background: var(--sv-green) !important;
  border: 1px solid var(--sv-green) !important;
}

body.page-id-31 .solaivanam-story-btn-primary:hover,
body.page-id-31 .solaivanam-story-btn-primary:focus-visible {
  background: var(--sv-green-deep) !important;
  border-color: var(--sv-green-deep) !important;
  transform: translateY(-2px) !important;
}

body.page-id-31 .solaivanam-story-btn-secondary {
  color: var(--sv-green) !important;
  background: transparent !important;
  border: 1px solid var(--sv-green) !important;
}

body.page-id-31 .solaivanam-story-btn-secondary:hover,
body.page-id-31 .solaivanam-story-btn-secondary:focus-visible {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  background: var(--sv-green) !important;
  border-color: var(--sv-green) !important;
  transform: translateY(-2px) !important;
}

@media (max-width: 767px) {
  body.page-id-31 .solaivanam-story-hero {
    background:
      radial-gradient(circle at 100% 0, rgba(196, 154, 69, 0.12) 0 105px, transparent 106px),
      radial-gradient(circle at 0 108%, rgba(18, 59, 44, 0.08) 0 86px, transparent 87px),
      var(--sv-cream-soft) !important;
  }

  body.page-id-31 .solaivanam-story-eyebrow {
    gap: 8px !important;
  }

  body.page-id-31 .solaivanam-story-eyebrow::before,
  body.page-id-31 .solaivanam-story-eyebrow::after {
    width: 16px !important;
  }

  body.page-id-31 .solaivanam-story-section > h2 {
    padding-bottom: 10px !important;
  }

  body.page-id-31 .solaivanam-story-section > h2::after {
    width: 34px !important;
    margin-top: 9px !important;
  }

  body.page-id-31 .solaivanam-story-process::before {
    display: none !important;
  }

  body.page-id-31 .solaivanam-story-process-number {
    box-shadow: 0 0 0 4px var(--sv-cream-soft) !important;
  }

  body.page-id-31 .solaivanam-story-product {
    background:
      linear-gradient(155deg, var(--sv-cream-soft) 0 84%, rgba(196, 154, 69, 0.12) 84%) !important;
  }
}

/* =========================================================
   CONTACT US — PREMIUM SUPPORT LAYOUT
   ========================================================= */
body.page-id-263 #main-content {
  background:
    linear-gradient(180deg, rgba(250, 246, 238, 0.54) 0, #fff 420px) !important;
}

body.page-id-263 #main-content > .et_pb_section {
  padding: 0 !important;
}

body.page-id-263 #main-content .et_pb_row_0 {
  width: min(1180px, calc(100% - 48px)) !important;
  max-width: 1180px !important;
  padding: 38px 0 56px !important;
}

body.page-id-263 .solaivanam-contact {
  max-width: 1120px !important;
  padding: 0 !important;
}

body.page-id-263 .solaivanam-contact-hero {
  position: relative !important;
  overflow: hidden !important;
  margin-bottom: 24px !important;
  padding: 54px 40px !important;
  background:
    radial-gradient(circle at 92% 0, rgba(196, 154, 69, 0.12) 0 140px, transparent 141px),
    radial-gradient(circle at 2% 110%, rgba(18, 59, 44, 0.08) 0 120px, transparent 121px),
    var(--sv-cream-soft) !important;
  border-color: rgba(196, 154, 69, 0.34) !important;
  border-radius: 22px !important;
  box-shadow: 0 20px 54px rgba(18, 59, 44, 0.06) !important;
}

body.page-id-263 .solaivanam-contact-hero .eyebrow {
  display: inline-flex !important;
  align-items: center !important;
  gap: 12px !important;
  margin-bottom: 12px !important;
  color: var(--sv-gold) !important;
  font-size: 11px !important;
  letter-spacing: 0.2em !important;
}

body.page-id-263 .solaivanam-contact-hero .eyebrow::before,
body.page-id-263 .solaivanam-contact-hero .eyebrow::after {
  content: "" !important;
  width: 28px !important;
  height: 1px !important;
  background: var(--sv-gold-mute) !important;
}

body.page-id-263 .solaivanam-contact-hero h1 {
  margin-bottom: 12px !important;
  color: var(--sv-green) !important;
  font-size: clamp(42px, 4.5vw, 52px) !important;
  line-height: 1.1 !important;
}

body.page-id-263 .solaivanam-contact-hero p {
  max-width: 680px !important;
  color: var(--sv-ink-soft) !important;
  font-size: 16px !important;
  line-height: 1.65 !important;
}

body.page-id-263 .solaivanam-contact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 16px !important;
  margin-bottom: 24px !important;
}

body.page-id-263 .solaivanam-contact-card,
body.page-id-263 .solaivanam-address {
  grid-column: auto !important;
  display: flex !important;
  flex-direction: column !important;
  min-width: 0 !important;
  padding: 27px 24px !important;
  background: var(--sv-card) !important;
  border-color: var(--sv-line) !important;
  border-top: 2px solid rgba(196, 154, 69, 0.68) !important;
  border-radius: 16px !important;
  box-shadow: 0 10px 30px rgba(18, 59, 44, 0.045) !important;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease !important;
}

body.page-id-263 .solaivanam-contact-card:hover {
  transform: translateY(-3px) !important;
  border-color: rgba(196, 154, 69, 0.52) !important;
  box-shadow: 0 16px 36px rgba(18, 59, 44, 0.08) !important;
}

body.page-id-263 .solaivanam-contact-card-icon {
  width: 44px !important;
  height: 44px !important;
  margin-bottom: 14px !important;
  color: var(--sv-gold) !important;
  background: var(--sv-green) !important;
  font-size: 18px !important;
  box-shadow: 0 8px 18px rgba(18, 59, 44, 0.14) !important;
}

body.page-id-263 .solaivanam-contact-card h2 {
  margin-bottom: 7px !important;
  color: var(--sv-green) !important;
  font-size: 22px !important;
}

body.page-id-263 .solaivanam-contact-card p {
  margin-bottom: 7px !important;
  color: var(--sv-ink-soft) !important;
  font-size: 14px !important;
  line-height: 1.65 !important;
}

body.page-id-263 .solaivanam-contact-card a {
  margin-top: auto !important;
  padding-top: 8px !important;
  color: var(--sv-green) !important;
  overflow-wrap: anywhere !important;
  text-decoration: underline !important;
  text-decoration-color: rgba(196, 154, 69, 0.54) !important;
  text-underline-offset: 4px !important;
}

body.page-id-263 .solaivanam-contact-card a:hover,
body.page-id-263 .solaivanam-contact-card a:focus-visible {
  color: var(--sv-gold) !important;
  -webkit-text-fill-color: var(--sv-gold) !important;
}

body.page-id-263 .solaivanam-contact-cta {
  position: relative !important;
  overflow: hidden !important;
  margin: 24px 0 !important;
  padding: 38px 34px !important;
  background:
    radial-gradient(circle at 96% 0, rgba(196, 154, 69, 0.18) 0 120px, transparent 121px),
    var(--sv-green) !important;
  border-radius: 20px !important;
  box-shadow: 0 18px 44px rgba(18, 59, 44, 0.12) !important;
}

body.page-id-263 .solaivanam-contact-cta h2 {
  margin-bottom: 9px !important;
  font-size: 29px !important;
}

body.page-id-263 .solaivanam-contact-cta p {
  margin-bottom: 20px !important;
  color: rgba(255, 255, 255, 0.84) !important;
  line-height: 1.65 !important;
}

body.page-id-263 .solaivanam-contact-buttons {
  gap: 10px !important;
}

body.page-id-263 .solaivanam-contact-btn {
  min-width: 132px !important;
  padding: 12px 22px !important;
  border-radius: 8px !important;
  line-height: 1.2 !important;
  text-align: center !important;
}

body.page-id-263 .solaivanam-contact-btn-primary {
  color: var(--sv-green) !important;
  -webkit-text-fill-color: var(--sv-green) !important;
  background: var(--sv-gold) !important;
  border: 1px solid var(--sv-gold) !important;
}

body.page-id-263 .solaivanam-contact-btn-primary:hover,
body.page-id-263 .solaivanam-contact-btn-primary:focus-visible {
  color: var(--sv-green) !important;
  -webkit-text-fill-color: var(--sv-green) !important;
  background: #fff !important;
  border-color: #fff !important;
  transform: translateY(-2px) !important;
}

body.page-id-263 .solaivanam-contact-btn-secondary {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  border-color: rgba(255, 255, 255, 0.54) !important;
}

body.page-id-263 .solaivanam-contact-btn-secondary:hover,
body.page-id-263 .solaivanam-contact-btn-secondary:focus-visible {
  color: var(--sv-green) !important;
  -webkit-text-fill-color: var(--sv-green) !important;
  background: #fff !important;
  border-color: #fff !important;
  transform: translateY(-2px) !important;
}

body.page-id-263 .solaivanam-hours {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 10px 14px !important;
  margin-top: 24px !important;
  padding: 26px !important;
  background: linear-gradient(135deg, var(--sv-card), var(--sv-cream-soft)) !important;
  border-color: var(--sv-line) !important;
  border-radius: 16px !important;
}

body.page-id-263 .solaivanam-hours h2 {
  grid-column: 1 / -1 !important;
  margin-bottom: 2px !important;
  color: var(--sv-green) !important;
  font-size: 23px !important;
}

body.page-id-263 .solaivanam-hours p {
  margin: 0 !important;
  padding: 14px 16px !important;
  color: var(--sv-ink-soft) !important;
  background: rgba(255, 255, 255, 0.72) !important;
  border: 1px solid var(--sv-line) !important;
  border-radius: 10px !important;
  font-size: 14px !important;
}

body.page-id-263 .solaivanam-hours strong {
  display: block !important;
  margin-bottom: 2px !important;
  color: var(--sv-green) !important;
}

body.page-id-263 .solaivanam-contact-note {
  margin-top: 14px !important;
  padding: 17px 20px !important;
  background: var(--sv-cream-soft) !important;
  border-left-color: var(--sv-gold) !important;
}

body.page-id-263 .solaivanam-contact-note p {
  color: var(--sv-ink-soft) !important;
  line-height: 1.65 !important;
}

body.page-id-263 .solaivanam-contact-note strong {
  color: var(--sv-green) !important;
}

@media (max-width: 900px) {
  body.page-id-263 .solaivanam-contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  body.page-id-263 .solaivanam-address {
    grid-column: 1 / -1 !important;
  }
}

@media (max-width: 600px) {
  body.page-id-263 #main-content .et_pb_row_0 {
    width: calc(100% - 28px) !important;
    padding: 24px 0 38px !important;
  }

  body.page-id-263 .solaivanam-contact-hero {
    margin-bottom: 16px !important;
    padding: 34px 18px !important;
    background:
      radial-gradient(circle at 100% 0, rgba(196, 154, 69, 0.12) 0 105px, transparent 106px),
      radial-gradient(circle at 0 108%, rgba(18, 59, 44, 0.08) 0 82px, transparent 83px),
      var(--sv-cream-soft) !important;
    border-radius: 17px !important;
  }

  body.page-id-263 .solaivanam-contact-hero .eyebrow {
    gap: 7px !important;
    font-size: 9px !important;
    letter-spacing: 0.14em !important;
  }

  body.page-id-263 .solaivanam-contact-hero .eyebrow::before,
  body.page-id-263 .solaivanam-contact-hero .eyebrow::after {
    width: 13px !important;
  }

  body.page-id-263 .solaivanam-contact-hero h1 {
    font-size: 34px !important;
  }

  body.page-id-263 .solaivanam-contact-hero p {
    font-size: 14px !important;
  }

  body.page-id-263 .solaivanam-contact-grid {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    margin-bottom: 16px !important;
  }

  body.page-id-263 .solaivanam-address {
    grid-column: auto !important;
  }

  body.page-id-263 .solaivanam-contact-card {
    padding: 20px 18px !important;
  }

  body.page-id-263 .solaivanam-contact-card-icon {
    width: 39px !important;
    height: 39px !important;
    margin-bottom: 11px !important;
  }

  body.page-id-263 .solaivanam-contact-card h2 {
    font-size: 20px !important;
  }

  body.page-id-263 .solaivanam-contact-cta {
    margin: 16px 0 !important;
    padding: 28px 18px !important;
    border-radius: 17px !important;
  }

  body.page-id-263 .solaivanam-contact-cta h2 {
    font-size: 24px !important;
  }

  body.page-id-263 .solaivanam-contact-buttons {
    gap: 8px !important;
  }

  body.page-id-263 .solaivanam-contact-btn {
    width: 100% !important;
    min-width: 0 !important;
  }

  body.page-id-263 .solaivanam-hours {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
    margin-top: 16px !important;
    padding: 20px 16px !important;
  }

  body.page-id-263 .solaivanam-hours h2 {
    grid-column: auto !important;
    font-size: 21px !important;
  }

  body.page-id-263 .solaivanam-contact-note {
    padding: 15px 16px !important;
  }
}

/* =========================================================
   MY ACCOUNT — LOGIN, REGISTRATION AND CUSTOMER DASHBOARD
   ========================================================= */
body.woocommerce-account #main-content {
  background:
    radial-gradient(circle at 8% 10%, rgba(196, 154, 69, 0.08), transparent 260px),
    linear-gradient(180deg, rgba(250, 246, 238, 0.62) 0, #fff 520px) !important;
}

body.woocommerce-account #main-content > .et_pb_section {
  padding: 0 !important;
}

body.woocommerce-account #main-content .et_pb_section_0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

body.woocommerce-account #main-content .et_pb_row_0 {
  width: min(1180px, calc(100% - 48px)) !important;
  max-width: 1180px !important;
  padding: 48px 0 64px !important;
}

body.woocommerce-account #main-content .et_pb_text_0 {
  margin: 0 !important;
}

body.woocommerce-account #main-content .et_pb_text_inner > .woocommerce {
  margin: 0 !important;
  padding: 0 !important;
}

body.woocommerce-account #customer_login {
  display: grid !important;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr) !important;
  align-items: start !important;
  gap: 20px !important;
  width: 100% !important;
  max-width: 1000px !important;
  margin: 0 auto !important;
}

body.woocommerce-account #customer_login::before {
  content: "" !important;
  display: none !important;
}

body.woocommerce-account #customer_login .u-column1,
body.woocommerce-account #customer_login .u-column2 {
  float: none !important;
  width: auto !important;
  max-width: none !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 30px !important;
  background: var(--sv-card) !important;
  border: 1px solid var(--sv-line) !important;
  border-top: 2px solid rgba(196, 154, 69, 0.72) !important;
  border-radius: 18px !important;
  box-shadow: 0 16px 42px rgba(18, 59, 44, 0.065) !important;
}

body.woocommerce-account #customer_login .u-column1 {
  background:
    linear-gradient(145deg, var(--sv-card), rgba(247, 242, 231, 0.72)) !important;
}

body.woocommerce-account #customer_login h2 {
  position: relative !important;
  margin: 0 0 22px !important;
  padding: 0 0 13px !important;
  color: var(--sv-green) !important;
  font-size: 30px !important;
  line-height: 1.18 !important;
}

body.woocommerce-account #customer_login h2::after {
  content: "" !important;
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 36px !important;
  height: 2px !important;
  background: var(--sv-gold) !important;
}

body.woocommerce-account form.woocommerce-form-login,
body.woocommerce-account form.woocommerce-form-register {
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
}

body.woocommerce-account form .form-row {
  margin: 0 0 14px !important;
  padding: 0 !important;
}

body.woocommerce-account form .form-row label {
  margin-bottom: 6px !important;
  color: var(--sv-green) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  line-height: 1.35 !important;
}

body.woocommerce-account form .required {
  color: #a34a3a !important;
}

body.woocommerce-account form input.input-text,
body.woocommerce-account form input[type="email"],
body.woocommerce-account form input[type="password"],
body.woocommerce-account form input[type="tel"] {
  width: 100% !important;
  height: 50px !important;
  padding: 11px 14px !important;
  color: var(--sv-ink) !important;
  -webkit-text-fill-color: var(--sv-ink) !important;
  background: #fff !important;
  border: 1px solid #ddd5c5 !important;
  border-radius: 8px !important;
  box-shadow: inset 0 1px 2px rgba(18, 59, 44, 0.025) !important;
  font-size: 14px !important;
  line-height: 1.2 !important;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease !important;
}

body.woocommerce-account form input.input-text:hover,
body.woocommerce-account form input[type="email"]:hover,
body.woocommerce-account form input[type="password"]:hover,
body.woocommerce-account form input[type="tel"]:hover {
  border-color: rgba(196, 154, 69, 0.68) !important;
}

body.woocommerce-account form input.input-text:focus,
body.woocommerce-account form input[type="email"]:focus,
body.woocommerce-account form input[type="password"]:focus,
body.woocommerce-account form input[type="tel"]:focus {
  outline: 0 !important;
  background: #fff !important;
  border-color: var(--sv-gold) !important;
  box-shadow: 0 0 0 3px rgba(196, 154, 69, 0.14) !important;
}

body.woocommerce-account .password-input {
  width: 100% !important;
}

body.woocommerce-account .show-password-input {
  top: 50% !important;
  right: 14px !important;
  transform: translateY(-50%) !important;
  color: var(--sv-green) !important;
}

body.woocommerce-account form .form-row-first,
body.woocommerce-account form .form-row-last {
  width: calc(50% - 6px) !important;
}

body.woocommerce-account form .form-row-first {
  float: left !important;
}

body.woocommerce-account form .form-row-last {
  float: right !important;
}

body.woocommerce-account .woocommerce-form-login__rememberme {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  min-height: 42px !important;
  margin: 0 0 0 12px !important;
  color: var(--sv-ink-soft) !important;
  font-weight: 500 !important;
}

body.woocommerce-account .woocommerce-form-login__rememberme input {
  width: 16px !important;
  height: 16px !important;
  margin: 0 !important;
  accent-color: var(--sv-green) !important;
}

body.woocommerce-account .woocommerce-button,
body.woocommerce-account button.button,
body.woocommerce-account a.button {
  min-height: 42px !important;
  padding: 11px 22px !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  background: var(--sv-green) !important;
  border: 1px solid var(--sv-green) !important;
  border-radius: 8px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
  line-height: 1.3 !important;
  text-transform: uppercase !important;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease !important;
}

body.woocommerce-account .woocommerce-button:hover,
body.woocommerce-account .woocommerce-button:focus-visible,
body.woocommerce-account button.button:hover,
body.woocommerce-account button.button:focus-visible,
body.woocommerce-account a.button:hover,
body.woocommerce-account a.button:focus-visible {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  background: var(--sv-green-deep) !important;
  border-color: var(--sv-green-deep) !important;
  transform: translateY(-2px) !important;
}

body.woocommerce-account .woocommerce-button::after,
body.woocommerce-account button.button::after,
body.woocommerce-account a.button::after {
  display: none !important;
  content: none !important;
}

body.woocommerce-account .woocommerce-LostPassword {
  margin: 10px 0 0 !important;
}

body.woocommerce-account .woocommerce-LostPassword a,
body.woocommerce-account .woocommerce-privacy-policy-text a {
  color: var(--sv-green) !important;
  font-weight: 700 !important;
  text-decoration: underline !important;
  text-decoration-color: rgba(196, 154, 69, 0.58) !important;
  text-underline-offset: 4px !important;
}

body.woocommerce-account .woocommerce-LostPassword a:hover,
body.woocommerce-account .woocommerce-privacy-policy-text a:hover {
  color: var(--sv-gold) !important;
  -webkit-text-fill-color: var(--sv-gold) !important;
}

body.woocommerce-account .woocommerce-privacy-policy-text {
  margin: 4px 0 16px !important;
  padding: 13px 14px !important;
  color: var(--sv-ink-soft) !important;
  background: var(--sv-cream-soft) !important;
  border-left: 3px solid var(--sv-gold) !important;
  border-radius: 0 8px 8px 0 !important;
  font-size: 12px !important;
  line-height: 1.6 !important;
}

body.woocommerce-account .woocommerce-privacy-policy-text p {
  margin: 0 !important;
  padding: 0 !important;
}

/* Signed-in account navigation and content */
body.woocommerce-account .woocommerce-MyAccount-navigation {
  float: left !important;
  width: 27% !important;
  padding: 12px !important;
  background: var(--sv-card) !important;
  border: 1px solid var(--sv-line) !important;
  border-radius: 14px !important;
  box-shadow: 0 12px 34px rgba(18, 59, 44, 0.05) !important;
}

body.woocommerce-account .woocommerce-MyAccount-navigation ul {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

body.woocommerce-account .woocommerce-MyAccount-navigation li {
  margin: 0 !important;
  padding: 0 !important;
  border-bottom: 1px solid var(--sv-line) !important;
}

body.woocommerce-account .woocommerce-MyAccount-navigation li:last-child {
  border-bottom: 0 !important;
}

body.woocommerce-account .woocommerce-MyAccount-navigation a {
  display: block !important;
  padding: 11px 13px !important;
  color: var(--sv-green) !important;
  border-radius: 7px !important;
  font-weight: 650 !important;
}

body.woocommerce-account .woocommerce-MyAccount-navigation .is-active a,
body.woocommerce-account .woocommerce-MyAccount-navigation a:hover {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  background: var(--sv-green) !important;
}

body.woocommerce-account .woocommerce-MyAccount-content {
  float: right !important;
  width: calc(73% - 22px) !important;
  min-height: 320px !important;
  padding: 28px !important;
  background: var(--sv-card) !important;
  border: 1px solid var(--sv-line) !important;
  border-top: 2px solid rgba(196, 154, 69, 0.72) !important;
  border-radius: 14px !important;
  box-shadow: 0 12px 34px rgba(18, 59, 44, 0.05) !important;
}

body.woocommerce-account .woocommerce-MyAccount-content h2,
body.woocommerce-account .woocommerce-MyAccount-content h3 {
  color: var(--sv-green) !important;
}

body.woocommerce-account table.shop_table {
  overflow: hidden !important;
  border-color: var(--sv-line) !important;
  border-radius: 10px !important;
}

body.woocommerce-account table.shop_table th {
  color: var(--sv-green) !important;
  background: var(--sv-cream-soft) !important;
}

@media (max-width: 767px) {
  body.woocommerce-account #main-content .et_pb_row_0 {
    width: calc(100% - 28px) !important;
    padding: 26px 0 40px !important;
  }

  body.woocommerce-account #customer_login {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  body.woocommerce-account #customer_login::before {
    grid-column: auto !important;
    margin-bottom: 2px !important;
  }

  body.woocommerce-account #customer_login .u-column1,
  body.woocommerce-account #customer_login .u-column2 {
    padding: 22px 18px !important;
    border-radius: 15px !important;
  }

  body.woocommerce-account #customer_login h2 {
    margin-bottom: 18px !important;
    font-size: 26px !important;
  }

  body.woocommerce-account form .form-row-first,
  body.woocommerce-account form .form-row-last {
    float: none !important;
    width: 100% !important;
  }

  body.woocommerce-account form input.input-text,
  body.woocommerce-account form input[type="email"],
  body.woocommerce-account form input[type="password"],
  body.woocommerce-account form input[type="tel"] {
    height: 48px !important;
  }

  body.woocommerce-account .woocommerce-form-login__rememberme {
    margin-left: 8px !important;
  }

  body.woocommerce-account .woocommerce-MyAccount-navigation,
  body.woocommerce-account .woocommerce-MyAccount-content {
    float: none !important;
    width: 100% !important;
  }

  body.woocommerce-account .woocommerce-MyAccount-navigation {
    margin-bottom: 14px !important;
  }

  body.woocommerce-account .woocommerce-MyAccount-content {
    min-height: 0 !important;
    padding: 20px 18px !important;
  }
}

/* =========================================================
   CART — WOO BLOCKS CART AND EMPTY STATE
   ========================================================= */
body.woocommerce-cart #main-content {
  background:
    radial-gradient(circle at 8% 8%, rgba(196, 154, 69, 0.08), transparent 260px),
    linear-gradient(180deg, rgba(250, 246, 238, 0.6) 0, #fff 520px) !important;
}

body.woocommerce-cart #main-content .container {
  width: min(1180px, calc(100% - 48px)) !important;
  max-width: 1180px !important;
  padding: 46px 0 64px !important;
}

body.woocommerce-cart #content-area {
  width: 100% !important;
  padding: 0 !important;
}

body.woocommerce-cart #content-area::before {
  display: none !important;
  content: none !important;
}

body.woocommerce-cart #left-area {
  float: none !important;
  width: 100% !important;
  padding: 0 !important;
}

body.woocommerce-cart #sidebar {
  display: none !important;
}

body.woocommerce-cart article,
body.woocommerce-cart .entry-content {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
}

body.woocommerce-cart .entry-title {
  position: relative !important;
  margin: 0 0 28px !important;
  padding: 0 0 14px !important;
  color: var(--sv-green) !important;
  font-size: clamp(38px, 4vw, 48px) !important;
  line-height: 1.12 !important;
}

body.woocommerce-cart .entry-title::after {
  content: "" !important;
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 44px !important;
  height: 2px !important;
  background: var(--sv-gold) !important;
}

body.woocommerce-cart .wc-block-cart {
  margin: 0 !important;
}

body.woocommerce-cart .wc-block-components-sidebar-layout {
  align-items: flex-start !important;
  gap: 22px !important;
}

body.woocommerce-cart .wc-block-cart__main {
  width: calc(66% - 11px) !important;
  padding: 24px !important;
  background: var(--sv-card) !important;
  border: 1px solid var(--sv-line) !important;
  border-top: 2px solid rgba(196, 154, 69, 0.7) !important;
  border-radius: 16px !important;
  box-shadow: 0 14px 38px rgba(18, 59, 44, 0.055) !important;
}

body.woocommerce-cart .wc-block-cart__sidebar {
  position: sticky !important;
  top: 26px !important;
  width: calc(34% - 11px) !important;
  margin: 0 !important;
  padding: 24px !important;
  background: linear-gradient(145deg, var(--sv-card), var(--sv-cream-soft)) !important;
  border: 1px solid var(--sv-line) !important;
  border-top: 2px solid rgba(196, 154, 69, 0.7) !important;
  border-radius: 16px !important;
  box-shadow: 0 14px 38px rgba(18, 59, 44, 0.055) !important;
}

body.woocommerce-cart .wc-block-cart-items__header,
body.woocommerce-cart .wc-block-cart__totals-title {
  color: var(--sv-green) !important;
  border-color: var(--sv-line) !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
}

body.woocommerce-cart .wc-block-cart-items__row {
  border-color: var(--sv-line) !important;
}

body.woocommerce-cart .wc-block-cart-item__image {
  position: relative !important;
  overflow: hidden !important;
  min-height: 96px !important;
  background: var(--sv-cream-soft) !important;
  border: 1px solid var(--sv-line) !important;
  border-radius: 10px !important;
}

body.woocommerce-cart .wc-block-cart-item__image img {
  width: 100% !important;
  height: 96px !important;
  object-fit: contain !important;
  border-radius: 9px !important;
}

body.woocommerce-cart .wc-block-cart-item__image:has(img[src*="Handmade-Gift"]) img {
  visibility: hidden !important;
}

body.woocommerce-cart .wc-block-cart-item__image:has(img[src*="Handmade-Gift"])::after {
  content: "Image unavailable" !important;
  position: absolute !important;
  inset: 0 !important;
  display: grid !important;
  place-items: center !important;
  padding: 8px !important;
  color: var(--sv-ink-soft) !important;
  font-size: 10px !important;
  line-height: 1.35 !important;
  text-align: center !important;
}

body.woocommerce-cart .wc-block-components-product-name {
  color: var(--sv-green) !important;
  font-size: 16px !important;
  font-weight: 750 !important;
  line-height: 1.35 !important;
}

body.woocommerce-cart .wc-block-cart-item__product .wc-block-components-product-metadata,
body.woocommerce-cart .wc-block-components-product-metadata__description {
  color: var(--sv-ink-soft) !important;
  font-size: 12px !important;
  line-height: 1.55 !important;
}

body.woocommerce-cart .wc-block-components-product-price,
body.woocommerce-cart .wc-block-formatted-money-amount {
  color: var(--sv-green) !important;
  font-weight: 750 !important;
}

body.woocommerce-cart .wc-block-components-quantity-selector {
  overflow: hidden !important;
  border: 1px solid #ddd5c5 !important;
  border-radius: 7px !important;
  background: #fff !important;
}

body.woocommerce-cart .wc-block-components-quantity-selector input {
  color: var(--sv-green) !important;
  -webkit-text-fill-color: var(--sv-green) !important;
  font-weight: 700 !important;
}

body.woocommerce-cart .wc-block-components-quantity-selector button {
  color: var(--sv-green) !important;
  background: var(--sv-cream-soft) !important;
}

body.woocommerce-cart .wc-block-cart-item__remove-link {
  color: #8b4a3d !important;
  text-decoration: underline !important;
  text-underline-offset: 3px !important;
}

body.woocommerce-cart .wc-block-components-totals-wrapper {
  border-color: var(--sv-line) !important;
}

body.woocommerce-cart .wc-block-components-totals-item__label {
  color: var(--sv-ink-soft) !important;
}

body.woocommerce-cart .wc-block-components-totals-footer-item .wc-block-components-totals-item__label,
body.woocommerce-cart .wc-block-components-totals-footer-item .wc-block-formatted-money-amount {
  color: var(--sv-green) !important;
  font-size: 18px !important;
  font-weight: 800 !important;
}

body.woocommerce-cart .wc-block-components-panel__button {
  color: var(--sv-green) !important;
  font-weight: 700 !important;
}

body.woocommerce-cart .wc-block-components-text-input input {
  min-height: 48px !important;
  color: var(--sv-ink) !important;
  -webkit-text-fill-color: var(--sv-ink) !important;
  background: #fff !important;
  border-color: #ddd5c5 !important;
  border-radius: 8px !important;
}

body.woocommerce-cart .wc-block-cart__submit-button {
  min-height: 50px !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  background: var(--sv-green) !important;
  border: 1px solid var(--sv-green) !important;
  border-radius: 8px !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  letter-spacing: 0.04em !important;
  transition: transform 160ms ease, background 160ms ease !important;
}

body.woocommerce-cart .wc-block-cart__submit-button:hover,
body.woocommerce-cart .wc-block-cart__submit-button:focus-visible {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  background: var(--sv-green-deep) !important;
  border-color: var(--sv-green-deep) !important;
  transform: translateY(-2px) !important;
}

/* Empty cart and "New in store" recommendations */
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block {
  max-width: 1120px !important;
  margin: 0 auto !important;
}

body.woocommerce-cart .wc-block-cart__empty-cart__title,
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block > .wp-block-heading:first-of-type {
  position: relative !important;
  max-width: 620px !important;
  margin: 0 auto 28px !important;
  padding: 38px 24px !important;
  color: var(--sv-green) !important;
  background:
    radial-gradient(circle at 95% 0, rgba(196, 154, 69, 0.12) 0 92px, transparent 93px),
    var(--sv-cream-soft) !important;
  border: 1px solid rgba(196, 154, 69, 0.34) !important;
  border-radius: 16px !important;
  box-shadow: 0 14px 38px rgba(18, 59, 44, 0.05) !important;
  font-size: 26px !important;
}

body.woocommerce-cart .wc-block-cart__empty-cart__title::before {
  width: 78px !important;
  height: 78px !important;
  margin-bottom: 22px !important;
}

body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wp-block-heading {
  color: var(--sv-green) !important;
}

body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wp-block-heading:not(:first-of-type) {
  margin: 34px 0 20px !important;
  font-size: 30px !important;
}

body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-grid.has-4-columns .wc-block-grid__products,
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-grid__products,
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 16px !important;
  margin: 0 !important;
}

body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-grid__product,
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block li.product {
  display: flex !important;
  flex-direction: column !important;
  float: none !important;
  width: auto !important;
  max-width: none !important;
  overflow: hidden !important;
  padding: 16px 14px 14px !important;
  background: var(--sv-card) !important;
  border: 1px solid var(--sv-line) !important;
  border-radius: 14px !important;
  box-shadow: 0 10px 28px rgba(18, 59, 44, 0.045) !important;
}

body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-grid__product-image img,
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block li.product img {
  width: 100% !important;
  height: 190px !important;
  object-fit: contain !important;
  background: var(--sv-cream-soft) !important;
  border-radius: 9px !important;
}

body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-grid__product-title {
  margin: 10px 0 4px !important;
  color: var(--sv-green) !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;
}

body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-grid__product-price,
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .price {
  margin: 0 0 10px !important;
  color: var(--sv-gold) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
}

html body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-grid__product-add-to-cart,
html body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wp-block-button {
  margin: auto 0 0 !important;
  text-align: center !important;
}

html body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-grid__product-add-to-cart .wp-block-button__link,
html body.woocommerce-cart .wp-block-woocommerce-empty-cart-block a.wp-block-button__link.add_to_cart_button,
html body.woocommerce-cart .wp-block-woocommerce-empty-cart-block a.add_to_cart_button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: auto !important;
  min-width: 118px !important;
  min-height: 40px !important;
  padding: 8px 14px !important;
  color: var(--sv-green) !important;
  -webkit-text-fill-color: var(--sv-green) !important;
  background: transparent !important;
  border: 1px solid var(--sv-green) !important;
  border-radius: 8px !important;
  box-shadow: none !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 0.07em !important;
  line-height: 1.2 !important;
  text-transform: uppercase !important;
}

html body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-grid__product-add-to-cart .wp-block-button__link:hover,
html body.woocommerce-cart .wp-block-woocommerce-empty-cart-block a.wp-block-button__link.add_to_cart_button:hover,
html body.woocommerce-cart .wp-block-woocommerce-empty-cart-block a.add_to_cart_button:hover,
html body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-grid__product-add-to-cart .wp-block-button__link:focus-visible,
html body.woocommerce-cart .wp-block-woocommerce-empty-cart-block a.add_to_cart_button:focus-visible {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  background: var(--sv-green) !important;
  border-color: var(--sv-green) !important;
  opacity: 1 !important;
}

@media (max-width: 780px) {
  body.woocommerce-cart #main-content .container {
    width: calc(100% - 28px) !important;
    padding: 28px 0 42px !important;
  }

  body.woocommerce-cart .entry-title {
    margin-bottom: 20px !important;
    font-size: 34px !important;
  }

  body.woocommerce-cart .wc-block-components-sidebar-layout {
    display: block !important;
  }

  body.woocommerce-cart .wc-block-cart__main,
  body.woocommerce-cart .wc-block-cart__sidebar {
    position: static !important;
    width: 100% !important;
    padding: 16px !important;
    border-radius: 14px !important;
  }

  body.woocommerce-cart .wc-block-cart__sidebar {
    margin-top: 14px !important;
  }

  body.woocommerce-cart .wc-block-cart-items__row {
    grid-template-columns: 90px minmax(0, 1fr) !important;
    grid-template-areas:
      "image product"
      "total total" !important;
    gap: 12px !important;
    align-items: start !important;
  }

  body.woocommerce-cart .wc-block-cart-item__image {
    grid-area: image !important;
    width: 90px !important;
    min-height: 90px !important;
    align-self: start !important;
  }

  body.woocommerce-cart .wc-block-cart-item__product {
    grid-area: product !important;
    width: auto !important;
    min-width: 0 !important;
    padding: 0 !important;
  }

  body.woocommerce-cart .wc-block-cart-item__total {
    grid-area: total !important;
    width: 100% !important;
    min-height: 0 !important;
    padding: 10px 0 0 !important;
    border-top: 1px solid var(--sv-line) !important;
    justify-content: flex-end !important;
    align-items: center !important;
  }

  body.woocommerce-cart .wc-block-cart-item__image img {
    height: 90px !important;
  }

  body.woocommerce-cart .wc-block-components-product-metadata__description {
    display: none !important;
  }

  body.woocommerce-cart .wc-block-components-product-name {
    font-size: 14px !important;
  }

  body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-cart__empty-cart__title,
  body.woocommerce-cart .wp-block-woocommerce-empty-cart-block > .wp-block-heading:first-of-type {
    padding: 28px 18px !important;
    font-size: 22px !important;
  }

  body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-grid__products,
  body.woocommerce-cart .wp-block-woocommerce-empty-cart-block ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-grid__product-image img,
  body.woocommerce-cart .wp-block-woocommerce-empty-cart-block li.product img {
    height: 145px !important;
  }
}

@media (max-width: 480px) {
  body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-grid__products,
  body.woocommerce-cart .wp-block-woocommerce-empty-cart-block ul.products {
    grid-template-columns: 1fr !important;
  }
}

/* =========================================================
   CHECKOUT — WOO BLOCKS FORM AND ORDER SUMMARY
   ========================================================= */
body.woocommerce-checkout #main-content {
  background:
    radial-gradient(circle at 8% 8%, rgba(196, 154, 69, 0.08), transparent 260px),
    linear-gradient(180deg, rgba(250, 246, 238, 0.6) 0, #fff 520px) !important;
}

body.woocommerce-checkout #main-content .container {
  width: min(1180px, calc(100% - 48px)) !important;
  max-width: 1180px !important;
  padding: 46px 0 64px !important;
}

body.woocommerce-checkout #content-area {
  width: 100% !important;
  padding: 0 !important;
}

body.woocommerce-checkout #content-area::before {
  display: none !important;
  content: none !important;
}

body.woocommerce-checkout #left-area {
  float: none !important;
  width: 100% !important;
  padding: 0 !important;
}

body.woocommerce-checkout #sidebar {
  display: none !important;
}

body.woocommerce-checkout article,
body.woocommerce-checkout .entry-content {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
}

body.woocommerce-checkout .entry-title {
  position: relative !important;
  margin: 0 0 28px !important;
  padding: 0 0 14px !important;
  color: var(--sv-green) !important;
  font-size: clamp(38px, 4vw, 48px) !important;
  line-height: 1.12 !important;
}

body.woocommerce-checkout .entry-title::after {
  content: "" !important;
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 44px !important;
  height: 2px !important;
  background: var(--sv-gold) !important;
}

body.woocommerce-checkout .wc-block-checkout {
  margin: 0 !important;
}

body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout {
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: flex-start !important;
  gap: 22px !important;
}

body.woocommerce-checkout .wc-block-checkout__main {
  width: calc(62% - 11px) !important;
  padding: 26px !important;
  background: var(--sv-card) !important;
  border: 1px solid var(--sv-line) !important;
  border-top: 2px solid rgba(196, 154, 69, 0.7) !important;
  border-radius: 16px !important;
  box-shadow: 0 14px 38px rgba(18, 59, 44, 0.055) !important;
}

body.woocommerce-checkout .wc-block-checkout__sidebar {
  position: sticky !important;
  top: 26px !important;
  width: calc(38% - 11px) !important;
  margin: 0 !important;
  padding: 24px !important;
  background: linear-gradient(145deg, var(--sv-card), var(--sv-cream-soft)) !important;
  border: 1px solid var(--sv-line) !important;
  border-top: 2px solid rgba(196, 154, 69, 0.7) !important;
  border-radius: 16px !important;
  box-shadow: 0 14px 38px rgba(18, 59, 44, 0.055) !important;
}

body.woocommerce-checkout .wc-block-components-checkout-step__title,
body.woocommerce-checkout .wc-block-components-checkout-order-summary__title-text {
  color: var(--sv-green) !important;
  font-size: 22px !important;
}

body.woocommerce-checkout .wc-block-checkout__login-prompt a {
  color: var(--sv-gold) !important;
  font-weight: 700 !important;
}

body.woocommerce-checkout .wc-block-components-text-input,
body.woocommerce-checkout .wc-block-components-combobox {
  position: relative !important;
}

body.woocommerce-checkout .wc-block-components-text-input input,
body.woocommerce-checkout .wc-block-components-combobox input,
body.woocommerce-checkout .wc-block-components-text-input select,
body.woocommerce-checkout .wc-blocks-components-select select {
  min-height: 62px !important;
  padding: 28px 14px 10px !important;
  color: var(--sv-ink) !important;
  -webkit-text-fill-color: var(--sv-ink) !important;
  background: #fff !important;
  border: 1px solid #ddd5c5 !important;
  border-radius: 8px !important;
  font-size: 14px !important;
  line-height: 1.25 !important;
  box-shadow: none !important;
}

body.woocommerce-checkout .wc-block-components-text-input input:focus,
body.woocommerce-checkout .wc-block-components-combobox input:focus {
  border-color: var(--sv-gold) !important;
  box-shadow: 0 0 0 3px rgba(196, 154, 69, 0.14) !important;
  outline: 0 !important;
}

body.woocommerce-checkout .wc-block-components-text-input label,
body.woocommerce-checkout .wc-block-components-combobox label {
  position: absolute !important;
  left: 14px !important;
  top: 50% !important;
  z-index: 1 !important;
  margin: 0 !important;
  color: var(--sv-green) !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  line-height: 1.2 !important;
  pointer-events: none !important;
  transform: translateY(-50%) !important;
  transform-origin: left top !important;
}

body.woocommerce-checkout .wc-block-components-text-input.is-active label,
body.woocommerce-checkout .wc-block-components-text-input:has(input:not(:placeholder-shown)) label,
body.woocommerce-checkout .wc-block-components-combobox.is-active label,
body.woocommerce-checkout .wc-block-components-combobox:has(input:not(:placeholder-shown)) label {
  top: 6px !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em !important;
  line-height: 1 !important;
  transform: none !important;
}

/* Shipping / payment radios: keep the control left of the label */
body.woocommerce-checkout .wc-block-components-radio-control__option {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  min-height: 54px !important;
  padding: 14px 18px 14px 52px !important;
  overflow: visible !important;
  background: #fff !important;
  border: 1px solid var(--sv-line) !important;
  border-radius: 10px !important;
  box-shadow: none !important;
}

body.woocommerce-checkout .wc-block-components-radio-control__option::after,
body.woocommerce-checkout .wc-block-components-radio-control__option::before {
  left: 16px !important;
}

body.woocommerce-checkout .wc-block-components-radio-control__input {
  position: absolute !important;
  left: 16px !important;
  top: 50% !important;
  width: 18px !important;
  height: 18px !important;
  margin: 0 !important;
  transform: translateY(-50%) !important;
  z-index: 2 !important;
  accent-color: var(--sv-green) !important;
}

body.woocommerce-checkout .wc-block-components-radio-control__option-layout,
body.woocommerce-checkout .wc-block-components-radio-control__label-group {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 12px !important;
  width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

body.woocommerce-checkout .wc-block-components-radio-control__label {
  flex: 1 1 auto !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  color: var(--sv-green) !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;
  overflow: visible !important;
  text-indent: 0 !important;
  white-space: nowrap !important;
}

body.woocommerce-checkout .wc-block-components-radio-control__secondary-label {
  flex: 0 0 auto !important;
  color: var(--sv-ink-soft) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  text-align: right !important;
}

body.woocommerce-checkout .wc-block-checkout__no-payment-methods-notice {
  color: #6e3b32 !important;
  background: #f8eee8 !important;
  border-color: #e4c4b8 !important;
  border-radius: 10px !important;
}

body.woocommerce-checkout .wc-block-components-checkbox label {
  color: var(--sv-ink-soft) !important;
  font-size: 13px !important;
}

body.woocommerce-checkout .wc-block-checkout__terms a {
  color: var(--sv-green) !important;
  font-weight: 700 !important;
  text-decoration: underline !important;
  text-decoration-color: rgba(196, 154, 69, 0.58) !important;
  text-underline-offset: 3px !important;
}

body.woocommerce-checkout .wc-block-checkout__actions,
body.woocommerce-checkout .wc-block-checkout__actions_row {
  font-size: 20px !important;
}

body.woocommerce-checkout .wc-block-components-checkout-place-order-button.wc-block-components-button {
  min-height: 56px !important;
  padding: 16px 24px !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  background: var(--sv-green) !important;
  border: 1px solid var(--sv-green) !important;
  border-radius: 8px !important;
  font-size: 20px !important;
  font-weight: 800 !important;
  letter-spacing: 0.06em !important;
  line-height: 1.2 !important;
  text-transform: uppercase !important;
}

body.woocommerce-checkout .wc-block-components-checkout-place-order-button .wc-block-components-button__text,
body.woocommerce-checkout .wc-block-components-checkout-place-order-button .wc-block-components-checkout-place-order-button__text {
  display: block !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  font-size: 20px !important;
  font-weight: 800 !important;
  letter-spacing: 0.06em !important;
  line-height: 1.2 !important;
  text-transform: uppercase !important;
}

body.woocommerce-checkout .wc-block-components-checkout-place-order-button:hover,
body.woocommerce-checkout .wc-block-components-checkout-place-order-button:focus-visible {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  background: var(--sv-green-deep) !important;
  border-color: var(--sv-green-deep) !important;
  opacity: 1 !important;
}

body.woocommerce-checkout .wp-block-woocommerce-checkout-order-summary-block,
body.woocommerce-checkout .wc-block-components-checkout-order-summary__content {
  padding: 0 !important;
}

body.woocommerce-checkout .wp-block-woocommerce-checkout-order-summary-cart-items-block {
  padding: 0 0 12px !important;
}

body.woocommerce-checkout .wc-block-components-order-summary {
  min-width: 0 !important;
  margin: 0 !important;
  padding: 4px 12px !important;
  background: #fff !important;
  border: 1px solid var(--sv-line) !important;
  border-radius: 12px !important;
}

body.woocommerce-checkout .wc-block-components-order-summary .wc-block-components-order-summary__content {
  display: block !important;
  width: 100% !important;
}

body.woocommerce-checkout .wc-block-components-order-summary-item__image {
  position: relative !important;
  width: 48px !important;
  height: 48px !important;
  overflow: hidden !important;
  background: var(--sv-cream-soft) !important;
  border: 1px solid var(--sv-line) !important;
  border-radius: 8px !important;
}

body.woocommerce-checkout .wc-block-components-order-summary-item__image img {
  width: 48px !important;
  height: 48px !important;
  object-fit: cover !important;
}

body.woocommerce-checkout .wc-block-components-order-summary-item__image:has(img[src*="Handmade-Gift"]) img {
  visibility: hidden !important;
}

body.woocommerce-checkout .wc-block-components-order-summary-item__image:has(img[src*="Handmade-Gift"])::after {
  content: "Image unavailable" !important;
  position: absolute !important;
  inset: 0 !important;
  display: grid !important;
  place-items: center !important;
  color: var(--sv-ink-soft) !important;
  font-size: 9px !important;
  text-align: center !important;
}

body.woocommerce-checkout .wc-block-components-order-summary .wc-block-components-order-summary-item {
  display: grid !important;
  grid-template-columns: 48px minmax(0, 1fr) max-content !important;
  align-items: start !important;
  column-gap: 12px !important;
  row-gap: 0 !important;
  width: 100% !important;
  padding: 12px 0 !important;
  border-bottom: 1px solid var(--sv-line) !important;
}

body.woocommerce-checkout .wc-block-components-order-summary-item:last-child {
  border-bottom: 0 !important;
}

body.woocommerce-checkout .wc-block-components-order-summary-item > .screen-reader-text {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

body.woocommerce-checkout .wc-block-components-order-summary .wc-block-components-order-summary-item__description {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  min-width: 0 !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  text-align: left !important;
  word-break: normal !important;
}

body.woocommerce-checkout .wc-block-components-order-summary .wc-block-components-order-summary-item__description .wc-block-components-product-metadata,
body.woocommerce-checkout .wc-block-components-order-summary .wc-block-components-product-metadata__description,
body.woocommerce-checkout .wc-block-components-order-summary .wc-block-components-order-summary-item__individual-prices,
body.woocommerce-checkout .wc-block-components-order-summary .wc-block-cart-item__prices,
body.woocommerce-checkout .wc-block-components-order-summary-item__description .wc-block-components-product-price {
  display: none !important;
}

body.woocommerce-checkout .wc-block-checkout__sidebar .wc-block-components-product-name {
  display: block !important;
  -webkit-line-clamp: unset !important;
  overflow: visible !important;
  margin: 0 !important;
  padding: 0 !important;
  color: var(--sv-green) !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  line-height: 1.4 !important;
  text-align: left !important;
  white-space: normal !important;
  word-break: normal !important;
  overflow-wrap: break-word !important;
  hyphens: none !important;
}

body.woocommerce-checkout .wc-block-components-order-summary-item__total-price {
  padding: 0 !important;
  text-align: right !important;
  white-space: nowrap !important;
}

body.woocommerce-checkout .wc-block-components-order-summary-item__total-price .wc-block-components-product-price,
body.woocommerce-checkout .wc-block-components-order-summary-item__total-price .wc-block-components-product-price__value {
  color: var(--sv-green) !important;
  font-size: 14px !important;
  font-weight: 750 !important;
  text-decoration: none !important;
}

body.woocommerce-checkout .wc-block-components-product-badge {
  display: inline-block !important;
  margin-top: 4px !important;
  padding: 2px 7px !important;
  color: var(--sv-green) !important;
  background: var(--sv-cream-soft) !important;
  border: 0 !important;
  border-radius: 4px !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;
  white-space: nowrap !important;
}

body.woocommerce-checkout .wc-block-checkout__sidebar .wc-block-components-totals-item {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  justify-content: space-between !important;
  column-gap: 12px !important;
  row-gap: 0 !important;
  width: 100% !important;
  padding: 8px 0 !important;
  text-align: left !important;
}

body.woocommerce-checkout .wc-block-checkout__sidebar .wc-block-components-totals-item__label {
  flex: 1 0 auto !important;
  min-width: min-content !important;
  margin: 0 !important;
  color: var(--sv-ink-soft) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0.02em !important;
  line-height: 1.3 !important;
  text-align: left !important;
  text-transform: none !important;
  white-space: nowrap !important;
}

body.woocommerce-checkout .wc-block-checkout__sidebar .wc-block-components-totals-item__value {
  flex: 0 0 auto !important;
  margin: 0 0 0 auto !important;
  color: var(--sv-green) !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;
  text-align: right !important;
  white-space: nowrap !important;
}

body.woocommerce-checkout .wc-block-checkout__sidebar .wc-block-components-totals-item__description {
  flex: 1 1 100% !important;
  width: 100% !important;
}

body.woocommerce-checkout .wc-block-checkout__sidebar .wc-block-components-totals-item__description:empty {
  display: none !important;
}

body.woocommerce-checkout .wc-block-components-totals-footer-item .wc-block-components-totals-item__label,
body.woocommerce-checkout .wc-block-components-totals-footer-item .wc-block-formatted-money-amount,
body.woocommerce-checkout .wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
  color: var(--sv-green) !important;
  font-size: 16px !important;
  font-weight: 800 !important;
}

body.woocommerce-checkout .wc-block-checkout__terms {
  text-align: left !important;
}

body.woocommerce-checkout .wc-block-checkout__sidebar .wc-block-components-panel__button {
  color: var(--sv-green) !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  text-align: left !important;
}

@media (max-width: 780px) {
  body.woocommerce-checkout #main-content .container {
    width: calc(100% - 28px) !important;
    padding: 28px 0 42px !important;
  }

  body.woocommerce-checkout .entry-title {
    margin-bottom: 18px !important;
    font-size: 34px !important;
  }

  body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout {
    display: block !important;
  }

  body.woocommerce-checkout .wc-block-checkout__main,
  body.woocommerce-checkout .wc-block-checkout__sidebar {
    position: static !important;
    width: 100% !important;
    padding: 18px 16px !important;
    border-radius: 14px !important;
  }

  body.woocommerce-checkout .wc-block-checkout__sidebar {
    margin-top: 14px !important;
  }

  body.woocommerce-checkout .wc-block-components-radio-control__option {
    padding-left: 50px !important;
  }

  body.woocommerce-checkout .wc-block-components-radio-control__label {
    white-space: normal !important;
  }
}
