/*
Theme Name: Thaivap
Theme URI: https://thaivap.com
Author: Thaivap
Author URI: https://thaivap.com
Description: A modern vaporizer e-commerce theme for WordPress/WooCommerce, inspired by premium vape store designs.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: thaivap
Tags: e-commerce, woocommerce, custom-menu, featured-images, theme-options
*/

/* ==========================================================================
   CSS Custom Properties
   ========================================================================== */
:root {
  --color-black: #231f20;
  --color-dark-gray: #434343;
  --color-gray-600: #757575;
  --color-gray-700: #595959;
  --color-gray-800: #424242;
  --color-gray-900: #212121;
  --color-silver: #bdbdbd;
  --color-light-gray: #f5f5f5;
  --color-gray-100: #f5f5f5;
  --color-gray-150: #f0f0f0;
  --color-gray-200: #e0e0e0;
  --color-brown: #d3d1c6;
  --color-green: #35be25;
  --color-green-dark: #009600;
  --color-green-light: #00b900;
  --color-orange: #ff9300;
  --color-star: #f6a622;
  --color-white: #ffffff;
  --color-red: #ea0a0a;

  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Montserrat', sans-serif;

  --max-width: 1216px;
  --max-width-narrow: 1088px;

  --bp-small: 659px;
  --bp-medium: 660px;
  --bp-large: 1216px;

  --header-height-mobile: 56px;
  --header-height-desktop: 82px;
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--color-black);
  background-color: var(--color-white);
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

article, aside, footer, header, nav, label, section {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* ==========================================================================
   Layout — Container
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
.container--narrow {
  max-width: var(--max-width-narrow);
}

h1, h2, h3, h4, h5, h6 {
  -webkit-font-smoothing: antialiased;
  font-weight: 700;
  margin: 0;
  font-family: var(--font-display);
}

p {
  margin-bottom: 8px;
  margin-top: 8px;
  font-size: 15px;
  line-height: 24px;
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--color-dark-gray);
}

hr {
  box-sizing: content-box;
  height: 1px;
  overflow: visible;
  border: 0;
  background: var(--color-silver);
  margin-top: 24px;
  margin-bottom: 24px;
}

b, strong {
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
}

button {
  font-family: sans-serif;
  border: 0;
  cursor: pointer;
  background: transparent;
}

input, textarea, select {
  font-family: var(--font-display);
  font-size: 13px;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #fff;
  padding: 12px 16px;
  padding-right: 28px;
  width: 100%;
  border-radius: 4px;
  border: 1px solid var(--color-silver);
  font-weight: 400;
  color: var(--color-gray-800);
}

[hidden] {
  display: none !important;
}

.visually-hidden {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}

.skip-link:focus {
  clip: auto;
  height: auto;
  width: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  background: var(--color-green);
  color: #fff;
  padding: 16px;
}

/* ==========================================================================
   Typography
   ========================================================================== */
.type--main-title {
  font-size: 36px;
  line-height: 40px;
  font-weight: 700;
}

.type--secondary-title {
  font-weight: bold;
  font-size: 21px;
  color: var(--color-dark-gray);
  font-family: var(--font-display);
  -webkit-font-smoothing: antialiased;
}

.type--section-subtitle {
  font-size: 15px;
  color: var(--color-dark-gray);
  font-family: var(--font-body);
}

.type--label {
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 300;
}

.type--small {
  font-size: 11px;
  line-height: 16px;
  font-weight: 300;
  color: #939390;
  font-family: var(--font-display);
}

.type--meta,
.type--meta a {
  font-weight: 300;
  font-size: 13px;
  color: #939390;
  text-decoration: none;
  line-height: 16px;
  font-family: var(--font-display);
}

@media only screen and (max-width: 659px) {
  .type--main-title {
    font-size: 30px;
    line-height: 36px;
  }
}

/* ==========================================================================
   Layout
   ========================================================================== */
.section-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 16px;
}

.section-wrap--narrow {
  max-width: var(--max-width-narrow);
}

.grid {
  display: flex;
  flex-wrap: wrap;
  margin-left: -24px;
}

.grid::after {
  content: '';
  display: table;
  clear: both;
}

.grid__item {
  padding-left: 24px;
  width: 100%;
}

/* Grid sizes */
.one-whole { width: 100%; }
.one-half { width: 50%; }
.one-third { width: 33.333%; }
.two-thirds { width: 66.667%; }
.one-quarter { width: 25%; }
.three-quarters { width: 75%; }
.one-fifth { width: 20%; }
.two-fifths { width: 40%; }
.three-fifths { width: 60%; }

@media only screen and (min-width: 660px) {
  .md\:one-half { width: 50%; }
  .md\:one-third { width: 33.333%; }
  .md\:two-thirds { width: 66.667%; }
}

@media only screen and (min-width: 1216px) {
  .lg\:one-quarter { width: 25%; }
  .lg\:one-fifth { width: 20%; }
  .lg\:one-third { width: 33.333%; }
  .lg\:three-quarters { width: 75%; }
  .lg\:one-half { width: 50%; }
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-block;
  background: transparent;
  text-decoration: none;
  padding: 12px 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn--cta {
  font-family: var(--font-display);
  min-width: 128px;
  font-weight: 400;
  font-size: 14px;
  border-radius: 4px;
  border: 2px solid;
  color: var(--color-dark-gray);
  text-align: center;
}

.btn--cta:hover {
  color: var(--color-green);
}

.btn--action {
  font-family: var(--font-display);
  background: var(--color-dark-gray);
  color: #fff;
  min-width: 128px;
  font-weight: 400;
  font-size: 13px;
  border: 0;
  border-radius: 4px;
  padding: 17px 24px;
  width: 100%;
}

.btn--action:hover {
  background: var(--color-green);
}

.btn--green {
  background: var(--color-green);
  color: #fff;
  border: none;
  font-weight: 500;
}

.btn--green:hover {
  background: var(--color-green-dark);
  color: #fff;
}

/* ==========================================================================
   Promo Bar
   ========================================================================== */
.promobar {
  background: var(--color-green);
  color: var(--color-gray-900);
  font-size: 15px;
  padding: 12px 16px;
  text-align: center;
  line-height: 1;
  white-space: nowrap;
}

.promobar a {
  color: var(--color-gray-900);
  font-weight: 500;
  font-family: var(--font-display);
  text-decoration: none;
}

.promobar a:hover {
  text-decoration: underline;
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  font-family: var(--font-display);
  background: var(--color-black);
  z-index: 100;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
}
.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) {
  .admin-bar .site-header { top: 46px; }
}

.header-wrap {
  max-width: 1358px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 8px;
}

/* Logo */
.header__logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.header__logo-lockup {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header__logo-icon {
  color: #fff;
  flex-shrink: 0;
}

.header__logo-icon svg {
  display: block;
}

.header__logo-text {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.2;
}

.header__logo-img {
  height: 40px;
  width: auto;
}

.header__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin: 0;
  padding: 0 6px;
  text-align: center;
  height: var(--header-height-mobile);
  background: transparent;
  font-size: 11px;
  line-height: 1;
  border-radius: 0;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
}

.header__btn svg {
  flex-shrink: 0;
}

.header__btn-label {
  font-family: var(--font-display);
  font-size: 15px;
  color: #fff;
}

/* Desktop nav — center */
.site-nav {
  display: none;
  flex: 1;
  justify-content: center;
}

.site-nav__list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav__item {
  position: relative;
}

.site-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #fff;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 400;
  padding: 0 14px;
  height: var(--header-height-desktop);
  transition: color .15s;
  white-space: nowrap;
}

.site-nav__link:hover,
.site-nav__item:hover > .site-nav__link {
  color: rgba(255, 255, 255, .7);
}

.site-nav__chevron {
  transition: transform .2s;
  flex-shrink: 0;
}

.site-nav__item:hover > .site-nav__link .site-nav__chevron {
  transform: rotate(180deg);
}

/* Dropdown — superseded by mega menu; retained as no-op for legacy walker output */

.header__actions {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-left: auto;
}

/* Cart count badge */
.cart__count {
  font-size: 10px;
  font-weight: 700;
  background: var(--color-green-light);
  min-width: 18px;
  height: 18px;
  line-height: 18px;
  padding: 0 3px;
  text-align: center;
  position: absolute;
  top: 16px;
  right: -2px;
  border-radius: 9px;
  color: #fff;
}

/* Mobile menu button */
.btn--menu {
  width: 48px;
  padding: 0;
}

@media only screen and (min-width: 1216px) {
  .site-nav {
    display: flex;
  }

  .header__btn {
    height: var(--header-height-desktop);
  }

  .cart__count {
    top: 20px;
    right: 0;
  }

  .btn--menu {
    display: none;
  }

  .header-wrap {
    padding: 0 24px;
  }
}

/* Mega Menu */
.mega-menu {
  display: none;
  position: fixed;
  top: 121px; /* header 82px + promo 39px */
  left: 0;
  right: 0;
  background: #fff;
  color: #1a1a1a;
  box-shadow: 0 8px 32px rgba(0,0,0,.15);
  border-top: 3px solid #35be25;
  z-index: 300;
}

.admin-bar .mega-menu {
  top: 153px; /* 121px + 32px admin bar */
}

.site-nav__item:hover > .mega-menu,
.site-nav__item.is-dropdown-open > .mega-menu {
  display: block;
}

.mega-menu__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 32px 24px;
}

.mega-menu__col {
  padding: 0 24px;
  border-right: 1px solid #f0f0f0;
}

