@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600;700&family=Barlow:wght@400;500;600&display=swap');

/* ═══════════════════════════════════════════════════
   Thorzy Single Product — UX-driven redesign
   ═══════════════════════════════════════════════════ */

body.single-product {
  --tsp-orange: #f97316;
  --tsp-orange-hover: #ea580c;
  --tsp-bg: #ffffff;
  --tsp-surface: #ffffff;
  --tsp-text: #171717;
  --tsp-text-secondary: #525252;
  --tsp-text-muted: #737373;
  --tsp-border: #e8e6e1;
  --tsp-border-strong: #d4d0c8;
  --tsp-radius: 8px;
  --tsp-radius-lg: 12px;
  --tsp-font-display: 'Barlow Condensed', system-ui, sans-serif;
  --tsp-font-body: 'Barlow', system-ui, sans-serif;
  --tsp-section-gap: 80px;
  --tsp-section-gap-mobile: 48px;
  background: var(--tsp-bg);
  color: var(--tsp-text);
  font-family: var(--tsp-font-body);
}

/* ── Sticky Header ──────────────────────────────── */
.wp-block-template-part:first-of-type {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--tsp-bg);
}
.admin-bar .wp-block-template-part:first-of-type {
  top: 32px;
}
@media (max-width: 782px) {
  .admin-bar .wp-block-template-part:first-of-type {
    top: 46px;
  }
}

/* ── Main wrapper ────────────────────────────────── */
.thorzy-single-product {
  padding-top: 32px;
  padding-bottom: 120px;
}
@media (max-width: 767px) {
  .thorzy-single-product {
    padding-top: 20px;
    padding-bottom: 80px;
  }
}

/* ── Two-column row ──────────────────────────────── */
.thorzy-product-main {
  margin-bottom: var(--tsp-section-gap);
  gap: 48px;
}
@media (min-width: 768px) {
  .thorzy-product-main {
    align-items: flex-start;
  }
}

/* Gallery column — sticky on desktop */
.thorzy-gallery-col {
  position: relative;
}
@media (min-width: 768px) {
  .thorzy-gallery-col {
    position: sticky;
    top: 24px;
    align-self: flex-start;
  }
}

/* Info column */
.thorzy-info-col {
  display: flex;
  flex-direction: column;
}

/* ═══════════════════════════════════════════════════
   GALLERY
   ═══════════════════════════════════════════════════ */

.tsp-gallery {
  position: relative;
}

.tsp-gallery-stage {
  position: relative;
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  background: #f5f5f3;
  border-radius: var(--tsp-radius-lg);
}
.tsp-gallery-stage::-webkit-scrollbar { display: none; }

.tsp-gallery-slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
}

.tsp-gallery-trigger {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: transparent;
  cursor: zoom-in;
  position: relative;
}

.tsp-gallery-img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

/* Arrows — 48px touch target */
.tsp-gallery-arrows {
  position: absolute;
  top: 50%;
  left: 12px;
  right: 12px;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 2;
}
.tsp-gallery-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  opacity: 0;
  transition: opacity 0.2s, transform 0.15s;
  color: var(--tsp-text);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.tsp-gallery-arrow:active { transform: scale(0.94); }
.tsp-gallery-stage:hover ~ .tsp-gallery-arrows .tsp-gallery-arrow,
.tsp-gallery-arrows:hover .tsp-gallery-arrow {
  opacity: 1;
}

/* Dots */
.tsp-gallery-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  margin-top: 18px;
}
.tsp-gallery-dot {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
}
.tsp-gallery-dot::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--tsp-border-strong);
  transition: background 0.25s, width 0.25s, height 0.25s, border-radius 0.25s;
}
.tsp-gallery-dot:hover::before {
  background: var(--tsp-text-muted);
}
.tsp-gallery-dot.is-active::before {
  background: var(--tsp-orange);
  width: 24px;
  height: 4px;
  border-radius: 2px;
}

/* Thumbnail strip */
.tsp-gallery-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.tsp-gallery-thumbs::-webkit-scrollbar { display: none; }

