/*
Theme Name: PrettyNpoison V2
Theme URI: https://prettynpoison.com
Author: PrettyNpoison × Digime App
Author URI: https://prettynpoison.com
Description: A premium fashion FSE theme — "Pretty on the surface. Poison underneath."
Version: 2.0.0
Requires at least: 6.4
Tested up to: 6.7
Requires PHP: 8.0
License: GPL-2.0-or-later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: prettynpoison
Tags: fashion, e-commerce, dark-mode, photography, full-site-editing, woocommerce
*/

/* ==========================================
   PrettyNpoison V2 — Global Styles
   ========================================== */

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

body {
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, video { max-width: 100%; height: auto; display: block; }
a { text-decoration: none !important; color: inherit; transition: opacity 0.3s ease; }
a:hover { opacity: 0.7; }

/* --- Typography Utilities ------------- */
.eyebrow {
  font-family: var(--wp--preset--font-family--body);
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  opacity: 0.7;
}

.display-heading {
  font-family: var(--wp--preset--font-family--heading);
  font-weight: 400;
  font-style: italic;
  line-height: 0.9;
  letter-spacing: -0.03em;
}

.body-text {
  font-family: var(--wp--preset--font-family--body);
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: 0.01em;
}

/* --- Button Styles -------------------- */
.pnp-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  font-family: var(--wp--preset--font-family--body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.pnp-btn::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 0;
  background: currentColor;
  transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 0;
}

.pnp-btn:hover::before { height: 100%; }
.pnp-btn:hover { opacity: 1; }

.pnp-btn span {
  position: relative;
  z-index: 1;
  transition: color 0.4s ease;
}

.pnp-btn:hover span { color: var(--wp--preset--color--pearl-white); }

.pnp-btn--light {
  border-color: rgba(255,255,255,0.3);
  color: #fff;
}
.pnp-btn--light:hover span { color: var(--wp--preset--color--midnight-black); }
.pnp-btn--light::before { background: #fff; }

.pnp-btn--solid {
  background: var(--wp--preset--color--midnight-black);
  color: var(--wp--preset--color--pearl-white);
  border-color: var(--wp--preset--color--midnight-black);
}
.pnp-btn--solid::before { background: var(--wp--preset--color--pearl-white); }
.pnp-btn--solid:hover span { color: var(--wp--preset--color--midnight-black); }

.pnp-btn--toxic {
  background: var(--wp--preset--color--toxic-green);
  color: var(--wp--preset--color--midnight-black);
  border-color: var(--wp--preset--color--toxic-green);
}

/* --- Section Spacing ------------------ */
.section-spacing {
  padding: clamp(80px, 10vh, 160px) clamp(20px, 5vw, 80px);
}

.section-spacing--tight {
  padding: clamp(40px, 6vh, 80px) clamp(20px, 5vw, 80px);
}

/* --- Scroll Animations --------------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* --- Horizontal Rule ------------------ */
.pnp-rule {
  width: 48px;
  height: 1px;
  background: currentColor;
  opacity: 0.2;
  border: none;
  margin: 0;
}

/* ==========================================
   ABOUT PAGE STYLES
   ========================================== */

/* --- About Hero ---------------------- */
.about-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.about-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.about-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(5, 5, 5, 0.2) 0%,
    rgba(5, 5, 5, 0.4) 50%,
    rgba(5, 5, 5, 0.85) 100%
  );
}

.about-hero__noise {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.5'/%3E%3C/svg%3E");
  pointer-events: none;
}

.about-hero__content {
  position: relative;
  z-index: 2;
  padding: clamp(40px, 8vw, 120px);
  padding-bottom: clamp(60px, 10vh, 140px);
}

.about-hero__title {
  color: #fff;
  font-size: clamp(2.5rem, 7vw, 6rem);
  margin-top: 20px;
}