.mega-menu__col:first-child { padding-left: 0; }
.mega-menu__col:last-child { border-right: none; padding-right: 0; }

.mega-menu__heading {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #1a1a1a;
  margin: 0 0 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #35be25;
}

.mega-menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mega-menu__list li {
  margin-bottom: 2px;
}

.mega-menu__link {
  display: block;
  color: #444;
  text-decoration: none;
  font-size: 14px;
  padding: 5px 0;
  transition: color .15s;
  font-family: var(--font-display);
}

.mega-menu__link:hover {
  color: #35be25;
}

/* ==========================================================================
   Drawer Overlay
   ========================================================================== */
.drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 399;
}
.drawer-overlay.is-active { display: block; }

/* ==========================================================================
   Cart Drawer (right side)
   ========================================================================== */
.drawer {
  position: fixed;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 400;
  background: #fff;
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.drawer--right {
  right: 0; top: 0; bottom: 0;
  width: 360px;
  transform: translateX(100%);
}
.admin-bar .drawer--right { top: 32px; }
.drawer.is-open { transform: translateX(0); }

.drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #e8e8e8;
  font-weight: 600;
  font-size: 15px;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 1;
}
.drawer__close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: #333;
}

/* ==========================================================================
   Mobile Nav Drawer (left side — POTV style)
   ========================================================================== */
.drawer--left {
  left: 0; top: 0; bottom: 0;
  width: 100%;
  max-width: 100vw;
  transform: translateX(-100%);
  display: flex;
  flex-direction: column;
}

/* Header */
.mobile-nav__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 56px;
  border-bottom: 1px solid #ebebeb;
  flex-shrink: 0;
  font-family: var(--font-display);
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 1;
}
.mobile-nav__logo {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-text);
  text-decoration: none;
}
.mobile-nav__close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: #333;
  display: flex;
  align-items: center;
}

/* Scrollable body */
.mobile-nav__body {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 40px;
}

/* Main nav list */
.mobile-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mobile-nav__item {
  border-bottom: 1px solid #ebebeb;
}

/* Accordion toggle button */
.mobile-nav__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 20px;
  background: none;
  border: none;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--color-black);
  text-align: left;
  cursor: pointer;
  letter-spacing: .01em;
}
.mobile-nav__toggle:hover { color: var(--color-primary); }

/* Chevron rotates when open */
.mobile-nav__chevron {
  flex-shrink: 0;
  transition: transform .25s ease;
  color: #888;
}
.mobile-nav__toggle[aria-expanded="true"] .mobile-nav__chevron {
  transform: rotate(90deg);
  color: var(--color-primary);
}

/* Sub-menu */
.mobile-nav__sub {
  list-style: none;
  margin: 0;
  padding: 0;
  background: #fafafa;
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.mobile-nav__sub.is-open {
  padding-bottom: 8px;
}
.mobile-nav__sub.is-open { max-height: 1000px; }
.mobile-nav__sub li a {
  display: block;
  padding: 11px 20px 11px 32px;
  font-size: 14px;
  color: #444;
  text-decoration: none;
  border-bottom: 1px solid #f0f0f0;
}
.mobile-nav__sub li:last-child a { border-bottom: none; }
.mobile-nav__sub li a:hover { color: var(--color-primary); background: #f0faf0; }

/* Support section */
.mobile-nav__support {
  padding: 16px 20px 0;
  border-top: 1px solid #ebebeb;
}
.mobile-nav__support-heading {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #aaa;
  margin: 0 0 8px;
}
.mobile-nav__support-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mobile-nav__support-list li { border-bottom: 1px solid #f0f0f0; }
.mobile-nav__support-list li:last-child { border-bottom: none; }
.mobile-nav__support-list li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 0;
  font-size: 14px;
  color: #444;
  text-decoration: none;
}
.mobile-nav__support-list li a:hover { color: var(--color-primary); }
.mobile-nav__support-list li a svg { flex-shrink: 0; color: #888; }

@media (min-width: 1216px) {
  .drawer--left { display: none !important; }
}

/* ==========================================================================
   Main Content Spacing
   ========================================================================== */
.site-main {
  margin-top: 95px;
}
.admin-bar .site-main {
  margin-top: 127px; /* 95 + 32 admin bar */
}

@media only screen and (min-width: 1216px) {
  .site-main {
    margin-top: 121px;
  }
  .admin-bar .site-main {
    margin-top: 153px; /* 121 + 32 admin bar */
  }
}
@media (max-width: 782px) {
  .admin-bar .site-main {
    margin-top: 141px; /* 95 + 46 admin bar mobile */
  }
}

/* ==========================================================================
   Hero / Sale Section
   ========================================================================== */
.hero-sale {
  position: relative;
  background: #000;
  overflow: hidden;
}

.hero-sale__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-sale__content {
  position: relative;
  z-index: 2;
  padding: 32px 24px 48px;
  text-align: center;
}

.hero-sale__title {
  color: #fff;
  font-size: 32px;
  line-height: 1.2;
  margin: 24px 0 0;
}

.hero-sale__subtitle {
  color: #fff;
  font-size: 16px;
  margin-bottom: 24px;
}

.hero-sale__subtitle a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media only screen and (min-width: 660px) {
  .hero-sale__title {
    font-size: 36px;
  }
}

@media only screen and (min-width: 1216px) {
  .hero-sale__title {
    font-size: 48px;
    line-height: 56px;
  }

  .hero-sale__subtitle {
    font-size: 18px;
    margin-bottom: 64px;
  }

  .hero-sale__content {
    padding-bottom: 64px;
  }
}

/* ==========================================================================
   Product Slider
   ========================================================================== */
.product-slider {
  position: relative;
}

.product-slider__track {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 20px;
  padding: 8px 24px 20px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.product-slider__track::-webkit-scrollbar {
  display: none;
}

.product-slider__btn {
  display: none;
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #e0e0e0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.10);
  cursor: pointer;
  z-index: 3;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: box-shadow 0.2s ease;
}

.product-slider__btn:hover {
  background: #fff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  border-color: #bbb;
}

.product-slider__btn svg {
  width: 24px;
  height: 24px;
  color: #333;
}

.product-slider__btn--prev {
  left: 0;
}

.product-slider__btn--next {
  right: 0;
}

@media only screen and (min-width: 660px) {
  .product-slider__btn {
    display: flex;
  }
}

/* ==========================================================================
   Product Card
   ========================================================================== */
/* legacy product-card stub — superseded by collection CSS below */
.product-card {
  flex-shrink: 0;
  padding-right: 0;
  margin-bottom: 0;
}

.product-card__inner {
  background: #fff;
  border-radius: 8px;
  height: 100%;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--color-gray-800);
  padding-top: 0;
  position: relative;
  border: 1px solid #e8e8e8;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  transition: box-shadow 0.2s ease;
}

.product-card__inner:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.10);
}

.product-card__image-wrap {
  position: relative;
  padding: 20px 20px 40px;
  aspect-ratio: 1 / 1;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 8px 8px 0 0;
}

.product-card__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
}

.product-card__image-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card__inner:hover .product-card__image-hover {
  opacity: 1;
}