.tsp-thumb {
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: var(--tsp-radius);
  background: none;
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.2s, opacity 0.2s;
  opacity: 0.55;
}
.tsp-thumb:hover {
  opacity: 0.85;
  border-color: var(--tsp-border-strong);
}
.tsp-thumb.is-active {
  opacity: 1;
  border-color: var(--tsp-orange);
}
.tsp-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Zoom icon — larger touch area */
.tsp-gallery-zoom {
  position: absolute;
  top: 12px;
  right: 12px;
  color: var(--tsp-text);
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
  background: rgba(255,255,255,0.85);
  border-radius: 50%;
  padding: 12px;
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.tsp-gallery-trigger:hover .tsp-gallery-zoom { opacity: 1; }

/* Lightbox */
.tsp-lightbox {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tsp-lightbox-bg {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.94);
  backdrop-filter: blur(16px);
}
.tsp-lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 1;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  color: #fff;
  cursor: pointer;
  transition: background 0.15s;
}
.tsp-lightbox-close:hover { background: rgba(255,255,255,0.12); }
.tsp-lightbox-close:active { transform: scale(0.94); }
.tsp-lightbox-img {
  position: relative;
  z-index: 0;
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--tsp-radius);
}

/* ═══════════════════════════════════════════════════
   PRODUCT INFO — right column
   ═══════════════════════════════════════════════════ */

.tsp-badge {
  display: inline-block;
  background: var(--tsp-text);
  color: #fff;
  font-family: var(--tsp-font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 4px;
  margin-bottom: 20px;
  align-self: flex-start;
}

.thorzy-product-title {
  font-family: var(--tsp-font-display) !important;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem) !important;
  font-weight: 700 !important;
  line-height: 1.08 !important;
  letter-spacing: -0.03em;
  margin: 0 0 12px;
  color: var(--tsp-text);
}

/* Rating */
.wc-block-components-product-rating {
  color: var(--tsp-text-secondary);
  font-size: 14px;
  margin-bottom: 20px;
}
.wc-block-components-product-rating__stars { color: var(--tsp-orange); letter-spacing: 2px; }
.star-rating span::before,
.wc-block-components-product-rating__stars span::before { color: var(--tsp-orange) !important; }

/* Price */
.wc-block-components-product-price {
  font-family: var(--tsp-font-display);
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.wc-block-components-product-price del {
  color: var(--tsp-text-muted);
  font-weight: 400;
  font-size: 1.1rem;
  margin-right: 8px;
}
.wc-block-components-product-price ins { text-decoration: none; color: #dc2626; }

/* Excerpt */
.thorzy-product-excerpt {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--tsp-text-secondary);
  margin-bottom: 20px;
}

/* Highlights */
.tsp-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.tsp-highlights li {
  position: relative;
  padding-left: 24px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
}
.tsp-highlights li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--tsp-orange);
}

/* ═══════════════════════════════════════════════════
   ADD TO CART — Variations
   ═══════════════════════════════════════════════════ */

.wp-block-add-to-cart-form .variations { border: none; margin-bottom: 24px; }
.wp-block-add-to-cart-form .variations tbody,
.wp-block-add-to-cart-form .variations tr { display: block; }
.wp-block-add-to-cart-form .variations .label {
  display: block;
  font-family: var(--tsp-font-display);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--tsp-text);
  margin-bottom: 12px;
}
.wp-block-add-to-cart-form .variations .value { display: block; }

/* Native select — styled to match brand */
.wp-block-add-to-cart-form .variations select {
  display: block;
  width: 100%;
  max-width: 320px;
  padding: 12px 40px 12px 16px;
  font-family: var(--tsp-font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--tsp-text);
  background: var(--tsp-surface);
  border: 1px solid var(--tsp-border);
  border-radius: var(--tsp-radius);
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5l5 5 5-5' stroke='%23525252' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  transition: border-color 0.2s;
}
.wp-block-add-to-cart-form .variations select:hover {
  border-color: var(--tsp-border-strong);
}
.wp-block-add-to-cart-form .variations select:focus {
  outline: none;
  border-color: var(--tsp-orange);
  box-shadow: 0 0 0 3px rgba(249,115,22,0.15);
}

/* Hide JS-generated swatches if still present */
.thorzy-swatches { display: none; }

/* Clear link */
.reset_variations {
  display: inline-block !important;
  font-family: var(--tsp-font-body);
  font-size: 13px;
  color: var(--tsp-text-muted) !important;
  text-decoration: underline;
  margin-top: 8px;
  transition: color 0.15s;
}
.reset_variations:hover { color: var(--tsp-text) !important; }

