.buzi-store-products,
.buzi-store-products--single {
  --buzi-store-columns: 4;
  --buzi-store-card-radius: 12px;
  display: grid;
  grid-template-columns: repeat(var(--buzi-store-columns), minmax(0, 1fr));
  gap: 28px;
}

.buzi-store-products-section {
  display: grid;
  gap: 28px;
}

.buzi-store-products-section--archive {
  gap: 22px;
}

.buzi-store-products__header {
  margin: 0;
}

.buzi-store-products-section--archive .buzi-store-products__header {
  margin-bottom: 2px;
}

.buzi-store-products__heading {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.22em;
  margin: 0;
  font-family: var(--meili-font-heading);
  font-size: 35px;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #101114;
}

.buzi-store-products__heading-accent {
  color: var(--meili-accent);
}

.buzi-store-products-section--archive .buzi-store-products__heading {
  letter-spacing: -0.03em;
}

.buzi-store-products--single {
  --buzi-store-columns: 1;
  max-width: 320px;
}

.buzi-store-categories {
  --buzi-store-category-columns: 4;
  --buzi-store-card-radius: 12px;
  display: grid;
  grid-template-columns: repeat(var(--buzi-store-category-columns), minmax(0, 1fr));
  gap: 28px;
}

.buzi-store-categories__card {
  min-width: 0;
}

.buzi-store-categories__card-link {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
  border: 1px solid var(--meili-border);
  border-radius: var(--buzi-store-card-radius);
  background: var(--meili-surface);
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.buzi-store-categories__card-link:hover,
.buzi-store-categories__card-link:focus-visible {
  border-color: var(--meili-accent);
  box-shadow: 0 10px 28px rgba(17, 17, 20, 0.08);
  transform: translateY(-1px);
  outline: none;
}

.buzi-store-categories__card-media {
  aspect-ratio: 1 / 1;
  background: linear-gradient(180deg, var(--meili-surface), var(--meili-soft));
  display: grid;
  place-items: center;
  padding: 16px;
  overflow: hidden;
}

.buzi-store-categories__card-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.buzi-store-categories__card-image--placeholder {
  background: var(--meili-soft);
  border-radius: 10px;
}

.buzi-store-categories__card-body {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 16px 16px 18px;
}

.buzi-store-categories__card-title {
  margin: 0;
  color: var(--meili-text);
  font: 600 1rem/1.35 var(--meili-font-body);
}

.buzi-store-categories__card-count {
  color: var(--meili-muted);
  font: 600 0.75rem/1.2 var(--meili-font-body);
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.buzi-store-categories__card-description {
  margin: 0;
  color: var(--meili-muted);
  font-size: 0.84rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-height: 4.2em;
}

.buzi-store-products__empty {
  padding: 18px 20px;
  border: 1px solid #dfe3ea;
  border-radius: 20px;
  background: #fff;
  color: #555b67;
}

.buzi-store-products__consent {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border: 1px solid #dfe3ea;
  border-radius: 18px;
  background: #fff;
}

.buzi-store-products__consent.is-popup {
  width: min(720px, 100%);
  margin: 0;
  border-radius: 24px;
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.24);
}

.buzi-store-products__consent-overlay {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 24px;
  background: rgba(15, 23, 42, 0.28);
}

.buzi-store-products__consent-copy {
  display: grid;
  gap: 4px;
  color: #525866;
  font-size: 0.95rem;
}

.buzi-store-products__consent-copy strong {
  color: #111827;
  font-size: 1rem;
}

.buzi-store-products__consent-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.buzi-store-products__consent-btn {
  appearance: none;
  border: 1px solid #dfe3ea;
  border-radius: 999px;
  background: #fff;
  color: #111827;
  min-height: 42px;
  padding: 0 16px;
  font: 700 0.92rem/1 var(--meili-font-body);
  cursor: pointer;
}

.buzi-store-products__consent-btn--accept {
  border-color: var(--meili-accent);
  background: var(--meili-accent);
  color: #fff;
}

.buzi-store-products__consent.is-submitted {
  opacity: 0.6;
  pointer-events: none;
}

.buzi-store-products__pagination {
  margin-top: 4px;
}

.buzi-store-products__pagination--scroll {
  display: grid;
  gap: 10px;
  justify-items: center;
}

.buzi-store-products__scroll-status {
  color: #6b7280;
  font-size: 0.94rem;
  text-align: center;
}

.buzi-store-products__load-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #fff;
  color: #111827;
  text-decoration: none;
  font-weight: 700;
}

.buzi-store-products__scroll-sentinel {
  width: 100%;
  height: 1px;
}

.buzi-store-products__pagination--scroll.is-loading .buzi-store-products__load-more {
  opacity: 0.65;
  pointer-events: none;
}

.buzi-store-products__pagination--scroll.is-complete .buzi-store-products__load-more {
  display: none;
}

.buzi-store-products__pagination noscript .page-numbers,
.buzi-store-products__pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  margin-right: 8px;
  margin-bottom: 8px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #fff;
  color: #111827;
  text-decoration: none;
  font-weight: 600;
}

.buzi-store-products__pagination noscript .page-numbers.current,
.buzi-store-products__pagination .page-numbers.current {
  border-color: var(--meili-accent);
  background: var(--meili-accent);
  color: #fff;
}

.buzi-store-products .meili-wp-prefixed-search__card,
.buzi-store-products--single .meili-wp-prefixed-search__card {
  width: 100%;
  min-width: 0;
  max-width: none;
}

