/*
Theme Name: WearTrendz
Template: storefront
Description: WearTrendz custom homepage on top of Storefront/WooCommerce. Only the front page is restyled for now — shop, cart, and product pages still use default Storefront styling until the rest of the site is redesigned to match.
Version: 1.0
*/

@font-face {
  font-family: 'Fraunces';
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  src: url('fonts/fraunces-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Fraunces';
  font-weight: 900;
  font-style: normal;
  font-display: swap;
  src: url('fonts/fraunces-900.woff2') format('woff2');
}
@font-face {
  font-family: 'Archivo';
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url('fonts/archivo-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Archivo';
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  src: url('fonts/archivo-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Archivo';
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url('fonts/archivo-700.woff2') format('woff2');
}

/*
  Clean, minimal system. One neutral surface, one hairline border,
  one accent (muted marigold). "Festival" is a tone of voice — a label
  color and a rule — never a background block. No shadows, no card
  lift, no ornament that isn't doing wayfinding work.
*/
.wt-home {
  --bg: #FAF7F1;
  --surface: #F2EDE2;
  --border: #E3DBC9;
  --text: #201C24;
  --muted: #78715F;
  --accent: #A8681E;
  --accent-ink: #FBF6EC;
  --festival: #8C3B41;

  --font-display: 'Fraunces', 'Iowan Old Style', Georgia, serif;
  --font-body: 'Archivo', 'Helvetica Neue', Arial, sans-serif;

  --space-1: 0.5rem;
  --space-2: 0.875rem;
  --space-3: 1.5rem;
  --space-4: 2.25rem;
  --space-5: 3.5rem;
  --space-6: 5.5rem;
  --space-7: 7.5rem;

  --container: 72rem;

  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

@media (prefers-color-scheme: dark) {
  .wt-home {
    --bg: #17151B;
    --surface: #1E1B22;
    --border: #322E37;
    --text: #EFEAE0;
    --muted: #9A917F;
    --accent: #D69A54;
    --accent-ink: #1B1006;
    --festival: #D98A8E;
  }
}

.wt-home * { box-sizing: border-box; }
.wt-home img, .wt-home svg { display: block; max-width: 100%; }
.wt-home a { color: inherit; }
.wt-home h1, .wt-home h2, .wt-home h3 {
  font-family: var(--font-display);
  text-wrap: balance;
  margin: 0;
  font-weight: 600;
}
.wt-home p { margin: 0; }

.wt-home .container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--space-3);
}
@media (max-width: 640px) {
  .wt-home .container { padding-inline: var(--space-2); }
}

.wt-home .eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
}

.wt-home :focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

.wt-home button, .wt-home .btn { font-family: var(--font-body); cursor: pointer; }

.wt-home .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.wt-home .btn-primary { background: var(--accent); color: var(--accent-ink); }
.wt-home .btn-primary:hover { background: var(--text); color: var(--bg); }
.wt-home .btn-secondary { background: transparent; color: var(--text); border-color: var(--border); }
.wt-home .btn-secondary:hover { border-color: var(--text); }
.wt-home .text-link {
  text-decoration: none;
  font-weight: 600;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.15rem;
}
.wt-home .text-link:hover { border-color: var(--text); }

@media (prefers-reduced-motion: reduce) {
  .wt-home * { animation: none !important; transition: none !important; }
}

/* ---------- Header ---------- */
.wt-home header.wt-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.wt-home .nav-row {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding-block: 1.15rem;
}
.wt-home .logo { flex-shrink: 0; }
.wt-home nav.primary { flex-shrink: 0; display: flex; }
.wt-home .nav-item { position: relative; }
.wt-home .nav-item > a {
  display: inline-block; text-decoration: none; font-weight: 500; font-size: 0.92rem;
  color: var(--muted); padding: 0.5rem var(--space-2);
}
.wt-home .nav-item > a:hover,
.wt-home .nav-item > a.is-active { color: var(--text); }

/* Mega-menu: revealed on hover (desktop) or tap (mobile, via JS) */
.wt-home .mega-panel {
  display: none;
  position: absolute; top: 100%; left: 0;
  min-width: 12rem;
  background: var(--bg);
  border: 1px solid var(--border);
  padding: var(--space-2) 0;
  z-index: 50;
}
.wt-home .mega-panel a {
  display: block; padding: 0.5rem var(--space-3);
  text-decoration: none; font-size: 0.88rem; color: var(--text);
}
.wt-home .mega-panel a:hover { background: var(--surface); }
.wt-home .mega-panel .mega-all { color: var(--muted); border-bottom: 1px solid var(--border); margin-bottom: 0.3rem; padding-bottom: 0.6rem; }
.wt-home .nav-item.has-mega:hover .mega-panel { display: block; }
.wt-home .nav-item.mega-open .mega-panel { display: block; }
.wt-home .logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.4rem;
  text-decoration: none;
  color: var(--text);
}
.wt-home .nav-actions { display: flex; align-items: center; gap: var(--space-3); flex-shrink: 0; }
.wt-home .icon-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: none;
  border: none;
  color: var(--text);
  padding: 0;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
}
.wt-home .icon-btn svg { width: 19px; height: 19px; }
.wt-home .menu-toggle { display: none; }