/* Quantity selector — 48px height */
.wc-block-components-quantity-selector {
  border: 1px solid var(--tsp-border) !important;
  border-radius: var(--tsp-radius) !important;
  width: 124px !important;
  height: 48px;
  overflow: hidden;
}
.wc-block-components-quantity-selector__input {
  font-family: var(--tsp-font-display) !important;
  font-weight: 600 !important;
  font-size: 16px !important;
}
.wc-block-components-quantity-selector__button {
  font-size: 20px !important;
  color: var(--tsp-text) !important;
  min-width: 40px;
}

/* ATC button — press animation */
.single_add_to_cart_button {
  width: 100%;
  padding: 16px 32px !important;
  background: var(--tsp-orange) !important;
  color: #fff !important;
  border: none !important;
  border-radius: var(--tsp-radius) !important;
  font-family: var(--tsp-font-display) !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
  margin-top: 16px;
}
.single_add_to_cart_button:hover { background: var(--tsp-orange-hover) !important; }
.single_add_to_cart_button:active { transform: scale(0.98); }

/* ═══════════════════════════════════════════════════
   SECTIONS — below the two columns
   ═══════════════════════════════════════════════════ */

.tsp-specs,
.tsp-in-the-box,
.tsp-use-case,
.tsp-video {
  margin-bottom: var(--tsp-section-gap);
}

.tsp-section-title {
  font-family: var(--tsp-font-display) !important;
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  color: var(--tsp-text);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 40px;
  position: relative;
}
.tsp-section-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 32px;
  height: 3px;
  background: var(--tsp-orange);
}

/* Specs table */
.tsp-specs-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--tsp-border);
  border-radius: var(--tsp-radius-lg);
  overflow: hidden;
}
.tsp-specs-table tr {
  display: grid;
  grid-template-columns: 200px 1fr;
  border-bottom: 1px solid var(--tsp-border);
}
.tsp-specs-table tr:last-child { border-bottom: none; }
.tsp-specs-table tr:nth-child(even) { background: #fafaf7; }
.tsp-specs-table th,
.tsp-specs-table td {
  padding: 16px 24px;
  text-align: left;
  font-size: 14px;
}
.tsp-specs-table th {
  font-family: var(--tsp-font-display);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--tsp-text-secondary);
  border-right: 1px solid var(--tsp-border);
  background: rgba(0,0,0,0.015);
}

/* In the box */
.tsp-box-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.tsp-box-list li {
  padding: 10px 20px;
  background: var(--tsp-surface);
  border: 1px solid var(--tsp-border);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
}

/* Best For */
.tsp-use-case p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--tsp-text-secondary);
  padding: 32px;
  border: 1px solid var(--tsp-border);
  border-left: 4px solid var(--tsp-orange);
  background: var(--tsp-surface);
  border-radius: 0 var(--tsp-radius-lg) var(--tsp-radius-lg) 0;
  margin: 0;
}

/* Video */
.tsp-video-wrapper {
  border-radius: var(--tsp-radius-lg);
  overflow: hidden;
  background: var(--tsp-text);
}
.tsp-video-wrapper iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
}

/* ── Flatten WC tabs ────────────────────────────── */
.thorzy-product-details-flat .wc-tabs { display: none !important; }
.thorzy-product-details-flat .woocommerce-Tabs-panel {
  display: block !important;
  border: none !important;
  margin-bottom: var(--tsp-section-gap);
}
.thorzy-product-details-flat .woocommerce-Tabs-panel h2 {
  font-family: var(--tsp-font-display);
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 32px;
  padding-bottom: 12px;
  position: relative;
}
.thorzy-product-details-flat .woocommerce-Tabs-panel h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 3px;
  background: var(--tsp-orange);
}
.thorzy-product-details-flat .woocommerce-Tabs-panel p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--tsp-text-secondary);
}

