/* Single Product Page Styles */

section {
  margin-top: 0;
}
:where(.wp-site-blocks) > * {
  margin-block-start: 0;
}

/* =========================================
   BREADCRUMBS
   ========================================= */
.product-breadcrumbs {
  background: var(--dark-bg);
  padding: 100px 0 20px;
}
.breadcrumbs-list {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.breadcrumbs-list a {
  color: var(--text-dark-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}
.breadcrumbs-list a:hover {
  color: var(--copper);
}
.breadcrumbs-list .separator {
  color: var(--text-dark-muted);
  opacity: 0.4;
  font-size: 11px;
}
.breadcrumbs-list .current {
  color: var(--text-dark-heading);
}

/* =========================================
   PRODUCT MAIN LAYOUT
   ========================================= */
.product-main {
  background: var(--light-bg);
  padding: 80px 0 100px;
  position: relative;
}
.product-layout {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 60px;
  align-items: start;
}

/* =========================================
   GALLERY
   ========================================= */
.product-gallery {
  position: sticky;
  top: 100px;
}
.product-main-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: var(--light-card);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  aspect-ratio: 1/1;
  cursor: zoom-in;
}
.product-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.product-main-image:hover img {
  transform: scale(1.15);
}
.zoom-hint {
  position: absolute;
  bottom: 16px;
  right: 16px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light-heading);
  pointer-events: none;
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.3s ease;
}
.product-main-image:hover .zoom-hint {
  opacity: 1;
  transform: translateY(0);
}
.product-thumbnails {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 16px;
}
.product-thumb {
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  aspect-ratio: 1/1;
  background: var(--light-card);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.product-thumb:hover {
  border-color: rgba(184,115,51,0.3);
  box-shadow: 0 4px 16px rgba(184,115,51,0.1);
}
.product-thumb.active {
  border-color: var(--copper);
  box-shadow: 0 0 0 1px var(--copper), 0 4px 16px rgba(184,115,51,0.15);
}
.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.product-thumb:hover img {
  transform: scale(1.05);
}

/* =========================================
   PRODUCT INFO
   ========================================= */
.product-info {
  padding-top: 8px;
}
.roast-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background: rgba(184,115,51,0.08);
  border: 1px solid rgba(184,115,51,0.15);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 20px;
}
.roast-pill .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--copper);
}
.product-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 36px;
  color: var(--text-light-heading);
  line-height: 1.15;
  margin-bottom: 12px;
}
.product-price-display {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 28px;
  color: var(--text-light-heading);
  margin-bottom: 20px;
}
.product-price-display del {
  font-size: 18px;
  color: var(--text-light-muted);
  font-weight: 400;
}
.product-price-display ins {
  text-decoration: none;
}
.product-description {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-light-body);
  margin-bottom: 28px;
  max-width: 480px;
}
.product-description p {
  margin-bottom: 0;
}

/* =========================================
   FLAVOR SECTION
   ========================================= */
.flavor-section {
  margin-bottom: 32px;
}
.flavor-section-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light-muted);
  margin-bottom: 12px;
}
.product-info .flavor-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.product-info .flavor-pill {
  padding: 8px 18px;
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(184,115,51,0.12);
  border-radius: 24px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-light-heading);
  transition: all 0.3s ease;
  cursor: default;
}
.product-info .flavor-pill:hover {
  background: rgba(184,115,51,0.08);
  border-color: rgba(184,115,51,0.3);
  box-shadow: 0 4px 16px rgba(184,115,51,0.1);
  transform: translateY(-2px);
}
.product-divider {
  height: 1px;
  background: var(--light-border);
  margin: 28px 0;
  opacity: 0.6;
}

/* =========================================
   VARIATION SELECTORS
   ========================================= */
.option-group {
  margin-bottom: 28px;
}
.option-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light-muted);
  margin-bottom: 12px;
}
.format-toggle {
  display: flex;
  gap: 0;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--light-border);
  border-radius: 4px;
  overflow: hidden;
}
.format-option {
  flex: 1;
  padding: 12px 20px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-light-muted);
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  border: none;
  background: transparent;
}
.format-option:not(:last-child) {
  border-right: 1px solid var(--light-border);
}
.format-option.active {
  color: #fff;
  background: var(--copper-gradient);
  background-size: 200% 100%;
  border-color: transparent;
  box-shadow: 0 0 20px rgba(184,115,51,0.3), 0 0 40px rgba(184,115,51,0.1);
}
.format-option:not(.active):hover {
  color: var(--copper);
  background: rgba(184,115,51,0.04);
}
.size-options {
  display: flex;
  gap: 12px;
}
.size-option {
  flex: 1;
  padding: 14px 16px;
  background: var(--light-card);
  border: 1px solid var(--light-border);
  border-radius: 4px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.size-option::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--copper-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}