/* Search is a persistent visible input on desktop — search-users convert
   far higher than browse-users, so it doesn't get hidden behind a toggle
   except where screen space genuinely forces it (mobile). */
.wt-home .search-form {
  display: flex;
  gap: 0.5rem;
  flex: 1;
  max-width: 18rem;
  margin-left: auto;
}
.wt-home .search-form input {
  flex: 1;
  font-family: var(--font-body);
  padding: 0.55rem 0.8rem;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-size: 0.88rem;
}
.wt-home .search-form button { display: none; }
.wt-home #searchToggle { display: none; }

@media (max-width: 860px) {
  .wt-home nav.primary { display: none; }
  .wt-home .menu-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 2rem; height: 2rem; background: none; border: none; color: var(--text);
  }
  .wt-home nav.primary.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bg); border-bottom: 1px solid var(--border);
    padding: var(--space-3); gap: var(--space-2);
  }
  .wt-home .nav-item > a { display: block; padding: 0.4rem 0; }
  .wt-home .mega-panel { position: static; border: none; padding: 0 0 0 var(--space-3); }
  .wt-home .mega-panel .mega-all { display: none; }
  .wt-home #searchToggle { display: inline-flex; }
  .wt-home .search-form {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: var(--space-3);
    max-width: none;
    margin-right: 0;
  }
  .wt-home .search-form.open { display: flex; }
  .wt-home .search-form button { display: inline-flex; }
}

/* ---------- Hero ---------- */
.wt-home .hero { padding-block: var(--space-6) var(--space-5); }
.wt-home .hero .container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--space-5);
  align-items: center;
}
.wt-home .hero .inner { max-width: 42rem; }
.wt-home .hero-visual {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid var(--border);
}
.wt-home .hero-visual img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 860px) {
  .wt-home .hero .container { grid-template-columns: 1fr; }
  .wt-home .hero-visual { order: -1; aspect-ratio: 16 / 10; }
}
.wt-home .hero h1 {
  font-size: clamp(2.25rem, 3.6vw + 1rem, 3.6rem);
  line-height: 1.08;
  margin-block: var(--space-2) var(--space-3);
}
.wt-home .hero .lede { font-size: 1.1rem; color: var(--muted); max-width: 34rem; margin-bottom: var(--space-4); }
.wt-home .hero-ctas { display: flex; gap: var(--space-3); flex-wrap: wrap; align-items: center; margin-bottom: var(--space-5); }

.wt-home .occasion-list {
  display: flex; flex-wrap: wrap; gap: 0 var(--space-3);
  padding-top: var(--space-3);
  border-top: 1px solid var(--border);
}
.wt-home .occasion-list a { text-decoration: none; font-size: 0.88rem; color: var(--muted); padding-block: var(--space-1); }
.wt-home .occasion-list a:hover { color: var(--text); }
.wt-home .occasion-list a.is-festival { color: var(--festival); }

/* ---------- Announcement bar ---------- */
/* Highest-visibility slot on the page — logistics/trust info goes here
   once, at the top, instead of a separate mid-scroll strip. */