/* ── Reviews ────────────────────────────────────── */
.woocommerce-Reviews-title { display: none; }
.woocommerce-noreviews { color: var(--tsp-text-muted); font-size: 14px; }
.star-rating { color: var(--tsp-orange) !important; }
.commentlist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.commentlist .review {
  padding: 24px;
  background: var(--tsp-surface);
  border: 1px solid var(--tsp-border);
  border-radius: var(--tsp-radius-lg);
}
.commentlist .review .woocommerce-review__author {
  font-family: var(--tsp-font-display);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.04em;
}
.commentlist .review .woocommerce-review__published-date {
  font-size: 13px;
  color: var(--tsp-text-muted);
}
.comment-respond {
  margin-top: 48px;
  padding: 32px;
  background: var(--tsp-surface);
  border: 1px solid var(--tsp-border);
  border-radius: var(--tsp-radius-lg);
}
.comment-form-comment textarea {
  width: 100%;
  border: 1px solid var(--tsp-border);
  border-radius: var(--tsp-radius);
  padding: 14px 18px;
  font-family: var(--tsp-font-body);
  font-size: 15px;
  min-height: 120px;
}
.comment-form-comment label,
.comment-form-author label,
.comment-form-email label {
  font-family: var(--tsp-font-display);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 8px;
}
.form-submit .submit {
  background: var(--tsp-orange);
  color: #fff;
  border: none;
  border-radius: var(--tsp-radius);
  padding: 16px 36px;
  font-family: var(--tsp-font-display);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
}
.form-submit .submit:active { transform: scale(0.98); }

/* ── Sticky Bottom Bar ──────────────────────────── */
.thorzy-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--tsp-border);
  padding: 12px 0;
  padding-bottom: max(12px, env(safe-area-inset-bottom));
  display: none;
  box-sizing: border-box;
}
.thorzy-sticky-bar.is-visible { display: block; }
.thorzy-sticky-bar__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--wp--style--root--padding-right, 24px);
}
.thorzy-sticky-bar__price {
  font-family: var(--tsp-font-display);
  font-size: 1.25rem;
  font-weight: 700;
  white-space: nowrap;
}
.thorzy-sticky-bar__qty {
  display: flex;
  align-items: center;
  border: 1px solid var(--tsp-border);
  border-radius: var(--tsp-radius);
  overflow: hidden;
}
.thorzy-sticky-bar__qty-btn {
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  font-size: 20px;
  cursor: pointer;
  color: var(--tsp-text);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.1s;
}
.thorzy-sticky-bar__qty-btn:hover { background: #f5f5f4; }
.thorzy-sticky-bar__qty-btn:active { background: #eee; }
.thorzy-sticky-bar__qty-input {
  width: 48px;
  height: 44px;
  border: none;
  border-left: 1px solid var(--tsp-border);
  border-right: 1px solid var(--tsp-border);
  text-align: center;
  font-family: var(--tsp-font-display);
  font-weight: 600;
  font-size: 16px;
  background: transparent;
  -moz-appearance: textfield;
}
.thorzy-sticky-bar__qty-input::-webkit-inner-spin-button,
.thorzy-sticky-bar__qty-input::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }
.thorzy-sticky-bar__atc {
  flex: 1;
  height: 44px;
  background: var(--tsp-orange);
  color: #fff;
  border: none;
  border-radius: var(--tsp-radius);
  font-family: var(--tsp-font-display);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
}
.thorzy-sticky-bar__atc:hover { background: var(--tsp-orange-hover); }
.thorzy-sticky-bar__atc:active { transform: scale(0.97); }

/* ── Kill extra WC wrapper ──────────────────────── */
body.single-product > .wp-block-group.woocommerce.product.is-layout-flow {
  padding: 0 !important;
  max-width: none !important;
}

/* ── Breadcrumbs ────────────────────────────────── */
.woocommerce.wp-block-breadcrumbs {
  padding-top: 0;
  margin-bottom: 20px;
  font-size: 13px;
  color: var(--tsp-text-muted);
}
.woocommerce.wp-block-breadcrumbs a {
  color: var(--tsp-text-secondary);
  text-decoration: none;
}
.woocommerce.wp-block-breadcrumbs a:hover {
  color: var(--tsp-orange);
}

/* ── Product Meta ───────────────────────────────── */
.wp-block-woocommerce-product-meta {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--tsp-border);
  font-size: 13px;
  color: var(--tsp-text-muted);
}
.wp-block-woocommerce-product-meta .wp-block-post-terms {
  font-size: 13px;
}
.wp-block-woocommerce-product-meta .wp-block-post-terms__prefix {
  font-weight: 600;
  color: var(--tsp-text-secondary);
}
.wp-block-woocommerce-product-meta a {
  color: var(--tsp-text);
  text-decoration: none;
}
.wp-block-woocommerce-product-meta a:hover {
  color: var(--tsp-orange);
}