.product-card__content {
  padding: 8px 16px 14px;
  text-align: left;
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card__title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  margin: 4px 0 2px;
  -webkit-font-smoothing: antialiased;
  color: var(--color-gray-800);
  white-space: normal;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card__price {
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 13px;
  margin: 0;
  margin-top: auto;
  white-space: nowrap;
}

.product-card__price-was {
  font-weight: 400;
  color: var(--color-gray-600);
  margin-left: 4px;
  padding: 0 4px;
  position: relative;
}

.product-card__price-was::after {
  content: '';
  width: 100%;
  height: 1px;
  background: var(--color-red);
  position: absolute;
  left: 0;
  top: 50%;
}

/* Sale badge */
.product-card--sale .product-card__inner::before {
  content: "Sale";
  position: absolute;
  background-color: var(--color-green);
  color: #fff;
  font-weight: 700;
  width: 48px;
  line-height: 48px;
  height: 48px;
  border-radius: 50%;
  z-index: 3;
  left: 8px;
  top: 8px;
  font-size: 13px;
  text-align: center;
  -webkit-font-smoothing: antialiased;
  pointer-events: none;
}

/* Color swatches — POTV absolute overlap style */
.swatch-list {
  display: flex;
  gap: 4px;
  position: absolute;
  bottom: -14px;
  left: 10px;
  z-index: 2;
}

.swatch-list__item {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  padding: 0;
  display: inline-block;
  text-decoration: none;
  transition: border-color 0.2s, transform 0.2s;
}
.swatch-list__item:hover {
  border-color: #333;
  transform: scale(1.15);
}

/* Star ratings */
.reviews-widget {
  display: flex;
  align-items: center;
  gap: 1px;
}

.reviews-widget svg {
  width: 12px;
  height: 12px;
  fill: var(--color-star);
}

.reviews-widget__count {
  font-size: 12px;
  color: var(--color-dark-gray);
  margin-left: 4px;
}

@media only screen and (min-width: 660px) {
  /* legacy — product-card width handled by CSS grid in collection pages */
  .product-card__content {
    padding: 8px 24px 12px;
  }

  .swatch-list {
    left: 24px;
  }

  .product-card--sale .product-card__inner::before {
    left: 24px;
  }
}

@media only screen and (min-width: 1216px) {
  /* legacy — width managed by .product-grid CSS grid */
}

/* Product cards inside sliders need an explicit width since they are flex
   items in an overflow:auto track and are not constrained by a CSS grid. */
.product-slider .product-card {
  width: 200px;
  min-width: 200px;
}

@media only screen and (min-width: 660px) {
  .product-slider .product-card {
    width: 220px;
    min-width: 220px;
  }
}

@media only screen and (min-width: 1216px) {
  .product-slider .product-card {
    width: 230px;
    min-width: 230px;
  }
}

/* ==========================================================================
   Banner Section
   ========================================================================== */
.banners {
  padding: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.banner {
  min-height: 200px;
  overflow: hidden;
  background-color: var(--color-black);
  position: relative;
  margin-bottom: 16px;
  border-radius: 8px;
}

.banner:last-child {
  margin-bottom: 0;
}

.banner__picture {
  position: absolute;
  inset: 0;
  display: block;
}

.banner__picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.banner__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  padding: 16px;
  max-width: 100%;
  z-index: 2;
}

.banner__title {
  color: #fff;
  font-size: 30px;
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 8px;
  text-shadow: 0 0 16px rgba(0, 0, 0, 0.4);
}

.banner__subtitle {
  color: #fff;
  font-size: 18px;
  font-family: var(--font-body);
  margin-bottom: 18px;
  text-shadow: 0 0 16px rgba(0, 0, 0, 0.4);
}

.banner__cta {
  display: inline-block;
  background: var(--color-green);
  color: #fff;
  text-transform: uppercase;
  border: none;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  transition: background-color 280ms;
  margin-top: 16px;
}

.banner__cta:hover {
  background: var(--color-green-dark);
  color: #fff;
}

@media only screen and (min-width: 813px) {
  /* 3-banner layout: large left (60%) + 2 stacked right (40%) — like POTV */
  .banners--three {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 16px;
  }

  .banners--three .banner {
    margin-bottom: 0;
    min-height: 200px;
  }

  .banners--three .banner:nth-child(1) {
    grid-row: 1 / 3;    /* spans both rows — height = 2 × right + gap */
  }

  .banners--two {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 16px;
  }

  .banners--two .banner {
    margin-bottom: 0;
  }

  .banner__title {
    font-size: 30px;
  }

  .banners--three .banner:nth-child(1) .banner__title {
    font-size: 38px;
  }

  /* Right-side banners — smaller content to fit 200px height */
  .banners--three .banner:nth-child(2) .banner__content,
  .banners--three .banner:nth-child(3) .banner__content {
    padding: 12px;
    width: auto;
    max-width: 90%;
  }

  .banners--three .banner:nth-child(2) .banner__title,
  .banners--three .banner:nth-child(3) .banner__title {
    font-size: 22px;
    margin-bottom: 4px;
  }

  .banners--three .banner:nth-child(2) .banner__subtitle,
  .banners--three .banner:nth-child(3) .banner__subtitle {
    font-size: 13px;
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .banners--three .banner:nth-child(2) .banner__cta,
  .banners--three .banner:nth-child(3) .banner__cta {
    padding: 8px 20px;
    font-size: 12px;
    margin-top: 8px;
    white-space: nowrap;
    letter-spacing: 0.5px;
  }
}

/* ==========================================================================
   Testimonial Section — POTV style
   ========================================================================== */
.section-testimonial {
  background: var(--color-black);
  color: #fff;
  padding: 48px 24px;
}

.section-testimonial__inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.section-testimonial h2 {
  color: #fff;
  font-size: 21px;
  margin-bottom: 24px;
}

.section-testimonial blockquote {
  font-size: 18px;
  line-height: 1.7;
  margin: 0 0 16px;
  font-family: var(--font-body);
  color: rgba(255,255,255,.85);
  position: relative;
  padding-top: 32px;
}

.section-testimonial blockquote::before {
  content: '\201C';
  font-size: 64px;
  font-family: Georgia, serif;
  color: var(--color-green);
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
}

.section-testimonial cite {
  font-size: 15px;
  display: block;
  text-align: center;
  font-style: normal;
  color: var(--color-green);
  font-weight: 600;
}

@media only screen and (min-width: 1216px) {
  .section-testimonial {
    padding: 56px 16px;
  }

  .section-testimonial blockquote {
    font-size: 22px;
  }
}

/* ==========================================================================
   Collection Slider Section
   ========================================================================== */
.section-slider {
  padding: 48px 24px;
}

.section-slider__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
}

.section-slider__header {
  margin-bottom: 24px;
}

.section-slider__header h2 {
  text-align: left;
  margin-right: 8px;
}

.section-slider__footer {
  text-align: center;
  margin-bottom: 32px;
}

@media only screen and (min-width: 1216px) {
  .section-slider {
    padding: 56px 32px;
  }
}

/* ==========================================================================
   Blog / Vapelife Section
   ========================================================================== */
.section-blog {
  padding: 48px 0;
}

.section-blog__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-blog .grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-left: 0;
}

@media only screen and (min-width: 660px) {
  .section-blog .grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.section-blog .grid__item {
  padding-left: 0;
  width: auto;
}

.article-card {
  margin-bottom: 0;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  transition: box-shadow .2s, transform .2s;
}

.article-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
  transform: translateY(-2px);
}

.article-card__image {
  display: block;
  width: 100%;
  overflow: hidden;
}

.article-card__image img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform .3s;
}

.article-card:hover .article-card__image img {
  transform: scale(1.04);
}

.article-card__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-gray-800);
  -webkit-font-smoothing: antialiased;
  margin: 0 0 8px;
  display: block;
  padding: 16px 16px 0;
  text-decoration: none;
}

.article-card__title:hover {
  color: var(--color-green);
}

.article-card__excerpt {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  padding: 0 16px 16px;
  font-size: 13px;
  color: var(--color-gray-600);
  line-height: 1.5;
  margin: 0;
}

/* Social icons */
.social-icons {
  display: flex;
  align-items: center;
  gap: 16px;
}

.social-icons__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

.social-icons__item svg {
  width: 24px;
  height: 24px;
  fill: rgba(255,255,255,.5);
  transition: fill .2s;
}

.social-icons__item:hover svg {
  fill: var(--color-green);
}

/* ==========================================================================
   Newsletter Section
   ========================================================================== */
.section-newsletter {
  background: var(--color-brown);
  text-align: center;
  padding: 48px 24px;
}

.section-newsletter__input {
  flex: 1;
  margin-right: 16px;
  padding: 12px 16px;
  border: 1px solid var(--color-silver);
  border-radius: 4px;
  font-size: 14px;
}

.section-newsletter__form {
  display: flex;
  flex-wrap: wrap;
  max-width: 400px;
  margin: 0 auto;
}

/* ============================================================
   Authorized Dealer — brand logos section
   ============================================================ */
.section-authorized {
  background: var(--color-light-gray);
  padding: 40px 24px;
  text-align: center;
}
.section-authorized__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.section-authorized__title {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 8px;
}
.section-authorized__subtitle {
  font-size: 14px;
  color: var(--color-gray-600);
  margin: 0 0 28px;
  font-family: var(--font-body);
}
.section-authorized__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 24px 40px;
}
.section-authorized__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  opacity: .7;
  transition: opacity .2s;
}
.section-authorized__logo:hover { opacity: 1; }
.section-authorized__logo img {
  max-height: 40px;
  width: auto;
  filter: grayscale(100%);
  transition: filter .2s;
}
.section-authorized__logo:hover img { filter: none; }
.section-authorized__brand-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-black);
  letter-spacing: .06em;
  text-transform: uppercase;
  opacity: .6;
  transition: opacity .2s;
}
.section-authorized__logo:hover .section-authorized__brand-name {
  opacity: 1;
}
@media (max-width: 659px) {
  .section-authorized {
    padding: 32px 16px;
  }
  .section-authorized__title {
    font-size: 21px;
  }
  .section-authorized__logos {
    gap: 20px 32px;
  }
  .section-authorized__brand-name {
    font-size: 15px;
  }
}

/* Footer Newsletter — POTV dark style */
.section-footer-newsletter {
  background: var(--color-gray-800);
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.section-footer-newsletter__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}

.section-footer-newsletter__title {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 4px;
}

.section-footer-newsletter__subtitle {
  color: rgba(255,255,255,.6);
  font-size: 14px;
  margin: 0;
  font-family: var(--font-body);
}

.section-footer-newsletter__text-wrap {
  flex: 1;
  min-width: 250px;
}

.section-footer-newsletter__form {
  display: flex;
  gap: 8px;
  flex: 1;
  min-width: 280px;
}

.section-footer-newsletter__input {
  flex: 1;
  min-width: 0;
  height: 44px;
  border-radius: 4px;
  border: none;
  background: #fff;
  padding: 0 16px;
  font-size: 14px;
  font-family: var(--font-display);
}
.section-footer-newsletter__input:focus {
  outline: 2px solid var(--color-green);
}
.section-footer-newsletter__input::placeholder {
  color: #999;
}

.section-footer-newsletter__btn {
  flex-shrink: 0;
  background: var(--color-green);
  color: #fff;
  border: 2px solid var(--color-green);
  padding: 12px 24px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-display);
  cursor: pointer;
  transition: background .2s, border-color .2s;
  white-space: nowrap;
}
.section-footer-newsletter__btn:hover {
  background: var(--color-green-dark);
  border-color: var(--color-green-dark);
}

/* ==========================================================================
   Features Bar
   ========================================================================== */