.buzi-store-products .meili-wp-prefixed-search__card-shell,
.buzi-store-products--single .meili-wp-prefixed-search__card-shell {
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: 100%;
  border: 1px solid var(--meili-border);
  border-radius: var(--buzi-store-card-radius);
  background: var(--meili-surface);
  overflow: hidden;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.buzi-store-products-section--archive .buzi-store-products .meili-wp-prefixed-search__card-shell {
  box-shadow: 0 3px 14px rgba(15, 23, 42, 0.03);
}

.buzi-store-products .meili-wp-prefixed-search__card-link,
.buzi-store-products--single .meili-wp-prefixed-search__card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.buzi-store-products .meili-wp-prefixed-search__card-shell:hover,
.buzi-store-products .meili-wp-prefixed-search__card-shell:focus-within,
.buzi-store-products--single .meili-wp-prefixed-search__card-shell:hover,
.buzi-store-products--single .meili-wp-prefixed-search__card-shell:focus-within {
  border-color: var(--meili-accent);
  box-shadow: 0 10px 28px rgba(17, 17, 20, 0.08);
  transform: translateY(-1px);
}

.buzi-store-products .meili-wp-prefixed-search__card-media,
.buzi-store-products--single .meili-wp-prefixed-search__card-media {
  position: relative;
  aspect-ratio: 1 / 1;
  background: linear-gradient(180deg, var(--meili-surface), var(--meili-soft));
  display: grid;
  place-items: center;
  padding: 14px;
  overflow: hidden;
}

.buzi-store-featured-ribbon {
  position: absolute;
  top: 16px;
  right: -42px;
  z-index: 8;
  display: block;
  width: 160px;
  padding: 9px 0;
  transform: rotate(45deg);
  transform-origin: center;
  background: #cf2323;
  box-shadow: 0 10px 24px rgba(207, 35, 35, 0.28);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  pointer-events: none;
}

.buzi-store-products-section--archive .buzi-store-products .meili-wp-prefixed-search__card-media {
  padding: 18px;
}

.buzi-store-products .meili-wp-prefixed-search__card-image,
.buzi-store-products--single .meili-wp-prefixed-search__card-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.buzi-store-products .meili-wp-prefixed-search__card-image--placeholder,
.buzi-store-products--single .meili-wp-prefixed-search__card-image--placeholder {
  background: var(--meili-soft);
  border-radius: 10px;
}

.buzi-store-products .meili-wp-prefixed-search__card-body,
.buzi-store-products--single .meili-wp-prefixed-search__card-body {
  display: grid;
  gap: 8px;
  padding: 14px 14px 12px;
}

.buzi-store-products-section--archive .buzi-store-products .meili-wp-prefixed-search__card-body {
  gap: 10px;
  padding: 18px 18px 14px;
}

.buzi-store-products .meili-wp-prefixed-search__card-title,
.buzi-store-products--single .meili-wp-prefixed-search__card-title {
  margin: 0;
  font: 600 0.98rem/1.35 var(--meili-font-body);
  color: var(--meili-text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.buzi-store-products-section--archive .buzi-store-products .meili-wp-prefixed-search__card-title {
  min-height: calc(1.35em * 2);
  font-size: 1rem;
}

.buzi-store-products .meili-wp-prefixed-search__card-sku,
.buzi-store-products--single .meili-wp-prefixed-search__card-sku {
  margin: 0;
  color: var(--meili-muted);
  font: 600 0.7rem/1.2 var(--meili-font-body);
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.buzi-store-products-section--archive .buzi-store-products .meili-wp-prefixed-search__card-sku {
  font-size: 0.74rem;
}

.buzi-store-products .meili-wp-prefixed-search__card-excerpt,
.buzi-store-products--single .meili-wp-prefixed-search__card-excerpt {
  margin: 0;
  color: var(--meili-muted);
  font-size: 0.84rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-height: 2.8em;
}

.buzi-store-products-section--archive .buzi-store-products .meili-wp-prefixed-search__card-excerpt {
  -webkit-line-clamp: 3;
  max-height: 4.2em;
}

.buzi-store-products .meili-wp-prefixed-search__card-footer,
.buzi-store-products--single .meili-wp-prefixed-search__card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 0 14px 14px;
}

.buzi-store-products-section--archive .buzi-store-products .meili-wp-prefixed-search__card-footer {
  padding: 0 18px 18px;
}

.buzi-store-products .meili-wp-prefixed-search__card-meta,
.buzi-store-products--single .meili-wp-prefixed-search__card-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  min-width: 0;
}

.buzi-store-products .meili-wp-prefixed-search__card-price,
.buzi-store-products--single .meili-wp-prefixed-search__card-price {
  font: 700 0.98rem/1.2 var(--meili-font-heading);
  color: var(--meili-text);
}

.buzi-store-products .meili-wp-prefixed-search__card-price ins,
.buzi-store-products .meili-wp-prefixed-search__card-price bdi,
.buzi-store-products--single .meili-wp-prefixed-search__card-price ins,
.buzi-store-products--single .meili-wp-prefixed-search__card-price bdi {
  text-decoration: none;
}

.buzi-store-products .meili-wp-prefixed-search__card-actions,
.buzi-store-products--single .meili-wp-prefixed-search__card-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex: 0 0 auto;
}

.buzi-store-products .meili-wp-prefixed-search__card-cart,
.buzi-store-products--single .meili-wp-prefixed-search__card-cart {
  width: 44px;
  min-width: 44px;
  height: 44px;
  min-height: 44px;
  border-radius: 10px;
  background: var(--meili-accent);
  color: #fff;
  display: grid;
  place-items: center;
  text-decoration: none;
  line-height: 0;
  box-shadow: 0 10px 22px rgba(224, 49, 49, 0.18);
  flex: 0 0 44px;
  transition: transform 0.18s ease, filter 0.18s ease, opacity 0.18s ease;
}

.buzi-store-products .meili-wp-prefixed-search__card-action,
.buzi-store-products--single .meili-wp-prefixed-search__card-action {
  width: 44px;
  min-width: 44px;
  height: 44px;
  min-height: 44px;
  border-radius: 10px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #fff;
  color: #6b7280;
  display: grid;
  place-items: center;
  text-decoration: none;
  line-height: 0;
  flex: 0 0 44px;
  transition: transform 0.18s ease, filter 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, color 0.18s ease, background 0.18s ease;
}

.buzi-store-products .meili-wp-prefixed-search__card-action--whatsapp,
.buzi-store-products--single .meili-wp-prefixed-search__card-action--whatsapp {
  color: #22c55e;
}

.buzi-store-products .meili-wp-prefixed-search__card-action--wishlist:hover,
.buzi-store-products .meili-wp-prefixed-search__card-action--wishlist:focus-visible,
.buzi-store-products--single .meili-wp-prefixed-search__card-action--wishlist:hover,
.buzi-store-products--single .meili-wp-prefixed-search__card-action--wishlist:focus-visible {
  color: var(--meili-accent);
}

.buzi-store-products .meili-wp-prefixed-search__card-cart:hover,
.buzi-store-products .meili-wp-prefixed-search__card-cart:focus-visible,
.buzi-store-products .meili-wp-prefixed-search__card-action:hover,
.buzi-store-products .meili-wp-prefixed-search__card-action:focus-visible,
.buzi-store-products--single .meili-wp-prefixed-search__card-cart:hover,
.buzi-store-products--single .meili-wp-prefixed-search__card-cart:focus-visible,
.buzi-store-products--single .meili-wp-prefixed-search__card-action:hover,
.buzi-store-products--single .meili-wp-prefixed-search__card-action:focus-visible {
  filter: brightness(0.96);
  transform: translateY(-1px);
  outline: none;
}

.buzi-store-products .meili-wp-prefixed-search__card-cart.is-loading,
.buzi-store-products--single .meili-wp-prefixed-search__card-cart.is-loading {
  opacity: 0.72;
  pointer-events: none;
}

.buzi-store-products .meili-wp-prefixed-search__card-cart.is-added,
.buzi-store-products--single .meili-wp-prefixed-search__card-cart.is-added {
  transform: scale(1.06);
}

.buzi-store-products .meili-wp-prefixed-search__card-cart svg,
.buzi-store-products--single .meili-wp-prefixed-search__card-cart svg {
  width: 22px;
  height: 22px;
}

.buzi-store-products .meili-wp-prefixed-search__card-cart i,
.buzi-store-products--single .meili-wp-prefixed-search__card-cart i {
  font-size: 20px;
  line-height: 1;
}

.buzi-store-products .meili-wp-prefixed-search__card-action svg,
.buzi-store-products--single .meili-wp-prefixed-search__card-action svg {
  width: 22px;
  height: 22px;
}

.buzi-store-products .meili-wp-prefixed-search__card.is-out-of-stock .meili-wp-prefixed-search__card-cart,
.buzi-store-products--single .meili-wp-prefixed-search__card.is-out-of-stock .meili-wp-prefixed-search__card-cart {
  opacity: 0.65;
}

.buzi-store-products--style-marketplace {
  gap: 32px;
}

.buzi-store-products--style-marketplace .meili-wp-prefixed-search__card {
  position: relative;
}

.buzi-store-products--style-marketplace .meili-wp-prefixed-search__card-shell {
  position: relative;
  z-index: 0;
  grid-template-rows: auto auto;
  border: 5px solid #fff;
  border-radius: 1px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.buzi-store-products--style-marketplace .meili-wp-prefixed-search__card-shell::before {
  content: none;
}

.buzi-store-products--style-marketplace .meili-wp-prefixed-search__card-shell:hover,
.buzi-store-products--style-marketplace .meili-wp-prefixed-search__card-shell:focus-within {
  border: 5px solid #fff;
  border-radius: 1px;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
  transform: none;
}

.buzi-store-products--style-marketplace .meili-wp-prefixed-search__card-link {
  display: block;
}

.buzi-store-products--style-marketplace .meili-wp-prefixed-search__card-media {
  position: relative;
  display: block;
  aspect-ratio: auto;
  padding: 0;
  border-radius: 1px;
  border: 1px solid rgba(15, 23, 42, 0.07);
  background: #fff;
  overflow: hidden;
}

.buzi-store-products--style-marketplace .meili-wp-prefixed-search__card-media::before {
  content: "";
  display: block;
  padding-bottom: 100%;
}

.buzi-store-products--style-marketplace .meili-wp-prefixed-search__card-image,
.buzi-store-products--style-marketplace .meili-wp-prefixed-search__card-image--placeholder {
  position: absolute;
  inset: 12px;
  width: calc(100% - 24px);
  height: calc(100% - 24px);
  object-fit: contain;
  transition: transform 0.22s ease;
}

.buzi-store-products--style-marketplace .meili-wp-prefixed-search__card-image--placeholder {
  border-radius: 1px;
  background: #f6f6f6;
}

.buzi-store-products--style-marketplace .meili-wp-prefixed-search__card-shell:hover .meili-wp-prefixed-search__card-image,
.buzi-store-products--style-marketplace .meili-wp-prefixed-search__card-shell:focus-within .meili-wp-prefixed-search__card-image {
  transform: none;
}

.buzi-store-products--style-marketplace .meili-wp-prefixed-search__card-body {
  padding: 8px 0 0;
  gap: 4px;
}

.buzi-store-products--style-marketplace .meili-wp-prefixed-search__card-title {
  min-height: 0;
  font: 500 0.98rem/1.35 var(--meili-font-body);
  color: #3a3a3a;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.buzi-store-products--style-marketplace .meili-wp-prefixed-search__card-sku,
.buzi-store-products--style-marketplace .meili-wp-prefixed-search__card-excerpt {
  display: none;
}

.buzi-store-products--style-marketplace .meili-wp-prefixed-search__card-footer {
  display: grid;
  gap: 8px;
  padding: 4px 0 0;
  width: 100%;
  min-width: 0;
  align-items: start;
  transition: transform 0.22s ease;
}

.buzi-store-products--style-marketplace .buzi-store-marketplace__topline {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 12px;
  width: 100% !important;
  min-width: 0 !important;
}

.buzi-store-products--style-marketplace .buzi-store-marketplace__price-block {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1 1 auto;
  min-width: 0;
}

.buzi-store-products--style-marketplace .buzi-store-marketplace__price {
  color: var(--meili-accent);
  font: 800 1.18rem/1 var(--meili-font-heading);
}

.buzi-store-products--style-marketplace .meili-wp-prefixed-search__card-actions--marketplace {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 6px !important;
  position: static !important;
  margin: 0 0 0 auto !important;
  flex: 0 0 auto;
  transition: transform 0.22s ease;
}

.buzi-store-products--style-marketplace .meili-wp-prefixed-search__card-shell:hover .meili-wp-prefixed-search__card-footer,
.buzi-store-products--style-marketplace .meili-wp-prefixed-search__card-shell:focus-within .meili-wp-prefixed-search__card-footer {
  transform: none;
}

.buzi-store-products--style-marketplace .meili-wp-prefixed-search__card-actions--marketplace a {
  width: 32px;
  min-width: 32px;
  height: 32px;
  min-height: 32px;
  padding: 0;
  border-radius: 1px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #fff;
  color: #6b7280;
  box-shadow: none !important;
  box-sizing: border-box;
  flex: 0 0 32px;
}

.buzi-store-products--style-marketplace .meili-wp-prefixed-search__card-actions--marketplace .meili-wp-prefixed-search__card-cart {
  border-color: var(--meili-accent);
  background: var(--meili-accent);
  color: #fff;
  box-shadow: none !important;
}

.buzi-store-products--style-marketplace .meili-wp-prefixed-search__card-actions--marketplace .meili-wp-prefixed-search__card-action--whatsapp {
  color: #22c55e;
}

.buzi-store-products--style-marketplace .meili-wp-prefixed-search__card-actions--marketplace .meili-wp-prefixed-search__card-action--whatsapp svg {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}

.buzi-store-products--style-marketplace .meili-wp-prefixed-search__card-actions--marketplace a:hover,
.buzi-store-products--style-marketplace .meili-wp-prefixed-search__card-actions--marketplace a:focus-visible {
  border-radius: 1px !important;
  transform: none;
  filter: brightness(0.99);
}

.buzi-store-products--style-marketplace .meili-wp-prefixed-search__card-actions--marketplace .meili-wp-prefixed-search__card-cart:hover,
.buzi-store-products--style-marketplace .meili-wp-prefixed-search__card-actions--marketplace .meili-wp-prefixed-search__card-cart:focus-visible {
  filter: brightness(0.97);
}

.buzi-store-products--style-marketplace .meili-wp-prefixed-search__card-actions--marketplace svg,
.buzi-store-products--style-marketplace .meili-wp-prefixed-search__card-actions--marketplace i {
  width: 14px;
  height: 14px;
  font-size: 14px;
  line-height: 1;
  color: currentColor;
}

.buzi-store-products--style-marketplace .buzi-store-marketplace__rrp {
  color: #757575;
  font-size: 0.84rem;
  line-height: 1.25;
}

.buzi-store-products--style-marketplace .buzi-store-marketplace__deal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.buzi-store-products--style-marketplace .buzi-store-marketplace__deal-badge,
.buzi-store-products--style-marketplace .buzi-store-marketplace__deal-timer {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 10px;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1;
}

.buzi-store-products--style-marketplace .buzi-store-marketplace__deal-badge {
  background: var(--meili-accent);
  color: #fff;
}

.buzi-store-products--style-marketplace .buzi-store-marketplace__deal-timer {
  border: 1px solid var(--meili-accent);
  color: var(--meili-accent);
  background: #fff;
}

.buzi-store-products--style-marketplace .buzi-store-marketplace__category {
  color: var(--meili-accent);
  font-size: 0.84rem;
  line-height: 1.3;
}

.buzi-store-products--style-marketplace .buzi-store-marketplace__rating {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #111827;
  font-size: 0.84rem;
  line-height: 1.2;
}

.buzi-store-products--style-marketplace .buzi-store-marketplace__stars {
  letter-spacing: 0.08em;
  color: #111827;
  font-size: 0.92rem;
}

.buzi-store-products--style-marketplace .buzi-store-marketplace__rating-count {
  color: #5f6368;
}

body.single-product .product.type-product.buzi-single-product-layout {
  color: var(--buzi-single-text);
}

body.single-product .product.type-product.buzi-single-product-layout {
  display: grid;
  gap: 0;
}

body.single-product.buzi-single-product-showcase-active #content.site-content {
  overflow: visible;
}

body.single-product.buzi-single-product-showcase-active #content.site-content > .container {
  width: min(100%, 1720px);
  max-width: 1720px;
  margin-right: auto;
  margin-left: auto;
  padding-right: clamp(18px, 2.5vw, 36px);
  padding-left: clamp(18px, 2.5vw, 36px);
}

body.single-product.buzi-single-product-showcase-active #content.site-content > .container > .site-content-inner {
  display: block;
  width: 100%;
  margin-top: clamp(18px, 2vw, 30px);
  margin-bottom: clamp(32px, 4vw, 56px);
}