/* ── Hidden ─────────────────────────────────────── */
body.single-product .wc-block-components-product-sale-badge { display: none !important; }
body.single-product .wc-block-related-products { display: none; }

/* ── WC Global Overrides ────────────────────────── */
.wc-block-components-button {
  font-family: var(--tsp-font-display);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.wc-block-product-stock-indicator {
  font-family: var(--tsp-font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 12px;
}

/* ── Mobile ─────────────────────────────────────── */
@media (max-width: 767px) {
  .thorzy-single-product {
    padding-top: 16px;
    padding-bottom: 100px;
  }

  /* Stack columns */
  .thorzy-product-main {
    flex-direction: column;
    gap: 0;
    margin-bottom: var(--tsp-section-gap-mobile);
  }
  .thorzy-gallery-col {
    position: static;
    flex-basis: auto !important;
    width: 100% !important;
    margin-bottom: 28px;
  }
  .thorzy-info-col {
    flex-basis: auto !important;
    width: 100% !important;
    padding: 0;
  }

  /* Gallery full-bleed */
  .tsp-gallery-stage { border-radius: 0; }
  .tsp-gallery-arrows { left: 6px; right: 6px; }
  .tsp-gallery-arrow { width: 40px; height: 40px; opacity: 0.75; }
  .tsp-gallery-dots { margin-top: 14px; }
  .tsp-gallery-dot { width: 36px; height: 36px; }
  .tsp-gallery-zoom { top: 8px; right: 8px; padding: 10px; }
  .tsp-gallery-thumbs { gap: 8px; }
  .tsp-thumb { flex: 0 0 56px; width: 56px; height: 56px; }

  /* Typography scale down */
  .thorzy-product-title {
    font-size: clamp(1.5rem, 5vw, 2rem) !important;
  }
  .wc-block-components-product-price {
    font-size: 1.35rem;
  }

  /* Sections */
  .tsp-specs,
  .tsp-in-the-box,
  .tsp-use-case,
  .tsp-video { margin-bottom: var(--tsp-section-gap-mobile); }
  .tsp-section-title { font-size: 1.1rem !important; margin-bottom: 32px; }
  .tsp-specs-table tr { grid-template-columns: 1fr; }
  .tsp-specs-table th {
    border-right: none;
    border-bottom: 1px solid var(--tsp-border);
    padding: 12px 16px 6px;
  }
  .tsp-specs-table td { padding: 6px 16px 12px; }
  .tsp-use-case p { padding: 20px; font-size: 15px; }
  .tsp-box-list li { font-size: 13px; }

  /* Select full-width */
  .wp-block-add-to-cart-form .variations select {
    max-width: 100%;
  }

  /* Product meta */
  .wp-block-woocommerce-product-meta .wp-block-group {
    flex-direction: column;
    gap: 4px;
  }

  /* Breadcrumbs */
  .woocommerce.wp-block-breadcrumbs {
    font-size: 12px;
    margin-bottom: 12px;
  }

  /* Sticky bar */
  .thorzy-sticky-bar { padding: 10px 0; }
  .thorzy-sticky-bar__inner { padding: 0 16px; gap: 10px; }
  .thorzy-sticky-bar__price { font-size: 1rem; }
  .thorzy-sticky-bar__qty-btn { width: 38px; height: 38px; }
  .thorzy-sticky-bar__qty-input { width: 40px; height: 38px; }
  .thorzy-sticky-bar__atc { height: 38px; font-size: 12px; }

  /* Flattened tabs */
  .thorzy-product-details-flat .woocommerce-Tabs-panel {
    margin-bottom: var(--tsp-section-gap-mobile);
  }
  .thorzy-product-details-flat .woocommerce-Tabs-panel h2 {
    font-size: 1.1rem;
    margin-bottom: 24px;
  }

  /* Reviews */
  .comment-respond { padding: 20px; margin-top: 32px; }
  .commentlist .review { padding: 20px; }

  /* Lightbox */
  .tsp-lightbox-close { top: 12px; right: 12px; width: 44px; height: 44px; }
  .tsp-lightbox-img { max-width: 96vw; max-height: 80vh; }
}