.section-features {
  background: var(--color-light-gray);
  padding: 32px 16px;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}

.section-features__inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 24px;
  padding: 16px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 400px;
}

.feature-item__icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
}

.feature-item__title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.feature-item__title a {
  color: var(--color-gray-900);
  text-decoration: none;
}

.feature-item__text {
  font-size: 14px;
  margin: 0;
  color: var(--color-dark-gray);
}

@media only screen and (max-width: 659px) {
  .section-features {
    padding: 12px 16px;
  }
  .section-features__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 8px 0;
  }
  .feature-item {
    max-width: none;
    gap: 12px;
  }
  .feature-item__icon {
    width: 40px; height: 40px;
  }
  .feature-item__icon img {
    width: 40px; height: 40px;
  }
  .feature-item__title {
    font-size: 14px;
  }
  .feature-item__text {
    font-size: 13px;
  }
}

/* ==========================================================================
   Authorized Dealer / Brand Logos
   ========================================================================== */
.section-brands {
  border-top: 1px solid var(--color-brown);
  padding-top: 32px;
}

.brand-slider {
  display: flex;
  overflow-x: auto;
  gap: 0;
  padding-bottom: 20px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.brand-slider::-webkit-scrollbar {
  display: none;
}

.brand-slider__item {
  flex-shrink: 0;
  width: 20%;
  min-width: 120px;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.brand-slider__item img {
  max-width: 100px;
  max-height: 50px;
  object-fit: contain;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--color-black);
  color: rgba(255,255,255,.7);
}

.site-footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 24px 24px;
}

.site-footer__social {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 24px;
}

.footer-grid__column {
  display: flex;
  flex-direction: column;
}

.footer-grid__column a {
  display: block;
  padding: 8px 0;
  color: var(--color-silver);
  font-size: 14px;
  text-decoration: none;
  transition: color .2s;
}

.footer-grid__column a:hover {
  color: #fff;
  text-decoration: underline;
}

.site-footer__disclaimer {
  color: var(--color-silver);
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.site-footer__copyright {
  font-size: 12px;
  color: var(--color-silver);
}

.footer-social svg {
  fill: var(--color-silver);
}

.footer-social svg:hover {
  fill: var(--color-green);
}

/* ==========================================================================
   Age Verification Modal
   ========================================================================== */
.age-verification {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.age-verification.is-hidden {
  display: none;
}

.age-verification__dialog {
  text-align: center;
  max-width: 400px;
  padding: 24px;
  width: 100%;
}

.age-verification__title {
  color: #fff;
  font-size: 21px;
  margin-bottom: 16px;
}

.age-verification__subtitle {
  color: #fff;
  margin-bottom: 32px;
}

.age-verification__buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.age-verification__btn {
  display: block;
  border: 2px solid #fff;
  color: #fff;
  padding: 11px;
  width: 100px;
  text-align: center;
  border-radius: 2px;
  font-size: 14px;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.age-verification__btn--no {
  opacity: 0.4;
}

.age-verification__btn:hover,
.age-verification__btn:focus {
  opacity: 1;
  color: var(--color-green);
  border-color: var(--color-green);
}

/* ==========================================================================
   Search Overlay
   ========================================================================== */
.search-overlay {
  display: none;
  position: absolute;
  z-index: 50;
  background: #fff;
  width: 100%;
  box-shadow: 0 4px 2px -2px rgba(0, 0, 0, 0.2);
}

.search-overlay.is-active {
  display: block;
}

.search-overlay__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 16px;
  display: flex;
  gap: 8px;
}

.search-overlay__input {
  flex: 1;
  padding: 10px 12px;
  border: 1px solid #e2e8f0;
  border-radius: 2px;
  font-size: 16px;
  font-family: var(--font-display);
}

.search-overlay__input:focus {
  outline-color: var(--color-green-light);
}

.search-overlay__btn {
  padding: 8px;
  border-radius: 2px;
  background: var(--color-green);
  border: none;
  cursor: pointer;
}

.search-overlay__btn svg {
  fill: var(--color-dark-gray);
}

/* ==========================================================================
   WooCommerce Overrides
   ========================================================================== */
.woocommerce ul.products {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.woocommerce ul.products li.product {
  width: calc(25% - 18px);
  margin: 0;
  float: none;
}

.woocommerce ul.products li.product a img {
  border-radius: 8px;
}

.woocommerce .button,
.woocommerce a.button {
  background: var(--color-green) !important;
  color: #fff !important;
  border-radius: 4px !important;
  font-family: var(--font-display);
}

.woocommerce .button:hover,
.woocommerce a.button:hover {
  background: var(--color-green-dark) !important;
}

/* ==========================================================================
   Notice Banner
   ========================================================================== */
.notice-banner {
  background: #fff14f;
  color: var(--color-black);
  text-align: center;
  padding: 8px 16px;
}

.notice-banner a {
  color: var(--color-black);
}

.notice-banner__close {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: 16px;
}

/* ==========================================================================
   Philosophy / Info Section
   ========================================================================== */
.section-philosophy {
  background: var(--color-gray-100);
  padding: 32px 16px;
  text-align: center;
}

.section-philosophy__inner {
  max-width: 600px;
  margin: 0 auto;
  padding: 16px;
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-white { color: #fff; }
.text-green { color: var(--color-green); }
.text-gray { color: var(--color-gray-600); }

.bg-white { background-color: #fff; }
.bg-black { background-color: #000; }
.bg-gray-100 { background-color: var(--color-gray-100); }
.bg-brown { background-color: var(--color-brown); }
.bg-green { background-color: var(--color-green); }

.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }

.mx-auto { margin-left: auto; margin-right: auto; }
.mb-0 { margin-bottom: 0; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-40 { margin-bottom: 40px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }

.p-16 { padding: 16px; }
.p-24 { padding: 24px; }
.p-32 { padding: 32px; }
.py-16 { padding-top: 16px; padding-bottom: 16px; }
.py-32 { padding-top: 32px; padding-bottom: 32px; }
.px-16 { padding-left: 16px; padding-right: 16px; }

.max-w-400 { max-width: 400px; }
.max-w-600 { max-width: 600px; }
.max-w-800 { max-width: 800px; }
.max-w-1088 { max-width: 1088px; }

.radius-4 { border-radius: 4px; }
.radius-8 { border-radius: 8px; }
.radius-full { border-radius: 50%; }

.overflow-hidden { overflow: hidden; }
.relative { position: relative; }
.absolute { position: absolute; }
.block { display: block; }
.inline-block { display: inline-block; }
.w-full { width: 100%; }
.h-full { height: 100%; }
.no-underline { text-decoration: none; }
.uppercase { text-transform: uppercase; }
.bold { font-weight: 700; }
.antialiased { -webkit-font-smoothing: antialiased; }

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Hide/Show responsive */
@media only screen and (max-width: 659px) {
  .hide-mobile { display: none !important; }
}

@media only screen and (min-width: 660px) {
  .hide-tablet-up { display: none !important; }
}

@media only screen and (min-width: 1216px) {
  .hide-desktop { display: none !important; }
}

@media only screen and (max-width: 1215px) {
  .hide-below-desktop { display: none !important; }
}

/* ============================================================
   COLLECTION / SHOP PAGE
   ============================================================ */

.collection-page {
  min-height: 60vh;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Collection header */
.collection-header__banner {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.collection-header__banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,.6) 0%, rgba(0,0,0,.2) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 40px;
}
.collection-header__banner-overlay .collection-header__title { color: #fff; }
.collection-header__banner-overlay .collection-header__desc  { color: rgba(255,255,255,.85); max-width: 560px; margin: 8px 0 0; }
.collection-header__plain {
  padding: 32px 0 8px;
}
.collection-header__title {
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 700;
  margin: 0;
}
.collection-header__desc {
  color: var(--color-text-light);
  margin: 8px 0 0;
  max-width: 640px;
}

/* Breadcrumb bar */
.breadcrumb-bar {
  background: #f7f7f7;
  border-bottom: 1px solid #e8e8e8;
  padding: 10px 0;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  flex-wrap: wrap;
}
.breadcrumb a          { color: var(--color-text-light); }
.breadcrumb a:hover    { color: var(--color-primary); }
.breadcrumb__sep       { color: #ccc; }
.breadcrumb__current   { color: var(--color-text); font-weight: 500; }

/* Toolbar */
.filter-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0 16px;
  border-bottom: 1px solid #e8e8e8;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.filter-toolbar__toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  color: var(--color-text);
}
.filter-toolbar__toggle:hover { border-color: var(--color-primary); color: var(--color-primary); }
.filter-toolbar__count {
  background: var(--color-primary);
  color: #fff;
  border-radius: 10px;
  padding: 0 6px;
  font-size: 11px;
  font-weight: 700;
}
.filter-toolbar__right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.filter-toolbar__results {
  font-size: 13px;
  color: var(--color-text-light);
}

/* Sort form */
.sort-form {
  display: flex;
  align-items: center;
  gap: 8px;
}
.sort-form__label  { font-size: 13px; color: var(--color-text-light); white-space: nowrap; }
.sort-form__select {
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 7px 12px;
  font-size: 13px;
  background: #fff;
  cursor: pointer;
}

/* Active filter chips */
.active-filters {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  padding-bottom: 16px;
  border-bottom: 1px solid #e8e8e8;
  margin-bottom: 20px;
}
.active-filters__label { font-size: 13px; color: var(--color-text-light); }
.active-filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f0faf0;
  border: 1px solid #b8e4b8;
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 13px;
  color: var(--color-text);
  text-decoration: none;
}
.active-filter-chip:hover { background: #e2f5e2; }
.active-filter-chip__remove { font-size: 16px; color: #888; line-height: 1; }
.active-filters__clear {
  font-size: 13px;
  color: var(--color-primary);
  text-decoration: underline;
  margin-left: 8px;
}

/* Collection layout */
.collection-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 32px;
  align-items: start;
}

/* Filter sidebar */
.filter-sidebar {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
  padding: 0;
  position: sticky;
  top: calc(var(--header-height-desktop) + 16px);
}
.filter-sidebar__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #ddd;
}
.filter-sidebar__title  { font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: .05em; }
.filter-sidebar__close  { display: none; background: none; border: none; cursor: pointer; padding: 4px; }

.filter-group {
  border-bottom: 1px solid #ddd;
}
.filter-group__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 20px;
  background: none;
  border: none;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  cursor: pointer;
  color: var(--color-text);
  text-align: left;
}
.filter-group__toggle:hover { color: var(--color-primary); }
.filter-group__chevron {
  transition: transform .2s;
  flex-shrink: 0;
}
.filter-group__toggle[aria-expanded="false"] .filter-group__chevron { transform: rotate(-90deg); }
.filter-group__body {
  padding: 0 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.filter-group__body.is-collapsed { display: none; }

.filter-option {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  cursor: pointer;
  color: var(--color-text);
}
.filter-option input[type="checkbox"],
.filter-option input[type="radio"] {
  width: 16px; height: 16px;
  accent-color: var(--color-primary);
  flex-shrink: 0;
}
.filter-option__label { flex: 1; }
.filter-option__count { color: #aaa; font-size: 12px; }
.filter-option--link {
  text-decoration: none;
  padding: 4px 0;
}
.filter-option--link:hover, .filter-option--link.is-active { color: var(--color-primary); font-weight: 600; }

/* Price range slider */
.price-slider { padding: 4px 0 0; }

.price-slider__inputs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.price-slider__input-wrap {
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 0 8px;
  flex: 1;
  background: #fafafa;
}
.price-slider__input-wrap:focus-within {
  border-color: var(--color-black);
  background: #fff;
}
.price-slider__currency {
  font-size: 12px;
  color: #888;
  font-weight: 600;
  user-select: none;
}
.price-slider__input {
  border: none;
  outline: none;
  width: 100%;
  padding: 7px 4px;
  font-size: 13px;
  font-family: var(--font-display);
  background: transparent;
  -moz-appearance: textfield;
}
.price-slider__input::-webkit-inner-spin-button,
.price-slider__input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.price-slider__dash {
  color: #bbb;
  font-weight: 600;
  flex-shrink: 0;
}

/* Dual-thumb track */
.price-slider__track-wrap {
  position: relative;
  height: 28px;
  display: flex;
  align-items: center;
}
.price-slider__track {
  width: 100%;
  height: 3px;
  background: #ddd;
  border-radius: 2px;
  position: relative;
}
.price-slider__range {
  position: absolute;
  height: 100%;
  background: var(--color-black);
  border-radius: 2px;
}

/* Range inputs overlaid */
.price-slider__thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  pointer-events: none;
  margin: 0;
}
.price-slider__thumb::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--color-black);
  box-shadow: 0 1px 3px rgba(0,0,0,.2);
  cursor: pointer;
  pointer-events: all;
}
.price-slider__thumb::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--color-black);
  box-shadow: 0 1px 3px rgba(0,0,0,.2);
  cursor: pointer;
  pointer-events: all;
}

.price-slider__apply {
  margin-top: 10px;
  width: 100%;
  padding: 8px;
  background: var(--color-black);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-display);
  letter-spacing: .02em;
}
.price-slider__apply:hover {
  background: #000;
}

.filter-form__apply {
  display: block;
  width: calc(100% - 40px);
  margin: 16px 20px;
  text-align: center;
}

/* Product grid */
.collection-main {}
.product-grid {
  display: grid;
  gap: 20px;
}
.product-grid--4col { grid-template-columns: repeat(4, 1fr); }
.product-grid--3col { grid-template-columns: repeat(3, 1fr); }

/* Product card */
.product-card {
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
  transition: box-shadow .2s, transform .2s, border-color .2s;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  border-color: #ccc;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  transform: translateY(-2px);
}
.product-card__image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: #f8f8f8;
  min-height: 180px;
}
.product-card__image-link { display: block; width: 100%; height: 100%; }
.product-card__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: opacity .3s, transform .35s;
  position: absolute;
  top: 0; left: 0;
  padding: 8px;
  box-sizing: border-box;
}
.product-card:hover .product-card__img--primary { transform: scale(1.04); }
.product-card__img--hover {
  opacity: 0;
}
.product-card:hover .product-card__img--primary { opacity: 0; }
.product-card:hover .product-card__img--hover    { opacity: 1; }