.size-weight {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-light-heading);
  margin-bottom: 2px;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}
.size-price {
  display: block;
  font-size: 12px;
  color: var(--text-light-muted);
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}
.size-option:hover {
  border-color: rgba(184,115,51,0.3);
  box-shadow: 0 4px 16px rgba(184,115,51,0.08);
}
.size-option.active {
  border-color: var(--copper);
  box-shadow: 0 0 0 1px var(--copper), 0 0 20px rgba(184,115,51,0.15);
}
.size-option.active::before {
  opacity: 1;
}
.size-option.active .size-weight {
  color: #fff;
}
.size-option.active .size-price {
  color: rgba(255,255,255,0.8);
}

/* =========================================
   STYLED SELECT DROPDOWN
   ========================================= */
.styled-select {
  position: relative;
}
.styled-select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--light-border);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.styled-select-trigger:hover {
  border-color: rgba(184,115,51,0.3);
}
.styled-select.open .styled-select-trigger {
  border-color: var(--copper);
  box-shadow: 0 0 20px rgba(184,115,51,0.1);
}
.styled-select-value {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-light-heading);
}
.styled-select-arrow {
  transition: transform 0.3s ease;
  color: var(--text-light-muted);
}
.styled-select.open .styled-select-arrow {
  transform: rotate(180deg);
  color: var(--copper);
}
.styled-select-options {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: var(--light-card);
  border: 1px solid var(--light-border);
  border-radius: 4px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  z-index: 10;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.2s ease;
}
.styled-select.open .styled-select-options {
  max-height: 300px;
  overflow-y: auto;
  opacity: 1;
}
.styled-select-option {
  padding: 12px 20px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-light-muted);
  cursor: pointer;
  transition: all 0.2s ease;
}
.styled-select-option:hover {
  color: var(--copper);
  background: rgba(184,115,51,0.04);
}
.styled-select-option.active {
  color: #fff;
  background: var(--copper-gradient);
}

/* =========================================
   QUANTITY + ADD TO CART
   ========================================= */
.quantity-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
}
.quantity-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light-muted);
}
.quantity-stepper {
  display: flex;
  align-items: center;
  border: 1px solid var(--light-border);
  border-radius: 4px;
  overflow: hidden;
  background: var(--light-card);
}
.quantity-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--text-light-heading);
  cursor: pointer;
  transition: all 0.2s ease;
  background: transparent;
  border: none;
}
.quantity-btn:hover {
  background: rgba(184,115,51,0.06);
  color: var(--copper);
}
.quantity-btn:active {
  transform: scale(0.9);
}
.quantity-value {
  width: 52px;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-light-heading);
  border-left: 1px solid var(--light-border);
  border-right: 1px solid var(--light-border);
  border-top: none;
  border-bottom: none;
  padding: 10px 0;
  -moz-appearance: textfield;
  background: transparent;
}
.quantity-value::-webkit-outer-spin-button,
.quantity-value::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.add-to-cart {
  width: 100%;
  padding: 18px 40px;
  background: var(--copper-gradient);
  background-size: 200% 100%;
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.15s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 20px rgba(184,115,51,0.3), 0 0 40px rgba(184,115,51,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.add-to-cart::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
}
.add-to-cart:hover::after {
  animation: shimmer 0.6s ease forwards;
}
.add-to-cart:hover {
  box-shadow: 0 6px 30px rgba(184,115,51,0.5), 0 0 60px rgba(184,115,51,0.2);
  transform: translateY(-2px);
}
.add-to-cart:active {
  transform: scale(0.97);
  transition: transform 0.1s ease;
}
.add-to-cart .cart-icon {
  font-size: 18px;
  transition: transform 0.3s ease;
  display: flex;
}
.add-to-cart:hover .cart-icon {
  transform: translateX(-3px);
}

/* =========================================
   EXPRESS CHECKOUT (Google Pay, Apple Pay, PayPal)
   ========================================= */

/* Separator between Add to Cart and express buttons */
.product-info-col .wc-block-components-express-payment-continue-rule,
.product-info-col .woocommerce-checkout-payment__separator,
.product-info-col #wc-stripe-express-checkout-element ~ hr {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-light-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 16px 0;
}
.product-info-col .wc-block-components-express-payment-continue-rule::before,
.product-info-col .wc-block-components-express-payment-continue-rule::after {
  border-color: var(--light-border);
}