.wt-home .announce-bar { background: var(--text); color: var(--bg); }
.wt-home .announce-bar .container {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 0.4rem 1.5rem; padding-block: 0.55rem; font-size: 0.78rem; font-weight: 500;
}
@media (max-width: 640px) { .wt-home .announce-bar .container { gap: 0.3rem 1rem; } }

/* ---------- Section shell ---------- */
.wt-home section.block { padding-block: var(--space-7); border-bottom: 1px solid var(--border); }
.wt-home section.block:last-of-type { border-bottom: none; }
.wt-home .section-head { max-width: 38rem; margin-bottom: var(--space-5); }
.wt-home .section-head h2 { font-size: clamp(1.7rem, 2vw + 1rem, 2.4rem); margin-top: 0.4rem; }
.wt-home .section-head p { color: var(--muted); margin-top: var(--space-2); font-size: 1.02rem; }

.wt-home .reveal { opacity: 0; transform: translateY(10px); transition: opacity 0.5s ease, transform 0.5s ease; }
.wt-home .reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Wardrobe grid ---------- */
.wt-home .wardrobe-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.wt-home .cat-tile {
  text-decoration: none; color: var(--text); background: var(--bg);
  padding: var(--space-4); display: flex; flex-direction: column; gap: var(--space-3);
  min-height: 13rem; justify-content: space-between;
}
.wt-home .cat-tile .icon-wrap { color: var(--muted); }
.wt-home .cat-tile .icon-wrap svg { width: 26px; height: 26px; }
.wt-home .cat-tile h3 { font-weight: 600; font-size: 1.2rem; }
.wt-home .cat-tile .desc { font-size: 0.86rem; color: var(--muted); margin-top: 0.3rem; }
.wt-home .cat-tile:hover .icon-wrap { color: var(--accent); }
.wt-home .cat-tile.festival h3 { color: var(--festival); }

@media (max-width: 760px) { .wt-home .wardrobe-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .wt-home .wardrobe-grid { grid-template-columns: 1fr; } }

/* ---------- Festival spotlight ---------- */
.wt-home .festival-spotlight .eyebrow { color: var(--festival); }
.wt-home .festival-spotlight .section-head { border-left: 2px solid var(--festival); padding-left: var(--space-3); }
.wt-home .festival-spotlight .also-live { font-size: 0.85rem; color: var(--muted); margin-top: var(--space-3); }

/* ---------- Complete the look ---------- */
.wt-home .look-row { display: grid; grid-template-columns: repeat(4, 1fr) auto; gap: var(--space-4); align-items: center; }
.wt-home .look-item { text-align: left; text-decoration: none; color: var(--text); }
.wt-home .look-item .swatch {
  width: 3rem; height: 3rem; margin-bottom: var(--space-2);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); border: 1px solid var(--border); overflow: hidden;
}
.wt-home .look-item .swatch svg { width: 46%; height: 46%; }
.wt-home .look-item .swatch img { width: 100%; height: 100%; object-fit: cover; }
.wt-home .look-item:hover .swatch { border-color: var(--accent); }
.wt-home .look-item .name { font-size: 0.86rem; font-weight: 600; }
.wt-home .look-cta { text-align: right; padding-left: var(--space-4); border-left: 1px solid var(--border); }
.wt-home .look-cta .price { font-family: var(--font-display); font-weight: 600; font-size: 1.3rem; display: block; margin-bottom: var(--space-2); }
@media (max-width: 760px) {
  .wt-home .look-row { grid-template-columns: repeat(2, 1fr); }
  .wt-home .look-cta { grid-column: span 2; text-align: left; border-left: none; border-top: 1px solid var(--border); padding: var(--space-3) 0 0; }
}