/* Badges */
.product-card__badges {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 2;
}
.product-badge {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 3px 8px;
  border-radius: 3px;
}
.product-badge--sale     { background: var(--color-green); color: #fff; }
.product-badge--new      { background: #3182ce; color: #fff; }
.product-badge--featured { background: var(--color-primary); color: #fff; }

/* Quick add */
.product-card__quick-add {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: var(--color-primary);
  color: #fff;
  border: none;
  padding: 11px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transform: translateY(100%);
  transition: transform .25s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  white-space: nowrap;
}
.product-card:hover .product-card__quick-add { transform: translateY(0); }

/* Product card info */
.product-card__info {
  padding: 12px 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
}
.product-card__brand {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--color-primary);
}
.product-card__title {
  font-size: 13px;
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
  /* 2-line clamp */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card__title a { color: var(--color-text); text-decoration: none; }
.product-card__title a:hover { color: var(--color-primary); }
.product-card__rating {
  display: flex;
  align-items: center;
  gap: 4px;
}
.product-card__review-count { font-size: 11px; color: #aaa; }
.product-card__price {
  font-size: 15px;
  font-weight: 700;
  margin-top: auto;
  padding-top: 6px;
}
.product-card__price del { font-weight: 400; color: #aaa; font-size: 13px; margin-right: 4px; }
.product-card__price ins { text-decoration: none; color: var(--color-primary); }
.product-card__swatches {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.color-swatch {
  width: 16px; height: 16px;
  border-radius: 50%;
  border: 2px solid transparent;
  box-shadow: 0 0 0 1px rgba(0,0,0,.15);
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s;
}
.color-swatch:hover {
  border-color: #333;
  transform: scale(1.2);
}
.color-swatch--more {
  background: #f0f0f0;
  font-size: 9px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  border: 1px solid #ddd;
}

/* Collection empty */
.collection-empty {
  text-align: center;
  padding: 80px 20px;
  color: var(--color-text-light);
}
.collection-empty svg { display: block; margin: 0 auto 20px; }
.collection-empty h2  { font-size: 20px; margin: 0 0 8px; color: var(--color-text); }

/* Pagination */
.collection-pagination {
  padding: 40px 0 20px;
  display: flex;
  justify-content: center;
}
.woocommerce-pagination .page-numbers {
  display: flex;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.woocommerce-pagination .page-numbers li a,
.woocommerce-pagination .page-numbers li span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
  text-decoration: none;
  transition: border-color .2s, color .2s;
}
.woocommerce-pagination .page-numbers li a:hover { border-color: var(--color-primary); color: var(--color-primary); }
.woocommerce-pagination .page-numbers li .current { background: var(--color-primary); border-color: var(--color-primary); color: #fff; }

/* Mobile filter overlay */
.filter-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 400;
}
.filter-overlay.is-active { display: block; }

/* ============================================================
   SINGLE PRODUCT PAGE — POTV-style
   ============================================================ */

.single-product-page {
  padding: 24px 0 0;
}
.product-hero {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 48px;
  margin: 24px 0 48px;
  align-items: start;
}

/* Gallery */
.product-gallery {
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 100px;
}
.product-gallery--has-thumbs {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 12px;
}
.product-gallery__thumbs {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.product-gallery__thumb {
  width: 80px; height: 80px;
  border: 2px solid #e8e8e8;
  border-radius: 4px;
  overflow: hidden;
  background: #f7f7f7;
  cursor: pointer;
  padding: 0;
  transition: border-color .2s;
}
.product-gallery__thumb:hover,
.product-gallery__thumb.is-active { border-color: var(--color-green); }
.product-gallery__thumb img { width: 100%; height: 100%; object-fit: contain; }
.product-gallery__main {
  border: none;
  border-radius: 6px;
  overflow: hidden;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
}
.product-gallery__main-img {
  width: 100%;
  height: auto;
  min-height: 400px;
  max-height: 640px;
  object-fit: contain;
  padding: 24px;
  transition: opacity .3s;
}

/* Product info panel */
.product-info { padding-top: 4px; }
.product-info__brand {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--color-green);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 6px;
}
.product-info__brand:hover { color: var(--color-green-dark); }
.product-info__title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  margin: 0 0 12px;
  line-height: 1.15;
}
.product-info__rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.product-info__rating-link {
  font-size: 13px;
  color: var(--color-gray-600);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
.product-info__rating-link:hover { color: var(--color-green); }
.star-rating { display: flex; gap: 2px; }

/* Award badge */
.product-award {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-gray-800);
  margin-bottom: 16px;
  padding: 8px 14px;
  background: #f5f5f5;
  border-radius: 6px;
}
.product-award svg { color: var(--color-green); flex-shrink: 0; }

/* Price block — POTV style */
.product-price-block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  justify-content: space-between;
}
.product-price-block__prices {
  font-size: 28px;
  font-weight: 700;
}
.product-price-block__prices del {
  font-weight: 400;
  color: #aaa;
  font-size: 20px;
  margin-right: 8px;
}
.product-price-block__prices ins {
  text-decoration: none;
  color: var(--color-black);
}
.product-price-block__save {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-green);
}

/* Stock indicator */
.product-stock {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
}
.product-stock--in { color: var(--color-gray-700); }
.product-stock--in svg { color: var(--color-green); }
.product-stock--out { color: var(--color-red); }

/* Color swatches */
.product-color-swatches {
  margin-bottom: 20px;
}
.product-color-swatches__label {
  font-size: 15px;
  font-weight: 700;
  display: block;
  margin-bottom: 10px;
}
.product-color-swatches__list {
  display: flex;
  gap: 10px;
}
.product-color-swatch {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.product-color-swatch__circle {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 3px solid transparent;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.15);
  transition: border-color .2s;
}
.product-color-swatch:hover .product-color-swatch__circle,
.product-color-swatch.is-active .product-color-swatch__circle {
  border-color: var(--color-green);
}
.product-color-swatch__name {
  font-size: 11px;
  color: var(--color-gray-600);
}

/* Out of stock swatch — gray + diagonal line */
.product-color-swatch.is-oos .product-color-swatch__circle {
  opacity: 0.35;
  position: relative;
}
.product-color-swatch.is-oos::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  width: 1.5px;
  height: 24px;
  background: #999;
  transform: translateX(-50%) rotate(45deg);
  pointer-events: none;
}
.product-color-swatch.is-oos {
  position: relative;
  cursor: not-allowed;
}

/* Hide default WC color dropdown when custom swatches exist */
.product-color-swatches + .product-info__add-to-cart .variations tr {
  display: none;
}
.product-color-swatches + .product-info__add-to-cart .variations_button {
  margin-top: 0;
}
.product-color-swatches + .product-info__add-to-cart .reset_variations {
  display: none !important;
}

/* Variants (variable products) */
.product-variants {
  margin-bottom: 20px;
}
.product-variants .variations {
  width: 100%;
  margin-bottom: 16px;
}
.product-variants .variations td,
.product-variants .variations th {
  padding: 6px 0;
}
.product-variants .variations .label label {
  font-size: 15px;
  font-weight: 700;
}
.product-variants .variations select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
}

/* Add to cart — POTV green style */
.product-info__add-to-cart {
  margin-bottom: 24px;
}
.product-info__add-to-cart form.cart,
.product-variants form.cart {
  display: flex;
  align-items: stretch;
  gap: 12px;
}
.product-info__add-to-cart .quantity,
.product-variants .quantity {
  flex-shrink: 0;
}
.product-info__add-to-cart .quantity input,
.product-variants .quantity input {
  width: 64px;
  height: 100%;
  padding: 14px 8px;
  text-align: center;
  border: 2px solid #ddd;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-display);
  -moz-appearance: textfield;
}
.product-info__add-to-cart .quantity input::-webkit-outer-spin-button,
.product-info__add-to-cart .quantity input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.product-info__add-to-cart .single_add_to_cart_button,
.product-variants .single_add_to_cart_button {
  background: var(--color-green) !important;
  border: none !important;
  color: #fff !important;
  padding: 16px 32px !important;
  font-family: var(--font-display) !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  letter-spacing: .08em !important;
  text-transform: uppercase !important;
  border-radius: 6px !important;
  flex: 1 !important;
  cursor: pointer !important;
  transition: background .2s !important;
}
.product-info__add-to-cart .single_add_to_cart_button:hover,
.product-variants .single_add_to_cart_button:hover {
  background: var(--color-green-dark) !important;
}

/* Quantity input override */
.product-info__add-to-cart .quantity,
.product-variants .quantity {
  margin-right: 12px;
}
.product-info__add-to-cart .quantity input,
.product-variants .quantity input {
  width: 60px;
  padding: 12px 8px;
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 600;
}

/* Features list */
.product-features {
  margin-bottom: 24px;
}
.product-features__title {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 12px;
}
.product-features__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.product-features__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
  padding: 5px 0;
  color: var(--color-gray-800);
}
.product-features__item svg { flex-shrink: 0; }