/* Stripe Express Checkout (Google Pay / Apple Pay) */
.product-info-col #wc-stripe-express-checkout-element,
.product-info-col .wc-stripe-express-checkout-element,
.product-info-col #wcpay-express-checkout-wrapper,
.product-info-col .wcpay-express-checkout-wrapper {
  margin-top: 16px;
}

/* Apple Pay button */
.product-info-col .apple-pay-button {
  border-radius: 4px;
  width: 100%;
}

/* PayPal buttons */
.product-info-col .ppc-button-wrapper,
.product-info-col #ppc-button,
.product-info-col .ppcp-messages {
  margin-top: 12px;
}
.product-info-col .ppc-button-wrapper {
  width: 100%;
}

/* Generic express payment container (WooCommerce Blocks fallback) */
.product-info-col .wc-block-components-express-payment {
  margin-top: 16px;
}
.product-info-col .wc-block-components-express-payment__event-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* =========================================
   TRUST STRIP
   ========================================= */
.product-trust {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--light-border);
}
.product-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-light-muted);
  letter-spacing: 0.04em;
}
.trust-icon {
  font-size: 16px;
  color: var(--copper);
}

/* =========================================
   TABS
   ========================================= */
.tabs-section {
  background: var(--light-bg);
  padding: 0 0 100px;
}
.tabs-container {
  max-width: 900px;
  margin: 0 auto;
}
.tabs-header {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--light-border);
  margin-bottom: 40px;
}
.tab-btn {
  padding: 16px 32px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light-muted);
  cursor: pointer;
  border: none;
  background: transparent;
  position: relative;
  transition: color 0.3s ease;
}
.tab-btn::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--copper-gradient);
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.tab-btn:hover {
  color: var(--text-light-heading);
}
.tab-btn.active {
  color: var(--text-light-heading);
}
.tab-btn.active::after {
  width: 100%;
}
.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}
.tab-description h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 24px;
  color: var(--text-light-heading);
  margin-bottom: 16px;
}
.tab-description p {
  color: var(--text-light-body);
  line-height: 1.75;
  margin-bottom: 20px;
  font-size: 16px;
}
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}
.detail-card {
  padding: 24px;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(184,115,51,0.08);
  border-radius: 8px;
  transition: all 0.3s ease;
}
.detail-card:hover {
  border-color: rgba(184,115,51,0.2);
  box-shadow: 0 4px 20px rgba(184,115,51,0.06);
  transform: translateY(-2px);
}
.detail-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 6px;
}
.detail-value {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 18px;
  color: var(--text-light-heading);
}

/* =========================================
   REVIEWS
   ========================================= */
.reviews-summary {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
  padding: 28px;
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(8px);
  border: 1px solid var(--light-border);
  border-radius: 8px;
}
.reviews-score {
  text-align: center;
  min-width: 100px;
}
.reviews-score .score {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 48px;
  color: var(--text-light-heading);
  line-height: 1;
}
.reviews-score .stars {
  color: var(--copper);
  font-size: 16px;
  margin: 6px 0;
  letter-spacing: 2px;
}
.reviews-score .count {
  font-size: 13px;
  color: var(--text-light-muted);
}
.reviews-bars {
  flex: 1;
}
.review-bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}
.review-bar-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-light-muted);
  min-width: 16px;
  text-align: right;
}
.review-bar-track {
  flex: 1;
  height: 6px;
  background: var(--light-border);
  border-radius: 3px;
  overflow: hidden;
}
.review-bar-fill {
  height: 100%;
  background: var(--copper-gradient);
  border-radius: 3px;
  transition: width 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.review-bar-count {
  font-size: 12px;
  color: var(--text-light-muted);
  min-width: 24px;
}
.review-card {
  padding: 28px 0;
  border-bottom: 1px solid var(--light-border);
}
.review-card:last-child {
  border-bottom: none;
}
.review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--copper-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
}
.review-name {
  font-weight: 600;
  font-size: 15px;
  color: var(--text-light-heading);
}
.review-date {
  font-size: 13px;
  color: var(--text-light-muted);
}
.review-stars {
  color: var(--copper);
  font-size: 14px;
  letter-spacing: 2px;
}
.review-text {
  color: var(--text-light-body);
  line-height: 1.7;
  font-size: 15px;
}

/* =========================================
   RELATED PRODUCTS
   ========================================= */
.related-products {
  background: var(--light-bg);
  padding: 80px 0 100px;
  border-top: 1px solid var(--light-border);
}
.related-products .section-header {
  text-align: center;
  margin-bottom: 48px;
}
.related-products .section-header .copper-label {
  margin-bottom: 12px;
}
.related-products h2 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 36px;
  color: var(--text-light-heading);
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.related-grid .product-card {
  text-decoration: none;
  display: block;
}
.related-grid .product-card-image {
  height: 280px;
}