/* ---------- Product grid ---------- */
.wt-home .product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-4); }
.wt-home .product-card { display: flex; flex-direction: column; }
.wt-home .product-card > a { text-decoration: none; color: var(--text); display: flex; flex-direction: column; }
.wt-home .swatch-photo {
  aspect-ratio: 4/5; display: flex; align-items: center; justify-content: center;
  color: var(--muted); background: var(--surface); border: 1px solid var(--border);
  margin-bottom: var(--space-2); overflow: hidden;
}
.wt-home .swatch-photo svg { width: 26%; height: 26%; }
.wt-home .swatch-photo img { width: 100%; height: 100%; object-fit: cover; }
.wt-home .product-card .cat-tag { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.wt-home .product-card .p-name { font-weight: 600; font-size: 0.98rem; margin-top: 0.4rem; }
.wt-home .product-card .p-price { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; margin-top: 0.3rem; }
.wt-home .product-card .p-price ins { text-decoration: none; }
.wt-home .product-card .p-price del { color: var(--muted); font-size: 0.85em; margin-right: 0.4em; }
.wt-home .product-card .p-rating { font-size: 0.78rem; color: var(--muted); margin-top: 0.25rem; }
.wt-home .product-card .p-rating .stars { color: var(--accent); letter-spacing: 0.05em; }

.wt-home .quick-add-row { margin-top: var(--space-2); }
.wt-home .quick-add-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.55rem 0.8rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.82rem;
  text-decoration: none;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.wt-home .quick-add-btn:hover,
.wt-home .quick-add-btn.added {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: var(--accent);
}
.wt-home .quick-add-btn.loading { opacity: 0.6; }

@media (max-width: 860px) { .wt-home .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .wt-home .product-grid { grid-template-columns: 1fr; } }

/* ---------- Sticky mobile action bar ---------- */
/* Persistent CTA reduces scroll-to-decide friction on the channel that
   matters most for an India-first launch: mobile. Desktop already has
   a persistent header, so this is redundant there and hidden. */
.wt-home .mobile-bar { display: none; }
@media (max-width: 640px) {
  .wt-home .mobile-bar {
    display: flex;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 50;
    background: var(--bg);
    border-top: 1px solid var(--border);
    padding: 0.6rem var(--space-2);
    gap: 0.6rem;
  }
  .wt-home .mobile-bar a { flex: 1; text-align: center; }
  body.wt-home { padding-bottom: 4rem; }
}

/* ---------- Newsletter ---------- */
.wt-home .newsletter .container { text-align: left; max-width: 34rem; }
.wt-home .newsletter h2 { font-size: clamp(1.6rem, 2vw + 1rem, 2.2rem); margin-top: 0.4rem; }
.wt-home .newsletter p { color: var(--muted); margin-top: var(--space-2); }
.wt-home .signup-row { display: flex; gap: 0.6rem; margin-top: var(--space-4); flex-wrap: wrap; }
.wt-home .signup-row input[type="email"] {
  font-family: var(--font-body);
  padding: 0.8rem 1rem;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font-size: 0.92rem;
  flex: 1;
  min-width: 14rem;
}
.wt-home .signup-note { margin-top: var(--space-3); font-size: 0.85rem; color: var(--muted); }
.wt-home .signup-note a { color: var(--text); }

/* ---------- Footer ---------- */
.wt-home footer.wt-footer { padding-block: var(--space-6) var(--space-4); }
.wt-home .footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: var(--space-4); padding-bottom: var(--space-5); }
.wt-home .footer-grid .logo { display: inline-block; margin-bottom: var(--space-2); }
.wt-home .footer-grid .tagline { color: var(--muted); font-size: 0.88rem; max-width: 18rem; }
.wt-home .footer-grid h4 { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; color: var(--muted); margin-bottom: var(--space-2); }
.wt-home .footer-grid ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.wt-home .footer-grid a { text-decoration: none; font-size: 0.9rem; color: var(--text); }
.wt-home .footer-grid a:hover { color: var(--accent); }
@media (max-width: 760px) { .wt-home .footer-grid { grid-template-columns: 1fr 1fr; } }
.wt-home .footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: var(--space-3);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: var(--space-2);
  font-size: 0.78rem; color: var(--muted);
}
.wt-home .payment-row { display: flex; gap: var(--space-2); }
.wt-home .compliance-line { width: 100%; margin-top: var(--space-1); font-size: 0.74rem; }

/* ==========================================================================
   Listing pages (category archives + shop) and single product pages
   ========================================================================== */

.wt-home .breadcrumb { padding-top: var(--space-4); font-size: 0.82rem; color: var(--muted); }
.wt-home .breadcrumb a { text-decoration: none; color: var(--muted); }
.wt-home .breadcrumb a:hover { color: var(--text); }
.wt-home .breadcrumb span[aria-hidden] { margin: 0 0.4rem; }
.wt-home .breadcrumb .current { color: var(--text); }