/* Trust badges — POTV horizontal row */
.product-trust {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 24px;
  padding: 16px 0;
  border-top: 1px solid #e8e8e8;
}
.product-trust__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-gray-700);
  flex: 1;
}
.product-trust__item svg { color: var(--color-gray-700); flex-shrink: 0; }

/* Product meta */
.product-meta {
  display: flex;
  gap: 8px;
  font-size: 13px;
  color: var(--color-gray-600);
  margin-bottom: 4px;
}
.product-meta__label { font-weight: 600; color: var(--color-gray-800); }
.product-meta__value a { color: var(--color-green); }
.product-meta__value a:hover { text-decoration: underline; }

/* ============================================================
   COMPLETE YOUR SETUP — POTV-style inline cross-sells
   ============================================================ */

.product-setup {
  margin-bottom: 24px;
  padding-top: 16px;
  border-top: 1px solid #e8e8e8;
}
.product-setup__title {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 16px;
  font-family: var(--font-body);
}
.product-setup__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.product-setup__item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.product-setup__image {
  position: relative;
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  background: #f5f5f5;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-setup__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
}
.product-setup__plus {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 26px;
  height: 26px;
  background: var(--color-green);
  color: #fff;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}
.product-setup__info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.product-setup__rating {
  display: flex;
  align-items: center;
  gap: 4px;
}
.product-setup__rating span {
  font-size: 12px;
  color: var(--color-gray-600);
}
.product-setup__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-black);
  text-decoration: none;
  line-height: 1.3;
}
.product-setup__name:hover {
  color: var(--color-green);
}
.product-setup__price {
  font-size: 14px;
  font-weight: 700;
}
.product-setup__price del { color: #aaa; font-weight: 400; font-size: 12px; margin-left: 6px; }
.product-setup__price ins { text-decoration: none; }

/* ============================================================
   RICH CONTENT DESCRIPTION SECTIONS
   ============================================================ */

.product-content-sections {
  padding: 48px 0;
  border-top: 1px solid #e8e8e8;
}
.product-description-rich {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-gray-800);
}
.product-description-rich h2,
.product-description-rich h3 {
  font-family: var(--font-display);
  font-weight: 700;
  margin: 40px 0 16px;
}
.product-description-rich h2 { font-size: clamp(22px, 3vw, 32px); }
.product-description-rich h3 { font-size: 20px; }
.product-description-rich p { margin: 0 0 20px; }
.product-description-rich img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 16px 0;
}
.product-description-rich ul,
.product-description-rich ol {
  padding-left: 20px;
  margin: 0 0 20px;
}
.product-description-rich li { margin-bottom: 8px; list-style: disc; }

/* ============================================================
   DETAILS SPLIT — "What's in the box" + "Specs"
   ============================================================ */

.product-details-split {
  padding: 48px 0;
  background: var(--color-light-gray);
}
.product-details-split__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.product-details-split__grid--single {
  grid-template-columns: 1fr;
}
.product-details-split__heading {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 20px;
}
.product-details-split__content {
  font-size: 14px;
  line-height: 1.8;
  color: var(--color-gray-700);
}
.product-details-split__content p { margin: 0 0 12px; }
.product-details-split__content ul { padding-left: 0; list-style: none; }
.product-details-split__content li {
  padding: 4px 0;
  list-style: none;
}

/* Specs table */
.specs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.specs-table__row:nth-child(even) { background: rgba(0,0,0,.03); }
.specs-table__label, .specs-table__value {
  padding: 10px 16px;
  border-bottom: 1px solid #e0e0e0;
}
.specs-table__label { font-weight: 600; width: 180px; color: var(--color-gray-800); }
.specs-table__value { color: var(--color-gray-700); }

/* ============================================================
   REVIEWS SECTION — POTV-style
   ============================================================ */

.product-reviews-section {
  padding: 56px 0;
  border-top: 1px solid #e8e8e8;
}
.product-reviews-section__title {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 32px;
}

/* Reviews summary */
.reviews-summary {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid #e8e8e8;
}
.reviews-summary__score {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 140px;
}
.reviews-summary__number {
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
}
.reviews-summary__stars { display: flex; gap: 3px; }
.reviews-summary__count {
  font-size: 13px;
  color: var(--color-gray-600);
  white-space: nowrap;
}

/* Rating bars */
.reviews-summary__bars {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 320px;
}
.reviews-bar {
  display: flex;
  align-items: center;
  gap: 10px;
}
.reviews-bar__stars { display: flex; gap: 1px; flex-shrink: 0; width: 72px; }
.reviews-bar__track {
  flex: 1;
  height: 10px;
  background: #e8e8e8;
  border-radius: 5px;
  overflow: hidden;
}
.reviews-bar__fill {
  height: 100%;
  background: #f5a623;
  border-radius: 5px;
  transition: width .4s ease;
}
.reviews-bar__count {
  font-size: 12px;
  color: var(--color-gray-600);
  min-width: 36px;
  text-align: right;
}