.about-hero__accent {
  color: var(--wp--preset--color--toxic-green, #CEFF00);
  font-style: italic;
}

/* --- About Origin -------------------- */
.about-origin__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-origin__text p.body-text {
  max-width: 480px;
  color: rgba(5, 5, 5, 0.75);
}

.about-origin__text em {
  font-style: italic;
  color: var(--wp--preset--color--deep-plum, #2A0A18);
}

.about-origin__text strong {
  font-weight: 600;
}

.about-origin__image img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  filter: contrast(1.05) saturate(0.9);
}

/* --- About Pillars ------------------- */
.about-pillars {
  background: var(--wp--preset--color--midnight-black, #050505);
  padding: clamp(80px, 12vh, 180px) clamp(20px, 5vw, 80px);
}

.about-pillars__header {
  text-align: center;
  margin-bottom: clamp(40px, 6vh, 80px);
}

.about-pillars__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-pillar {
  text-align: center;
  padding: 40px 24px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: border-color 0.5s ease;
}

.about-pillar:hover {
  border-color: rgba(207, 255, 0, 0.2);
}

.about-pillar__icon {
  display: block;
  font-size: 1.5rem;
  color: var(--wp--preset--color--dusty-rose, #DCAE96);
  margin-bottom: 24px;
  opacity: 0.6;
}

.about-pillar__title {
  font-family: var(--wp--preset--font-family--heading);
  font-weight: 400;
  font-size: 1.3rem;
  color: var(--wp--preset--color--champagne, #F7E7CE);
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}

.about-pillar__desc {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  line-height: 1.7;
}

/* --- About Manifesto ----------------- */
.about-manifesto {
  text-align: center;
  padding: clamp(100px, 15vh, 200px) clamp(20px, 5vw, 80px);
}

.about-manifesto__content {
  max-width: 900px;
  margin: 0 auto;
}

.about-manifesto__quote {
  font-size: clamp(2rem, 5vw, 4.5rem);
  line-height: 1.1;
  margin: 0;
  border: none;
  padding: 0;
}

.about-manifesto__underline {
  text-decoration: line-through;
  opacity: 0.35;
}

.about-manifesto__accent {
  color: var(--wp--preset--color--deep-plum, #2A0A18);
  font-style: italic;
}

/* --- About Craft --------------------- */
.about-craft__layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-craft__image img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: contrast(1.08) saturate(0.85);
}

.about-craft__text p.body-text {
  max-width: 440px;
  color: rgba(5, 5, 5, 0.75);
}

.about-craft__text em {
  font-style: italic;
  color: var(--wp--preset--color--deep-plum, #2A0A18);
}

/* --- About Stats --------------------- */
.about-stats {
  background: var(--wp--preset--color--mist, #f0ece6);
  padding: clamp(50px, 6vh, 80px) clamp(20px, 5vw, 80px);
}

.about-stats__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.about-stat {
  padding: 30px 20px;
}

.about-stat:not(:last-child) {
  border-right: 1px solid rgba(5, 5, 5, 0.08);
}

.about-stat__number {
  display: block;
  font-family: var(--wp--preset--font-family--heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  font-style: italic;
  color: var(--wp--preset--color--deep-plum, #2A0A18);
  line-height: 1;
  margin-bottom: 12px;
}

.about-stat__label {
  color: rgba(5, 5, 5, 0.4);
}

/* --- About Collections --------------- */
.about-collections__header {
  text-align: center;
  margin-bottom: clamp(40px, 6vh, 80px);
}

.about-collections__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
}

.about-collection {
  padding: clamp(60px, 8vh, 120px) clamp(30px, 5vw, 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
}

.about-collection--pretty {
  background: var(--wp--preset--color--mist, #f0ece6);
}

.about-collection--poison {
  background: var(--wp--preset--color--midnight-black, #050505);
}

.about-collection__inner {
  max-width: 380px;
}

.about-collection__title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin-bottom: 20px;
}

.about-collection__desc {
  margin-bottom: 32px;
  font-size: 0.9rem;
}

/* --- About CTA ----------------------- */
.about-cta {
  position: relative;
  background: var(--wp--preset--color--deep-plum, #2A0A18);
  text-align: center;
  padding: clamp(100px, 15vh, 200px) clamp(20px, 5vw, 80px);
  overflow: hidden;
}

.about-cta__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(207,255,0,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.about-cta__grain {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.5'/%3E%3C/svg%3E");
  pointer-events: none;
}

.about-cta__content {
  position: relative;
  z-index: 1;
}

.about-cta__heading {
  color: #fff;
  font-size: clamp(2.5rem, 6vw, 5rem);
  margin: 20px 0 48px;
}

.about-cta__buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- About Page Responsive ----------- */
@media (max-width: 768px) {
  .about-origin__layout {
    grid-template-columns: 1fr;
  }

  .about-origin__image {
    order: -1;
  }

  .about-pillars__grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .about-craft__layout {
    grid-template-columns: 1fr;
  }

  .about-stats__inner {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .about-stat:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid rgba(5, 5, 5, 0.08);
  }

  .about-collections__grid {
    grid-template-columns: 1fr;
  }

  .about-hero__title {
    font-size: clamp(2rem, 9vw, 3.5rem);
  }
}

@media (max-width: 480px) {
  .about-pillars__grid {
    grid-template-columns: 1fr;
  }

  .about-cta__buttons {
    flex-direction: column;
    align-items: center;
  }

  .about-cta__buttons .pnp-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

/* ==========================================
   JOURNAL PAGE STYLES
   ========================================== */

/* --- Journal Hero -------------------- */
.journal-hero {
  position: relative;
  height: 70vh;
  min-height: 480px;
  max-height: 700px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.journal-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.journal-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(5, 5, 5, 0.15) 0%,
    rgba(5, 5, 5, 0.3) 40%,
    rgba(5, 5, 5, 0.8) 100%
  );
}

.journal-hero__noise {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.5'/%3E%3C/svg%3E");
  pointer-events: none;
}

.journal-hero__content {
  position: relative;
  z-index: 2;
  padding: clamp(40px, 8vw, 120px);
  padding-bottom: clamp(50px, 8vh, 100px);
}

.journal-hero__title {
  color: #fff;
  font-size: clamp(2.5rem, 6vw, 5rem);
  margin-top: 16px;
}

.journal-hero__subtitle {
  color: rgba(255, 255, 255, 0.5);
  max-width: 400px;
  margin-top: 20px;
  font-size: 0.95rem;
}

/* --- Journal Filters ----------------- */
.journal-filters {
  border-bottom: 1px solid rgba(5, 5, 5, 0.06);
}

.journal-filters__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  overflow-x: auto;
  padding: 0 clamp(20px, 5vw, 80px);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.journal-filters__inner::-webkit-scrollbar {
  display: none;
}

.journal-filter {
  font-family: var(--wp--preset--font-family--body);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(5, 5, 5, 0.4);
  white-space: nowrap;
  padding: 16px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.journal-filter:hover,
.journal-filter--active {
  color: var(--wp--preset--color--midnight-black, #050505);
  border-bottom-color: var(--wp--preset--color--midnight-black, #050505);
  opacity: 1;
}

/* --- Journal Featured ---------------- */
.journal-featured__layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.journal-featured__image {
  overflow: hidden;
}

.journal-featured__image img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.journal-featured__layout:hover .journal-featured__image img {
  transform: scale(1.03);
}

.journal-featured__title {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  margin-top: 16px;
  line-height: 1.05;
}

.journal-featured__title a {
  transition: opacity 0.3s ease;
}

.journal-featured__title a:hover {
  opacity: 0.6;
}

.journal-featured__excerpt {
  max-width: 440px;
  color: rgba(5, 5, 5, 0.7);
  font-size: 0.92rem;
}

.journal-featured__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.journal-featured__dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(5, 5, 5, 0.25);
}

/* --- Journal Grid -------------------- */
.journal-grid__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* --- Journal Card -------------------- */
.journal-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.journal-card__image {
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}

.journal-card__image img,
.journal-card__placeholder {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.journal-card__placeholder {
  background: linear-gradient(145deg, #f0ece6 0%, #ddd5cb 100%);
}

.journal-card:hover .journal-card__image img {
  transform: scale(1.05);
}

.journal-card__category {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(5, 5, 5, 0.75);
  backdrop-filter: blur(8px);
  padding: 6px 14px;
}

.journal-card__category .eyebrow {
  color: #fff;
  opacity: 0.8;
  font-size: 0.55rem;
}

.journal-card__title {
  font-family: var(--wp--preset--font-family--heading);
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.3;
  letter-spacing: 0.01em;
  margin-bottom: 10px;
  transition: opacity 0.3s ease;
}

.journal-card:hover .journal-card__title {
  opacity: 0.6;
}

.journal-card__excerpt {
  color: rgba(5, 5, 5, 0.6);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.journal-card__date {
  font-size: 0.6rem;
  opacity: 0.35;
}

/* --- Journal Pagination -------------- */
.journal-pagination {
  margin-top: 60px;
  display: flex;
  justify-content: center;
}

.journal-pagination .page-numbers {
  list-style: none;
  display: flex;
  gap: 8px;
  padding: 0;
  margin: 0;
}

.journal-pagination .page-numbers li a,
.journal-pagination .page-numbers li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  font-family: var(--wp--preset--font-family--body);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  border: 1px solid rgba(5, 5, 5, 0.1);
  transition: all 0.3s ease;
}

.journal-pagination .page-numbers li a:hover {
  border-color: var(--wp--preset--color--midnight-black, #050505);
  opacity: 1;
}

.journal-pagination .page-numbers li span.current {
  background: var(--wp--preset--color--midnight-black, #050505);
  color: var(--wp--preset--color--pearl-white, #fafafa);
  border-color: var(--wp--preset--color--midnight-black, #050505);
}

/* --- Journal Subscribe --------------- */
.journal-subscribe {
  background: var(--wp--preset--color--midnight-black, #050505);
  padding: clamp(80px, 10vh, 140px) clamp(20px, 5vw, 80px);
}

.journal-subscribe__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}

.journal-subscribe__heading {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-top: 12px;
}

.journal-subscribe__form {
  max-width: 480px;
}

.journal-subscribe__input-group {
  display: flex;
  gap: 12px;
}

.journal-subscribe__input {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 16px 20px;
  font-family: var(--wp--preset--font-family--body);
  font-size: 0.8rem;
  color: #fff;
  letter-spacing: 0.05em;
  transition: border-color 0.3s ease;
  outline: none;
}

.journal-subscribe__input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.journal-subscribe__input:focus {
  border-color: var(--wp--preset--color--toxic-green, #CEFF00);
}

/* --- Journal Responsive -------------- */
@media (max-width: 1024px) {
  .journal-grid__inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .journal-featured__layout {
    grid-template-columns: 1fr;
  }

  .journal-grid__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .journal-subscribe__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .journal-subscribe__form {
    margin: 0 auto;
  }

  .journal-subscribe__input-group {
    flex-direction: column;
  }

  .journal-hero__title {
    font-size: clamp(2rem, 8vw, 3rem);
  }
}

@media (max-width: 480px) {
  .journal-filters__inner {
    gap: 20px;
  }
}

/* ==========================================
   SHOP PAGE STYLES
   ========================================== */

/* --- Shop Hero ----------------------- */
.shop-hero {
  position: relative;
  height: 65vh;
  min-height: 440px;
  max-height: 650px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.shop-hero__media {
  position: absolute;
  inset: 0;
}

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

.shop-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(5, 5, 5, 0.1) 0%,
    rgba(5, 5, 5, 0.25) 40%,
    rgba(5, 5, 5, 0.85) 100%
  );
}

.shop-hero__content {
  position: relative;
  z-index: 2;
  padding: clamp(40px, 8vw, 120px);
  padding-bottom: clamp(50px, 8vh, 100px);
}

.shop-hero__title {
  color: #fff;
  font-size: clamp(2.5rem, 6vw, 5rem);
  margin-top: 16px;
}

.shop-hero__subtitle {
  color: rgba(255, 255, 255, 0.45);
  max-width: 400px;
  margin-top: 20px;
  font-size: 0.95rem;
}

/* --- Shop Collections (Duality) ------ */
.shop-collections__header {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 60px);
}

.shop-collections__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.shop-collection {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

.shop-collection__image {
  position: absolute;
  inset: 0;
}

.shop-collection__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.shop-collection:hover .shop-collection__image img {
  transform: scale(1.06);
}

.shop-collection__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(5, 5, 5, 0.05) 0%,
    rgba(5, 5, 5, 0.65) 100%
  );
  transition: background 0.6s ease;
}

.shop-collection:hover .shop-collection__overlay {
  background: linear-gradient(
    180deg,
    rgba(5, 5, 5, 0.1) 0%,
    rgba(5, 5, 5, 0.75) 100%
  );
}

.shop-collection__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: clamp(24px, 4vw, 48px);
  z-index: 2;
}

.shop-collection__title {
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: 8px;
}

/* --- Shop Filters -------------------- */
.shop-filters {
  border-bottom: 1px solid rgba(5, 5, 5, 0.06);
}

.shop-filters__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px);
}

.shop-filters__left {
  display: flex;
  align-items: center;
  gap: 32px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.shop-filters__left::-webkit-scrollbar {
  display: none;
}

.shop-sort {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: 1px solid rgba(5, 5, 5, 0.1);
  padding: 10px 36px 10px 16px;
  font-family: var(--wp--preset--font-family--body);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(5, 5, 5, 0.6);
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23050505' stroke-width='1.5'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  transition: border-color 0.3s ease;
}

.shop-sort:focus {
  outline: none;
  border-color: var(--wp--preset--color--midnight-black, #050505);
}

/* --- Shop Grid ----------------------- */
.shop-grid__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.shop-grid .product-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.shop-grid .product-card__image {
  background: var(--wp--preset--color--mist, #f5f1ed);
}

.shop-grid .product-card__placeholder {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: linear-gradient(145deg, #f0ece6 0%, #ddd5cb 100%);
}

/* --- Shop CTA Banner ----------------- */
.shop-cta {
  background: var(--wp--preset--color--midnight-black, #050505);
  padding: clamp(80px, 12vh, 160px) clamp(20px, 5vw, 80px);
  text-align: center;
}

.shop-cta__inner {
  max-width: 600px;
  margin: 0 auto;
}

.shop-cta__heading {
  color: #fff;
  font-size: clamp(2rem, 5vw, 4rem);
  margin-top: 12px;
}

/* --- Shop Responsive ----------------- */
@media (max-width: 1024px) {
  .shop-grid__inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .shop-collections__grid {
    grid-template-columns: 1fr;
  }

  .shop-collection {
    aspect-ratio: 4 / 5;
  }

  .shop-filters__inner {
    flex-direction: column;
    gap: 16px;
    padding: 16px clamp(20px, 5vw, 80px);
  }

  .shop-filters__left {
    width: 100%;
  }

  .shop-sort {
    width: 100%;
  }

  .shop-grid__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 12px;
  }

  .shop-hero__title {
    font-size: clamp(2rem, 8vw, 3rem);
  }
}

@media (max-width: 480px) {
  .shop-grid__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 8px;
  }

  .product-card__name {
    font-size: 0.8rem;
  }

  .product-card__price {
    font-size: 0.8rem;
  }
}

/* ==========================================
   SINGLE POST STYLES
   ========================================== */

/* --- Post Hero ----------------------- */
.post-hero {
  position: relative;
  height: 70vh;
  min-height: 480px;
  max-height: 720px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.post-hero__media {
  position: absolute;
  inset: 0;
}

.post-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.post-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(5, 5, 5, 0.05) 0%,
    rgba(5, 5, 5, 0.2) 40%,
    rgba(5, 5, 5, 0.88) 100%
  );
}

.post-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 780px;
  padding: 0 clamp(20px, 5vw, 60px);
  padding-bottom: clamp(50px, 8vh, 100px);
}

.post-hero__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

.post-hero__meta .eyebrow {
  color: rgba(255, 255, 255, 0.45);
  opacity: 1;
}

.post-hero__cat {
  color: var(--wp--preset--color--toxic-lime, #c8f542) !important;
  opacity: 1 !important;
}

.post-hero__dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  flex-shrink: 0;
}

.post-hero__title {
  color: #fff;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
  max-width: 700px;
  margin: 0 auto;
}

.post-hero__excerpt {
  color: rgba(255, 255, 255, 0.45);
  max-width: 520px;
  margin: 24px auto 0;
  font-size: 1rem;
}

/* --- Post Body (editorial reading col) --- */
.post-body {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(20px, 5vw, 40px);
  padding-right: clamp(20px, 5vw, 40px);
}

.post-body__inner {
  color: rgba(5, 5, 5, 0.75);
  font-size: clamp(1rem, 1.1vw, 1.1rem);
  line-height: 1.85;
}

.post-body__inner p {
  margin-bottom: 1.6em;
}

.post-body__inner h2 {
  font-family: var(--wp--preset--font-family--heading);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 400;
  font-style: italic;
  color: var(--wp--preset--color--midnight-black, #050505);
  margin: 2em 0 0.8em;
  line-height: 1.1;
}

.post-body__inner h3 {
  font-family: var(--wp--preset--font-family--heading);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 400;
  font-style: italic;
  color: var(--wp--preset--color--midnight-black, #050505);
  margin: 1.8em 0 0.6em;
  line-height: 1.2;
}

.post-body__inner blockquote {
  border-left: 2px solid var(--wp--preset--color--toxic-lime, #c8f542);
  padding: 20px 0 20px 32px;
  margin: 2em 0;
  font-family: var(--wp--preset--font-family--heading);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-style: italic;
  line-height: 1.5;
  color: var(--wp--preset--color--midnight-black, #050505);
}

.post-body__inner blockquote p {
  margin-bottom: 0;
}

.post-body__inner img {
  border-radius: 2px;
  margin: 2em 0;
}

.post-body__inner figure {
  margin: 2.5em 0;
}

.post-body__inner figcaption {
  font-size: 0.75rem;
  text-align: center;
  color: rgba(5, 5, 5, 0.4);
  margin-top: 12px;
  letter-spacing: 0.05em;
}

.post-body__inner a {
  color: var(--wp--preset--color--midnight-black, #050505);
  text-decoration: underline !important;
  text-underline-offset: 3px;
}

.post-body__inner ul,
.post-body__inner ol {
  padding-left: 1.5em;
  margin-bottom: 1.6em;
}

.post-body__inner li {
  margin-bottom: 0.5em;
}

/* --- Post Tags ----------------------- */
.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(5, 5, 5, 0.06);
}

.post-tag {
  font-family: var(--wp--preset--font-family--body);
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(5, 5, 5, 0.45);
  padding: 6px 14px;
  border: 1px solid rgba(5, 5, 5, 0.08);
  transition: all 0.3s ease;
}

.post-tag:hover {
  border-color: var(--wp--preset--color--midnight-black, #050505);
  color: var(--wp--preset--color--midnight-black, #050505);
  opacity: 1;
}

/* --- Post Share ---------------------- */
.post-share {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(5, 5, 5, 0.06);
}

.post-share__label {
  opacity: 0.3;
}

.post-share__icons {
  display: flex;
  gap: 16px;
}

.post-share__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(5, 5, 5, 0.08);
  border-radius: 50%;
  color: rgba(5, 5, 5, 0.4);
  transition: all 0.3s ease;
  cursor: pointer;
  background: none;
  font-size: 0.6rem;
}

.post-share__icon:hover {
  border-color: var(--wp--preset--color--midnight-black, #050505);
  color: var(--wp--preset--color--midnight-black, #050505);
  opacity: 1;
}

/* --- Post Author --------------------- */
.post-author {
  max-width: 700px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 80px) clamp(20px, 5vw, 40px);
}

.post-author__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 32px 0;
  border-top: 1px solid rgba(5, 5, 5, 0.06);
  border-bottom: 1px solid rgba(5, 5, 5, 0.06);
}

.post-author__avatar img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(100%);
}

.post-author__name {
  font-family: var(--wp--preset--font-family--heading);
  font-size: 1.1rem;
  font-weight: 400;
  font-style: italic;
  margin: 6px 0 0;
}

.post-author__bio {
  color: rgba(5, 5, 5, 0.45);
  font-size: 0.85rem;
  margin-top: 4px;
  max-width: 400px;
}

/* --- Related / Read Next ------------- */
.post-related__header {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 60px);
}

.post-related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

/* --- Single Post Responsive ---------- */
@media (max-width: 768px) {
  .post-hero {
    height: 55vh;
    min-height: 380px;
  }

  .post-hero__title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .post-hero__meta {
    flex-wrap: wrap;
    gap: 8px;
  }

  .post-related__grid {
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 480px;
  }

  .post-author__inner {
    flex-direction: column;
    text-align: center;
  }

  .post-share {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .post-hero__title {
    font-size: 1.8rem;
  }

  .post-body__inner {
    font-size: 0.95rem;
  }
}

/* ==========================================
   SINGLE PRODUCT PAGE (PDP) STYLES
   ========================================== */

/* --- PDP Hero — Split Layout ----------- */
.pdp-hero {
  padding-top: 100px; /* header clearance */
}

.pdp-hero__inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 0;
  max-width: 1440px;
  margin: 0 auto;
  min-height: calc(100vh - 100px);
}

/* --- PDP Gallery --------------------- */
.pdp-gallery {
  position: sticky;
  top: 100px;
  height: fit-content;
  padding: clamp(24px, 4vw, 60px);
}

.pdp-gallery__main {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--wp--preset--color--mist, #f0ece6);
  margin-bottom: 12px;
}

.pdp-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.pdp-gallery__main .product-card__badge {
  z-index: 2;
}

.pdp-gallery__thumbs {
  display: flex;
  gap: 8px;
}

.pdp-gallery__thumb {
  width: 72px;
  height: 96px;
  border: 1px solid transparent;
  background: var(--wp--preset--color--mist, #f0ece6);
  cursor: pointer;
  overflow: hidden;
  padding: 0;
  transition: border-color 0.3s ease, opacity 0.3s ease;
  opacity: 0.5;
}

.pdp-gallery__thumb.is-active {
  border-color: var(--wp--preset--color--midnight-black, #050505);
  opacity: 1;
}

.pdp-gallery__thumb:hover {
  opacity: 0.85;
}

.pdp-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- PDP Info Column ------------------ */
.pdp-info {
  display: flex;
  align-items: flex-start;
  padding: clamp(40px, 5vw, 80px);
  padding-top: clamp(60px, 8vh, 120px);
}

.pdp-info__inner {
  max-width: 480px;
  width: 100%;
}

.pdp-info__breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.pdp-info__breadcrumb .eyebrow {
  font-size: 0.6rem;
  opacity: 0.4;
}

.pdp-info__breadcrumb-sep {
  font-size: 0.55rem;
  opacity: 0.25;
}

.pdp-info__title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 0.95;
  margin: 0 0 20px;
}

.pdp-info__price {
  font-family: var(--wp--preset--font-family--body);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}

.pdp-info__price del {
  opacity: 0.35;
  font-weight: 300;
  margin-right: 8px;
}

.pdp-info__price ins {
  text-decoration: none;
  color: var(--wp--preset--color--deep-plum, #2A0A18);
}

.pdp-info__desc {
  color: rgba(5, 5, 5, 0.65);
  font-size: 0.92rem;
  margin-bottom: 0;
}

.pdp-info__desc p {
  margin: 0 0 12px;
}

.pdp-info__sku {
  font-size: 0.55rem;
  margin: 0;
}

/* --- PDP Variants -------------------- */
.pdp-variants {
  margin-bottom: 24px;
}

.pdp-variants__label {
  margin: 0 0 12px;
  font-size: 0.6rem;
  opacity: 0.5;
}

.pdp-variants__options {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.pdp-variant {
  min-width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--wp--preset--font-family--body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  border: 1px solid rgba(5, 5, 5, 0.12);
  background: transparent;
  cursor: pointer;
  padding: 0 14px;
  transition: all 0.3s ease;
}

.pdp-variant:hover {
  border-color: var(--wp--preset--color--midnight-black, #050505);
}

.pdp-variant.is-active {
  background: var(--wp--preset--color--midnight-black, #050505);
  color: var(--wp--preset--color--pearl-white, #fafafa);
  border-color: var(--wp--preset--color--midnight-black, #050505);
}

/* WooCommerce Add to Cart form overrides */
.pdp-info__form .cart {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pdp-info__form .variations {
  width: 100%;
  border-collapse: collapse;
}

.pdp-info__form .variations td,
.pdp-info__form .variations th {
  padding: 8px 0;
  border: none;
}

.pdp-info__form .variations .label label {
  font-family: var(--wp--preset--font-family--body);
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.5;
}

.pdp-info__form .variations select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(5, 5, 5, 0.12);
  font-family: var(--wp--preset--font-family--body);
  font-size: 0.85rem;
  background: transparent;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: border-color 0.3s ease;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23050505' stroke-width='1.5'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

.pdp-info__form .variations select:focus {
  outline: none;
  border-color: var(--wp--preset--color--midnight-black, #050505);
}

.pdp-info__form .quantity {
  display: flex;
  align-items: center;
}

.pdp-info__form .quantity .qty {
  width: 60px;
  text-align: center;
  border: 1px solid rgba(5, 5, 5, 0.12);
  padding: 12px 8px;
  font-family: var(--wp--preset--font-family--body);
  font-size: 0.9rem;
  appearance: none;
  -moz-appearance: textfield;
}

.pdp-info__form .quantity .qty::-webkit-outer-spin-button,
.pdp-info__form .quantity .qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.pdp-info__form .single_add_to_cart_button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 18px 36px;
  font-family: var(--wp--preset--font-family--body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--wp--preset--color--midnight-black, #050505);
  color: var(--wp--preset--color--pearl-white, #fafafa);
  border: 1px solid var(--wp--preset--color--midnight-black, #050505);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.pdp-info__form .single_add_to_cart_button:hover {
  background: var(--wp--preset--color--toxic-green, #CEFF00);
  color: var(--wp--preset--color--midnight-black, #050505);
  border-color: var(--wp--preset--color--toxic-green, #CEFF00);
}

.pdp-info__cart-btn {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

/* --- PDP Trust Badges ---------------- */
.pdp-trust {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pdp-trust__item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--wp--preset--font-family--body);
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(5, 5, 5, 0.45);
  letter-spacing: 0.03em;
}

.pdp-trust__item svg {
  color: rgba(5, 5, 5, 0.3);
  flex-shrink: 0;
}

/* --- PDP Story — Dark Editorial ------ */
.pdp-story {
  position: relative;
  background: var(--wp--preset--color--midnight-black, #050505);
  padding: clamp(80px, 12vh, 160px) clamp(20px, 5vw, 80px);
  overflow: hidden;
}

.pdp-story__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 45% at 50% 50%, rgba(90, 25, 50, 0.2) 0%, transparent 70%);
  pointer-events: none;
  animation: manifesto-drift 18s ease-in-out infinite alternate;
}

.pdp-story__grain {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px;
}

.pdp-story__inner {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.pdp-story__text {
  color: rgba(250, 240, 232, 0.7);
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  line-height: 1.85;
}

.pdp-story__text p {
  margin-bottom: 1.4em;
}

/* --- PDP Details / Accordion --------- */
.pdp-details__inner {
  max-width: 800px;
  margin: 0 auto;
}

.pdp-details__header {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 60px);
}

.pdp-accordion {
  border-top: 1px solid rgba(5, 5, 5, 0.08);
}

.pdp-accordion__item {
  border-bottom: 1px solid rgba(5, 5, 5, 0.08);
}

.pdp-accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--wp--preset--font-family--body);
  transition: opacity 0.3s ease;
}

.pdp-accordion__trigger:hover {
  opacity: 0.6;
}

.pdp-accordion__title {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pdp-accordion__icon {
  font-size: 1.2rem;
  font-weight: 200;
  color: rgba(5, 5, 5, 0.4);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  line-height: 1;
}

.pdp-accordion__item.is-open .pdp-accordion__icon {
  transform: rotate(45deg);
}

.pdp-accordion__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.pdp-accordion__content {
  padding: 0 0 28px;
  color: rgba(5, 5, 5, 0.6);
  font-size: 0.9rem;
  line-height: 1.75;
}

.pdp-accordion__content ul {
  padding-left: 1.2em;
  margin: 12px 0 0;
}

.pdp-accordion__content li {
  margin-bottom: 6px;
}

/* --- PDP Related Products ------------ */
.pdp-related__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 20px;
}

.pdp-related__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.pdp-related .product-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.pdp-related .product-card__image {
  background: var(--wp--preset--color--mist, #f5f1ed);
}

.pdp-related .product-card__placeholder {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: linear-gradient(145deg, #f0ece6 0%, #ddd5cb 100%);
}

/* --- PDP Responsive ------------------ */
@media (max-width: 1024px) {
  .pdp-hero__inner {
    grid-template-columns: 1fr 1fr;
  }

  .pdp-related__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .pdp-hero__inner {
    grid-template-columns: 1fr;
  }

  .pdp-gallery {
    position: relative;
    top: auto;
    padding: 20px 20px 0;
  }

  .pdp-info {
    padding: 32px 20px 48px;
  }

  .pdp-info__title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .pdp-related__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 12px;
  }

  .pdp-related__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .pdp-gallery__thumb {
    width: 60px;
    height: 80px;
  }
}

@media (max-width: 480px) {
  .pdp-gallery__thumbs {
    gap: 6px;
  }

  .pdp-gallery__thumb {
    width: 52px;
    height: 69px;
  }

  .pdp-info__title {
    font-size: 1.8rem;
  }

  .pdp-related__grid {
    gap: 12px 8px;
  }
}

/* ==========================================
   CART PAGE STYLES
   ========================================== */

/* --- Cart Page Container --------------- */
.cart-page {
  padding-top: 100px; /* header clearance */
  min-height: 100vh;
}

/* --- Cart Empty State ------------------ */
.cart-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 100px);
  padding: 60px 20px;
  text-align: center;
}

.cart-empty__inner {
  max-width: 460px;
}

.cart-empty__icon {
  color: rgba(5, 5, 5, 0.12);
  margin-bottom: 32px;
}

.cart-empty__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin: 0 0 16px;
}

.cart-empty__text {
  color: rgba(5, 5, 5, 0.5);
  font-size: 0.95rem;
  margin-bottom: 40px;
  line-height: 1.7;
}

/* --- Cart Header ----------------------- */
.cart-header {
  padding: clamp(40px, 6vh, 80px) clamp(20px, 5vw, 80px) 0;
  max-width: 1440px;
  margin: 0 auto;
}

.cart-header__inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: clamp(32px, 4vw, 48px);
  border-bottom: 1px solid rgba(5, 5, 5, 0.06);
  flex-wrap: wrap;
  gap: 20px;
}

.cart-header__title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 0.95;
  margin: 0;
}

.cart-header__count {
  color: rgba(5, 5, 5, 0.4);
  font-size: 0.85rem;
  margin: 12px 0 0;
}

/* --- Cart Body — Two Column ------------ */
.cart-body {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px);
}

.cart-body__inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: clamp(32px, 4vw, 60px);
  padding: clamp(32px, 4vw, 48px) 0;
  align-items: start;
}

/* --- Cart Items Column ----------------- */
.cart-items {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cart-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(5, 5, 5, 0.06);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.cart-item:first-child {
  padding-top: 0;
}

.cart-item.is-removing {
  opacity: 0;
  transform: translateX(-20px);
}

/* Thumbnail */
.cart-item__image {
  width: 100px;
  height: 133px;
  overflow: hidden;
  background: var(--wp--preset--color--mist, #f0ece6);
  flex-shrink: 0;
}

.cart-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item__image a {
  display: block;
  height: 100%;
}

/* Info */
.cart-item__info {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.cart-item__meta {
  flex: 1;
  min-width: 0;
}

.cart-item__category {
  font-size: 0.55rem;
  opacity: 0.35;
  margin: 0 0 6px;
}

.cart-item__name {
  font-family: var(--wp--preset--font-family--body);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  margin: 0 0 6px;
}

.cart-item__name a {
  color: inherit;
  text-decoration: none;
}

.cart-item__name a:hover {
  opacity: 0.6;
}

.cart-item__variations {
  font-size: 0.8rem;
  color: rgba(5, 5, 5, 0.45);
  margin-bottom: 6px;
}

.cart-item__variations dl {
  margin: 0;
  display: flex;
  gap: 4px;
}

.cart-item__variations dt,
.cart-item__variations dd {
  margin: 0;
  display: inline;
}

.cart-item__variations dt::after {
  content: ':';
  margin-right: 3px;
}

.cart-item__price {
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(5, 5, 5, 0.55);
  margin: 0;
}

/* Actions (qty, subtotal, remove) */
.cart-item__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  flex-shrink: 0;
}

.cart-item__subtotal {
  font-family: var(--wp--preset--font-family--body);
  font-size: 0.95rem;
  font-weight: 500;
  margin: 0;
}

.cart-item__remove {
  color: rgba(5, 5, 5, 0.25);
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.cart-item__remove:hover {
  color: var(--wp--preset--color--deep-plum, #2A0A18);
}

/* --- Quantity Stepper ------------------ */
.cart-qty {
  display: flex;
  align-items: center;
  border: 1px solid rgba(5, 5, 5, 0.1);
}

.cart-qty__btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  font-size: 0.9rem;
  font-weight: 300;
  cursor: pointer;
  color: rgba(5, 5, 5, 0.5);
  transition: color 0.3s ease, background 0.3s ease;
  font-family: var(--wp--preset--font-family--body);
  padding: 0;
}

.cart-qty__btn:hover {
  color: var(--wp--preset--color--midnight-black, #050505);
  background: rgba(5, 5, 5, 0.03);
}

.cart-qty__input {
  width: 40px;
  height: 36px;
  text-align: center;
  border: none;
  border-left: 1px solid rgba(5, 5, 5, 0.1);
  border-right: 1px solid rgba(5, 5, 5, 0.1);
  font-family: var(--wp--preset--font-family--body);
  font-size: 0.8rem;
  background: transparent;
  appearance: none;
  -moz-appearance: textfield;
  padding: 0;
}

.cart-qty__input::-webkit-outer-spin-button,
.cart-qty__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* --- Cart Totals Sidebar --------------- */
.cart-totals {
  position: sticky;
  top: 120px;
}

.cart-totals__inner {
  background: var(--wp--preset--color--mist, #f5f1ed);
  padding: clamp(28px, 3vw, 40px);
}

.cart-totals__heading {
  font-size: 0.65rem;
  margin: 0 0 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(5, 5, 5, 0.08);
}

.cart-totals__rows {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

.cart-totals__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--wp--preset--font-family--body);
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(5, 5, 5, 0.6);
}

.cart-totals__row--discount span:last-child {
  color: var(--wp--preset--color--deep-plum, #2A0A18);
}

.cart-totals__shipping-note {
  font-size: 0.8rem;
  font-style: italic;
  opacity: 0.6;
}

/* Coupon Form */
.cart-totals__coupon {
  padding: 20px 0;
  border-top: 1px solid rgba(5, 5, 5, 0.06);
  border-bottom: 1px solid rgba(5, 5, 5, 0.06);
  margin-bottom: 20px;
}

.cart-coupon-form__row {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.cart-coupon-form__input {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid rgba(5, 5, 5, 0.1);
  font-family: var(--wp--preset--font-family--body);
  font-size: 0.8rem;
  background: transparent;
  transition: border-color 0.3s ease;
}

.cart-coupon-form__input:focus {
  outline: none;
  border-color: var(--wp--preset--color--midnight-black, #050505);
}

.cart-coupon-form__input::placeholder {
  color: rgba(5, 5, 5, 0.25);
}

.cart-coupon-form__btn {
  padding: 10px 20px !important;
  font-size: 0.65rem !important;
}

/* Total */
.cart-totals__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--wp--preset--font-family--body);
  font-size: 1.05rem;
  font-weight: 500;
  padding-top: 16px;
  margin-bottom: 24px;
}

/* Checkout CTA */
.cart-totals__checkout {
  width: 100%;
  justify-content: center;
  padding: 18px 36px;
  font-size: 0.75rem;
}

/* Trust */
.cart-totals__trust {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(5, 5, 5, 0.06);
}

.cart-totals__trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--wp--preset--font-family--body);
  font-size: 0.7rem;
  font-weight: 300;
  color: rgba(5, 5, 5, 0.35);
  letter-spacing: 0.02em;
}

.cart-totals__trust-item svg {
  color: rgba(5, 5, 5, 0.2);
  flex-shrink: 0;
}

/* --- Cart Responsive ------------------- */
@media (max-width: 1024px) {
  .cart-body__inner {
    grid-template-columns: 1fr 320px;
  }
}

@media (max-width: 768px) {
  .cart-body__inner {
    grid-template-columns: 1fr;
  }

  .cart-totals {
    position: relative;
    top: auto;
  }

  .cart-header__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cart-item {
    grid-template-columns: 80px 1fr;
    gap: 16px;
  }

  .cart-item__image {
    width: 80px;
    height: 107px;
  }

  .cart-item__info {
    flex-direction: column;
    gap: 14px;
  }

  .cart-item__actions {
    flex-direction: row;
    align-items: center;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .cart-item__name {
    font-size: 0.9rem;
  }

  .cart-qty__btn {
    width: 32px;
    height: 32px;
  }

  .cart-qty__input {
    width: 36px;
    height: 32px;
  }
}

/* ==========================================
   CONTACT PAGE STYLES
   ========================================== */

/* --- Contact Page Container ------------ */
.contact-page {
  padding-top: 100px;
  min-height: 100vh;
}

/* --- Contact Hero ---------------------- */
.contact-hero {
  padding: clamp(40px, 8vh, 100px) clamp(20px, 5vw, 80px) 0;
  max-width: 1440px;
  margin: 0 auto;
}

.contact-hero__inner {
  padding-bottom: clamp(32px, 4vw, 48px);
  border-bottom: 1px solid rgba(5, 5, 5, 0.06);
}

.contact-hero__title {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  line-height: 0.95;
  margin: 0 0 16px;
}

.contact-hero__subtitle {
  color: rgba(5, 5, 5, 0.45);
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  max-width: 440px;
  line-height: 1.7;
  margin: 0;
}

/* --- Contact Body — Two Column --------- */
.contact-body {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px);
}

.contact-body__inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: clamp(40px, 5vw, 80px);
  padding: clamp(40px, 5vw, 64px) 0 clamp(60px, 8vw, 100px);
  align-items: start;
}

/* --- Contact Form ---------------------- */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-form__label {
  font-size: 0.55rem;
  opacity: 0.4;
}

.contact-form__input {
  padding: 14px 16px;
  border: 1px solid rgba(5, 5, 5, 0.1);
  font-family: var(--wp--preset--font-family--body);
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--wp--preset--color--midnight-black, #050505);
  background: transparent;
  transition: border-color 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}

.contact-form__input:focus {
  outline: none;
  border-color: var(--wp--preset--color--midnight-black, #050505);
}

.contact-form__input::placeholder {
  color: rgba(5, 5, 5, 0.2);
  font-weight: 300;
}

/* Select */
.contact-form__select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23050505' stroke-opacity='0.3' stroke-width='1'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.contact-form__select option[disabled] {
  color: rgba(5, 5, 5, 0.25);
}

/* Textarea */
.contact-form__textarea {
  resize: vertical;
  min-height: 160px;
  line-height: 1.7;
}

/* Submit */
.contact-form__submit {
  align-self: flex-start;
  margin-top: 4px;
}

/* Status */
.contact-form__status {
  font-family: var(--wp--preset--font-family--body);
  font-size: 0.85rem;
  font-weight: 300;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.contact-form__status.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.contact-form__status.is-success {
  color: var(--wp--preset--color--deep-plum, #2A0A18);
}

.contact-form__status.is-error {
  color: #b44;
}

/* Field validation */
.contact-form__input.is-invalid {
  border-color: #c44;
}

/* --- Contact Info Sidebar -------------- */
.contact-info {
  padding-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.contact-info__block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-info__heading {
  font-size: 0.55rem;
  opacity: 0.35;
  margin: 0;
}

.contact-info__link {
  font-family: var(--wp--preset--font-family--body);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--wp--preset--color--midnight-black, #050505);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.contact-info__link:hover {
  opacity: 0.5;
}

.contact-info__text {
  font-family: var(--wp--preset--font-family--body);
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(5, 5, 5, 0.5);
  line-height: 1.7;
  margin: 0;
}

.contact-info__inline-link {
  color: var(--wp--preset--color--midnight-black, #050505);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(5, 5, 5, 0.2);
  transition: text-decoration-color 0.3s ease;
}

.contact-info__inline-link:hover {
  text-decoration-color: var(--wp--preset--color--midnight-black, #050505);
}

/* Social */
.contact-info__social {
  display: flex;
  gap: 20px;
}

.contact-info__social-link {
  font-family: var(--wp--preset--font-family--body);
  font-size: 0.8rem;
  font-weight: 400;
  color: rgba(5, 5, 5, 0.55);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info__social-link:hover {
  color: var(--wp--preset--color--midnight-black, #050505);
}

/* --- Contact Responsive ---------------- */
@media (max-width: 768px) {
  .contact-body__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-form__row {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .contact-info {
    padding-top: 0;
    border-top: 1px solid rgba(5, 5, 5, 0.06);
    padding-top: 40px;
  }
}

@media (max-width: 480px) {
  .contact-hero__title {
    font-size: 2rem;
  }

  .contact-form__input {
    padding: 12px 14px;
    font-size: 0.85rem;
  }
}



/* ==========================================
   CHECKOUT PAGE STYLES
   ========================================== */

/* --- Checkout Container ---------------- */
.checkout-page {
  padding-top: 100px;
  min-height: 100vh;
}

/* --- Checkout Empty State -------------- */
.checkout-empty {
  padding: clamp(60px, 12vh, 160px) clamp(20px, 5vw, 80px);
  max-width: 1440px;
  margin: 0 auto;
  text-align: center;
}

/* --- Checkout Header ------------------- */
.checkout-header {
  padding: clamp(40px, 8vh, 100px) clamp(20px, 5vw, 80px) 0;
  max-width: 1440px;
  margin: 0 auto;
}

.checkout-header__inner {
  padding-bottom: clamp(32px, 4vw, 48px);
  border-bottom: 1px solid rgba(5, 5, 5, 0.06);
}

.checkout-header__title {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  line-height: 0.95;
  margin: 0;
}

/* --- Checkout Body --------------------- */
.checkout-body {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px);
}

.checkout-body__inner {
  padding: clamp(40px, 5vw, 64px) 0 clamp(60px, 8vw, 100px);
}

/* --- WooCommerce Checkout Two-Column --- */
.woocommerce-checkout .col2-set {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* The form itself is the grid container (not .woocommerce) */
.woocommerce-checkout form.woocommerce-checkout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}

/* All full-width elements inside the form */
.woocommerce-checkout form.woocommerce-checkout > .woocommerce-notices-wrapper,
.woocommerce-checkout form.woocommerce-checkout > .woocommerce-NoticeGroup {
  grid-column: 1 / -1;
}

/* Pin billing/shipping to left column, spanning all rows */
.woocommerce-checkout #customer_details {
  grid-column: 1;
  grid-row: 1 / span 10;
}

/* Pin order review heading and table to right column */
.woocommerce-checkout #order_review_heading {
  grid-column: 2;
  grid-row: 1;
}

.woocommerce-checkout #order_review {
  grid-column: 2;
  grid-row: 2 / span 10;
  position: sticky;
  top: 120px;
}

/* --- Checkout Form Fields -------------- */
.woocommerce-checkout h3 {
  font-family: var(--wp--preset--font-family--heading);
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 400;
  margin: 0 0 28px;
  line-height: 1.1;
}

/* Ensure billing/shipping columns fill space - override woocommerce-layout.css */
.woocommerce .col2-set .col-1,
.woocommerce .col2-set .col-2,
.woocommerce-page .col2-set .col-1,
.woocommerce-page .col2-set .col-2 {
  width: 100% !important;
  float: none !important;
}

/* col2-set: single column (billing only by default, shipping if enabled) */
.woocommerce-checkout .col2-set {
  display: block;
  width: 100%;
}

/* Form rows need full width */
.woocommerce-checkout .form-row {
  margin-bottom: 20px;
  width: 100% !important;
  float: none !important;
  clear: both;
}

/* WooCommerce uses form-row-first and form-row-last with float+width:48% - override to flex layout */
.woocommerce-checkout .woocommerce-billing-fields__field-wrapper,
.woocommerce-checkout .woocommerce-shipping-fields__field-wrapper {
  display: flex !important;
  flex-wrap: wrap;
  gap: 0 20px;
}

.woocommerce-checkout .form-row.form-row-first,
.woocommerce-checkout .form-row.form-row-last {
  width: calc(50% - 10px) !important;
  float: none !important;
  flex: 0 0 calc(50% - 10px);
}

.woocommerce-checkout .form-row.form-row-wide {
  width: 100% !important;
  float: none !important;
  flex: 0 0 100%;
}

.woocommerce-checkout .form-row label {
  display: block;
  font-family: var(--wp--preset--font-family--body);
  font-size: 0.55rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  opacity: 0.4;
  margin-bottom: 8px;
}

.woocommerce-checkout .form-row label .required {
  color: rgba(5, 5, 5, 0.3);
  font-weight: 300;
}

.woocommerce-checkout .form-row input.input-text,
.woocommerce-checkout .form-row textarea,
.woocommerce-checkout .form-row select,
.woocommerce-checkout .select2-container .select2-selection--single {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(5, 5, 5, 0.1);
  font-family: var(--wp--preset--font-family--body);
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--wp--preset--color--midnight-black, #050505);
  background: transparent;
  border-radius: 0;
  transition: border-color 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
  box-sizing: border-box;
}

.woocommerce-checkout .form-row input.input-text:focus,
.woocommerce-checkout .form-row textarea:focus,
.woocommerce-checkout .form-row select:focus {
  outline: none;
  border-color: var(--wp--preset--color--midnight-black, #050505);
}

.woocommerce-checkout .form-row input.input-text::placeholder {
  color: rgba(5, 5, 5, 0.2);
  font-weight: 300;
}

/* Select2 overrides */
.woocommerce-checkout .select2-container--default .select2-selection--single {
  height: auto;
  border: 1px solid rgba(5, 5, 5, 0.1);
  border-radius: 0;
}

.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__rendered {
  padding: 14px 16px;
  font-family: var(--wp--preset--font-family--body);
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--wp--preset--color--midnight-black, #050505);
  line-height: 1.4;
}

.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 100%;
  right: 12px;
}

/* --- Additional Notes (Order Notes) ---- */
.woocommerce-checkout .woocommerce-additional-fields h3 {
  font-size: 1.1rem;
  margin-top: 32px;
}

.woocommerce-checkout #order_comments {
  min-height: 100px;
  resize: vertical;
  line-height: 1.7;
}

/* --- Order Review (Right Column) ------- */
.woocommerce-checkout #order_review_heading {
  font-family: var(--wp--preset--font-family--heading);
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 400;
  margin: 0 0 28px;
  line-height: 1.1;
}

.woocommerce-checkout #order_review {
  position: sticky;
  top: 100px;
  background: rgba(5, 5, 5, 0.02);
  padding: 32px;
  border: 1px solid rgba(5, 5, 5, 0.04);
}

/* Order review table */
.woocommerce-checkout .woocommerce-checkout-review-order-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table th,
.woocommerce-checkout .woocommerce-checkout-review-order-table td {
  padding: 12px 0;
  font-family: var(--wp--preset--font-family--body);
  font-size: 0.85rem;
  font-weight: 300;
  border-bottom: 1px solid rgba(5, 5, 5, 0.06);
  vertical-align: top;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table thead th {
  font-size: 0.55rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  opacity: 0.4;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table .cart_item td {
  font-weight: 300;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table .cart_item .product-name {
  font-weight: 400;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table .product-quantity {
  opacity: 0.4;
  font-weight: 300;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot th {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  opacity: 1;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot .order-total th,
.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot .order-total td {
  font-size: 1rem;
  font-weight: 500;
  border-bottom: none;
  padding-top: 16px;
}

/* --- Payment Methods ------------------- */
.woocommerce-checkout #payment {
  background: transparent;
  border: none;
}

.woocommerce-checkout #payment ul.payment_methods {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  border-bottom: 1px solid rgba(5, 5, 5, 0.06);
}

.woocommerce-checkout #payment ul.payment_methods li {
  padding: 16px 0;
  border-top: 1px solid rgba(5, 5, 5, 0.06);
}

.woocommerce-checkout #payment ul.payment_methods li label {
  font-family: var(--wp--preset--font-family--body);
  font-size: 0.88rem;
  font-weight: 400;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 1 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
}

.woocommerce-checkout #payment ul.payment_methods li .payment_box {
  padding: 12px 0 4px 26px;
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(5, 5, 5, 0.5);
  line-height: 1.6;
  background: transparent;
}

.woocommerce-checkout #payment ul.payment_methods li .payment_box::before {
  display: none;
}

/* --- Place Order Button ---------------- */
.woocommerce-checkout #payment #place_order {
  width: 100%;
  padding: 18px 32px;
  background: var(--wp--preset--color--midnight-black, #050505);
  color: var(--wp--preset--color--toxic-green, #CEFF00);
  border: none;
  font-family: var(--wp--preset--font-family--body);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  cursor: pointer;
  transition: opacity 0.3s ease;
  border-radius: 0;
}

.woocommerce-checkout #payment #place_order:hover {
  opacity: 0.85;
}

/* --- Coupon Toggle --------------------- */
.woocommerce-checkout .woocommerce-form-coupon-toggle .woocommerce-info {
  background: transparent;
  border: none;
  border-top: 1px solid rgba(5, 5, 5, 0.06);
  border-bottom: 1px solid rgba(5, 5, 5, 0.06);
  padding: 16px 0;
  font-family: var(--wp--preset--font-family--body);
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(5, 5, 5, 0.6);
  margin-bottom: 0;
}

.woocommerce-checkout .woocommerce-form-coupon-toggle .woocommerce-info::before {
  display: none;
}

.woocommerce-checkout .woocommerce-form-coupon-toggle .woocommerce-info a {
  color: var(--wp--preset--color--midnight-black, #050505);
  font-weight: 400;
}

.woocommerce-checkout .checkout_coupon {
  padding: 20px 0;
  border: none;
  display: flex;
  gap: 12px;
  align-items: flex-end;
}

.woocommerce-checkout .checkout_coupon input.input-text {
  padding: 14px 16px;
  border: 1px solid rgba(5, 5, 5, 0.1);
  font-family: var(--wp--preset--font-family--body);
  font-size: 0.88rem;
  flex: 1;
  border-radius: 0;
}

.woocommerce-checkout .checkout_coupon button {
  padding: 14px 24px;
  background: var(--wp--preset--color--midnight-black, #050505);
  color: #fff;
  border: none;
  font-family: var(--wp--preset--font-family--body);
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  cursor: pointer;
  white-space: nowrap;
  border-radius: 0;
}

/* --- Trust Badges ---------------------- */
.checkout-trust {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px) clamp(40px, 6vw, 80px);
}

.checkout-trust__inner {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 4vw, 48px);
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(5, 5, 5, 0.06);
}

.checkout-trust__badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--wp--preset--font-family--body);
  font-size: 0.75rem;
  font-weight: 400;
  color: rgba(5, 5, 5, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.checkout-trust__badge svg {
  opacity: 0.3;
}

/* --- WC Info/Error Notices ------------- */
.woocommerce-checkout .woocommerce-NoticeGroup,
.woocommerce-checkout .woocommerce-error,
.woocommerce-checkout .woocommerce-message {
  font-family: var(--wp--preset--font-family--body);
  font-size: 0.85rem;
  margin-bottom: 20px;
}

/* --- Login Toggle ---------------------- */
.woocommerce-checkout .woocommerce-form-login-toggle .woocommerce-info {
  background: transparent;
  border: none;
  padding: 0 0 16px;
  font-family: var(--wp--preset--font-family--body);
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(5, 5, 5, 0.5);
}

.woocommerce-checkout .woocommerce-form-login-toggle .woocommerce-info::before {
  display: none;
}

/* --- Checkout Responsive --------------- */
@media (max-width: 1024px) {
  .woocommerce-checkout .woocommerce {
    grid-template-columns: 1fr;
  }

  .woocommerce-checkout #order_review {
    position: static;
  }
}

@media (max-width: 768px) {
  .woocommerce-checkout .col2-set {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .checkout-header__title {
    font-size: 2.2rem;
  }
}

@media (max-width: 480px) {
  .checkout-header__title {
    font-size: 1.8rem;
  }

  .woocommerce-checkout #order_review {
    padding: 24px 20px;
  }

  .checkout-trust__badge {
    font-size: 0.65rem;
  }

  .checkout_coupon {
    flex-direction: column;
  }
}


/* ==========================================
   LEGAL / POLICY PAGE STYLES
   (Shipping & Returns, FAQ, Size Guide, etc.)
   ========================================== */

/* --- Legal Page Container -------------- */
.legal-page {
  padding-top: 100px;
  min-height: 100vh;
}

/* --- Legal Header ---------------------- */
.legal-header {
  padding: clamp(40px, 8vh, 100px) clamp(20px, 5vw, 80px) 0;
  max-width: 900px;
  margin: 0 auto;
}

.legal-header__inner {
  padding-bottom: clamp(32px, 4vw, 48px);
  border-bottom: 1px solid rgba(5, 5, 5, 0.06);
}

.legal-header__title {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  line-height: 0.95;
  margin: 0;
}

/* --- Legal Content Area ---------------- */
.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px) clamp(60px, 8vw, 100px);
}

.legal-content__inner {
  padding-top: clamp(40px, 5vw, 64px);
}

/* --- Legal Block (each policy section) - */
.legal-block {
  margin-bottom: clamp(32px, 4vw, 48px);
}

.legal-block__heading {
  font-family: var(--wp--preset--font-family--heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  line-height: 1.1;
  margin: 0 0 28px;
}

.legal-block__section {
  margin-bottom: 32px;
}

.legal-block__section h3 {
  font-family: var(--wp--preset--font-family--body);
  font-size: 0.95rem;
  font-weight: 500;
  margin: 0 0 12px;
  text-transform: none;
  letter-spacing: 0;
}

.legal-block__section p {
  font-family: var(--wp--preset--font-family--body);
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(5, 5, 5, 0.6);
  margin: 0 0 12px;
}

.legal-block__section p a {
  color: var(--wp--preset--color--midnight-black, #050505);
  font-weight: 400;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(5, 5, 5, 0.2);
  transition: text-decoration-color 0.3s ease;
}

.legal-block__section p a:hover {
  text-decoration-color: rgba(5, 5, 5, 0.8);
}

/* --- Legal Lists ----------------------- */
.legal-block__section ul,
.legal-block__section ol {
  padding-left: 20px;
  margin: 0 0 16px;
}

.legal-block__section li {
  font-family: var(--wp--preset--font-family--body);
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(5, 5, 5, 0.6);
  margin-bottom: 6px;
}

.legal-block__section ol li {
  padding-left: 4px;
}

/* --- Legal Table ----------------------- */
.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px;
}

.legal-table th,
.legal-table td {
  padding: 14px 16px;
  text-align: left;
  font-family: var(--wp--preset--font-family--body);
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(5, 5, 5, 0.06);
}

.legal-table th {
  font-size: 0.55rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(5, 5, 5, 0.4);
}

.legal-table td {
  font-weight: 300;
  color: rgba(5, 5, 5, 0.65);
}

.legal-table tbody tr:last-child td {
  border-bottom: none;
}

/* --- Highlight Callout ----------------- */
.legal-highlight {
  background: rgba(5, 5, 5, 0.02);
  border-left: 3px solid var(--wp--preset--color--toxic-green, #CEFF00);
  padding: 16px 20px;
  margin: 20px 0;
  font-family: var(--wp--preset--font-family--body);
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(5, 5, 5, 0.7);
}

.legal-highlight strong {
  font-weight: 500;
  color: var(--wp--preset--color--midnight-black, #050505);
}

/* --- Legal Divider --------------------- */
.legal-divider {
  border: none;
  border-top: 1px solid rgba(5, 5, 5, 0.06);
  margin: clamp(32px, 4vw, 48px) 0;
}

/* --- Legal CTA Block ------------------- */
.legal-cta {
  text-align: center;
  padding: clamp(48px, 6vw, 80px) 0;
  margin-top: clamp(24px, 3vw, 40px);
  border-top: 1px solid rgba(5, 5, 5, 0.06);
}

/* --- Legal Responsive ------------------ */
@media (max-width: 768px) {
  .legal-header__title {
    font-size: 2.2rem;
  }

  .legal-table th,
  .legal-table td {
    padding: 10px 12px;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .legal-header__title {
    font-size: 1.8rem;
  }

  .legal-table {
    font-size: 0.75rem;
  }

  .legal-table th,
  .legal-table td {
    padding: 8px 8px;
  }
}

/* ═══════════════════════════════════════════
   FAQ PAGE — Accordion Component
═══════════════════════════════════════════ */
.faq-content {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px);
}

.faq-content__inner {
  padding: clamp(20px, 3vw, 40px) 0 clamp(60px, 8vw, 100px);
  max-width: 900px;
}

/* --- Category Block -------------------- */
.faq-category {
  margin-bottom: clamp(40px, 5vw, 64px);
}

.faq-category__heading {
  font-family: var(--wp--preset--font-family--heading, 'Cormorant Garamond', serif);
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

/* --- Accordion Items ------------------- */
.faq-accordion__item {
  border-bottom: 1px solid rgba(5, 5, 5, 0.08);
}

.faq-accordion__item:first-child {
  border-top: 1px solid rgba(5, 5, 5, 0.08);
}

.faq-accordion__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--wp--preset--font-family--body, 'Inter', sans-serif);
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--wp--preset--color--midnight-black, #050505);
  text-align: left;
  line-height: 1.5;
  gap: 24px;
  transition: opacity 0.2s ease;
}

.faq-accordion__trigger:hover {
  opacity: 0.6;
}

.faq-accordion__icon {
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0.3;
}

/* Open state — rotate + to × */
.faq-accordion__item.is-open .faq-accordion__icon {
  transform: rotate(45deg);
  opacity: 0.6;
}

/* --- Accordion Body (collapsed by default) */
.faq-accordion__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-accordion__body-inner {
  padding: 0 0 24px;
}

.faq-accordion__body-inner p {
  font-family: var(--wp--preset--font-family--body, 'Inter', sans-serif);
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(5, 5, 5, 0.55);
  margin: 0;
}

.faq-accordion__body-inner p + p {
  margin-top: 12px;
}

.faq-accordion__body-inner a {
  color: var(--wp--preset--color--midnight-black, #050505);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

.faq-accordion__body-inner a:hover {
  opacity: 0.6;
}

/* --- FAQ Responsive -------------------- */
@media (max-width: 768px) {
  .faq-accordion__trigger {
    font-size: 0.88rem;
    padding: 18px 0;
  }

  .faq-accordion__body-inner p {
    font-size: 0.84rem;
  }

  .faq-category__heading {
    font-size: 1.3rem;
  }
}

/* ═══════════════════════════════════════════
   404 ERROR PAGE
═══════════════════════════════════════════ */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-page__content {
  width: 100%;
  padding: clamp(80px, 12vw, 160px) clamp(20px, 5vw, 80px);
}

.error-page__inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

/* Decorative oversized 404 */
.error-page__code {
  display: block;
  font-family: var(--wp--preset--font-family--heading, 'Cormorant Garamond', serif);
  font-size: clamp(7rem, 18vw, 14rem);
  font-weight: 300;
  font-style: italic;
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: rgba(5, 5, 5, 0.04);
  margin-bottom: -20px;
  user-select: none;
  pointer-events: none;
}

.error-page__title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 16px;
}

.error-page__text {
  color: rgba(5, 5, 5, 0.45);
  font-size: 0.92rem;
  line-height: 1.7;
  max-width: 420px;
  margin: 0 auto 36px;
}

/* Button group */
.error-page__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Outline button variant */
.pnp-btn--outline {
  background: transparent;
  color: var(--wp--preset--color--midnight-black, #050505);
  border: 1px solid rgba(5, 5, 5, 0.15);
}

.pnp-btn--outline:hover {
  background: rgba(5, 5, 5, 0.03);
  border-color: rgba(5, 5, 5, 0.3);
}

/* --- 404 Responsive -------------------- */
@media (max-width: 480px) {
  .error-page__code {
    font-size: 6rem;
  }

  .error-page__title {
    font-size: 1.8rem;
  }

  .error-page__actions {
    flex-direction: column;
  }

  .error-page__actions .pnp-btn {
    width: 100%;
  }
}