.wt-home .plp-head {
  display: flex; align-items: baseline; justify-content: space-between; flex-wrap: wrap; gap: var(--space-2);
  padding-block: var(--space-3) var(--space-4);
  border-bottom: 1px solid var(--border);
  margin-bottom: var(--space-4);
}
.wt-home .plp-head h1 { font-size: clamp(1.5rem, 2vw + 1rem, 2.1rem); }
.wt-home .plp-count { font-size: 0.85rem; color: var(--muted); }

.wt-home .plp-layout { display: grid; grid-template-columns: 15rem 1fr; gap: var(--space-5); padding-bottom: var(--space-7); }
.wt-home .plp-filters .filter-group { margin-bottom: var(--space-4); }
.wt-home .plp-filters h4 { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: var(--space-2); }
.wt-home .plp-filters ul { list-style: none; margin: 0; padding: 0; }
.wt-home .plp-filters li { margin-bottom: 0.35rem; }
.wt-home .plp-filters a { text-decoration: none; font-size: 0.9rem; color: var(--text); }
.wt-home .plp-filters a:hover { color: var(--accent); }
.wt-home .plp-filters a.is-active { color: var(--accent); font-weight: 600; }
.wt-home .plp-filters .count { color: var(--muted); font-size: 0.82em; }
.wt-home .plp-filters ul.sub { padding-left: var(--space-3); margin-top: 0.3rem; }

.wt-home .plp-toolbar { display: flex; justify-content: flex-end; margin-bottom: var(--space-3); }
.wt-home .sort-form { display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; color: var(--muted); }
.wt-home .sort-form select {
  font-family: var(--font-body); padding: 0.4rem 0.6rem; border: 1px solid var(--border);
  background: var(--bg); color: var(--text); font-size: 0.85rem;
}
.wt-home .plp-empty { color: var(--muted); padding-block: var(--space-5); }

.wt-home .plp-pagination { display: flex; gap: 0.4rem; margin-top: var(--space-5); }
.wt-home .plp-pagination .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 2.2rem; height: 2.2rem; padding: 0 0.5rem;
  text-decoration: none; font-size: 0.85rem; color: var(--text);
  border: 1px solid var(--border);
}
.wt-home .plp-pagination .page-numbers.current { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); }
.wt-home .plp-pagination .page-numbers:hover:not(.current) { border-color: var(--text); }

@media (max-width: 860px) {
  .wt-home .plp-layout { grid-template-columns: 1fr; }
  .wt-home .plp-filters { border-bottom: 1px solid var(--border); padding-bottom: var(--space-4); margin-bottom: var(--space-4); }
  .wt-home .plp-filters .filter-group { display: inline-block; margin-right: var(--space-5); vertical-align: top; }
}