/* Review actions */
.reviews-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
}
.reviews-actions__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: 1px solid var(--color-black);
  border-radius: 40px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-black);
  text-decoration: none;
  transition: background .2s, color .2s;
}
.reviews-actions__btn:hover {
  background: var(--color-black);
  color: #fff;
}
.reviews-actions__btn svg { flex-shrink: 0; }

/* Reviews list (WooCommerce comments) */
.reviews-list .comments-area { padding: 0; }
.comments-title { font-size: 18px; font-weight: 700; margin: 0 0 20px; }
.comment-list { list-style: none; padding: 0; margin: 0 0 32px; }
.comment-list .comment {
  padding: 24px 0;
  border-bottom: 1px solid #e8e8e8;
  display: flex;
  gap: 16px;
}
.comment-list .comment:last-child { border-bottom: none; }
.comment-author img { border-radius: 50%; width: 48px; height: 48px; }
.comment-content p { margin: 0; font-size: 14px; line-height: 1.6; }

/* Related products */
.related-products {
  padding: 48px 0;
  background: var(--color-light-gray);
}
.section-title {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 24px;
}

/* ============================================================
   PAGES & SINGLE POSTS
   ============================================================ */

.page-wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 48px 24px 64px;
}

/* Page header */
.page-header {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid #eee;
}

.page-header__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  -webkit-font-smoothing: antialiased;
}

.page-header__meta {
  margin-top: 12px;
  font-size: 14px;
  color: var(--color-gray-600);
}

.page-header__sep {
  margin: 0 8px;
}

/* Hero image for blog posts */
.page-hero {
  margin-bottom: 32px;
  border-radius: 8px;
  overflow: hidden;
}

.page-hero__img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* Entry content — Gutenberg block styles */
.entry-content {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-gray-800);
}

.entry-content h2 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  margin: 40px 0 16px;
  -webkit-font-smoothing: antialiased;
}

.entry-content h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin: 32px 0 12px;
}

.entry-content h4 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  margin: 24px 0 8px;
}

.entry-content p {
  margin: 0 0 20px;
}

.entry-content ul,
.entry-content ol {
  margin: 0 0 20px;
  padding-left: 24px;
}

.entry-content li {
  margin-bottom: 8px;
}

.entry-content blockquote {
  border-left: 4px solid var(--color-green);
  padding: 16px 24px;
  margin: 24px 0;
  background: var(--color-gray-100);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: var(--color-gray-700);
}

.entry-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.entry-content a {
  color: var(--color-green);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.entry-content a:hover {
  color: var(--color-green-dark);
}

.entry-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 14px;
}

.entry-content th,
.entry-content td {
  border: 1px solid #ddd;
  padding: 10px 14px;
  text-align: left;
}

.entry-content th {
  background: var(--color-gray-100);
  font-weight: 700;
  font-family: var(--font-display);
}

/* Wide alignment support */
.entry-content .alignwide {
  max-width: 1100px;
  margin-left: calc(50% - 550px);
  margin-right: calc(50% - 550px);
  width: auto;
}

.entry-content .alignfull {
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  width: 100vw;
}

@media (max-width: 1148px) {
  .entry-content .alignwide {
    max-width: calc(100vw - 48px);
    margin-left: auto;
    margin-right: auto;
  }
}

/* Post navigation */
.post-navigation {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid #eee;
}

.post-navigation .nav-links {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.post-navigation .nav-previous,
.post-navigation .nav-next {
  flex: 1;
}

.post-navigation .nav-subtitle {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--color-gray-600);
  margin-bottom: 4px;
}

.post-navigation .nav-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--color-gray-800);
}

.post-navigation a:hover .nav-title {
  color: var(--color-green);
}

.post-navigation .nav-next {
  text-align: right;
}

/* ============================================================
   MOBILE SEARCH BAR — POTV style
   ============================================================ */

.mobile-search {
  display: none; /* hidden on desktop */
  background: #fff;
  padding: 10px 12px;
  border-bottom: 1px solid #e8e8e8;
}

.mobile-search__form {
  display: flex;
  gap: 0;
  width: 100%;
}
.mobile-search__input {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid #ddd;
  border-right: none;
  border-radius: 4px 0 0 4px;
  font-size: 16px;
  font-family: var(--font-display);
  background: #fff;
  -webkit-appearance: none;
}
.mobile-search__input:focus {
  outline: none;
  border-color: var(--color-green);
}
.mobile-search__btn {
  width: 48px;
  background: var(--color-green);
  border: none;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mobile-search__btn:hover { background: var(--color-green-dark); }

/* Show on mobile only */
@media (max-width: 659px) {
  .mobile-search { display: block; }
  /* Extra margin for search bar inside fixed header (~48px) */
  .site-main { margin-top: 143px !important; }
  .admin-bar .site-main { margin-top: 175px !important; }

  /* === HOMEPAGE MOBILE FIXES === */

  /* Hero section — tighter spacing */
  .hero-sale__content {
    padding: 24px 16px 32px;
  }
  .hero-sale__title {
    font-size: 26px;
    margin-top: 16px;
  }
  .hero-sale__subtitle {
    font-size: 14px;
    margin-bottom: 16px;
  }

  /* Product slider cards — bigger on mobile like POTV */
  .product-slider .product-card {
    width: 160px;
    min-width: 160px;
  }
  .product-slider__track {
    gap: 10px;
    padding: 0 16px 12px;
  }
  .product-card__image-wrap {
    padding: 10px 10px 28px;
  }
  .product-card__content {
    padding: 6px 10px 10px;
  }
  .swatch-list {
    left: 8px;
    bottom: -10px;
  }
  .swatch-list__item {
    width: 16px; height: 16px;
  }
  .product-card__title {
    font-size: 13px;
  }
  .product-card__price {
    font-size: 12px;
  }
  .product-card--sale .product-card__inner::before {
    width: 38px; height: 38px; line-height: 38px;
    font-size: 11px;
    left: 4px; top: 4px;
  }
  .swatch-list__item {
    width: 16px; height: 16px;
  }

  /* Banners — stack vertically, full-width, tall like POTV */
  .banners {
    padding: 0;
  }
  .banners--three {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .banners--three .banner {
    margin-bottom: 0;
    min-height: 0;
    height: 320px;
    border-radius: 0;
  }
  .banner {
    min-height: 0;
    height: 320px;
    border-radius: 0;
  }
  .banner__title {
    font-size: 30px;
    line-height: 1.15;
  }
  .banner__subtitle {
    font-size: 18px;
  }
  .banner__cta {
    font-size: 14px;
    padding: 12px 28px;
  }

  /* Section sliders — match POTV sizes */
  .section-slider {
    padding: 32px 16px;
  }
  .section-slider__header {
    margin-bottom: 16px;
  }
  .section-slider__header h2 {
    font-size: 21px;
  }
  .section-slider__header p {
    font-size: 14px;
  }
  .section-slider__footer {
    margin-bottom: 16px;
  }

  /* Testimonial — dark bg, quote mark */
  .section-testimonial {
    padding: 40px 16px;
  }
  .section-testimonial h2 {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .section-testimonial blockquote {
    font-size: 15px;
    padding-top: 28px;
  }
  .section-testimonial blockquote::before {
    font-size: 48px;
  }

  /* Blog — tighter */
  .section-blog {
    padding: 32px 0;
  }
  .section-blog__inner {
    padding: 0 16px;
  }
  .section-blog .grid {
    gap: 16px;
  }

  /* Social icons section */
  .social-icons {
    justify-content: center;
  }

  /* About/Philosophy section — hide on mobile (POTV doesn't show it) */
  .section-philosophy {
    display: none;
  }

  /* Newsletter — mobile stacks */
  .section-footer-newsletter__inner {
    padding: 24px 16px;
    flex-direction: column;
    text-align: center;
  }
  .section-footer-newsletter__text-wrap {
    min-width: 0;
  }
  .section-footer-newsletter__form {
    min-width: 0;
    width: 100%;
  }

  /* Social icons — ensure visible */
  .social-icons {
    justify-content: center;
    gap: 12px;
  }

  /* Footer — tighter */
  .site-footer__inner {
    padding: 24px 16px;
  }
  .footer-grid {
    gap: 24px;
  }
  .site-footer__disclaimer {
    font-size: 11px;
    margin-top: 16px;
  }
  .site-footer__bottom {
    margin-top: 12px;
  }
}

/* ============================================================
   CART DRAWER — POTV-style slide-in sidebar
   ============================================================ */

/* Body scroll lock when drawer is open */
body.cart-drawer-locked {
  overflow: hidden !important;
  height: 100vh !important;
}
html.cart-drawer-locked {
  overflow: hidden !important;
}

.cart-drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 9998;
  opacity: 0;
  transition: opacity .3s;
  touch-action: none;
}
.cart-drawer-overlay.is-open {
  display: block;
  opacity: 1;
}

.cart-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 420px;
  max-width: 90vw;
  background: #fff;
  z-index: 9999;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 24px rgba(0,0,0,.1);
  overscroll-behavior: contain;
}
.cart-drawer.is-open {
  transform: translateX(0);
}
.admin-bar .cart-drawer { top: 32px; }
.admin-bar .cart-drawer-overlay { top: 32px; }
@media (max-width: 782px) {
  .admin-bar .cart-drawer { top: 46px; }
  .admin-bar .cart-drawer-overlay { top: 46px; }
}

.cart-drawer__body {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

/* Header — POTV: title centered, X right */
.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 24px 24px;
  border-bottom: 2px solid #e8e8e8;
  flex-shrink: 0;
}
.cart-drawer__title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .1em;
  margin: 0;
}
.cart-drawer__close {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: var(--color-gray-600);
  transition: color .2s;
}
.cart-drawer__close:hover { color: var(--color-black); }