body.single-product.buzi-single-product-showcase-active #primary.content-area,
body.single-product.buzi-single-product-showcase-active #main.site-main {
  width: 100%;
  max-width: none;
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__header {
  margin: 0 0 18px;
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__breadcrumbs {
  margin: 0 0 18px;
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__breadcrumbs .woocommerce-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #8b94a5;
  font-size: 0.94rem;
  line-height: 1.45;
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__breadcrumbs a {
  color: #5f6878;
  text-decoration: none;
}

body.single-product .product.type-product.buzi-single-product-layout .product_title.entry-title {
  margin: 0;
  color: var(--buzi-single-text);
  font-family: var(--buzi-single-heading);
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -0.045em;
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__header-meta {
  margin-top: 0;
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__meta-inline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  color: #4c5565;
  font-size: 0.94rem;
  line-height: 1.4;
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(231, 235, 240, 0.94);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  font-weight: 700;
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__meta-item:not(:last-child)::after {
  content: none;
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__meta-item--status.is-in-stock {
  border-color: rgba(22, 163, 74, 0.18);
  background: #f1fff5;
  color: #166534;
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__meta-item--status.is-out-of-stock {
  border-color: rgba(239, 68, 68, 0.18);
  background: #fff4f4;
  color: #b42318;
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__meta-item--brand {
  border-color: rgba(239, 59, 53, 0.16);
  background: #fff6f5;
  color: var(--buzi-single-accent);
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__meta-item--rating {
  color: #111827;
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__meta-stars {
  color: #f59e0b;
  letter-spacing: 0.08em;
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__meta-count {
  color: #7a8392;
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(380px, 520px);
  gap: clamp(24px, 3vw, 44px);
  align-items: start;
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__media,
body.single-product .product.type-product.buzi-single-product-layout .summary.entry-summary {
  min-width: 0;
  width: 100%;
}

body.single-product.buzi-single-product-showcase-active .product.type-product.buzi-single-product-layout .buzi-single-product__media,
body.single-product.buzi-single-product-showcase-active .product.type-product.buzi-single-product-layout .summary.entry-summary {
  padding-right: 0;
  padding-left: 0;
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__media .buzi-single-product__gallery-shell {
  min-width: 0;
  width: 100%;
  position: sticky;
  top: 24px;
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__gallery {
  display: flex;
  gap: 18px;
  align-items: start;
  width: 100%;
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__thumbs {
  display: grid;
  gap: 12px;
  width: 84px;
  min-width: 84px;
  flex: 0 0 84px;
  align-self: start;
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__thumb {
  display: block;
  width: 100%;
  padding: 4px;
  border: 1px solid var(--buzi-single-border);
  border-radius: 20px;
  background: #fff;
  box-shadow: none;
  cursor: pointer;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__thumb:hover,
body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__thumb:focus-visible,
body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__thumb.is-active {
  border-color: rgba(239, 59, 53, 0.42);
  box-shadow: 0 14px 28px rgba(239, 59, 53, 0.14);
  transform: translateY(-1px);
  outline: none;
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__thumb-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 14px;
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__stage-shell {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  width: 100%;
  padding: 18px;
  border: 1px solid var(--buzi-single-border);
  border-radius: 30px;
  background: var(--buzi-single-surface);
  box-shadow: var(--buzi-single-shadow);
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__stage-nav,
body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__lightbox-nav,
body.single-product .buzi-single-product__lightbox-nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: #111827;
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.14);
  transform: translateY(-50%);
  transition: transform 0.14s ease, box-shadow 0.14s ease, background-color 0.14s ease;
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__stage-nav:hover,
body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__stage-nav:focus-visible,
body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__lightbox-nav:hover,
body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__lightbox-nav:focus-visible,
body.single-product .buzi-single-product__lightbox-nav:hover,
body.single-product .buzi-single-product__lightbox-nav:focus-visible {
  transform: translateY(calc(-50% - 2px));
  background: #fff;
  box-shadow: 0 22px 40px rgba(15, 23, 42, 0.18);
  outline: none;
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__stage-nav--prev,
body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__lightbox-nav--prev,
body.single-product .buzi-single-product__lightbox-nav--prev {
  left: 28px;
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__stage-nav--next,
body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__lightbox-nav--next,
body.single-product .buzi-single-product__lightbox-nav--next {
  right: 28px;
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__stage-badge {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--buzi-single-accent);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 800;
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__stage {
  display: grid;
  gap: 12px;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  text-decoration: none;
  cursor: zoom-in;
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__stage-media {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 0;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__stage-image {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(76vh, 760px);
  object-fit: contain;
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__stage-zoom {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 8px;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: #1f2937;
  font-size: 0.84rem;
  font-weight: 800;
  box-shadow: 0 12px 22px rgba(15, 23, 42, 0.08);
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__stage-zoom i {
  color: var(--buzi-single-accent);
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__lightbox,
body.single-product .buzi-single-product__lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000000;
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__lightbox[hidden],
body.single-product .buzi-single-product__lightbox[hidden] {
  display: none !important;
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__lightbox-backdrop,
body.single-product .buzi-single-product__lightbox-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(15, 23, 42, 0.82);
  cursor: zoom-out;
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__lightbox-dialog,
body.single-product .buzi-single-product__lightbox-dialog {
  position: relative;
  display: grid;
  place-items: center;
  width: min(96vw, 1360px);
  max-height: 92vh;
  margin: 4vh auto;
  padding: 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 32px 80px rgba(15, 23, 42, 0.34);
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__lightbox-close,
body.single-product .buzi-single-product__lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  background: #111827;
  color: #fff;
  box-shadow: 0 16px 28px rgba(15, 23, 42, 0.18);
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__lightbox-image,
body.single-product .buzi-single-product__lightbox-image {
  display: block;
  max-width: 100%;
  max-height: calc(92vh - 48px);
  margin: 0 auto;
  width: auto;
  height: auto;
  object-fit: contain;
}

body.buzi-gallery-lightbox-open {
  overflow: hidden;
}

body.single-product .product.type-product.buzi-single-product-layout .summary.entry-summary {
  position: sticky;
  top: 24px;
  width: 100%;
  max-width: 560px;
  justify-self: end;
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__summary-shell {
  display: grid;
  gap: 20px;
  padding: 30px;
  border: 1px solid var(--buzi-single-border);
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(239, 59, 53, 0.08), transparent 19rem),
    linear-gradient(180deg, #fff9f8 0%, #ffffff 100%);
  box-shadow: var(--buzi-single-shadow);
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__feature-grid {
  order: 2;
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__feature-grid--after-layout {
  margin-top: clamp(24px, 3vw, 36px);
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__summary-stack {
  order: 1;
  display: grid;
  gap: 20px;
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__summary-intro {
  display: grid;
  gap: 14px;
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__summary-title {
  font-size: clamp(2rem, 3.2vw, 2.95rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__summary-lead {
  margin: 0;
  color: #4f5868;
  font-size: 0.98rem;
  line-height: 1.72;
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__offer-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__offer-chip {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: #fff4f3;
  color: #8b2530;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1;
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__offer-chip--primary,
body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__offer-chip--accent {
  background: var(--buzi-single-accent);
  color: #fff;
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__offer-chip--outline {
  border: 1px solid rgba(239, 59, 53, 0.18);
  background: #fff;
  color: var(--buzi-single-accent);
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__feature-grid .buzi-single-product__features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__feature-grid--after-layout .buzi-single-product__features {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__feature-grid .buzi-single-product__feature-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-height: 100%;
  padding: 14px 16px;
  border: 1px solid var(--buzi-single-border);
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff, #fafbfd);
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__feature-grid .buzi-single-product__feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(239, 59, 53, 0.1);
  color: var(--buzi-single-accent);
  display: grid;
  place-items: center;
  flex: 0 0 42px;
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__feature-grid .buzi-single-product__feature-body {
  min-width: 0;
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__feature-grid .buzi-single-product__feature-heading {
  margin: 0 0 4px;
  color: var(--buzi-single-text);
  font: 700 0.96rem/1.2 var(--buzi-single-body);
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__feature-grid .buzi-single-product__feature-text {
  color: var(--buzi-single-muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__price-card {
  display: grid;
  gap: 12px;
  padding: 18px 20px;
  border: 1px solid rgba(239, 59, 53, 0.16);
  border-radius: 24px;
  background: linear-gradient(180deg, #fff7f6 0%, #ffffff 100%);
  color: #4b5563;
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__price-copy {
  display: grid;
  gap: 6px;
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__price-label {
  color: #6b7280;
  font-size: 0.94rem;
  font-weight: 700;
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__price-value .price {
  margin: 0;
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__price-card .woocommerce-Price-amount {
  color: var(--buzi-single-accent);
  font-family: var(--buzi-single-heading);
  font-size: clamp(2.25rem, 4vw, 3.4rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.05em;
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__price-card .woocommerce-Price-currencySymbol {
  font-size: 0.8em;
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__price-note {
  color: #697280;
  font-size: 0.92rem;
  line-height: 1.4;
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__price-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__delivery {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid #d9f3dd;
  border-radius: 22px;
  background: linear-gradient(180deg, #f3fff5 0%, #ffffff 100%);
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__delivery-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: #16a34a;
  color: #fff;
  display: grid;
  place-items: center;
  flex: 0 0 42px;
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__delivery-copy {
  display: grid;
  gap: 4px;
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__delivery-copy strong {
  color: #166534;
  font-size: 0.98rem;
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__delivery-copy span {
  color: #3f4c5e;
  font-size: 0.9rem;
  line-height: 1.5;
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__purchase-box {
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(231, 235, 240, 0.94);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, #fffaf9 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    0 14px 34px rgba(15, 23, 42, 0.05);
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__buy-box-heading {
  color: #111827;
  font: 800 1rem/1.2 var(--buzi-single-body);
  letter-spacing: -0.02em;
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__purchase-box form.cart {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: stretch;
  margin: 0;
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__purchase-box form.cart .additional-info,
body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__purchase-box form.cart .single-product-whislist-compare:empty {
  display: none !important;
}

body.single-product .product.type-product.product-type-simple.buzi-single-product-layout .buzi-single-product__purchase-box form.cart {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.single-product .product.type-product.product-type-simple.buzi-single-product-layout .buzi-single-product__purchase-box form.cart > .stock,
body.single-product .product.type-product.product-type-simple.buzi-single-product-layout .buzi-single-product__purchase-box form.cart > .buzi-single-product__quick-actions {
  grid-column: 1 / -1;
}

body.single-product .product.type-product.product-type-simple.buzi-single-product-layout .buzi-single-product__purchase-box form.cart > .stock {
  order: 10;
}

body.single-product .product.type-product.product-type-simple.buzi-single-product-layout .buzi-single-product__purchase-box form.cart > .buzi-single-product__quick-actions {
  order: 20;
}

body.single-product .product.type-product.product-type-simple.buzi-single-product-layout .buzi-single-product__purchase-box form.cart > .quantity,
body.single-product .product.type-product.product-type-simple.buzi-single-product-layout .buzi-single-product__purchase-box form.cart > .single-product-whislist-compare,
body.single-product .product.type-product.product-type-simple.buzi-single-product-layout .buzi-single-product__purchase-box form.cart > .additional-info {
  display: none !important;
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__purchase-box .stock {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 58px;
  margin: 0;
  padding: 10px 16px;
  border: 1px solid rgba(239, 59, 53, 0.2);
  border-radius: 20px;
  background: linear-gradient(180deg, #fff7f6 0%, #fff1f0 100%);
  color: #c81e1e;
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__purchase-box .stock::before {
  content: "\f095";
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: #fff;
  color: var(--buzi-single-accent);
  font-family: "Font Awesome 5 Free";
  font-size: 0.95rem;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(239, 59, 53, 0.12);
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__purchase-box .stock.out-of-stock {
  border-color: rgba(17, 24, 39, 0.1);
  background: linear-gradient(180deg, #1f2937 0%, #111827 100%);
  color: #fff;
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__purchase-box .stock.out-of-stock::before {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  box-shadow: none;
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__purchase-box form.cart table.variations {
  width: 100%;
  margin: 0;
  border: 0;
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__purchase-box form.cart table.variations th,
body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__purchase-box form.cart table.variations td {
  padding: 0 0 12px;
  border: 0;
  background: transparent;
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__purchase-box form.cart table.variations th {
  width: 100%;
  display: block;
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__purchase-box form.cart table.variations td {
  display: block;
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__purchase-box form.cart table.variations label {
  display: inline-flex;
  align-items: center;
  color: #3c4657;
  font-size: 0.92rem;
  font-weight: 800;
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__purchase-box form.cart table.variations select {
  min-height: 54px;
  width: 100%;
  border: 1px solid var(--buzi-single-border);
  border-radius: 18px;
  background: #fff;
  padding: 0 16px;
  color: var(--buzi-single-text);
  box-shadow: none;
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__purchase-box form.cart .reset_variations {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  background: #fff6f5;
  color: var(--buzi-single-accent);
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__purchase-box form.cart .single_variation_wrap {
  display: grid;
  gap: 14px;
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__purchase-box form.cart .woocommerce-variation-price .price,
body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__purchase-box form.cart .single_variation .price {
  color: var(--buzi-single-accent);
  font-weight: 800;
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__purchase-box form.cart .woocommerce-variation-description,
body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__purchase-box form.cart .woocommerce-variation-description p {
  color: #5f6979;
  font-size: 0.9rem;
  line-height: 1.6;
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__purchase-box form.cart .stock {
  margin: 0;
  color: #166534;
  font-weight: 700;
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__purchase-box form.cart .variations_button {
  display: grid;
  gap: 14px;
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__purchase-box form.cart .quantity {
  display: grid;
  align-items: center;
  width: min(100%, 204px);
  max-width: 204px;
  min-height: 58px;
  justify-self: start;
  border: 1px solid var(--buzi-single-border);
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__purchase-box form.cart .quantity .qty {
  width: 100%;
  min-height: 58px;
  padding: 0 18px;
  border: 0 !important;
  background: transparent;
  box-shadow: none !important;
  color: var(--buzi-single-text) !important;
  text-align: center;
  font: 800 1rem/1 var(--buzi-single-body);
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__purchase-box form.cart .quantity.buttons_added {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr) 50px;
  min-height: 58px;
  border-radius: 20px;
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__purchase-box form.cart .quantity.buttons_added .minus,
body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__purchase-box form.cart .quantity.buttons_added .plus {
  appearance: none;
  border: 0;
  background: linear-gradient(180deg, #fff5f4 0%, #ffeceb 100%);
  color: var(--buzi-single-accent);
  font: 800 1.35rem/1 var(--buzi-single-heading);
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__purchase-box form.cart .quantity.buttons_added .minus:hover,
body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__purchase-box form.cart .quantity.buttons_added .minus:focus-visible,
body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__purchase-box form.cart .quantity.buttons_added .plus:hover,
body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__purchase-box form.cart .quantity.buttons_added .plus:focus-visible {
  background: var(--buzi-single-accent);
  color: #fff;
  outline: none;
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__purchase-box form.cart .quantity.buttons_added .qty {
  background: transparent;
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__purchase-box form.cart > .single_add_to_cart_button.button.alt:not(.wpcbn-btn) {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 62px;
  border: 0;
  border-radius: 22px;
  background: linear-gradient(135deg, #ff5448 0%, #ef3b35 52%, #c91d1d 100%);
  color: #fff;
  box-shadow:
    0 22px 42px rgba(239, 59, 53, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.26);
  padding: 14px 18px;
  font: 800 clamp(0.94rem, 0.88rem + 0.18vw, 1.02rem)/1.15 var(--buzi-single-body);
  letter-spacing: -0.02em;
  text-align: center;
  white-space: normal;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.12s ease, box-shadow 0.12s ease, filter 0.12s ease, opacity 0.12s ease;
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__purchase-box form.cart .variations_button > .single_add_to_cart_button.button.alt:not(.wpcbn-btn) {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 62px;
  border: 0;
  border-radius: 22px;
  background: linear-gradient(135deg, #ff5448 0%, #ef3b35 52%, #c91d1d 100%);
  color: #fff;
  box-shadow:
    0 22px 42px rgba(239, 59, 53, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.26);
  padding: 14px 18px;
  font: 800 clamp(0.94rem, 0.88rem + 0.18vw, 1.02rem)/1.15 var(--buzi-single-body);
  letter-spacing: -0.02em;
  text-align: center;
  white-space: normal;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.12s ease, box-shadow 0.12s ease, filter 0.12s ease, opacity 0.12s ease;
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__purchase-box form.cart > .wpcbn-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 62px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 20px;
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
  color: #fff;
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.18);
  padding: 14px 18px;
  font: 800 clamp(0.92rem, 0.86rem + 0.16vw, 0.98rem)/1.15 var(--buzi-single-body);
  text-align: center;
  white-space: normal;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.12s ease, box-shadow 0.12s ease, filter 0.12s ease, opacity 0.12s ease;
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__purchase-box form.cart .variations_button > .wpcbn-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 62px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 20px;
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
  color: #fff;
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.18);
  padding: 14px 18px;
  font: 800 clamp(0.92rem, 0.86rem + 0.16vw, 0.98rem)/1.15 var(--buzi-single-body);
  text-align: center;
  white-space: normal;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.12s ease, box-shadow 0.12s ease, filter 0.12s ease, opacity 0.12s ease;
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__purchase-box form.cart > .wpcbn-btn.wpcbn-disabled,
body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__purchase-box form.cart .variations_button > .wpcbn-btn.wpcbn-disabled,
body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__purchase-box form.cart > .wpcbn-btn:disabled,
body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__purchase-box form.cart .variations_button > .wpcbn-btn:disabled {
  opacity: 1 !important;
  border-style: dashed;
  border-color: #d0d5dd;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  color: #98a2b3;
  box-shadow: none;
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__purchase-box form.cart > .wpcbn-btn:hover,
body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__purchase-box form.cart > .wpcbn-btn:focus-visible,
body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__purchase-box form.cart .variations_button > .wpcbn-btn:hover,
body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__purchase-box form.cart .variations_button > .wpcbn-btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 36px rgba(15, 23, 42, 0.22);
  outline: none;
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__purchase-box form.cart > .wpcbn-btn.loading,
body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__purchase-box form.cart .variations_button > .wpcbn-btn.loading {
  cursor: progress;
  transform: translateY(-1px);
  filter: saturate(0.94) brightness(0.96);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.16);
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__purchase-box form.cart > .wpcbn-btn.loading::after,
body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__purchase-box form.cart .variations_button > .wpcbn-btn.loading::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.14) 42%, transparent 72%);
  animation: buzi-single-button-sheen 0.78s linear infinite;
  pointer-events: none;
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__purchase-box form.cart > .single_add_to_cart_button.button.alt:hover,
body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__purchase-box form.cart > .single_add_to_cart_button.button.alt:focus-visible,
body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__purchase-box form.cart .variations_button > .single_add_to_cart_button.button.alt:hover,
body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__purchase-box form.cart .variations_button > .single_add_to_cart_button.button.alt:focus-visible {
  transform: translateY(-2px);
  filter: saturate(1.04) brightness(1.02);
  box-shadow:
    0 24px 48px rgba(239, 59, 53, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  outline: none;
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__purchase-box form.cart > .single_add_to_cart_button.button.alt[aria-busy="true"]:not(.wpcbn-btn),
body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__purchase-box form.cart .variations_button > .single_add_to_cart_button.button.alt[aria-busy="true"]:not(.wpcbn-btn) {
  cursor: progress;
  filter: saturate(0.94) brightness(0.96);
  box-shadow:
    0 12px 24px rgba(239, 59, 53, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__purchase-box form.cart > .single_add_to_cart_button.button.alt.is-loading:not(.wpcbn-btn)::after,
body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__purchase-box form.cart .variations_button > .single_add_to_cart_button.button.alt.is-loading:not(.wpcbn-btn)::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.24) 40%, transparent 70%);
  animation: buzi-single-button-sheen 0.9s linear infinite;
  pointer-events: none;
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__purchase-box form.cart .single-product-whislist-compare {
  grid-column: auto;
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__purchase-box form.cart .single-product-whislist-compare .add_to_wishlist {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  width: 100%;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--buzi-single-border);
  border-radius: 999px;
  background: #fff;
  color: #303643;
  text-decoration: none;
  font-weight: 700;
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__purchase-box form.cart .single-product-whislist-compare .add_to_wishlist:hover,
body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__purchase-box form.cart .single-product-whislist-compare .add_to_wishlist:focus-visible {
  border-color: rgba(239, 59, 53, 0.34);
  color: var(--buzi-single-accent);
  outline: none;
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__quick-actions {
  display: grid;
  gap: 12px;
}

body.single-product .product.type-product.product-type-simple.buzi-single-product-layout .buzi-single-product__purchase-box form.cart > .single_add_to_cart_button.button.alt:not(.wpcbn-btn) {
  order: 30;
}

body.single-product .product.type-product.product-type-simple.buzi-single-product-layout .buzi-single-product__purchase-box form.cart > .wpcbn-btn {
  order: 31;
}

@media (max-width: 1200px) {
  body.single-product .product.type-product.product-type-simple.buzi-single-product-layout .buzi-single-product__purchase-box form.cart {
    grid-template-columns: 1fr;
  }
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__quick-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  width: 100%;
  padding: 0 20px;
  border: 1px solid rgba(231, 235, 240, 0.94);
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #fafbfd 100%);
  color: #303643;
  text-decoration: none;
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
  transition: transform 0.12s ease, border-color 0.12s ease, box-shadow 0.12s ease, filter 0.12s ease;
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__quick-action svg {
  width: 22px;
  height: 22px;
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__quick-action--whatsapp {
  border-color: rgba(22, 163, 74, 0.18);
  background: linear-gradient(180deg, #f3fff5 0%, #ffffff 100%);
  color: #16a34a;
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__quick-action:hover,
body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__quick-action:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(239, 59, 53, 0.28);
  box-shadow: 0 16px 28px rgba(15, 23, 42, 0.08);
  filter: saturate(1.03);
  outline: none;
}

@keyframes buzi-single-button-sheen {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

.wpcbn-overlay {
  transition: opacity 0.18s ease !important;
}

.wpcbn-area {
  will-change: transform, opacity;
  transition:
    transform 0.22s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.18s ease,
    visibility 0.18s ease !important;
}

.wpcbn-area.wpcbn-loading .wpcbn-inner-mid {
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .wpcbn-overlay,
  .wpcbn-area {
    transition-duration: 0.01ms !important;
  }
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__excerpt-box {
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px solid var(--buzi-single-border);
  border-radius: 24px;
  background: #fff;
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__excerpt-box .buzi-single-product__excerpt-label {
  margin: 0;
  color: var(--buzi-single-accent);
  font: 800 0.94rem/1.2 var(--buzi-single-body);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

body.single-product .product.type-product.buzi-single-product-layout .woocommerce-product-details__short-description {
  color: #414755;
  font-size: 0.95rem;
  line-height: 1.65;
}

body.single-product .product.type-product.buzi-single-product-layout .woocommerce-product-details__short-description ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__meta-box {
  padding: 16px 18px;
  border: 1px solid var(--buzi-single-border);
  border-radius: 20px;
  background: #fafbfd;
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__meta-box .product_meta {
  display: grid;
  gap: 8px;
  color: #4b5563;
  font-size: 0.92rem;
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__meta-box a {
  color: var(--buzi-single-accent);
  text-decoration: none;
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__details-band {
  display: grid;
  grid-template-columns: minmax(0, 1.24fr) minmax(300px, 0.82fr);
  gap: 18px;
  margin-top: clamp(28px, 4vw, 44px);
  align-items: start;
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__details-main,
body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__details-side {
  min-width: 0;
  width: 100%;
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__details-side {
  justify-self: stretch;
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__detail-card {
  display: grid;
  gap: 18px;
  padding: 28px;
  border: 1px solid var(--buzi-single-border);
  border-radius: 30px;
  background: #fff;
  box-shadow: var(--buzi-single-shadow);
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__detail-card--highlights {
  background:
    radial-gradient(circle at top left, rgba(239, 59, 53, 0.09), transparent 18rem),
    linear-gradient(180deg, #fff8f7 0%, #ffffff 100%);
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__detail-head {
  display: grid;
  gap: 6px;
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__detail-kicker {
  color: var(--buzi-single-accent);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__detail-head h2 {
  margin: 0;
  color: var(--buzi-single-text);
  font: 800 clamp(1.3rem, 2.3vw, 1.8rem)/1.08 var(--buzi-single-heading);
  letter-spacing: -0.04em;
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__detail-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__detail-list li {
  position: relative;
  padding-left: 28px;
  color: #465061;
  font-size: 0.95rem;
  line-height: 1.7;
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__detail-list li::before {
  content: "";
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--buzi-single-accent), #ff8568);
  box-shadow: 0 0 0 5px rgba(239, 59, 53, 0.1);
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__fact-list {
  display: grid;
  gap: 12px;
  margin: 0;
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__fact-row {
  display: grid;
  grid-template-columns: minmax(0, 118px) minmax(0, 1fr);
  gap: 14px;
  padding: 12px 0;
  border-top: 1px solid var(--buzi-single-border);
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__fact-row:first-child {
  padding-top: 0;
  border-top: 0;
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__fact-row dt {
  color: #576171;
  font-size: 0.88rem;
  font-weight: 700;
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__fact-row dd {
  margin: 0;
  color: #111827;
  text-align: right;
  font-size: 0.92rem;
  line-height: 1.55;
}

body.single-product .product.type-product.buzi-single-product-layout .wc-tabs-outer {
  width: auto;
  position: static;
  margin: clamp(28px, 4vw, 44px) 0 0;
  margin-left: 0;
  margin-bottom: 0;
  padding: 0;
  background: transparent;
}

body.single-product .product.type-product.buzi-single-product-layout .wc-tabs-outer > .container {
  max-width: none;
  padding: 0;
}

body.single-product .product.type-product.buzi-single-product-layout .wc-tabs-wrapper {
  background: transparent;
}

body.single-product .product.type-product.buzi-single-product-layout .woocommerce-tabs {
  padding: 28px;
  border: 1px solid var(--buzi-single-border);
  border-radius: 32px;
  background: #fff;
  box-shadow: var(--buzi-single-shadow);
}

body.single-product .product.type-product.buzi-single-product-layout .wc-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
  border: 0;
}

body.single-product .product.type-product.buzi-single-product-layout .wc-tabs li {
  margin: 0;
}

body.single-product .product.type-product.buzi-single-product-layout .wc-tabs li a {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--buzi-single-border);
  border-radius: 999px;
  background: #fff;
  color: #303643;
  text-decoration: none;
  font-weight: 700;
}

body.single-product .product.type-product.buzi-single-product-layout .wc-tabs li.active a {
  border-color: var(--buzi-single-accent);
  background: var(--buzi-single-accent);
  color: #fff;
}

body.single-product .product.type-product.buzi-single-product-layout .woocommerce-tabs .panel,
body.single-product .product.type-product.buzi-single-product-layout .woocommerce-tabs .wc-tab,
body.single-product .product.type-product.buzi-single-product-layout .woocommerce-Tabs-panel {
  margin: 0;
  padding: 0 !important;
  border: 0;
  background: transparent;
  box-shadow: none;
}

body.single-product .product.type-product.buzi-single-product-layout .woocommerce-Tabs-panel h2 {
  margin-top: 0;
  color: var(--buzi-single-text);
  font: 800 1.45rem/1.1 var(--buzi-single-heading);
  letter-spacing: -0.03em;
}

body.single-product .product.type-product.buzi-single-product-layout .woocommerce-Tabs-panel,
body.single-product .product.type-product.buzi-single-product-layout .woocommerce-Tabs-panel p,
body.single-product .product.type-product.buzi-single-product-layout .woocommerce-Tabs-panel li,
body.single-product .product.type-product.buzi-single-product-layout .woocommerce-Tabs-panel td,
body.single-product .product.type-product.buzi-single-product-layout .woocommerce-Tabs-panel th {
  color: #4b5563;
  font-size: 0.96rem;
  line-height: 1.7;
}

body.single-product .product.type-product.buzi-single-product-layout .advanced-review {
  gap: 24px;
}

body.single-product .product.type-product.buzi-single-product-layout .comment-form input[type="text"],
body.single-product .product.type-product.buzi-single-product-layout .comment-form input[type="email"],
body.single-product .product.type-product.buzi-single-product-layout .comment-form textarea,
body.single-product .product.type-product.buzi-single-product-layout .comment-form select {
  border: 1px solid var(--buzi-single-border);
  border-radius: 16px;
  background: #fff;
  padding: 14px 16px;
  box-shadow: none;
}

body.single-product .product.type-product.buzi-single-product-layout .comment-form .submit {
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  border-radius: 16px;
  background: var(--buzi-single-accent);
  color: #fff;
  font-weight: 800;
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-store-products-section {
  margin-top: clamp(32px, 4vw, 54px);
}

body.single-product .product.type-product.buzi-single-product-layout .buzi-store-products__heading {
  font-size: clamp(1.9rem, 3vw, 2.45rem);
  letter-spacing: -0.035em;
}

@media (max-width: 1024px) {
  body.single-product.buzi-single-product-showcase-active #content.site-content > .container {
    width: 100%;
    max-width: 100%;
    padding-right: 12px;
    padding-left: 12px;
  }

  .buzi-store-products-section {
    gap: 22px;
  }

  .buzi-store-products-section--archive .buzi-store-products__heading {
    font-size: 31px;
  }

  .buzi-store-products--style-marketplace {
    gap: 24px;
  }

  .buzi-store-products {
    grid-template-columns: repeat(min(2, var(--buzi-store-columns)), minmax(0, 1fr));
    gap: 22px;
  }

  .buzi-store-categories {
    grid-template-columns: repeat(min(2, var(--buzi-store-category-columns)), minmax(0, 1fr));
    gap: 22px;
  }

  .buzi-store-products__consent {
    flex-direction: column;
    align-items: flex-start;
  }

  body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__layout {
    grid-template-columns: 1fr;
  }

  body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__details-band {
    grid-template-columns: 1fr !important;
  }

  body.single-product .product.type-product.buzi-single-product-layout .summary.entry-summary {
    position: static;
    width: 100%;
    max-width: none;
    justify-self: stretch;
  }

  body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__summary-shell {
    padding: 24px;
  }

  body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__feature-grid .buzi-single-product__features {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  body.single-product.buzi-single-product-showcase-active #content.site-content > .container {
    width: 100%;
    max-width: 100%;
    margin-right: 0;
    margin-left: 0;
    padding-right: 10px;
    padding-left: 10px;
  }

  body.single-product.buzi-single-product-showcase-active #content.site-content > .container > .site-content-inner {
    display: block;
    width: 100%;
    margin-right: 0;
    margin-left: 0;
    margin-top: 0;
    margin-bottom: 24px;
  }

  body.single-product.buzi-single-product-showcase-active #content.site-content > .container > .site-content-inner > .content-area {
    flex: none;
    padding-right: 0;
    padding-left: 0;
  }

  body.single-product.buzi-single-product-showcase-active #primary.content-area,
  body.single-product.buzi-single-product-showcase-active #main.site-main,
  body.single-product .product.type-product.buzi-single-product-layout,
  body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__header,
  body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__layout,
  body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__feature-grid--after-layout,
  body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__details-band,
  body.single-product .product.type-product.buzi-single-product-layout .wc-tabs-outer,
  body.single-product .product.type-product.buzi-single-product-layout .buzi-store-products-section {
    width: 100%;
    max-width: none;
  }

  body.single-product .product.type-product.buzi-single-product-layout .summary.entry-summary,
  body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__media,
  body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__details-main,
  body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__details-side {
    width: 100%;
    max-width: none;
    justify-self: stretch;
  }

  body.single-product .product.type-product.buzi-single-product-layout .wc-tabs-outer > .container {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
    padding-right: 0;
    padding-left: 0;
  }

  .buzi-store-products__consent-overlay {
    padding: 14px;
  }

  .buzi-store-products__consent {
    padding: 14px;
  }

  .buzi-store-products__consent-actions {
    width: 100%;
  }

  .buzi-store-products__consent-btn {
    flex: 1 1 0;
  }

  .buzi-store-products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .buzi-store-categories {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .buzi-store-products--single {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .buzi-store-products-section {
    gap: 18px;
  }

  .buzi-store-products__heading {
    line-height: 1.08;
  }

  .buzi-store-products-section--archive .buzi-store-products__heading {
    font-size: 28px;
  }

  .buzi-store-products.buzi-store-products--style-marketplace {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .buzi-store-products--style-marketplace .meili-wp-prefixed-search__card-body {
    padding-top: 6px;
  }

  .buzi-store-products--style-marketplace .meili-wp-prefixed-search__card-title {
    font-size: 0.96rem;
    line-height: 1.28;
  }

  .buzi-store-products--style-marketplace .buzi-store-marketplace__price {
    font-size: 1.08rem;
  }

  .buzi-store-products--style-marketplace .buzi-store-marketplace__rrp,
  .buzi-store-products--style-marketplace .buzi-store-marketplace__category,
  .buzi-store-products--style-marketplace .buzi-store-marketplace__rating {
    font-size: 0.84rem;
  }

  .buzi-store-products--style-marketplace .meili-wp-prefixed-search__card-actions--marketplace a {
    width: 30px;
    min-width: 30px;
    height: 30px;
    min-height: 30px;
    border-radius: 1px;
    flex-basis: 30px;
  }

  .buzi-store-products--style-marketplace .meili-wp-prefixed-search__card-actions--marketplace svg,
  .buzi-store-products--style-marketplace .meili-wp-prefixed-search__card-actions--marketplace i {
    width: 12px;
    height: 12px;
    font-size: 12px;
  }

  .buzi-store-products--style-marketplace .meili-wp-prefixed-search__card-actions--marketplace .meili-wp-prefixed-search__card-action--whatsapp svg {
    width: 24px;
    height: 24px;
    flex-basis: 24px;
  }

  .buzi-store-products--style-marketplace .buzi-store-marketplace__deal-badge,
  .buzi-store-products--style-marketplace .buzi-store-marketplace__deal-timer {
    min-height: 30px;
    padding: 0 8px;
    font-size: 0.74rem;
  }

  .buzi-store-categories__card-body {
    padding: 12px 12px 14px;
  }

  .buzi-store-categories__card-title {
    font-size: 0.9rem;
    line-height: 1.32;
  }

  .buzi-store-categories__card-count {
    font-size: 0.7rem;
  }

  .buzi-store-categories__card-description {
    font-size: 0.78rem;
    line-height: 1.35;
  }

  .buzi-store-products .meili-wp-prefixed-search__card-title,
  .buzi-store-products--single .meili-wp-prefixed-search__card-title {
    font-size: 0.88rem;
    line-height: 1.3;
  }

  .buzi-store-products .meili-wp-prefixed-search__card-excerpt,
  .buzi-store-products--single .meili-wp-prefixed-search__card-excerpt {
    font-size: 0.78rem;
    line-height: 1.35;
  }

  .buzi-store-products .meili-wp-prefixed-search__card-body,
  .buzi-store-products--single .meili-wp-prefixed-search__card-body {
    padding: 10px 10px 8px;
  }

  .buzi-store-products .meili-wp-prefixed-search__card-footer,
  .buzi-store-products--single .meili-wp-prefixed-search__card-footer {
    display: grid;
    gap: 8px;
    padding: 0 10px 10px;
  }

  .buzi-store-products .meili-wp-prefixed-search__card-meta,
  .buzi-store-products--single .meili-wp-prefixed-search__card-meta {
    gap: 4px;
  }

  .buzi-store-products .meili-wp-prefixed-search__card-price,
  .buzi-store-products--single .meili-wp-prefixed-search__card-price {
    font-size: 0.9rem;
  }

  .buzi-store-products .meili-wp-prefixed-search__card-actions,
  .buzi-store-products--single .meili-wp-prefixed-search__card-actions {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
    width: auto;
  }

  .buzi-store-products .meili-wp-prefixed-search__card-cart,
  .buzi-store-products .meili-wp-prefixed-search__card-action,
  .buzi-store-products--single .meili-wp-prefixed-search__card-cart,
  .buzi-store-products--single .meili-wp-prefixed-search__card-action {
    width: 38px;
    min-width: 38px;
    height: 38px;
    min-height: 38px;
    padding: 0;
    aspect-ratio: 1 / 1;
    box-sizing: border-box;
    flex: 0 0 38px;
  }

  .buzi-store-products .meili-wp-prefixed-search__card-cart svg,
  .buzi-store-products .meili-wp-prefixed-search__card-action svg,
  .buzi-store-products--single .meili-wp-prefixed-search__card-cart svg,
  .buzi-store-products--single .meili-wp-prefixed-search__card-action svg {
    width: 20px;
    height: 20px;
  }

  .buzi-store-products .meili-wp-prefixed-search__card-cart i,
  .buzi-store-products--single .meili-wp-prefixed-search__card-cart i {
    font-size: 18px;
    margin-right: 8px;
  }

  body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__header {
    margin-bottom: 18px;
  }

  body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__breadcrumbs .woocommerce-breadcrumb,
  body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__meta-inline {
    font-size: 0.86rem;
  }

  body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__meta-item {
    min-height: 34px;
    padding: 0 12px;
  }

  body.single-product .product.type-product.buzi-single-product-layout .product_title.entry-title {
    font-size: clamp(1.75rem, 8.8vw, 2.35rem);
  }

  body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__layout {
    gap: 22px;
  }

  body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__thumbs {
    order: 2;
    display: flex;
    width: 100%;
    min-width: 0;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__thumb {
    width: 72px;
    min-width: 72px;
    flex: 0 0 72px;
  }

  body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__stage-shell {
    order: 1;
    padding: 12px;
    border-radius: 24px;
  }

  body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__media .buzi-single-product__gallery-shell {
    position: static;
  }

  body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__stage-media {
    min-height: 0;
    aspect-ratio: auto;
  }

  body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__stage-image {
    max-height: 68vh;
  }

  body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__stage-zoom {
    min-height: 36px;
    padding: 0 12px;
    font-size: 0.76rem;
  }

  body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__stage-nav {
    width: 42px;
    height: 42px;
  }

  body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__stage-nav--prev {
    left: 18px;
  }

  body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__stage-nav--next {
    right: 18px;
  }

  body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__summary-shell {
    gap: 14px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__summary-title {
    font-size: clamp(1.8rem, 7.6vw, 2.45rem);
    line-height: 1.06;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__offer-strip {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 8px;
    min-width: 0;
  }

  body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__offer-chip {
    min-height: 36px;
    padding: 0 12px;
    font-size: 0.8rem;
    max-width: 100%;
    white-space: normal;
    text-align: center;
  }

  body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__feature-grid .buzi-single-product__features {
    grid-template-columns: 1fr;
  }

  body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__details-band {
    gap: 14px;
    margin-top: 22px;
    grid-template-columns: 1fr !important;
  }

  body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__details-side,
  body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__details-main {
    max-width: none;
    justify-self: stretch;
  }

  body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__detail-card {
    gap: 14px;
    padding: 16px;
    border-radius: 22px;
  }

  body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__detail-kicker {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
  }

  body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__detail-head h2 {
    font-size: 1.08rem;
    line-height: 1.18;
    letter-spacing: -0.02em;
  }

  body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__detail-list {
    gap: 10px;
  }

  body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__detail-list li {
    padding-left: 22px;
    font-size: 0.88rem;
    line-height: 1.55;
  }

  body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__detail-list li::before {
    top: 0.6em;
    width: 10px;
    height: 10px;
    box-shadow: 0 0 0 4px rgba(239, 59, 53, 0.1);
  }

  body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__fact-list {
    gap: 8px;
  }

  body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__fact-row {
    gap: 4px;
    padding: 10px 0;
  }

  body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__fact-row dt,
  body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__fact-row dd {
    font-size: 0.86rem;
    line-height: 1.45;
  }

  body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__price-card {
    padding: 16px 18px;
    border-radius: 20px;
  }

  body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__price-card .woocommerce-Price-amount {
    font-size: 2.15rem;
  }

  body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__delivery {
    padding: 14px 16px;
    border-radius: 18px;
  }

  body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__purchase-box form.cart {
    grid-template-columns: 1fr;
  }

  body.single-product .product.type-product.product-type-simple.buzi-single-product-layout .buzi-single-product__purchase-box form.cart {
    grid-template-columns: 1fr;
  }

  body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__purchase-box form.cart > *,
  body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__purchase-box form.cart .variations_button > * {
    min-width: 0;
  }

  body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__purchase-box form.cart .quantity,
  body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__purchase-box form.cart .quantity.buttons_added {
    max-width: 170px;
  }

  body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__purchase-box {
    gap: 14px;
    min-width: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__purchase-box .buzi-single-product__buy-box-heading {
    font-size: 0.94rem;
  }

  body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__purchase-box form.cart > .single_add_to_cart_button.button.alt:not(.wpcbn-btn),
  body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__purchase-box form.cart .variations_button > .single_add_to_cart_button.button.alt:not(.wpcbn-btn),
  body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__purchase-box form.cart > .wpcbn-btn,
  body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__purchase-box form.cart .variations_button > .wpcbn-btn {
    display: flex;
    width: 100%;
    max-width: 100%;
    grid-column: 1 / -1;
    justify-self: stretch;
    min-height: 58px;
    padding: 14px 18px;
    border-radius: 18px;
    font-size: 1rem;
    line-height: 1.18;
    letter-spacing: -0.025em;
    white-space: normal;
  }

  body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__purchase-box form.cart > .single_add_to_cart_button.button.alt:not(.wpcbn-btn),
  body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__purchase-box form.cart .variations_button > .single_add_to_cart_button.button.alt:not(.wpcbn-btn) {
    box-shadow:
      0 14px 28px rgba(239, 59, 53, 0.18),
      inset 0 1px 0 rgba(255, 255, 255, 0.22);
  }

  body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__purchase-box form.cart > .wpcbn-btn,
  body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__purchase-box form.cart .variations_button > .wpcbn-btn {
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.14);
  }

  body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__quick-actions {
    gap: 10px;
    width: 100%;
  }

  body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__quick-action {
    display: flex;
    width: 100%;
    max-width: 100%;
    justify-content: center;
    min-height: 50px;
    padding: 0 16px;
    border-radius: 18px;
    font-size: 0.94rem;
    font-weight: 800;
    min-width: 0;
    text-align: center;
    white-space: normal;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  }

  body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__delivery,
  body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__price-card,
  body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__excerpt-box,
  body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__meta-box,
  body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__delivery-copy,
  body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__summary-lead,
  body.single-product .product.type-product.buzi-single-product-layout .woocommerce-product-details__short-description,
  body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__meta-box .product_meta > span {
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__meta-box {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__meta-box .product_meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
  }

  body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__meta-box .product_meta > span {
    display: inline-flex;
    align-items: center;
    min-height: 48px;
    margin: 0;
    padding: 0 14px;
    border: 1px solid var(--buzi-single-border);
    border-radius: 18px;
    background: #fafbfd;
    color: #111827;
    font-size: 0.92rem;
    line-height: 1.45;
  }

  body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__meta-box .product_meta > span.posted_in {
    width: 100%;
    align-items: flex-start;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  body.single-product .product.type-product.buzi-single-product-layout .woocommerce-product-details__short-description-wrapper,
  body.single-product .product.type-product.buzi-single-product-layout .woocommerce-tabs {
    padding: 18px;
    border-radius: 22px;
  }

  body.single-product .product.type-product.buzi-single-product-layout .wc-tabs-outer {
    margin-top: 22px;
  }

  body.single-product .product.type-product.buzi-single-product-layout .woocommerce-tabs {
    padding: 16px;
  }

  body.single-product .product.type-product.buzi-single-product-layout .woocommerce-Tabs-panel {
    margin: 0;
    padding: 0;
  }

  body.single-product .product.type-product.buzi-single-product-layout .woocommerce-Tabs-panel > :first-child {
    margin-top: 0 !important;
  }

  body.single-product .product.type-product.buzi-single-product-layout .woocommerce-Tabs-panel > :last-child {
    margin-bottom: 0 !important;
  }

  body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__detail-card {
    padding: 16px;
    border-radius: 22px;
  }

  body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__fact-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  body.single-product .product.type-product.buzi-single-product-layout .buzi-single-product__fact-row dd {
    text-align: left;
  }

  body.single-product .product.type-product.buzi-single-product-layout .wc-tabs {
    gap: 8px;
    margin-bottom: 14px;
  }

  body.single-product .product.type-product.buzi-single-product-layout .wc-tabs li a {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.84rem;
  }

  body.single-product .product.type-product.buzi-single-product-layout .woocommerce-Tabs-panel h2 {
    margin-bottom: 10px;
    font-size: 1.08rem;
    line-height: 1.2;
  }

  body.single-product .product.type-product.buzi-single-product-layout .woocommerce-Tabs-panel,
  body.single-product .product.type-product.buzi-single-product-layout .woocommerce-Tabs-panel p,
  body.single-product .product.type-product.buzi-single-product-layout .woocommerce-Tabs-panel li,
  body.single-product .product.type-product.buzi-single-product-layout .woocommerce-Tabs-panel td,
  body.single-product .product.type-product.buzi-single-product-layout .woocommerce-Tabs-panel th {
    font-size: 0.9rem;
    line-height: 1.55;
  }
}
