/* ============================================================
   5. WOOCOMMERCE CORE STYLES
   ============================================================ */
.product-title,
.product_title,
.entry-title,
.ux-menu-title {
  color: var(--primary-green);
}

h3.product-title {
  font-size: 1.15em;
}

.woocommerce-Price-amount.amount {
  font-weight: 600;
}

.product-sku {
  font-size: 12px;
  margin: -10px 0 5px 0;

  display: block;
  text-align: center;
  color: var(--text-muted);
}

.vat-note {
  color: var(--text-muted);
  font-size: 12px;
  margin-top: -10px;
  margin-bottom: 15px;
  font-style: italic;
  text-align: center;
}

.box-text-products .product-title > a {
  font-size: 1em !important;
  padding: 3px 0;
}

.row-small > .col,
.row-small > .flickity-viewport > .flickity-slider > .col {
  margin-bottom: 0;
  padding: 0 6px 12px;
}

.product-main {
  padding: 20px !important;
  max-width: 1400px;
  margin: 30px auto;
}

#product-sidebar {
  padding-top: 50px;
}

.related-products-wrapper {
  margin: 20px 0px;
  padding: 20px;
}

#ship-to-different-address {
  padding: 10px;
}

.woocommerce div.product .woocommerce-tabs {
  padding: 20px 20px 25px;
  margin-top: 20px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
  display: flex;
  gap: 15px;
  border: none;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  border: none !important;
  background: transparent !important;
  margin: 0;
  padding: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
  background: var(--color-surface);
  border: 1px solid var(--primary-green);
  color: var(--primary-green);
  box-shadow: var(--hover-shadow);
}

.woocommerce-Reviews {
  padding: 24px;
}

.woocommerce-Reviews .commentlist li {
  background: var(--bg-light);
  padding: 16px;
  border-radius: var(--border-radius-sm);
  margin-bottom: 12px;
  border: 1px solid var(--border-color);
}

#review_form_wrapper {
  background: var(--bg-light);
  border-radius: var(--border-radius-lg);
  padding: 20px;
  border: 1px solid var(--border-color);
  margin-top: 20px;
}

#review_form .submit {
  background: var(--primary-green);
  color: #fff;
  border-radius: var(--border-radius-sm);
  padding: 8px 20px;
  border: none;
  transition: var(--transition-interactive);
}

#review_form .submit:hover {
  background: var(--primary-green-dark);
}

#shop-sidebar {
  padding: 16px;
  width: 100%;
}

.post-sidebar {
	padding: 16px !important;
	width: 100%;
}

/* ============================================================
   6. PRODUCT GRID & HOMEPAGE
   ============================================================ */

.product-small .product-title {
  margin-bottom: 5px;
  line-height: 1.4;
}

.product-small .product-title a {
  color: var(--primary-green);
  font-weight: 600;
  font-size: 14.5px !important;
  transition: var(--transition-colors);
}

.product-small .product-title a:hover {
  color: var(--primary-pink);
}

.product-small .product-sku {
  margin: -5px 0px;
  font-size: 12px;
  color: var(--text-muted);
}

.product-small .price {
  display: flex;
  flex-wrap: wrap;

  justify-content: center;

  align-items: center;
  column-gap: 8px;

  row-gap: 4px;

  margin-bottom: 0;
  line-height: 1.2;
}

.product-small .price del {
  display: inline-block;
  color: var(--text-muted);
  font-size: 11.5px;

  opacity: 0.8;
}

.product-small .price del span.amount {
  color: inherit;
  font-weight: 600;
}

.product-small .price ins {
  display: inline-block;
  color: var(--primary-pink);
  text-decoration: none;
  font-size: 14px;

  font-weight: 600;
}

.product-small .price ins span.amount {
  color: inherit;
}

.product-small .price > span.amount {
  color: var(--text-main);
  font-size: 14px;
  font-weight: 600;
}

.product-small.box {
  transition: var(--transition-interactive);
  border: 1px solid var(--border-color);

  border-radius: var(--border-radius-lg);
  background-color: var(--color-surface);
}

.product-small.box:hover {
  border-color: var(--primary-green);

  box-shadow: var(--main-shadow);

  transform: translateY(-8px);

  z-index: 10;

}

.product-small.box .box-image {
  border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;

  overflow: hidden;
}

.product-small.box .box-text {
  padding: 15px 10px !important;
  text-align: center;
}

.icon-box,
.th-box {
  background-color: var(--color-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);

  padding: 20px 15px !important;
  box-shadow: var(--main-shadow);

  transition: var(--transition-interactive);
  height: 100%;

}

.icon-box:hover {
  transform: translateY(-6px);
  border-color: var(--primary-green);
  box-shadow: var(--hover-shadow);
}

.icon-box h3 {
  font-size: 14.5px !important;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--primary-green-dark);
}

.icon-box p {
  font-size: 13px !important;
  color: var(--text-muted);
  margin-bottom: 0;
}

.product-category .box-image {
  border-radius: var(--radius-round);

  overflow: hidden;

  box-shadow: var(--main-shadow);
  transition: var(--transition-interactive);

  background: var(--color-surface);
}

.product-category .box {
  background: transparent;
  border: none;
  box-shadow: none;
}

.product-category .box:hover .box-image {
  transform: translateY(-5px) scale(1.05);
  box-shadow: var(--hover-shadow);
}

.product-category .box-text {
  padding-top: 18px;
  background: transparent;
}

.product-category .box-text .woocommerce-loop-category__title {
  font-family: var(--font-main);
  font-size: 13.5px !important;
  font-weight: 600;
  color: var(--primary-green-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-category .box-text mark.count {
  display: none;
}

.section-title {
  margin-bottom: 15px;
  position: relative;
  text-align: center;

  justify-content: center;

  width: 100%;

}

.section-title span,
.section-title h3 {
  font-family: var(--font-main);
  font-size: 26px !important;

  font-weight: 600;
  color: var(--primary-green-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  display: inline-block;
  padding-bottom: 12px;

}

.section-title span::after,
.section-title h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;

  height: 4px;

  background: linear-gradient(
    to right,
    var(--primary-green),
    var(--primary-pink)
  );
  border-radius: var(--border-radius-pill);
}

.section-title b {
  display: none;
}