/* Empty state */
.cart-drawer__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 60px 24px;
  flex: 1;
  text-align: center;
}
.cart-drawer__empty p {
  font-size: 16px;
  color: var(--color-gray-600);
  margin: 0;
}
.cart-drawer__shop-btn {
  display: inline-block;
  padding: 12px 28px;
  background: var(--color-green);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border-radius: 4px;
  text-decoration: none;
  transition: background .2s;
}
.cart-drawer__shop-btn:hover { background: var(--color-green-dark); }

/* Items list */
.cart-drawer__items {
  flex: 1;
  overflow-y: auto;
  padding: 0 24px;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

/* Single item — POTV style */
.cart-drawer__item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid #e0e0e0;
}
.cart-drawer__item:first-child { border-top: none; }

.cart-drawer__item-image {
  flex-shrink: 0;
  width: 88px; height: 88px;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-drawer__item-image img {
  width: 100%; height: 100%;
  object-fit: contain;
}

.cart-drawer__item-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cart-drawer__item-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}
.cart-drawer__item-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-black);
  text-decoration: none;
  line-height: 1.3;
}
.cart-drawer__item-name:hover { color: var(--color-green); }
.cart-drawer__item-price {
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
  text-align: right;
  flex-shrink: 0;
}
.cart-drawer__item-price del {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #aaa;
  text-decoration: line-through;
}

/* Qty controls — POTV style: bigger bordered buttons */
.cart-drawer__item-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cart-drawer__qty {
  display: flex;
  align-items: center;
  border: 1px solid #d0d0d0;
  border-radius: 6px;
  overflow: hidden;
}
.cart-drawer__qty-btn {
  width: 40px; height: 40px;
  background: #fafafa;
  border: none;
  cursor: pointer;
  font-size: 18px;
  font-weight: 500;
  color: var(--color-gray-700);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
}
.cart-drawer__qty-btn:hover { background: #f0f0f0; }
.cart-drawer__qty-val {
  width: 44px;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  border-left: 1px solid #d0d0d0;
  border-right: 1px solid #d0d0d0;
  line-height: 40px;
  background: #fff;
}
.cart-drawer__remove {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: #ccc;
  transition: color .2s;
}
.cart-drawer__remove:hover { color: var(--color-red); }

/* Footer — POTV style */
.cart-drawer__footer {
  flex-shrink: 0;
  padding: 20px 24px;
  border-top: 2px solid #e8e8e8;
  background: #fff;
  overflow-y: auto;
  max-height: 50vh;
}
.cart-drawer__savings {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-green);
  margin-bottom: 6px;
}
.cart-drawer__total {
  display: flex;
  justify-content: space-between;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 18px;
}
.cart-drawer__checkout-btn {
  display: block;
  width: 100%;
  padding: 18px;
  background: var(--color-green);
  color: #fff;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .1em;
  text-align: center;
  text-decoration: none;
  border-radius: 6px;
  transition: background .2s;
  margin-bottom: 10px;
}
.cart-drawer__checkout-btn:hover { background: var(--color-green-dark); }
.cart-drawer__viewcart-btn {
  display: block;
  text-align: center;
  font-size: 13px;
  color: var(--color-gray-600);
  text-decoration: underline;
  text-underline-offset: 2px;
  margin-bottom: 4px;
}
.cart-drawer__viewcart-btn:hover { color: var(--color-black); }

/* Upsell / Complete your setup in drawer */
.cart-drawer__upsell {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #e8e8e8;
}
.cart-drawer__upsell-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 14px;
}
.cart-drawer__upsell-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.cart-drawer__upsell-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cart-drawer__upsell-img {
  position: relative;
  aspect-ratio: 1;
  background: #f5f5f5;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-drawer__upsell-img img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 8px;
}
.cart-drawer__upsell-add {
  position: absolute;
  top: 6px; right: 6px;
  width: 28px; height: 28px;
  background: var(--color-green);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.cart-drawer__upsell-add:hover { background: var(--color-green-dark); }
.cart-drawer__upsell-add.loading {
  pointer-events: none;
  opacity: .6;
}
.cart-drawer__upsell-name {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-black);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cart-drawer__upsell-price {
  font-size: 12px;
  font-weight: 700;
}
.cart-drawer__upsell-price del { color: #aaa; font-weight: 400; margin-right: 4px; }
.cart-drawer__upsell-price ins { text-decoration: none; }

/* Loading state */
.cart-drawer__body.is-loading {
  opacity: .5;
  pointer-events: none;
}

/* ============================================================
   RESPONSIVE — COLLECTION & SINGLE PRODUCT
   ============================================================ */

@media (max-width: 1024px) {
  .collection-layout { grid-template-columns: 200px 1fr; gap: 24px; }
  .product-grid--4col { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  /* Mobile: filter sidebar becomes a drawer */
  .collection-layout { grid-template-columns: 1fr; }
  .filter-sidebar {
    position: fixed;
    top: 0; left: 0; bottom: 0;
    width: 85vw; max-width: 360px;
    z-index: 500;
    transform: translateX(-100%);
    transition: transform .3s;
    overflow-y: auto;
    border-radius: 0;
  }
  .filter-sidebar.is-open { transform: translateX(0); }
  .filter-sidebar__close { display: flex; }
  .admin-bar .filter-sidebar { top: 46px; }

  .product-grid--4col { grid-template-columns: repeat(2, 1fr); }
  .product-grid--3col { grid-template-columns: repeat(2, 1fr); }

  /* ======= SINGLE PRODUCT — MOBILE ======= */

  /* Hero stacks to 1 column */
  .product-hero {
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 16px 0 32px;
  }

  /* Gallery full width, no sticky */
  .product-gallery,
  .product-gallery--has-thumbs {
    display: flex;
    flex-direction: column;
    position: static;
  }
  .product-gallery__main {
    min-height: 280px;
    border-radius: 8px;
  }
  .product-gallery__main-img {
    min-height: 260px;
    max-height: 360px;
    padding: 16px;
  }
  .product-gallery__thumbs {
    flex-direction: row;
    overflow-x: auto;
    gap: 8px;
    padding-top: 8px;
    -webkit-overflow-scrolling: touch;
  }
  .product-gallery__thumb {
    width: 64px; height: 64px;
    flex-shrink: 0;
  }

  /* Title smaller on mobile */
  .product-info__title {
    font-size: 22px;
    margin-bottom: 8px;
  }

  /* Price block wraps */
  .product-price-block {
    gap: 8px;
    margin-bottom: 14px;
  }
  .product-price-block__prices {
    font-size: 24px;
  }
  .product-price-block__prices del {
    font-size: 16px;
  }
  .product-price-block__save {
    font-size: 13px;
  }
  .product-stock {
    width: 100%;
    margin-top: 2px;
  }

  /* Add to cart button */
  .product-info__add-to-cart .single_add_to_cart_button,
  .product-variants .single_add_to_cart_button {
    padding: 14px 24px !important;
    font-size: 14px !important;
  }

  /* Trust badges — stack to 1 row, smaller */
  .product-trust {
    gap: 8px;
    padding: 12px 0;
  }
  .product-trust__item {
    font-size: 11px;
    gap: 4px;
  }
  .product-trust__item svg {
    width: 16px;
    height: 16px;
  }

  /* Cross-sell setup */
  .product-setup__image {
    width: 80px;
    height: 80px;
  }
  .product-setup__name {
    font-size: 13px;
  }
  .product-setup__price {
    font-size: 13px;
  }

  /* Features list */
  .product-features__item {
    font-size: 13px;
    padding: 3px 0;
  }

  /* Color swatches */
  .product-color-swatch__circle {
    width: 34px; height: 34px;
  }

  /* Details split stacks */
  .product-details-split {
    padding: 32px 0;
  }
  .product-details-split__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .product-details-split__heading {
    font-size: 18px;
    margin-bottom: 14px;
  }

  /* Specs table */
  .specs-table__label {
    width: 120px;
    padding: 8px 10px;
    font-size: 13px;
  }
  .specs-table__value {
    padding: 8px 10px;
    font-size: 13px;
  }

  /* Reviews */
  .product-reviews-section {
    padding: 36px 0;
  }
  .product-reviews-section__title {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .reviews-summary {
    flex-direction: column;
    gap: 20px;
  }
  .reviews-summary__number {
    font-size: 40px;
  }
  .reviews-summary__bars {
    max-width: none;
    width: 100%;
  }
  .reviews-actions__btn {
    padding: 10px 20px;
    font-size: 13px;
  }

  /* Related products */
  .related-products {
    padding: 32px 0;
  }
  .section-title {
    font-size: 18px;
    margin-bottom: 16px;
  }
}

@media (max-width: 480px) {
  .product-grid--4col { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .filter-toolbar { gap: 8px; }

  /* Extra small — trust badges stack vertical */
  .product-trust {
    flex-direction: column;
    align-items: flex-start;
  }
  .product-trust__item {
    flex-direction: row;
    text-align: left;
    gap: 8px;
  }

  /* Price block all wrap */
  .product-price-block {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  /* Gallery smaller */
  .product-gallery__main {
    min-height: 220px;
  }
  .product-gallery__main-img {
    min-height: 200px;
    max-height: 280px;
  }

  /* Breadcrumb wrap */
  .breadcrumb {
    font-size: 12px;
  }
}