/* =========================================
   CTA SECTION
   ========================================= */
.cta-section {
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
}
.cta-inner h2 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 42px;
  color: var(--text-dark-heading);
  margin-bottom: 16px;
  line-height: 1.2;
}
.cta-inner p {
  color: var(--text-dark-body);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 36px;
}

/* =========================================
   MOBILE RESPONSIVE — max-width: 767px
   Product page only. Shared styles live in
   mobile.css (container, nav, footer, etc.)
   ========================================= */
@media (max-width: 767px) {

  /* --- Breadcrumbs --- */
  .product-breadcrumbs {
    padding: 80px 0 12px;
  }
  .breadcrumbs-list {
    font-size: 11px;
    gap: 6px;
  }
  .breadcrumbs-list .separator {
    font-size: 10px;
  }

  /* --- Product Main Layout --- */
  .product-main {
    padding: 24px 0 40px;
  }
  .product-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* --- Gallery --- */
  .product-gallery {
    position: static;
  }
  .product-main-image {
    border-radius: 10px;
  }
  .zoom-hint {
    display: none;
  }
  .product-thumbnails {
    grid-template-columns: repeat(4, 80px);
    gap: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-top: 12px;
  }
  .product-thumb {
    border-radius: 6px;
    min-width: 80px;
  }

  /* --- Product Info --- */
  .product-info {
    padding-top: 0;
  }
  .roast-pill {
    font-size: 10px;
    padding: 5px 12px;
    margin-bottom: 14px;
  }
  .product-name {
    font-size: 24px;
    margin-bottom: 8px;
  }
  .product-price-display {
    font-size: 22px;
    margin-bottom: 14px;
  }
  .product-price-display del {
    font-size: 15px;
  }
  .product-description {
    font-size: 14px;
    line-height: 1.55;
    margin-bottom: 20px;
    max-width: 100%;
  }

  /* --- Flavor Section --- */
  .flavor-section {
    margin-bottom: 24px;
  }
  .product-info .flavor-pill {
    padding: 6px 14px;
    font-size: 12px;
  }
  .product-divider {
    margin: 20px 0;
  }

  /* --- Variation Selectors --- */
  .option-group {
    margin-bottom: 20px;
  }
  .format-option {
    padding: 10px 14px;
    font-size: 12px;
  }
  .size-options {
    gap: 8px;
  }
  .size-option {
    padding: 10px 12px;
  }
  .size-weight {
    font-size: 14px;
  }
  .size-price {
    font-size: 11px;
  }

  /* --- Styled Select --- */
  .styled-select-trigger {
    padding: 10px 16px;
  }
  .styled-select-value {
    font-size: 12px;
  }

  /* --- Quantity + Add to Cart --- */
  .quantity-row {
    gap: 14px;
    margin-bottom: 20px;
  }
  .quantity-btn {
    width: 40px;
    height: 40px;
  }
  .quantity-value {
    width: 44px;
    font-size: 15px;
  }
  .add-to-cart {
    padding: 16px 32px;
    font-size: 14px;
    min-height: 48px;
  }

  /* --- Trust Strip --- */
  .product-trust {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }
  .product-trust-item {
    font-size: 11px;
  }

  /* --- Tabs Section --- */
  .tabs-section {
    padding: 0 0 40px;
  }
  .tabs-header {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 24px;
  }
  .tab-btn {
    padding: 12px 18px;
    font-size: 12px;
    white-space: nowrap;
  }
  .tab-description h3 {
    font-size: 20px;
    margin-bottom: 12px;
  }
  .tab-description p {
    font-size: 14px;
  }

  /* --- Detail Grid (Attributes) --- */
  .detail-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 24px;
  }
  .detail-card {
    padding: 16px;
  }
  .detail-label {
    font-size: 10px;
  }
  .detail-value {
    font-size: 15px;
  }

  /* --- Reviews --- */
  .reviews-summary {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }
  .reviews-score .score {
    font-size: 40px;
  }
  .review-card {
    padding: 20px 0;
  }
  .review-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .review-text {
    font-size: 14px;
  }

  /* --- Related Products --- */
  .related-products {
    padding: 40px 0 48px;
  }
  .related-products .section-header {
    margin-bottom: 28px;
  }
  .related-products h2 {
    font-size: 24px;
  }
  .related-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .related-grid .product-card-image {
    height: 180px;
  }

  /* --- CTA Section --- */
  .cta-section {
    padding: 40px 0;
  }
  .cta-inner h2 {
    font-size: 28px;
  }
  .cta-inner p {
    font-size: 14px;
    margin-bottom: 24px;
  }

}