/* ---------- Single product (PDP) ---------- */
.wt-home .pdp-layout { display: grid; grid-template-columns: 1.1fr 1fr; gap: var(--space-5); padding-block: var(--space-4) var(--space-6); }
.wt-home .pdp-main-image {
  aspect-ratio: 4/5; background: var(--surface); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.wt-home .pdp-main-image img { width: 100%; height: 100%; object-fit: cover; }
.wt-home .pdp-main-image svg { width: 22%; height: 22%; color: var(--muted); }
.wt-home .pdp-thumbs { display: flex; gap: 0.6rem; margin-top: var(--space-2); }
.wt-home .pdp-thumb {
  width: 4rem; height: 4rem; padding: 0; border: 1px solid var(--border); background: var(--surface);
  cursor: pointer; overflow: hidden;
}
.wt-home .pdp-thumb.is-active { border-color: var(--accent); }
.wt-home .pdp-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

.wt-home .pdp-buybox .cat-tag { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.wt-home .pdp-buybox h1 { font-size: clamp(1.5rem, 2vw + 1rem, 2.1rem); margin-top: 0.4rem; }
.wt-home .pdp-buybox .p-rating { margin-top: var(--space-2); font-size: 0.85rem; color: var(--muted); }
.wt-home .pdp-buybox .p-rating .stars { color: var(--accent); }
.wt-home .pdp-price { font-family: var(--font-display); font-weight: 600; font-size: 1.6rem; margin-top: var(--space-3); }
.wt-home .pdp-price del { color: var(--muted); font-size: 0.7em; font-weight: 500; margin-right: 0.4em; }
.wt-home .pdp-desc { color: var(--muted); margin-top: var(--space-3); max-width: 34rem; }

.wt-home .pdp-add-form { display: flex; align-items: center; gap: var(--space-3); margin-top: var(--space-4); flex-wrap: wrap; }
.wt-home .qty-stepper { display: flex; align-items: stretch; border: 1px solid var(--border); }
.wt-home .qty-btn { width: 2.4rem; background: var(--surface); border: none; font-size: 1rem; color: var(--text); cursor: pointer; }
.wt-home .qty-stepper input {
  width: 3rem; border: none; border-left: 1px solid var(--border); border-right: 1px solid var(--border);
  text-align: center; font-family: var(--font-body); background: var(--bg); color: var(--text);
}
.wt-home .pdp-add-btn { padding: 0.8rem 2rem; }
.wt-home .pdp-oos { margin-top: var(--space-4); color: var(--festival); font-weight: 600; }

.wt-home .pdp-trust { list-style: none; margin: var(--space-4) 0 0; padding: var(--space-3) 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.wt-home .pdp-trust li { font-size: 0.85rem; color: var(--muted); margin-bottom: 0.3rem; }
.wt-home .pdp-trust li:last-child { margin-bottom: 0; }

.wt-home .pdp-attributes { margin-top: var(--space-4); }
.wt-home .pdp-attributes h4 { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: var(--space-2); }
.wt-home .pdp-attributes dl { display: grid; grid-template-columns: auto 1fr; gap: 0.4rem var(--space-3); margin: 0; }
.wt-home .pdp-attributes dt { color: var(--muted); font-size: 0.88rem; }
.wt-home .pdp-attributes dd { margin: 0; font-size: 0.88rem; }

.wt-home .pdp-variations table { border-collapse: collapse; margin-top: var(--space-3); }
.wt-home .pdp-variations td { padding: 0.3rem 0; }
.wt-home .pdp-variations select {
  font-family: var(--font-body); padding: 0.6rem 0.8rem; border: 1px solid var(--border);
  background: var(--bg); color: var(--text); font-size: 0.9rem; min-width: 10rem;
}
.wt-home .pdp-variations .single_variation { margin: var(--space-3) 0; }
.wt-home .pdp-variations .woocommerce-variation-add-to-cart { display: flex; gap: var(--space-3); align-items: center; margin-top: var(--space-3); }
.wt-home .pdp-variations .button {
  display: inline-flex; align-items: center; padding: 0.8rem 1.8rem; font-weight: 600; font-size: 0.92rem;
  text-decoration: none; background: var(--accent); color: var(--accent-ink); border: none; cursor: pointer;
}
.wt-home .pdp-variations .reset_variations { font-size: 0.8rem; color: var(--muted); margin-left: 0.5rem; }

.wt-home .pdp-reviews { padding-block: var(--space-6); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.wt-home .pdp-reviews h2 { font-size: clamp(1.3rem, 1.6vw + 1rem, 1.7rem); margin-bottom: var(--space-3); }
.wt-home .pdp-reviews .commentlist { list-style: none; margin: 0; padding: 0; }
.wt-home .pdp-reviews .comment_container { padding: var(--space-3) 0; border-bottom: 1px solid var(--border); }
.wt-home .pdp-reviews .star-rating { color: var(--accent); }
.wt-home .pdp-reviews .comment-form input[type="text"],
.wt-home .pdp-reviews .comment-form input[type="email"],
.wt-home .pdp-reviews .comment-form textarea {
  font-family: var(--font-body); width: 100%; max-width: 28rem; padding: 0.7rem 0.9rem;
  border: 1px solid var(--border); background: var(--bg); color: var(--text); font-size: 0.9rem; margin-top: 0.3rem;
}
.wt-home .pdp-reviews .comment-form p { margin-top: var(--space-2); }
.wt-home .pdp-reviews .comment-form .form-submit input {
  width: auto; font-weight: 600; background: var(--accent); color: var(--accent-ink); border: none; cursor: pointer;
}

@media (max-width: 860px) {
  .wt-home .pdp-layout { grid-template-columns: 1fr; }
}
