@charset "UTF-8";

.screen-reader-text { display: none; }

/* ============================================================
   MINISTRY OF COFFEE — V2: MODERN MINIMAL
   Mobile-first approach: base styles = mobile (~375px)
   Breakpoints: 768px (tablet), 1024px (laptop), 1280px (desktop)
   ============================================================ */

/* ── VARIABLES ── */
:root {
  --clr-bg: #fafafa;
  --clr-dark: #0a0f1c;
  --clr-text: #111111;
  --clr-muted: #888888;
  --clr-accent: #2563eb;
  --clr-accent-h: #3b82f6;
  --clr-line: #e5e5e5;
  --clr-white: #ffffff;

  --font: "Syne", "Helvetica Neue", Arial, sans-serif;

  --container-max: 1440px;
  --container-px: 24px;

  --radius-card: 8px;
  --radius-pill: 100px;

  --ease-out: cubic-bezier(0.25, 0.1, 0.25, 1);
}

@media (min-width: 768px) {
  :root {
    --container-px: 40px;
  }
}

@media (min-width: 1024px) {
  :root {
    --container-px: 48px;
  }
}

@media (min-width: 1280px) {
  :root {
    --container-px: 80px;
  }
}

/* ── RESET ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  font-weight: 400;
  line-height: 1.6;
  color: var(--clr-text);
  background-color: var(--clr-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

/* ── UTILITIES ── */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

.section-space {
  padding: 80px 0;
}

.section-label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--clr-muted);
  margin-bottom: 20px;
}

/* ── TYPOGRAPHY ── */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font);
  font-weight: 700;
  color: var(--clr-text);
  line-height: 1.05;
}

h1 {
  font-size: clamp(44px, 10vw, 72px);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 0.95;
}

@media (min-width: 768px) {
  h1 {
    font-size: clamp(56px, 7vw, 100px);
    letter-spacing: -2px;
  }
}

h2 {
  font-size: clamp(32px, 7vw, 48px);
  font-weight: 600;
  letter-spacing: -1px;
  line-height: 1.05;
}

@media (min-width: 768px) {
  h2 {
    font-size: clamp(36px, 4vw, 56px);
  }
}

h3 {
  font-size: 22px;
  font-weight: 600;
}

h4 {
  font-size: 20px;
  font-weight: 600;
}

p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--clr-muted);
  font-weight: 400;
}

/* ── BUTTONS ── */
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  padding: 16px 36px;
  background-color: var(--clr-text);
  color: var(--clr-white);
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 500;
  transition:
    background-color 0.3s ease,
    transform 0.2s ease;
}
.btn-hero-primary:hover {
  background-color: var(--clr-accent);
  color: var(--clr-white);
  transform: scale(1.02);
}

.btn-hero-text {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--clr-text);
  border-bottom: 1px solid var(--clr-text);
  padding-bottom: 2px;
  transition:
    color 0.2s ease,
    border-color 0.2s ease;
}
.btn-hero-text:hover {
  color: var(--clr-accent);
  border-color: var(--clr-accent);
}

.btn-text-link {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--clr-text);
  border-bottom: 1px solid var(--clr-text);
  padding-bottom: 2px;
  white-space: nowrap;
  transition:
    color 0.2s ease,
    border-color 0.2s ease;
}
.btn-text-link:hover {
  color: var(--clr-accent);
  border-color: var(--clr-accent);
}

.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 28px;
  background-color: var(--clr-accent);
  color: var(--clr-white);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 500;
  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
}
.btn-nav-cta:hover {
  background-color: var(--clr-accent-h);
  color: var(--clr-white);
  transform: scale(1.03);
}

/* ============================================================
   HEADER — three-level structure
   ============================================================ */

/* Wrapper */
.site-header {
  background-color: var(--clr-white);
  border-bottom: 1px solid var(--clr-line);
}

/* ── Row 1: promo banner ── */
.header-promo {
  background-color: var(--clr-dark);
  text-align: center;
  padding: 8px 16px;
}
.header-promo span {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--clr-white);
}

/* ── Row 2: logo + phones + icons ── */
.header-main {
  border-bottom: 1px solid var(--clr-line);
}
.header-main__inner {
  display: flex;
  align-items: center;
  height: 48px;
  gap: 24px;
}
.header-main__inner > :first-child {
  flex: 1;
}
.header-main__inner > :last-child {
  flex: 1;
  justify-content: flex-end;
}

@media (min-width: 768px) {
  .header-main__inner {
    height: 72px;
  }
}

/* Phones (left) — hidden on mobile, shown on laptop+ */
.header-phones {
  display: none;
  flex-direction: column;
  gap: 2px;
}
.header-phones a {
  font-size: 12px;
  font-weight: 500;
  color: var(--clr-text);
  letter-spacing: 0.3px;
  transition: color 0.2s ease;
  white-space: nowrap;
}
.header-phones a:hover {
  color: var(--clr-accent);
}

@media (min-width: 1024px) {
  .header-phones {
    display: flex;
  }
}

/* Logo (center) */
.site-header__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.site-header__logo-text {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--clr-text);
  white-space: nowrap;
}

@media (min-width: 768px) {
  .site-header__logo-text {
    font-size: 16px;
    letter-spacing: 5px;
  }
}

/* Icons (right) */
.header-icons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

@media (min-width: 768px) {
  .header-icons {
    gap: 20px;
  }
}
.header-icon-btn {
  display: flex;
  align-items: center;
  color: var(--clr-text);
  transition: color 0.2s ease;
}
.header-icon-btn:hover {
  color: var(--clr-accent);
}

/* Cart */
.cart-icon {
  position: relative;
  display: flex;
  align-items: center;
  color: var(--clr-text);
  transition: color 0.2s ease;
}
.cart-icon:hover {
  color: var(--clr-accent);
}
.cart-icon__count {
  position: absolute;
  top: -6px;
  right: -8px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--clr-accent);
  color: var(--clr-white);
  font-size: 10px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Burger (mobile) — visible on mobile, hidden on laptop+ */
.burger-menu {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.burger-menu span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--clr-text);
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}
.burger-menu.is-active span:nth-child(1) {
  transform: translateY(3.5px) rotate(45deg);
}
.burger-menu.is-active span:nth-child(2) {
  transform: translateY(-3.5px) rotate(-45deg);
}

@media (min-width: 1024px) {
  .burger-menu {
    display: none;
  }
}

/* ── Row 3: navigation bar ── */
/* Mobile: hidden by default, full-screen overlay when open */
.header-nav-bar {
  display: none;
  background-color: var(--clr-white);
}

/* Close button — hidden on desktop */
.nav-close-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--clr-text);
  padding: 8px;
  line-height: 1;
}

/* Mobile open state */
.header-nav-bar.is-open {
  display: flex;
  position: fixed;
  inset: 0;
  background-color: var(--clr-bg);
  z-index: 90;
  flex-direction: column;
  justify-content: center;
  padding: 0 var(--container-px);
  animation: navFadeIn 0.2s ease;
}
@keyframes navFadeIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.header-nav-bar.is-open .nav-close-btn {
  display: flex;
  position: absolute;
  top: 12px;
  right: var(--container-px);
}
.header-nav-bar.is-open .site-header__nav {
  display: flex;
}
.header-nav-bar.is-open .nav-menu {
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.header-nav-bar.is-open .nav-menu a {
  font-size: 20px;
  font-weight: 600;
  padding: 12px 0;
  letter-spacing: -0.2px;
}

/* Laptop+: always visible as bar */
@media (min-width: 1024px) {
  .header-nav-bar {
    display: block;
  }
}

.header-nav-bar .site-header__nav {
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0;
}
.nav-menu li {
  display: flex;
}
.nav-menu a {
  display: block;
  padding: 14px 20px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--clr-text);
  transition:
    color 0.2s ease,
    background-color 0.2s ease;
  white-space: nowrap;
}
.nav-menu a:hover,
.nav-menu a.active {
  color: var(--clr-accent);
}
.nav-menu__sale {
  color: var(--clr-accent) !important;
  font-weight: 600 !important;
}

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero-slider {
  position: relative;
  overflow: hidden;
  background: var(--clr-dark);
  height: 72vh;
  min-height: 480px;
  max-height: 760px;
}

/* Track — stacked slides, each absolute */
.hero-slider__track {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Individual slide */
.hero-slider__slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s var(--ease-out);
}

.hero-slider__slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

@media (min-width: 768px) {
  .hero-slider__slide {
    flex-direction: row;
  }
}

/* Photo side */
.hero-slider__photo {
  position: relative;
  width: 100%;
  height: 45%;
  overflow: hidden;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .hero-slider__photo {
    width: 50%;
    height: 100%;
  }
}

@media (min-width: 1024px) {
  .hero-slider__photo {
    width: 55%;
  }
}

.hero-slider__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  transition: transform 0.9s var(--ease-out);
}

.hero-slider__slide.is-active .hero-slider__photo img {
  transform: scale(1);
}

/* Content side */
.hero-slider__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px var(--container-px);
  flex: 1;
  background: var(--clr-dark);
  color: var(--clr-white);
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero-slider__content {
    padding: 48px 40px;
  }
}

@media (min-width: 1024px) {
  .hero-slider__content {
    padding: 64px 56px;
  }
}

/* Label */
.hero-slider__label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease 0.15s, transform 0.5s ease 0.15s;
}

.hero-slider__slide.is-active .hero-slider__label {
  opacity: 1;
  transform: translateY(0);
}

/* Title */
.hero-slider__title {
  font-size: clamp(32px, 5vw, 72px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--clr-white);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease 0.25s, transform 0.6s ease 0.25s;
}

.hero-slider__slide.is-active .hero-slider__title {
  opacity: 1;
  transform: translateY(0);
}

.hero-slider__title em {
  font-style: normal;
  color: var(--clr-accent);
}

/* Subtitle */
.hero-slider__sub {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
  max-width: 320px;
  margin-bottom: 36px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease 0.35s, transform 0.6s ease 0.35s;
}

@media (min-width: 1024px) {
  .hero-slider__sub {
    font-size: 16px;
  }
}

.hero-slider__slide.is-active .hero-slider__sub {
  opacity: 1;
  transform: translateY(0);
}

/* CTA button */
.hero-slider__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--clr-accent);
  color: var(--clr-white);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  align-self: flex-start;
  transition: background 0.2s ease, transform 0.2s ease;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease 0.45s, transform 0.5s ease 0.45s, background 0.2s ease;
}

.hero-slider__slide.is-active .hero-slider__btn {
  opacity: 1;
  transform: translateY(0);
}

.hero-slider__btn:hover {
  background: var(--clr-accent-h);
}

/* Navigation dots */
.hero-slider__dots {
  display: none;
}

@media (min-width: 768px) {
  .hero-slider__dots {
    position: absolute;
    bottom: 32px;
    right: var(--container-px);
    display: flex;
    gap: 10px;
    z-index: 10;
  }
}

.hero-slider__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.hero-slider__dot.is-active {
  background: var(--clr-white);
  transform: scale(1.3);
}

/* Arrows */
.hero-slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--clr-white);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: none;
}

@media (min-width: 768px) {
  .hero-slider__arrow {
    display: flex;
  }
}

.hero-slider__arrow:hover {
  background: rgba(255, 255, 255, 0.24);
}

.hero-slider__arrow--prev {
  left: 20px;
}

.hero-slider__arrow--next {
  right: 20px;
}

/* Progress line at very bottom */
.hero-slider__progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 10;
}

.hero-slider__progress-fill {
  height: 100%;
  background: var(--clr-accent);
  width: 0%;
  transition: width 0.05s linear;
}

/* ── HERO ENTRANCE ANIMATIONS (legacy — keep for other pages if needed) ── */
.reveal-line {
  opacity: 0;
  transform: translateY(40px);
  animation: reveal-line 0.8s var(--ease-out) forwards;
}

@keyframes reveal-line {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal-photo {
  opacity: 0;
  transform: translateX(60px);
  animation: reveal-photo 0.8s var(--ease-out) 0.3s forwards;
}
@keyframes reveal-photo {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes bounce-down {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}

/* Scroll-reveal for sections */
.reveal-up {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s var(--ease-out),
    transform 0.6s var(--ease-out);
}
.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  background-color: var(--clr-dark);
  height: 56px;
  display: flex;
  align-items: center;
  overflow: hidden;
  white-space: nowrap;
}
.marquee__track {
  display: flex;
  animation: marquee-scroll 30s linear infinite;
  will-change: transform;
}
.marquee__text {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  padding-right: 0;
  flex-shrink: 0;
}
.marquee__text em {
  font-style: normal;
  color: var(--clr-accent);
  margin: 0 4px;
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-25%);
  }
}

/* ============================================================
   ABOUT (homepage section)
   ============================================================ */
.about-section__grid {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

@media (min-width: 1024px) {
  .about-section__grid {
    flex-direction: row;
    gap: 80px;
  }
  .about-section__grid > :first-child {
    flex: 5;
  }
  .about-section__grid > :last-child {
    flex: 6;
  }
}

.about-section__text h2 {
  margin-bottom: 24px;
}
.about-section__text p {
  margin-bottom: 16px;
}
.about-section__text p:last-of-type {
  margin-bottom: 40px;
}

.about-section__stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

@media (min-width: 1024px) {
  .about-section__stats {
    gap: 48px;
  }
}

.about-section__stat {
  display: flex;
  flex-direction: column;
}
.stat-number {
  font-size: 32px;
  font-weight: 700;
  color: var(--clr-text);
  line-height: 1;
}
.stat-label {
  font-size: 13px;
  color: var(--clr-muted);
  margin-top: 4px;
}

/* Photo */
.about-section__photo {
  position: relative;
  order: -1;
}

@media (min-width: 1024px) {
  .about-section__photo {
    order: 0;
  }
}

.about-section__photo img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.08);
}

@media (min-width: 1024px) {
  .about-section__photo img {
    aspect-ratio: 3 / 4;
  }
}

/* Badge over photo */
.about-section__badge {
  position: absolute;
  bottom: -16px;
  left: 16px;
  background-color: var(--clr-white);
  border-radius: 8px;
  padding: 16px 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  min-width: 200px;
}

@media (min-width: 1024px) {
  .about-section__badge {
    bottom: -20px;
    left: -30px;
  }
}

.about-badge-title {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--clr-text);
}
.about-badge-sub {
  display: block;
  font-size: 12px;
  color: var(--clr-muted);
  margin-top: 4px;
}

/* ============================================================
   CATALOG — horizontal scroll
   ============================================================ */
.catalog-section__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
}
.catalog-section__header h2 {
  margin-top: 8px;
}

.catalog-scroll {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  cursor: grab;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.catalog-scroll::-webkit-scrollbar {
  display: none;
}
.catalog-scroll.is-grabbing {
  cursor: grabbing;
}

.catalog-scroll__track {
  display: flex;
  gap: 20px;
  padding: 0 var(--container-px) 4px;
  width: max-content;
}

/* Product card v2 */
.product-card-v2 {
  width: 220px;
  flex-shrink: 0;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  border: 1.5px solid var(--clr-line);
  border-radius: 20px;
  padding: 10px;
  transition: border-color 0.3s ease, box-shadow 0.35s var(--ease-out);
}
.product-card-v2 {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06), 0 8px 24px rgba(0, 0, 0, 0.06);
}
@media (hover: hover) {
  .product-card-v2:hover {
    border-color: #bbb;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08), 0 20px 48px rgba(0, 0, 0, 0.12);
  }
}

@media (min-width: 768px) {
  .product-card-v2 {
    width: 270px;
  }
}

@media (min-width: 1024px) {
  .product-card-v2 {
    width: 300px;
  }
}


.product-card-v2__photo {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  margin: -10px -10px 0;
  background-color: #e8eaed;
  display: block;
  transition: box-shadow 0.35s var(--ease-out);
}
.product-card-v2__photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.5s var(--ease-out);
  display: block;
}
@media (hover: hover) {
  .product-card-v2:hover .product-card-v2__photo {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  }
  .product-card-v2:hover .product-card-v2__photo img {
    transform: scale(1.04);
  }
}

.product-tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--radius-pill);
  padding: 5px 14px;
  font-size: 11px;
  font-weight: 600;
  color: var(--clr-text);
}

.product-card-v2__info {
  padding: 14px 4px 0;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card-v2__meta {
  display: flex;
  gap: 8px;
  margin-bottom: 6px;
}
.product-card-v2__meta span {
  font-size: 11px;
  font-weight: 500;
  color: var(--clr-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.product-card-v2__meta span + span::before {
  content: '·';
  margin-right: 8px;
  opacity: 0.5;
}

.product-card-v2__name {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--clr-text);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-card-v2__name a {
  color: inherit;
  text-decoration: none;
}
.product-card-v2__name a:hover {
  color: inherit;
}

.product-card-v2__notes {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--clr-muted);
  margin-bottom: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-card-v2__footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-top: auto;
}

@media (min-width: 768px) {
  .product-card-v2__footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.product-card-v2__price {
  font-size: 15px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  color: var(--clr-text);
  letter-spacing: 0;
}
.product-card-v2__price .woocommerce-Price-amount {
  font-size: inherit;
  font-weight: inherit;
}

.product-card-v2__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  background-color: var(--clr-text);
  color: var(--clr-white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.2s ease, transform 0.15s ease;
  flex-shrink: 0;
}
.product-card-v2__btn:hover {
  background-color: #333;
  transform: translateY(-1px);
  color: var(--clr-white);
}

/* Catalog progress bar */
.catalog-progress {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}
.catalog-progress__bar {
  width: 200px;
  height: 2px;
  background-color: var(--clr-line);
  border-radius: 2px;
  overflow: hidden;
}
.catalog-progress__fill {
  height: 100%;
  width: 0%;
  background-color: var(--clr-text);
  border-radius: 2px;
  transition: width 0.1s linear;
}

/* ============================================================
   PROCESS
   ============================================================ */
.process-section__header {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--clr-line);
}
.process-section__header h2 {
  margin-top: 8px;
}

.process-list {
  display: flex;
  flex-direction: column;
}

.process-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--clr-line);
  transition: background-color 0.3s ease;
  border-radius: 4px;
  cursor: default;
}

@media (min-width: 1024px) {
  .process-item {
    gap: 60px;
    padding: 60px 0;
  }
}

.process-item:hover {
  background-color: rgba(37, 99, 235, 0.03);
  padding-left: 16px;
  padding-right: 16px;
  margin: 0 -16px;
}

.process-item__num {
  font-size: 60px;
  font-weight: 700;
  color: #f0f0f0;
  line-height: 1;
  width: 70px;
  flex-shrink: 0;
  transition: color 0.3s ease;
  user-select: none;
}

@media (min-width: 768px) {
  .process-item__num {
    font-size: 80px;
    width: 100px;
  }
}

@media (min-width: 1024px) {
  .process-item__num {
    font-size: 120px;
    width: 140px;
  }
}

.process-item:hover .process-item__num {
  color: var(--clr-accent);
}

/* Process photo — hidden on mobile */
.process-item__photo {
  display: none;
}

@media (min-width: 1024px) {
  .process-item__photo {
    display: block;
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    border-radius: var(--radius-card);
    overflow: hidden;
    background-color: #f0f0f0;
  }
  .process-item__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.process-item__text {
  flex: 1;
}
.process-item__text h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--clr-text);
}
.process-item__text p {
  max-width: 400px;
  font-size: 15px;
  line-height: 1.6;
}

@media (min-width: 1024px) {
  .process-item__text h3 {
    font-size: 22px;
  }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section {
  background-color: var(--clr-dark);
  padding: 80px 0;
}

@media (min-width: 1024px) {
  .testimonials-section {
    padding: 160px 0;
  }
}

.testimonials-section__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--container-px);
  text-align: center;
}

.testimonials-quote {
  font-size: 80px;
  font-weight: 700;
  color: var(--clr-accent);
  opacity: 0.5;
  line-height: 0.8;
  margin-bottom: 40px;
  font-family: Georgia, serif;
  user-select: none;
}

@media (min-width: 1024px) {
  .testimonials-quote {
    font-size: 120px;
  }
}

.testimonials-track {
  position: relative;
  min-height: 200px;
}

.testimonial-slide {
  display: none;
  animation: fade-in 0.5s ease forwards;
}
.testimonial-slide.active {
  display: block;
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.testimonial-text {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 400;
  font-style: italic;
  color: var(--clr-white);
  line-height: 1.5;
  margin-bottom: 40px;
}

.testimonial-author {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--clr-white);
  margin-bottom: 4px;
}

.testimonial-role {
  font-size: 13px;
  color: var(--clr-muted);
}

.testimonials-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 48px;
}
.testimonials-nav__btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--clr-white);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease;
  font-family: var(--font);
}
.testimonials-nav__btn:hover {
  border-color: var(--clr-white);
}

/* ============================================================
   CTA / NEWSLETTER
   ============================================================ */
.cta-section__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .cta-section__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
  }
}

.cta-section__text h2 {
  font-size: clamp(28px, 3vw, 40px);
  max-width: 400px;
  margin-bottom: 12px;
}
.cta-section__text p {
  font-size: 15px;
}

.cta-section__form {
  display: flex;
  flex-direction: column;
  width: 100%;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .cta-section__form {
    flex-direction: row;
    width: auto;
  }
}

.cta-section__form input[type="email"] {
  width: 100%;
  padding: 16px 24px;
  border: 1px solid var(--clr-line);
  border-bottom: none;
  border-radius: var(--radius-pill) var(--radius-pill) 0 0;
  font-size: 15px;
  color: var(--clr-text);
  background-color: var(--clr-bg);
  outline: none;
  transition: border-color 0.2s ease;
}
.cta-section__form input[type="email"]:focus {
  border-right-color: var(--clr-accent);
  border-top-color: var(--clr-accent);
  border-left-color: var(--clr-accent);
}
.cta-section__form input[type="email"]::placeholder {
  color: var(--clr-muted);
}

@media (min-width: 768px) {
  .cta-section__form input[type="email"] {
    width: 280px;
    border-right: none;
    border-bottom: 1px solid var(--clr-line);
    border-radius: var(--radius-pill) 0 0 var(--radius-pill);
  }
  .cta-section__form input[type="email"]:focus {
    border-right-color: transparent;
    border-color: var(--clr-accent);
  }
}

.cta-section__form button {
  padding: 16px 32px;
  background-color: var(--clr-text);
  color: var(--clr-white);
  border-radius: 0 0 var(--radius-pill) var(--radius-pill);
  font-size: 14px;
  font-weight: 500;
  transition: background-color 0.2s ease;
  white-space: nowrap;
  text-align: center;
}

@media (min-width: 768px) {
  .cta-section__form button {
    border-radius: 0 var(--radius-pill) var(--radius-pill) 0;
  }
}

.cta-section__form button:hover {
  background-color: var(--clr-accent);
}

.cta-section__divider {
  margin-top: 80px;
  border-bottom: 1px solid var(--clr-line);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  padding: 80px 0 40px;
  background-color: var(--clr-bg);
  border-top: 1px solid var(--clr-line);
}

.site-footer__top {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding-bottom: 60px;
}
.site-footer__top > * {
  flex: 1 1 100%;
}

@media (min-width: 768px) {
  .site-footer__top {
    gap: 40px;
  }
  .site-footer__top > * {
    flex: 1 1 calc(50% - 20px);
  }
}

@media (min-width: 1024px) {
  .site-footer__top > :first-child {
    flex: 3 1 0;
  }
  .site-footer__top > :not(:first-child) {
    flex: 1 1 0;
  }
}

.site-footer__brand-name {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--clr-text);
  margin-bottom: 8px;
}
.site-footer__brand-line {
  display: block;
  width: 30px;
  height: 2px;
  background-color: var(--clr-accent);
  margin-bottom: 20px;
}
.site-footer__brand p {
  font-size: 14px;
  color: var(--clr-muted);
  max-width: 260px;
  line-height: 1.6;
}

.site-footer__col-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--clr-text);
  margin-bottom: 20px;
}

.site-footer__nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.site-footer__nav a {
  font-size: 14px;
  font-weight: 400;
  color: var(--clr-muted);
  transition: color 0.2s ease;
}
.site-footer__nav a:hover {
  color: var(--clr-text);
}

.site-footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  border-top: 1px solid var(--clr-line);
  padding-top: 40px;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .site-footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
  }
}

.site-footer__bottom p {
  font-size: 13px;
  color: var(--clr-muted);
  margin-bottom: 0;
}
.site-footer__bottom-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 13px;
  color: var(--clr-muted);
}
.site-footer__bottom-links a {
  color: var(--clr-muted);
  transition: color 0.2s ease;
}
.site-footer__bottom-links a:hover {
  color: var(--clr-text);
}
.site-footer__bottom-links span {
  color: var(--clr-muted);
}

/* ============================================================
   TOAST
   ============================================================ */
.toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background-color: var(--clr-text);
  color: var(--clr-white);
  padding: 16px 24px;
  border-radius: var(--radius-card);
  font-family: var(--font);
  font-size: 14px;
  z-index: 9999;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  transform: translateY(16px);
  opacity: 0;
  transition: all 0.3s ease;
}

/* ============================================================
   INNER PAGES — SHARED ELEMENTS
   ============================================================ */

/* Page Hero */
.page-hero {
  padding: 60px 0 60px;
  background-color: var(--clr-bg);
  border-bottom: 1px solid var(--clr-line);
}

@media (min-width: 768px) {
  .page-hero {
    padding: 80px 0 80px;
  }
}

@media (min-width: 1024px) {
  .page-hero {
    padding: 100px 0 100px;
  }
}

.page-hero--compact {
  padding: 40px 0 40px;
}

@media (min-width: 768px) {
  .page-hero--compact {
    padding: 60px 0 60px;
  }
}

.page-hero--dark {
  background-color: var(--clr-dark);
  border-bottom: none;
}

.page-hero--dark .page-hero__title,
.page-hero--dark .page-hero__title-sm {
  color: var(--clr-white);
}

.page-hero--dark .breadcrumb-v2 li,
.page-hero--dark .breadcrumb-v2 a {
  color: rgba(255,255,255,0.5);
}

.page-hero--dark .breadcrumb-v2 li:last-child {
  color: rgba(255,255,255,0.9);
}

.page-hero--dark .breadcrumb-v2 a:hover {
  color: var(--clr-white);
}
.page-hero__inner {
  max-width: 700px;
}
.page-hero__inner--center {
  max-width: 100%;
  text-align: center;
}
.page-hero__title {
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 0.95;
  color: var(--clr-text);
  margin: 16px 0 24px;
}
.page-hero__title-sm {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 700;
  letter-spacing: -1px;
  color: var(--clr-text);
  margin-top: 16px;
}
.page-hero__accent {
  color: var(--clr-accent);
}
.page-hero__sub {
  font-size: 18px;
  color: var(--clr-muted);
  max-width: 500px;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Breadcrumb */
.breadcrumb-v2 {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin-bottom: 20px;
  font-size: 13px;
  color: var(--clr-muted);
}
.breadcrumb-v2 li + li::before {
  content: "/";
  margin-right: 8px;
  color: var(--clr-line);
}
.breadcrumb-v2 a {
  color: var(--clr-muted);
}
.breadcrumb-v2 a:hover {
  color: var(--clr-text);
}
.breadcrumb-v2--light li,
.breadcrumb-v2--light a {
  color: rgba(255, 255, 255, 0.4);
}
.breadcrumb-v2--light a:hover {
  color: rgba(255, 255, 255, 0.8);
}

/* Breadcrumb bar */
.breadcrumb-bar {
  padding: 16px 0;
  border-bottom: 1px solid var(--clr-line);
  margin-top: 60px;
}
.breadcrumb-bar .breadcrumb-v2 {
  margin-bottom: 0;
}

/* Link accent */
.link-accent {
  color: var(--clr-accent);
}
.link-accent:hover {
  color: var(--clr-accent-h);
}

/* ============================================================
   ABOUT — page
   ============================================================ */
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  border: 1px solid var(--clr-line);
  border-radius: var(--radius-card);
  overflow: hidden;
}
.stat-item-v2 {
  display: flex;
  flex-direction: column;
  padding: 32px 24px;
  background-color: var(--clr-bg);
  flex: 1 1 50%;
  border-right: none;
  border-bottom: 1px solid var(--clr-line);
}
.stat-item-v2:nth-child(odd) {
  border-right: 1px solid var(--clr-line);
}

@media (min-width: 1024px) {
  .stat-item-v2 {
    flex: 1 1 25%;
    padding: 48px 40px;
    border-right: 1px solid var(--clr-line);
    border-bottom: none;
  }
  .stat-item-v2:last-child {
    border-right: none;
  }
  .stat-item-v2:nth-child(odd) {
    border-right: 1px solid var(--clr-line);
  }
}

.stat-item-v2__num {
  font-size: 40px;
  font-weight: 700;
  color: var(--clr-text);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-item-v2__label {
  font-size: 13px;
  color: var(--clr-muted);
}

.about-story-grid {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

@media (min-width: 1024px) {
  .about-story-grid {
    flex-direction: row;
    align-items: center;
    gap: 80px;
  }
  .about-story-grid > :first-child {
    flex: 5;
  }
  .about-story-grid > :last-child {
    flex: 6;
  }
}

.about-story-grid h2 {
  margin: 16px 0 24px;
}
.about-story-grid p {
  margin-bottom: 16px;
}

.about-story-photos {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 768px) {
  .about-story-photos {
    flex-direction: row;
  }
  .about-story-photos__main {
    flex: 2;
  }
  .about-story-photos__side {
    flex: 1;
    flex-direction: column;
  }
}

.about-story-photos__main img,
.about-story-photos__side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-card);
}
.about-story-photos__main {
  aspect-ratio: 3/4;
}
.about-story-photos__side {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.about-story-photos__side img {
  aspect-ratio: 1/1;
}

.values-grid-v2 {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--clr-line);
  border-radius: var(--radius-card);
  overflow: hidden;
}

@media (min-width: 1024px) {
  .values-grid-v2 {
    flex-direction: row;
  }
}

.value-card {
  padding: 48px 40px;
  background-color: var(--clr-bg);
  border-right: none;
  border-bottom: 1px solid var(--clr-line);
}

@media (min-width: 1024px) {
  .value-card {
    flex: 1;
    border-right: 1px solid var(--clr-line);
    border-bottom: none;
  }
  .value-card:last-child {
    border-right: none;
  }
}

.value-card__num {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--clr-accent);
  margin-bottom: 24px;
}
.value-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}
.value-card p {
  font-size: 15px;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
.team-card-v2 {
  flex: 1 1 calc(50% - 16px);
  min-width: 0;
}

@media (min-width: 1024px) {
  .team-card-v2 {
    flex: 1 1 calc(25% - 24px);
  }
}

.team-card-v2__photo {
  aspect-ratio: 1;
  border-radius: var(--radius-card);
  overflow: hidden;
  background-color: #f0f0f0;
  margin-bottom: 20px;
}
.team-card-v2__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-card-v2 h4 {
  font-size: 18px;
  margin-bottom: 4px;
}
.team-card-v2__role {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--clr-accent);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.team-card-v2 p {
  font-size: 14px;
}

.about-cta-section {
  background-color: var(--clr-dark);
  padding: 80px 0;
}

@media (min-width: 1024px) {
  .about-cta-section {
    padding: 120px 0;
  }
}

.about-cta-inner {
  max-width: 560px;
}
.about-cta-inner h2 {
  font-size: clamp(36px, 4vw, 52px);
  color: var(--clr-white);
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.about-cta-inner p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 40px;
}
.about-cta-btns {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.about-cta-section .btn-hero-text {
  color: rgba(255, 255, 255, 0.7);
  border-color: rgba(255, 255, 255, 0.3);
}
.about-cta-section .btn-hero-text:hover {
  color: var(--clr-white);
  border-color: var(--clr-white);
}

/* ============================================================
   CART / CHECKOUT
   ============================================================ */
.cart-layout {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: stretch;
}

@media (min-width: 1024px) {
  .cart-layout {
    flex-direction: row;
    gap: 60px;
    align-items: flex-start;
  }
  .cart-layout > :first-child {
    flex: 1;
    min-width: 0;
  }
  .cart-layout > :last-child {
    flex: 0 0 360px;
  }
}

.cart-table-v2 {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

/* Table header — hidden on mobile */
.cart-table-v2 thead {
  display: none;
}

@media (min-width: 768px) {
  .cart-table-v2 thead {
    display: table-header-group;
  }
  .cart-table-v2 thead th {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--clr-muted);
    padding-bottom: 16px;
    border-bottom: 1px solid var(--clr-line);
    text-align: left;
  }
}

/* Mobile: each row becomes a flex column */
.cart-table-v2 tbody tr {
  display: flex;
  flex-direction: column;
  padding: 20px 0;
  border-bottom: 1px solid var(--clr-line);
}
.cart-table-v2 td {
  border: none;
  padding: 4px 0;
}

@media (min-width: 768px) {
  .cart-table-v2 tbody tr {
    display: table-row;
    border-bottom: 1px solid var(--clr-line);
  }
  .cart-table-v2 tbody td {
    padding: 24px 0;
    vertical-align: middle;
  }
}

.cart-table-v2__price {
  font-size: 15px;
  font-weight: 600;
  color: var(--clr-text);
}

.cart-product-v2 {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cart-product-v2__img {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-card);
  overflow: hidden;
  background-color: #f0f0f0;
  flex-shrink: 0;
}
.cart-product-v2__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cart-product-v2__name {
  font-size: 15px;
  font-weight: 600;
  color: var(--clr-text);
  margin-bottom: 4px;
}
.cart-product-v2__variant {
  font-size: 13px;
  color: var(--clr-muted);
}

.cart-remove-v2 {
  font-size: 20px;
  color: var(--clr-muted);
  transition: color 0.2s ease;
  line-height: 1;
}
.cart-remove-v2:hover {
  color: var(--clr-text);
}

.qty-selector {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--clr-line);
  border-radius: var(--radius-pill);
  overflow: hidden;
}
.qty-selector button {
  width: 36px;
  height: 36px;
  font-size: 16px;
  color: var(--clr-text);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
}
.qty-selector button:hover {
  background-color: var(--clr-line);
}
.qty-selector input {
  width: 48px;
  text-align: center;
  border: none;
  border-left: 1px solid var(--clr-line);
  border-right: 1px solid var(--clr-line);
  outline: none;
  font-size: 14px;
  font-weight: 600;
  color: var(--clr-text);
  padding: 8px 0;
  background: transparent;
}
.qty-selector input::-webkit-inner-spin-button,
.qty-selector input::-webkit-outer-spin-button {
  -webkit-appearance: none;
}

.cart-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 24px;
  padding-top: 24px;
}

.cart-table-v2__col-remove { width: 40px; }
.cart-table-v2__col-price  { width: 100px; }
.cart-table-v2__col-qty    { width: 140px; }
.cart-table-v2__col-total  { width: 100px; text-align: right; }
.cart-table-v2__price--total { text-align: right; }

.cart-row__remove {
  vertical-align: middle;
  width: 40px;
}

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

.cart-product-v2__variant {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.cart-product-v2__variant span {
  background: var(--clr-bg-alt, #f5f0ea);
  border-radius: 4px;
  padding: 2px 8px;
  font-size: 12px;
  color: var(--clr-muted);
}

.cart-summary-v2 {
  background-color: var(--clr-bg);
  border: 1px solid var(--clr-line);
  border-radius: 12px;
  padding: 32px;
  position: sticky;
  top: 24px;
}
.cart-summary-v2__title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--clr-text);
  margin-bottom: 0;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--clr-line);
}
.cart-summary-v2__rows {
  padding: 4px 0;
}
.cart-summary-v2__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: var(--clr-muted);
  padding: 12px 0;
  border-bottom: 1px solid var(--clr-line);
}
.cart-summary-v2__row--total {
  font-size: 18px;
  font-weight: 700;
  color: var(--clr-text);
  border-bottom: none;
  padding: 20px 0 0;
}
.cart-summary-v2__row--total span:last-child {
  color: var(--clr-accent);
}
.cart-summary-v2__free {
  color: #2e7d32;
  font-weight: 600;
}
.cart-summary-v2__checkout-btn {
  width: 100%;
  justify-content: center;
  margin-top: 20px;
  display: flex;
}
.cart-summary-v2__secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--clr-muted);
  margin-top: 16px;
  margin-bottom: 0;
}

/* Hide WC shipping calculator in summary */
.cart-summary-v2 .shipping-calculator-button,
.cart-summary-v2 .shipping-calculator-form,
.cart-summary-v2 .woocommerce-shipping-destination {
  display: none !important;
}
.cart-summary-v2 .woocommerce-shipping-methods {
  list-style: none;
  margin: 0;
  padding: 0;
}
.cart-summary-v2 .woocommerce-shipping-methods li {
  font-size: 13px;
  color: var(--clr-text);
}
.cart-summary-v2 .woocommerce-shipping-methods label {
  font-weight: 600;
}

/* Forms */
.form-v2 {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--clr-line);
  border-radius: var(--radius-card);
  font-size: 15px;
  color: var(--clr-text);
  background-color: var(--clr-bg);
  outline: none;
  transition: border-color 0.2s ease;
  font-family: var(--font);
  appearance: none;
}
.form-v2:focus {
  border-color: var(--clr-accent);
}
.form-v2::placeholder {
  color: var(--clr-muted);
}
.form-v2--sm {
  padding: 10px 14px;
  font-size: 13px;
}
textarea.form-v2 {
  resize: vertical;
}

.form-group-v2 {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group-v2 label {
  font-size: 13px;
  font-weight: 500;
  color: var(--clr-text);
  letter-spacing: 0.3px;
}

.form-row-2 {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .form-row-2 {
    flex-direction: row;
  }
  .form-row-2 > * {
    flex: 1;
  }
}

/* Checkout */
.checkout-layout {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: stretch;
}

@media (min-width: 1024px) {
  .checkout-layout {
    flex-direction: row;
    gap: 60px;
    align-items: flex-start;
  }
  .checkout-layout > :first-child {
    flex: 1;
    min-width: 0;
  }
  .checkout-layout > :last-child {
    flex: 0 0 380px;
  }
}

.checkout-steps-bar {
  background-color: var(--clr-bg);
  border-bottom: 1px solid var(--clr-line);
  padding: 20px 0;
}
.checkout-steps-v2 {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

@media (min-width: 768px) {
  .checkout-steps-v2 {
    flex-wrap: nowrap;
    gap: 0;
  }
}

.checkout-step-v2 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--clr-muted);
}
.checkout-step-v2__num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--clr-line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
}
.checkout-step-v2--done .checkout-step-v2__num {
  background-color: var(--clr-text);
  color: var(--clr-white);
  border-color: var(--clr-text);
}
.checkout-step-v2--active {
  color: var(--clr-text);
}
.checkout-step-v2--active .checkout-step-v2__num {
  background-color: var(--clr-accent);
  color: var(--clr-white);
  border-color: var(--clr-accent);
}
.checkout-steps-v2__line {
  flex: 1;
  height: 1px;
  background-color: var(--clr-line);
  margin: 0 16px;
  max-width: 60px;
}

.checkout-form-v2 {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.checkout-block {
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--clr-line);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.checkout-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.checkout-block__title {
  font-size: 18px;
  font-weight: 600;
  color: var(--clr-text);
  margin-bottom: 4px;
}

.radio-group-v2 {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.radio-v2 {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}
.radio-v2 input[type="radio"] {
  display: none;
}
.radio-v2__box {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--clr-line);
  flex-shrink: 0;
  position: relative;
  transition: border-color 0.2s ease;
}
.radio-v2 input[type="radio"]:checked + .radio-v2__box {
  border-color: var(--clr-accent);
}
.radio-v2 input[type="radio"]:checked + .radio-v2__box::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background-color: var(--clr-accent);
}
.radio-v2__label {
  font-size: 14px;
  color: var(--clr-text);
}
.radio-v2__label em {
  font-style: normal;
  font-size: 12px;
  color: var(--clr-muted);
  margin-left: 8px;
}

.checkbox-v2 {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 13px;
  color: var(--clr-muted);
  line-height: 1.6;
}
.checkbox-v2 input[type="checkbox"] {
  display: none;
}
.checkbox-v2__box {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 2px solid var(--clr-line);
  flex-shrink: 0;
  margin-top: 2px;
  transition:
    background-color 0.2s,
    border-color 0.2s;
}
.checkbox-v2 input[type="checkbox"]:checked + .checkbox-v2__box {
  background-color: var(--clr-accent);
  border-color: var(--clr-accent);
}

.checkout-order-items {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--clr-line);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.checkout-order-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.checkout-order-item__img {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-card);
  overflow: hidden;
  background-color: #f0f0f0;
  flex-shrink: 0;
}
.checkout-order-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.checkout-order-item__info {
  flex: 1;
}
.checkout-order-item__name {
  font-size: 13px;
  font-weight: 600;
  color: var(--clr-text);
}
.checkout-order-item__variant {
  font-size: 11px;
  color: var(--clr-muted);
}
.checkout-order-item__price {
  font-size: 14px;
  font-weight: 600;
  color: var(--clr-text);
}

/* Outline button */
.btn-outline-v2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: 1px solid var(--clr-line);
  border-radius: var(--radius-card);
  font-size: 14px;
  font-weight: 500;
  color: var(--clr-text);
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease;
  font-family: var(--font);
}
.btn-outline-v2:hover {
  border-color: var(--clr-text);
  background-color: var(--clr-text);
  color: var(--clr-white);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-layout-v2 {
  display: flex;
  flex-direction: column;
  gap: 60px;
  align-items: stretch;
}

@media (min-width: 1024px) {
  .contact-layout-v2 {
    flex-direction: row;
    gap: 80px;
    align-items: flex-start;
  }
  .contact-layout-v2 > * {
    flex: 1;
  }
}

.map-block {
  height: 320px;
  background-color: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--clr-muted);
  border-top: 1px solid var(--clr-line);
  border-bottom: 1px solid var(--clr-line);
}

.contact-info-v2 {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.contact-info-v2__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-info-v2__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-card);
  background-color: var(--clr-bg);
  border: 1px solid var(--clr-line);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--clr-accent);
}
.contact-info-v2__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--clr-muted);
  margin-bottom: 6px;
}
.contact-info-v2__value {
  font-size: 15px;
  font-weight: 500;
  color: var(--clr-text);
  line-height: 1.6;
}
.contact-info-v2__value span {
  font-size: 13px;
  color: var(--clr-muted);
}
.contact-info-v2__value a {
  color: var(--clr-text);
}
.contact-info-v2__value a:hover {
  color: var(--clr-accent);
}
.contact-info-v2__hours {
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
  row-gap: 4px;
  font-size: 14px;
}
.contact-info-v2__hours > :nth-child(odd) {
  flex: 0 0 auto;
  white-space: nowrap;
}
.contact-info-v2__hours > :nth-child(even) {
  flex: 1;
}

/* ============================================================
   SHOP
   ============================================================ */
.shop-layout {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: stretch;
}

@media (min-width: 1024px) {
  .shop-layout {
    flex-direction: row;
    gap: 60px;
    align-items: flex-start;
  }
  .shop-filters {
    flex: 0 0 240px;
  }
  .shop-products {
    flex: 1;
    min-width: 0;
  }
}

.shop-filters-toggle {
  display: none;
}

.shop-filters {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
  position: static;
}

@media (max-width: 1023px) {
  .shop-filters-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 12px 16px;
    background: var(--clr-bg, #fafafa);
    color: var(--clr-text, #111111);
    border: 1px solid rgba(0,0,0,0.15);
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
  }
  .shop-filters-toggle__icon {
    transition: transform 0.25s;
    font-size: 18px;
  }
  .shop-filters-toggle[aria-expanded="true"] .shop-filters-toggle__icon {
    transform: rotate(180deg);
  }
  .shop-filters {
    display: none;
  }
  .shop-filters.is-open {
    display: flex;
  }
}

@media (min-width: 1024px) {
  .shop-filters {
    flex-direction: column;
    gap: 32px;
    position: sticky;
    top: 164px;
  }
}

.filter-block {
  min-width: 180px;
}

.filter-block__title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--clr-text);
  margin-bottom: 16px;
}
.filter-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.filter-check {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 14px;
  color: var(--clr-muted);
  cursor: pointer;
  padding: 7px 10px;
  border-radius: 6px;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.filter-check:hover {
  background-color: var(--clr-line);
  color: var(--clr-text);
}
.filter-check--active {
  background-color: var(--clr-line);
  color: var(--clr-text);
  font-weight: 600;
}
.filter-check__count {
  font-size: 12px;
  color: var(--clr-muted);
  font-weight: 400;
}
.filter-check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  border-radius: 3px;
  accent-color: var(--clr-accent);
  flex-shrink: 0;
}
.filter-price-range {
  display: flex;
  align-items: center;
  gap: 8px;
}
.filter-price-range span {
  color: var(--clr-muted);
}

.shop-products {
  min-width: 0;
}

.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--clr-line);
  gap: 12px;
  flex-wrap: wrap;
}
.shop-toolbar__count {
  font-size: 14px;
  color: var(--clr-muted);
}
.shop-toolbar__count strong {
  color: var(--clr-text);
  font-weight: 600;
}
.shop-sort-select {
  appearance: none;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 500;
  color: var(--clr-text);
  background-color: var(--clr-bg);
  border: 1px solid var(--clr-line);
  border-radius: var(--radius-pill);
  padding: 8px 36px 8px 16px;
  cursor: pointer;
  outline: none;
  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='%23888' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  transition: border-color 0.2s;
}
.shop-sort-select:hover {
  border-color: var(--clr-text);
}

.shop-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 20px;
  align-items: flex-start;
}

.shop-grid .product-card-v2 {
  flex: 0 0 calc(50% - 10px);
  width: calc(50% - 10px);
}

.shop-grid .product-card-v2 .product-card-v2__photo {
  aspect-ratio: 1 / 1;
  height: auto;
  margin: -10px -10px 0;
  width: calc(100% + 20px);
}

.shop-grid .product-card-v2 .product-card-v2__info {
  min-height: 120px;
}

@media (min-width: 768px) {
  .shop-grid .product-card-v2 {
    flex: 0 0 calc(33.333% - 14px);
    width: calc(33.333% - 14px);
  }
}

@media (min-width: 1024px) {
  .shop-grid {
    gap: 32px 24px;
  }
  .shop-grid .product-card-v2 {
    flex: 0 0 calc(33.333% - 16px);
    width: calc(33.333% - 16px);
  }
}

/* WooCommerce li всередині ul — скидаємо */
.shop-grid ul.products > li {
  margin: 0 !important;
  padding: 0 !important;
  float: none !important;
  width: auto !important;
  clear: none !important;
}



/* Empty state */
.shop-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 80px 20px;
  text-align: center;
}

.shop-empty__text {
  font-size: 16px;
  color: var(--clr-muted);
}

.pagination-v2 {
  margin-top: 60px;
  display: flex;
  justify-content: center;
}

.pagination-v2 ul.page-numbers {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pagination-v2 ul.page-numbers li {
  margin: 0;
  padding: 0;
}

.pagination-v2 ul.page-numbers .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--clr-muted);
  border: 1px solid transparent;
  transition: all 0.2s ease;
  text-decoration: none;
}

.pagination-v2 ul.page-numbers a.page-numbers:hover {
  border-color: var(--clr-line);
  color: var(--clr-text);
}

.pagination-v2 ul.page-numbers .page-numbers.current {
  background-color: var(--clr-text);
  color: var(--clr-white);
  border-color: var(--clr-text);
}

.pagination-v2 ul.page-numbers .page-numbers.next,
.pagination-v2 ul.page-numbers .page-numbers.prev {
  font-size: 18px;
}

/* ============================================================
   SINGLE PRODUCT
   ============================================================ */
.product-layout {
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: stretch;
}

@media (min-width: 1024px) {
  .product-layout {
    flex-direction: row;
    gap: 80px;
    align-items: flex-start;
  }
  .product-layout > * {
    flex: 1;
    min-width: 0;
  }
}

.product-gallery-v2__main {
  border-radius: 12px;
  overflow: hidden;
  background-color: #f0f0f0;
  aspect-ratio: 1;
  margin-bottom: 16px;
}
.product-gallery-v2__main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-gallery-v2__thumbs {
  display: flex;
  gap: 12px;
}
.product-gallery__thumb {
  flex: 1 1 0;
  min-width: 0;
  aspect-ratio: 1;
  border-radius: var(--radius-card);
  overflow: hidden;
  background-color: #f0f0f0;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s ease;
}
.product-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-gallery__thumb.active {
  border-color: var(--clr-accent);
}

.product-info-v2__category {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--clr-muted);
  margin-bottom: 16px;
}
.product-info-v2__title {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 24px;
}
.product-info-v2__price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--clr-line);
}
.product-info-v2__price {
  font-size: 32px;
  font-weight: 700;
  color: var(--clr-text);
}
.product-info-v2__unit {
  font-size: 14px;
  color: var(--clr-muted);
}
.product-info-v2__desc {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 32px;
}
.product-info-v2__options {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}
.product-info-v2__add-row {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
  margin-bottom: 0;
}
.product-info-v2__add-row .btn-hero-primary {
  width: 100%;
}

@media (min-width: 768px) {
  .product-info-v2__add-row {
    flex-direction: row;
    align-items: center;
  }
  .product-info-v2__add-row .btn-hero-primary {
    width: auto;
  }
}

.product-info-v2__meta {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--clr-line);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.product-meta-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}
.product-meta-row span:first-child {
  color: var(--clr-muted);
}
.product-meta-row span:last-child {
  font-weight: 500;
  color: var(--clr-text);
}

/* Tabs v2 */
.tabs-v2__nav {
  display: flex;
  border-bottom: 1px solid var(--clr-line);
  margin-bottom: 40px;
}
.tabs-v2__btn {
  padding: 0 0 16px;
  margin-right: 40px;
  font-size: 14px;
  font-weight: 500;
  color: var(--clr-muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition:
    color 0.2s ease,
    border-color 0.2s ease;
  font-family: var(--font);
}
.tabs-v2__btn:hover {
  color: var(--clr-text);
}
.tabs-v2__btn.active {
  color: var(--clr-text);
  border-bottom-color: var(--clr-text);
}
.tabs-v2__panel {
  display: none;
}
.tabs-v2__panel.active {
  display: block;
}
.tabs-v2__content {
  max-width: 700px;
}
.tabs-v2__content p {
  margin-bottom: 16px;
}

.specs-table {
  max-width: 600px;
  display: flex;
  flex-direction: column;
}
.specs-row {
  display: flex;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--clr-line);
  font-size: 14px;
}
.specs-row span:first-child {
  flex: 0 0 220px;
  color: var(--clr-muted);
}
.specs-row span:last-child {
  flex: 1;
  font-weight: 500;
  color: var(--clr-text);
}

.reviews-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 900px;
}

@media (min-width: 768px) {
  .reviews-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .reviews-grid > * {
    flex: 1 1 calc(50% - 12px);
  }
}

.review-card {
  border: 1px solid var(--clr-line);
  border-radius: 12px;
  padding: 28px;
}
.review-card__text {
  font-size: 15px;
  font-style: italic;
  color: var(--clr-text);
  margin-bottom: 20px;
  line-height: 1.6;
}
.review-card__author {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.review-card__name {
  font-size: 13px;
  font-weight: 600;
  color: var(--clr-text);
}
.review-card__stars {
  font-size: 13px;
  color: var(--clr-accent);
}

.related-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 20px;
}
.related-grid .product-card-v2 {
  flex: 0 0 calc(50% - 10px);
  width: calc(50% - 10px);
}

.related-grid .product-card-v2 .product-card-v2__photo {
  aspect-ratio: 1 / 1;
  height: auto;
  margin: -10px -10px 0;
  width: calc(100% + 20px);
}

.related-grid .product-card-v2 .product-card-v2__info {
  min-height: 120px;
}

@media (min-width: 768px) {
  .related-grid .product-card-v2 {
    flex: 0 0 calc(33.333% - 14px);
    width: calc(33.333% - 14px);
  }
}

@media (min-width: 1024px) {
  .related-grid {
    gap: 32px 24px;
  }
  .related-grid .product-card-v2 {
    flex: 0 0 calc(33.333% - 16px);
    width: calc(33.333% - 16px);
  }
}

/* ============================================================
   MY ACCOUNT
   ============================================================ */

/* Logged-in layout: sidebar + content */
.account-layout {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: stretch;
}

@media (min-width: 1024px) {
  .account-layout {
    flex-direction: row;
    gap: 60px;
    align-items: flex-start;
  }
  .account-nav {
    flex: 0 0 240px;
    position: sticky;
    top: 164px;
  }
  .account-content {
    flex: 1;
    min-width: 0;
  }
}

/* Sidebar nav */
.account-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 4px;
}

@media (min-width: 1024px) {
  .account-nav {
    flex-direction: column;
  }
}

.account-nav__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--clr-muted);
  border-radius: var(--radius-card);
  border: 1px solid transparent;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.account-nav__item:hover {
  color: var(--clr-text);
  background-color: var(--clr-line);
}

.account-nav__item--active {
  color: var(--clr-text);
  font-weight: 600;
  background-color: var(--clr-bg);
  border-color: var(--clr-line);
}

.account-nav__arrow {
  font-size: 12px;
  color: var(--clr-accent);
}

/* Account content area — WooCommerce generates markup here */
.account-content h2 {
  font-size: 24px;
  margin-bottom: 24px;
}

.account-content .woocommerce-Message {
  padding: 16px 20px;
  background-color: var(--clr-bg);
  border: 1px solid var(--clr-line);
  border-radius: var(--radius-card);
  font-size: 14px;
  color: var(--clr-muted);
  margin-bottom: 24px;
}

.account-content .woocommerce-orders-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.account-content .woocommerce-orders-table th {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--clr-muted);
  padding: 0 0 16px;
  border-bottom: 1px solid var(--clr-line);
  text-align: left;
}

.account-content .woocommerce-orders-table td {
  padding: 20px 0;
  border-bottom: 1px solid var(--clr-line);
  color: var(--clr-text);
  vertical-align: middle;
}

.account-content .woocommerce-orders-table .order-actions a,
.account-content .woocommerce-orders-table .woocommerce-button {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border: 1px solid var(--clr-line);
  border-radius: var(--radius-card);
  font-size: 12px;
  font-weight: 500;
  color: var(--clr-text);
  transition: border-color 0.2s, background-color 0.2s;
}

.account-content .woocommerce-orders-table .order-actions a:hover,
.account-content .woocommerce-orders-table .woocommerce-button:hover {
  border-color: var(--clr-text);
  background-color: var(--clr-text);
  color: var(--clr-white);
}

/* Edit account / address forms */
.account-content .woocommerce-address-fields__field-wrapper,
.account-content .woocommerce-EditAccountForm {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.account-content .form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.account-content .form-row label {
  font-size: 13px;
  font-weight: 500;
  color: var(--clr-text);
}

.account-content .form-row input,
.account-content .form-row select,
.account-content .form-row textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--clr-line);
  border-radius: var(--radius-card);
  font-size: 15px;
  font-family: var(--font);
  color: var(--clr-text);
  background-color: var(--clr-bg);
  outline: none;
  transition: border-color 0.2s ease;
  appearance: none;
}

.account-content .form-row input:focus,
.account-content .form-row select:focus,
.account-content .form-row textarea:focus {
  border-color: var(--clr-accent);
}

.account-content .button,
.account-content [type="submit"] {
  display: inline-flex;
  align-items: center;
  padding: 16px 36px;
  background-color: var(--clr-text);
  color: var(--clr-white);
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font);
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.account-content .button:hover,
.account-content [type="submit"]:hover {
  background-color: var(--clr-accent);
  transform: scale(1.02);
}

/* Edit account custom layout */
.account-section-title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.3px;
  margin-bottom: 20px;
}

.account-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 768px) {
  .account-form-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.form-hint {
  font-size: 12px;
  color: var(--clr-muted);
  display: inline;
}

.account-form-divider {
  border: none;
  border-top: 1px solid var(--clr-line);
  margin: 8px 0 24px;
}

.account-form-actions {
  margin-top: 8px;
}

/* Required star */
.account-content .required {
  color: var(--clr-accent);
  margin-left: 2px;
}

/* ── Login / Register forms ── */
.account-auth-layout {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .account-auth-layout {
    flex-direction: row;
    align-items: flex-start;
  }
  .account-auth-box {
    flex: 1;
  }
}

.account-auth-box {
  background-color: var(--clr-bg);
  border: 1px solid var(--clr-line);
  border-radius: 12px;
  padding: 40px;
}

.account-auth-box__title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 32px;
  letter-spacing: -0.5px;
}

.account-remember {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--clr-muted);
  cursor: pointer;
}

.account-remember input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--clr-accent);
  flex-shrink: 0;
}

/* ── Auth tabs ── */
.auth-tabs-wrap {
  max-width: 560px;
  margin: 0 auto;
}

.auth-tabs {
  display: flex;
  border-bottom: 2px solid var(--clr-line);
  margin-bottom: 40px;
}

.auth-tabs__btn {
  flex: 1;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--clr-muted);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}

.auth-tabs__btn--active {
  color: var(--clr-text);
  border-bottom-color: var(--clr-text);
}

.auth-tabs__btn:hover:not(.auth-tabs__btn--active) {
  color: var(--clr-text);
}

.auth-tabs__panel--hidden {
  display: none;
}

/* ── Order cards ── */
.account-orders {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.order-card {
  border: 1px solid var(--clr-line);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.order-card:hover {
  border-color: #bbb;
}

.order-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--clr-line);
  background-color: var(--clr-bg);
  gap: 12px;
  flex-wrap: wrap;
}

.order-card__meta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.order-card__number a {
  font-size: 15px;
  font-weight: 700;
  color: var(--clr-text);
}

.order-card__number a:hover {
  color: var(--clr-accent);
}

.order-card__date {
  font-size: 13px;
  color: var(--clr-muted);
}

.order-card__body {
  display: flex;
}

.order-card__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 20px;
  flex: 1;
  border-right: 1px solid var(--clr-line);
}

.order-card__info:last-child {
  border-right: none;
}

.order-card__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--clr-muted);
}

.order-card__value {
  font-size: 14px;
  font-weight: 600;
  color: var(--clr-text);
}

.order-card__actions {
  display: flex;
  gap: 8px;
  padding: 14px 20px;
  border-top: 1px solid var(--clr-line);
  flex-wrap: wrap;
}

.order-card__btn {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  border: 1px solid var(--clr-line);
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 500;
  color: var(--clr-text);
  transition: border-color 0.2s, background-color 0.2s, color 0.2s;
}

.order-card__btn:hover,
.order-card__btn.view {
  border-color: var(--clr-text);
  background-color: var(--clr-text);
  color: var(--clr-white);
}

/* ── Orders: empty state ── */
.account-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 60px 20px;
  text-align: center;
}

.account-empty-state__icon {
  font-size: 48px;
  line-height: 1;
}

.account-empty-state__text {
  font-size: 16px;
  color: var(--clr-muted);
}

/* ── Orders: status badges ── */
.order-status {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.order-status--pending,
.order-status--on-hold {
  background-color: #fef9c3;
  color: #854d0e;
}

.order-status--processing {
  background-color: #dbeafe;
  color: #1e40af;
}

.order-status--completed {
  background-color: #dcfce7;
  color: #166534;
}

.order-status--cancelled,
.order-status--refunded,
.order-status--failed {
  background-color: #fee2e2;
  color: #991b1b;
}

/* ── Orders: pagination ── */
.account-orders-pagination {
  display: flex;
  gap: 24px;
  margin-top: 32px;
}

/* ── Addresses ── */
.account-addresses-intro {
  font-size: 15px;
  color: var(--clr-muted);
  margin-bottom: 32px;
}

.account-addresses-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .account-addresses-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.account-address-card {
  border: 1px solid var(--clr-line);
  border-radius: var(--radius-card);
  padding: 24px;
}

.account-address-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.account-address-card__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--clr-text);
}

.account-address-card__edit {
  font-size: 13px;
}

.account-address-card__body {
  font-style: normal;
  font-size: 14px;
  line-height: 1.8;
  color: var(--clr-muted);
}

.account-address-card__empty {
  font-size: 14px;
  color: var(--clr-muted);
}

/* ============================================================
   THANK YOU PAGE
   ============================================================ */

.thankyou-layout {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 760px;
}

/* Success banner */
.thankyou-success {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 32px;
  background-color: #dcfce7;
  border-radius: var(--radius-card);
}

.thankyou-success__check {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background-color: #166534;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
}

.thankyou-success__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: 6px;
}

.thankyou-success__sub {
  font-size: 14px;
  color: #166534;
}

/* Meta grid */
.thankyou-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  border: 1px solid var(--clr-line);
  border-radius: var(--radius-card);
  overflow: hidden;
}

@media (min-width: 768px) {
  .thankyou-meta {
    grid-template-columns: repeat(4, 1fr);
  }
}

.thankyou-meta__item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px;
  background-color: var(--clr-bg);
  border-right: 1px solid var(--clr-line);
  border-bottom: 1px solid var(--clr-line);
}

.thankyou-meta__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--clr-muted);
}

.thankyou-meta__value {
  font-size: 15px;
  font-weight: 600;
  color: var(--clr-text);
}

/* Order items table */
.thankyou-details__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: 20px;
}

.thankyou-items-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.thankyou-items-table thead th {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--clr-muted);
  padding: 0 0 14px;
  border-bottom: 1px solid var(--clr-line);
  text-align: left;
}

.thankyou-items-table thead th:last-child,
.thankyou-items-table tbody td:last-child,
.thankyou-items-table tfoot td:last-child {
  text-align: right;
}

.thankyou-items-table tbody td {
  padding: 16px 0;
  border-bottom: 1px solid var(--clr-line);
  color: var(--clr-text);
  vertical-align: middle;
}

.thankyou-items-table tbody td a {
  color: var(--clr-text);
}

.thankyou-items-table tbody td a:hover {
  color: var(--clr-accent);
}

.thankyou-items-table tfoot th,
.thankyou-items-table tfoot td {
  padding: 14px 0;
  border-bottom: 1px solid var(--clr-line);
  font-size: 13px;
  color: var(--clr-text);
}

.thankyou-items-table tfoot tr:last-child th,
.thankyou-items-table tfoot tr:last-child td {
  font-size: 15px;
  font-weight: 700;
  border-bottom: none;
}

/* Actions */
.thankyou-addresses {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 640px) {
  .thankyou-addresses {
    grid-template-columns: 1fr;
  }
}
.thankyou-address {
  background: var(--clr-bg-alt, #f5f0ea);
  border-radius: 12px;
  padding: 20px 24px;
}
.thankyou-address__title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--clr-muted);
  margin-bottom: 10px;
}
.thankyou-address address {
  font-style: normal;
  font-size: 14px;
  line-height: 1.6;
}
.thankyou-address p {
  font-size: 14px;
  color: var(--clr-muted);
  margin-top: 6px;
}

.thankyou-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

/* Error state */
.thankyou-error {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 60px 20px;
  text-align: center;
  max-width: 560px;
}

.thankyou-error__icon {
  font-size: 48px;
}

.thankyou-error__text {
  font-size: 16px;
  color: var(--clr-muted);
}

.thankyou-error__actions {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

/* ============================================================
   WOOCOMMERCE — SINGLE PRODUCT FORM OVERRIDES
   Стилізація стандартних елементів WooCommerce під дизайн теми
   ============================================================ */

/* Форма додавання в кошик */
.product-info-v2__options .cart {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product-info-v2__options form.cart {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Лічильник кількості — стилі перенесено нижче (WVS swatches section) */
.product-info-v2__options .quantity input.qty::-webkit-inner-spin-button,
.product-info-v2__options .quantity input.qty::-webkit-outer-spin-button {
  -webkit-appearance: none;
}

/* Кнопка додавання в кошик */
.product-info-v2__options .single_add_to_cart_button {
  display: inline-flex !important;
  align-items: center !important;
  padding: 16px 36px !important;
  background-color: var(--clr-text) !important;
  color: var(--clr-white) !important;
  border-radius: var(--radius-pill) !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  font-family: var(--font) !important;
  border: none !important;
  cursor: pointer !important;
  transition: background-color 0.3s ease, transform 0.2s ease !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  box-shadow: none !important;
}

.product-info-v2__options .single_add_to_cart_button:hover {
  background-color: var(--clr-accent) !important;
  color: var(--clr-white) !important;
  transform: scale(1.02) !important;
}

.product-info-v2__options .single_add_to_cart_button.disabled,
.product-info-v2__options .single_add_to_cart_button:disabled {
  opacity: 0.5 !important;
  cursor: not-allowed !important;
  transform: none !important;
  background-color: var(--clr-text) !important;
}

/* Варіації товару — стилі перенесено нижче (WVS swatches section) */
.product-info-v2__options .variations select {
  display: none; /* hidden by WVS plugin when swatches are active */
}

/* ============================================================
   WOOCOMMERCE — CHECKOUT
   ============================================================ */

/* Two-column layout: fields | summary */
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}

@media (min-width: 1024px) {
  .checkout-layout {
    grid-template-columns: 1fr 420px;
    gap: 60px;
  }
}

/* Section card */
.checkout-section {
  background: var(--clr-white);
  border: 1px solid var(--clr-line);
  border-radius: 12px;
  padding: 32px;
  margin-bottom: 24px;
}

.checkout-section:last-child {
  margin-bottom: 0;
}

.checkout-section__title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.3px;
  margin-bottom: 24px;
}

/* Sticky summary box */
.checkout-summary {
  position: sticky;
  top: 120px;
}

.checkout-summary__box {
  background: var(--clr-white);
  border: 1px solid var(--clr-line);
  border-radius: 12px;
  padding: 32px;
}

/* WooCommerce billing/shipping fields inside checkout */
.checkout-layout .woocommerce-billing-fields,
.checkout-layout .woocommerce-shipping-fields,
.checkout-layout .woocommerce-additional-fields {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.checkout-layout .form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0;
  padding: 0;
}

.checkout-layout .form-row label {
  font-size: 13px;
  font-weight: 500;
  color: var(--clr-text);
}

.checkout-layout .form-row .required {
  color: var(--clr-accent);
}

.checkout-layout .form-row input[type="text"],
.checkout-layout .form-row input[type="email"],
.checkout-layout .form-row input[type="tel"],
.checkout-layout .form-row input[type="number"],
.checkout-layout .form-row input[type="password"],
.checkout-layout .form-row select,
.checkout-layout .form-row textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--clr-line);
  border-radius: var(--radius-card);
  font-size: 15px;
  font-family: var(--font);
  color: var(--clr-text);
  background-color: var(--clr-bg);
  outline: none;
  transition: border-color 0.2s ease;
  appearance: none;
  box-sizing: border-box;
}

.checkout-layout .form-row input:focus,
.checkout-layout .form-row select:focus,
.checkout-layout .form-row textarea:focus {
  border-color: var(--clr-accent);
}

.checkout-layout .form-row textarea {
  resize: vertical;
  min-height: 100px;
}

/* WooCommerce two-column billing row (first/last name) */
.checkout-layout .woocommerce-billing-fields__field-wrapper,
.checkout-layout .woocommerce-shipping-fields__field-wrapper {
  overflow: hidden;
}

.checkout-layout .form-row-first,
.checkout-layout .form-row-last {
  float: left;
  width: calc(50% - 8px);
}

.checkout-layout .form-row-last {
  float: right;
}

.checkout-layout .form-row-wide {
  clear: both;
  float: none;
  width: 100%;
}

/* Select dropdown arrow */
.checkout-layout select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

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

.checkout-layout .woocommerce-checkout-review-order-table th,
.checkout-layout .woocommerce-checkout-review-order-table td {
  padding: 12px 0;
  font-size: 14px;
  border-bottom: 1px solid var(--clr-line);
  vertical-align: top;
}

.checkout-layout .woocommerce-checkout-review-order-table thead th {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--clr-muted);
}

.checkout-layout .woocommerce-checkout-review-order-table .product-name {
  color: var(--clr-text);
}

.checkout-layout .woocommerce-checkout-review-order-table .product-total {
  text-align: right;
  font-weight: 600;
}

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

/* Payment methods */
.checkout-layout #payment {
  margin-top: 24px;
}

.checkout-layout #payment .wc_payment_methods {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checkout-layout #payment .wc_payment_method label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

.checkout-layout #payment .wc_payment_method img {
  max-height: 24px;
  width: auto;
}

.checkout-layout #payment .payment_box {
  background: var(--clr-bg);
  border: 1px solid var(--clr-line);
  border-radius: var(--radius-card);
  padding: 16px;
  margin-top: 8px;
  font-size: 13px;
  color: var(--clr-muted);
}

/* Place order button */
.checkout-layout #place_order,
.checkout-layout .woocommerce-checkout #payment #place_order {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 18px 36px;
  background-color: var(--clr-text);
  color: var(--clr-white);
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font);
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin-top: 16px;
  letter-spacing: 0.01em;
}

.checkout-layout #place_order:hover {
  background-color: var(--clr-accent);
  transform: scale(1.02);
}

/* Secure badge */
.checkout-layout .checkout-secure {
  text-align: center;
  font-size: 12px;
  color: var(--clr-muted);
  margin-top: 12px;
}

/* Inline per-field error messages — hidden, top notice block is shown instead */
.checkout-inline-error-message { display: none; }

/* Validation errors */
.checkout-layout .woocommerce-error,
.checkout-layout .woocommerce-message,
.checkout-layout .woocommerce-info {
  padding: 14px 18px;
  border-radius: var(--radius-card);
  font-size: 14px;
  margin-bottom: 16px;
  list-style: none;
}

.checkout-layout .woocommerce-error {
  background: #fef2f2;
  border: 1px solid #fca5a5;
  color: #b91c1c;
}

.checkout-layout .woocommerce-message {
  background: #f0fdf4;
  border: 1px solid #86efac;
  color: #166534;
}

/* Повідомлення про наявність при варіаціях */
.product-info-v2__options .woocommerce-variation-availability p {
  font-size: 13px;
  color: var(--clr-muted);
  margin: 0;
}

.product-info-v2__options .woocommerce-variation-price .price {
  font-size: 28px;
  font-weight: 700;
  color: var(--clr-text);
}

/* ============================================================
   PRODUCT PAGE — VARIATION SWATCHES (WVS plugin)
   ============================================================ */

/* Hide the raw table borders, tighten rows */
.product-info-v2__options .variations {
  border: none;
  width: 100%;
}
.product-info-v2__options .variations tbody tr {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.product-info-v2__options .variations th.label {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  border: none;
  background: none;
  white-space: nowrap;
}
.product-info-v2__options .variations th.label label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--clr-muted);
  padding-right: 0;
}
.product-info-v2__options .variations .woo-selected-variation-item-name {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--clr-text);
}
.product-info-v2__options .variations td.value {
  padding: 0;
  border: none;
  background: none;
}

/* Swatch list wrapper */
.product-info-v2__options .variable-items-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Individual button swatch */
.product-info-v2__options .variable-item.button-variable-item {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 18px !important;
  height: 40px !important;
  border: 1.5px solid var(--clr-line) !important;
  border-radius: var(--radius-pill) !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  font-family: var(--font) !important;
  color: var(--clr-text) !important;
  background: var(--clr-white) !important;
  cursor: pointer !important;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease !important;
  line-height: 1 !important;
  width: auto !important;
  min-width: 0 !important;
  box-shadow: none !important;
}
.product-info-v2__options .variable-item.button-variable-item:hover {
  border-color: var(--clr-text) !important;
  background: var(--clr-white) !important;
  color: var(--clr-text) !important;
}
.product-info-v2__options .variable-item.button-variable-item.selected {
  border-color: var(--clr-text) !important;
  background: var(--clr-text) !important;
  color: var(--clr-white) !important;
}
.product-info-v2__options .variable-item.button-variable-item.disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}
/* Remove default WVS tooltip arrow/box interference */
.product-info-v2__options .variable-item .variable-item-contents {
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-info-v2__options .variable-item .variable-item-span {
  font-size: 13px;
  font-weight: 500;
  font-family: var(--font);
  line-height: 1;
}

/* "Clear" link */
.product-info-v2__options .reset_variations {
  display: inline-block;
  margin-top: 6px;
  font-size: 11px;
  color: var(--clr-muted);
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.2s ease;
}
.product-info-v2__options .reset_variations:hover {
  color: var(--clr-text);
}

/* Single variation wrap — price + add-to-cart side by side */
.product-info-v2__options .single_variation_wrap {
  margin-top: 4px;
}
.product-info-v2__options .woocommerce-variation.single_variation {
  margin-bottom: 12px;
}
.product-info-v2__options .woocommerce-variation-price {
  display: block;
}
.product-info-v2__options .woocommerce-variation-price .price {
  font-size: 32px;
  font-weight: 700;
  color: var(--clr-text);
  letter-spacing: -0.5px;
}
.product-info-v2__options .woocommerce-variation-add-to-cart {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* Quantity stepper — cleaner pill style */
.product-info-v2__options .quantity {
  display: inline-flex !important;
  align-items: center !important;
  border: 1.5px solid var(--clr-line) !important;
  border-radius: var(--radius-pill) !important;
  overflow: hidden !important;
  background: var(--clr-white) !important;
}
.product-info-v2__options .quantity input.qty {
  width: 44px !important;
  text-align: center !important;
  border: none !important;
  border-left: 1.5px solid var(--clr-line) !important;
  border-right: 1.5px solid var(--clr-line) !important;
  outline: none !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: var(--clr-text) !important;
  padding: 10px 0 !important;
  background: transparent !important;
  font-family: var(--font) !important;
  -moz-appearance: textfield !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

/* Add to cart button — full-width on mobile, auto on desktop */
.product-info-v2__options .single_add_to_cart_button {
  flex: 1;
  min-width: 160px;
  justify-content: center;
}
@media (min-width: 640px) {
  .product-info-v2__options .single_add_to_cart_button {
    flex: none;
  }
}

/* Product info: tighter category + title spacing */
.product-info-v2__category {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--clr-muted);
  margin-bottom: 12px;
}
.product-info-v2__title {
  margin-bottom: 16px;
}
.product-info-v2__price-row {
  margin-bottom: 20px;
  padding-bottom: 20px;
}

/* ============================================================
   SINGLE POST (single.php)
   ============================================================ */

.page-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px var(--container-px);
}

.single-post {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.single-post h1 {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.post-meta {
  font-size: 13px;
  color: var(--clr-muted);
  letter-spacing: 0.5px;
}

.post-thumbnail img {
  width: 100%;
  border-radius: var(--radius-card);
  aspect-ratio: 16/9;
  object-fit: cover;
}

.page-article--woo {
  padding: 0 !important;
  margin: 0 !important;
}
.page-article--woo > h1 { display: none; }
.page-article--woo .entry-content {
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}


/* ============================================================
   CART — EMPTY STATE
   ============================================================ */

.cart-empty-state {
  text-align: center;
  padding: 80px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.cart-empty-state__icon {
  color: var(--clr-line);
  width: 72px;
  height: 72px;
  margin-bottom: 8px;
}

.cart-empty-state__title {
  font-size: 24px;
  font-weight: 700;
  color: var(--clr-text);
  margin: 0;
}

.cart-empty-state__text {
  font-size: 15px;
  color: var(--clr-muted);
  margin: 0;
}

.cart-empty-state__btn {
  margin-top: 8px;
}


/* ============================================
   DELIVERY PAGE
   ============================================ */

.delivery-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

@media (max-width: 900px) {
  .delivery-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.delivery-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.delivery-block__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--clr-bg-alt, #f5f0ea);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-accent);
  margin-bottom: 8px;
}

.delivery-block h2 {
  margin-bottom: 8px;
}

.delivery-block__content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.delivery-block__content > p {
  color: var(--clr-muted);
  margin-bottom: 24px;
}

.delivery-info-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--clr-border, #e8e0d6);
}

.delivery-info-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--clr-border, #e8e0d6);
}

.delivery-info-item--highlighted {
  background: var(--clr-bg-alt, #f5f0ea);
  padding: 20px 16px;
  border-radius: 8px;
  border-bottom: none;
  margin-bottom: 1px;
}

.delivery-info-item__title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--clr-text);
  margin-bottom: 8px;
}

.delivery-info-item__text {
  font-size: 15px;
  color: var(--clr-muted);
  line-height: 1.6;
}

.delivery-info-item__text a {
  color: var(--clr-accent);
  text-decoration: underline;
}


/* ============================================
   CHECKOUT — CLEANUP & IMPROVEMENTS
   ============================================ */

/* Прибрати дублікат заголовка "Платіжні дані" від WC */
.checkout-layout .woocommerce-billing-fields > h3,
.checkout-layout .woocommerce-shipping-fields > h3:not(#ship-to-different-address),
.checkout-layout .woocommerce-additional-fields > h3 {
  display: none;
}

/* Прибрати MailPoet підписку */
.checkout-layout label[data-automation-id="woo-commerce-subscription-opt-in"],
#mailpoet_woocommerce_checkout_optin_present_field {
  display: none !important;
}

/* "Доставити на іншу адресу" — компактніше */
#ship-to-different-address {
  margin: 0 0 16px;
  font-size: 14px;
  font-weight: normal;
}
#ship-to-different-address label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  color: var(--clr-muted);
}
#ship-to-different-address input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--clr-accent);
  cursor: pointer;
  flex-shrink: 0;
}

/* Order review — "Free shipping" → прихований label, показати тільки ціну */
.checkout-layout .woocommerce-shipping-totals td {
  color: var(--clr-muted);
  font-size: 13px;
}
.checkout-layout .woocommerce-shipping-methods {
  list-style: none;
  margin: 0;
  padding: 0;
}
.checkout-layout .woocommerce-shipping-methods li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.checkout-layout .woocommerce-shipping-methods input[type="hidden"] + label {
  font-size: 13px;
  color: #2e7d32;
  font-weight: 600;
}

/* "Відправлення 1" → прихований заголовок рядка */
.checkout-layout .woocommerce-shipping-totals th {
  display: none;
}
.checkout-layout .woocommerce-shipping-totals td {
  padding-left: 0;
  text-align: right;
}
/* Додати нормальний лейбл через псевдо */
.checkout-layout .woocommerce-shipping-totals {
  position: relative;
}


/* Приховати "Країна / Регіон — Україна" (strong) — красиво показати */
.checkout-layout .woocommerce-input-wrapper > strong {
  font-size: 15px;
  color: var(--clr-text);
  display: block;
  padding: 12px 16px;
  border: 1px solid var(--clr-line);
  border-radius: var(--radius-card);
  background: var(--clr-bg);
  color: var(--clr-muted);
}

/* Select2 стилізація */
.checkout-layout .select2-container--default .select2-selection--single {
  height: auto;
  padding: 12px 16px;
  border: 1px solid var(--clr-line);
  border-radius: var(--radius-card);
  font-family: var(--font);
  font-size: 15px;
  color: var(--clr-text);
  background-color: var(--clr-bg);
  outline: none;
  appearance: none;
}
.checkout-layout .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 1.4;
  padding: 0;
  color: var(--clr-text);
}
.checkout-layout .select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
}
.checkout-layout .select2-container--default.select2-container--focus .select2-selection--single,
.checkout-layout .select2-container--default.select2-container--open .select2-selection--single {
  border-color: var(--clr-accent);
}

/* Privacy policy текст — compact */
.checkout-layout .woocommerce-privacy-policy-text {
  font-size: 12px;
  color: var(--clr-muted);
  margin-bottom: 16px;
  line-height: 1.5;
}
.checkout-layout .woocommerce-privacy-policy-text a {
  color: var(--clr-accent);
  text-decoration: underline;
}

/* Прибрати noscript блок */
.checkout-layout noscript {
  display: none;
}


/* ============================================
   CHECKOUT SUMMARY — ORDER REVIEW IMPROVEMENTS
   ============================================ */
/*
/* Таблиця замовлення */
.checkout-layout .woocommerce-checkout-review-order-table thead th {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--clr-muted);
  padding: 0 0 12px;
  border-bottom: 1px solid var(--clr-line);
}
.checkout-layout .woocommerce-checkout-review-order-table th.product-total {
  text-align: right;
}

/* Рядки товарів */
.checkout-layout .woocommerce-checkout-review-order-table .cart_item td {
  padding: 16px 0;
  border-bottom: 1px solid var(--clr-line);
  vertical-align: top;
}
.checkout-layout .woocommerce-checkout-review-order-table .cart_item td.product-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--clr-text);
  line-height: 1.4;
}
.checkout-layout .woocommerce-checkout-review-order-table .cart_item td.product-total {
  text-align: right;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

/* Кількість товару */
.checkout-layout .product-quantity {
  font-weight: 400;
  color: var(--clr-muted);
  font-size: 13px;
}

/* Варіанти (dl.variation) — в один рядок через flex */
.checkout-layout .variation {
  display: flex;
  flex-wrap: wrap;
  gap: 0 6px;
  margin: 4px 0 0;
  font-size: 12px;
  color: var(--clr-muted);
  font-weight: 400;
}
.checkout-layout .variation dt {
  font-weight: 500;
}
.checkout-layout .variation dt::after {
  content: '';
  margin-right: 2px;
}
.checkout-layout .variation dd {
  margin: 0;
}
.checkout-layout .variation dd p {
  display: inline;
  margin: 0;
}
.checkout-layout .variation dd::after {
  content: '·';
  margin: 0 4px;
  color: var(--clr-line);
}
.checkout-layout .variation dd:last-child::after {
  display: none;
}

/* Підсумок, доставка, разом */
.checkout-layout .woocommerce-checkout-review-order-table tfoot tr th,
.checkout-layout .woocommerce-checkout-review-order-table tfoot tr td {
  padding: 12px 0;
  font-size: 14px;
  color: var(--clr-muted);
  border-bottom: 1px solid var(--clr-line);
}
.checkout-layout .woocommerce-checkout-review-order-table .cart-subtotal th,
.checkout-layout .woocommerce-checkout-review-order-table .cart-subtotal td {
  font-weight: 400;
}
.checkout-layout .woocommerce-checkout-review-order-table .order-total th,
.checkout-layout .woocommerce-checkout-review-order-table .order-total td {
  font-size: 17px;
  font-weight: 700;
  color: var(--clr-text);
  border-bottom: none;
  padding-top: 16px;
}
.checkout-layout .woocommerce-checkout-review-order-table tfoot td {
  text-align: right;
}

/* Рядок доставки — показати "Безкоштовно" */
.checkout-layout .woocommerce-shipping-totals th {
  font-weight: 400;
  color: var(--clr-muted);
}
.checkout-layout .woocommerce-shipping-totals td {
  text-align: right;
}
.checkout-layout .woocommerce-shipping-methods {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline;
}
.checkout-layout .woocommerce-shipping-methods li {
  display: inline;
}
.checkout-layout .woocommerce-shipping-methods label {
  font-size: 13px;
  font-weight: 600;
  color: #2e7d32;
}

/* Прибрати рядок доставки якщо порожній th */
.checkout-layout .woocommerce-shipping-totals:has(th:empty) th {
  display: none;
}
*/

/* Методи оплати */
.woocommerce-checkout #payment {
  background: none !important;
  border-radius: 0 !important;
}
.checkout-layout #payment {
  margin-top: 20px;
  border: 1px solid var(--clr-line);
  border-radius: 12px;
  overflow: hidden;
}
.checkout-layout #payment .wc_payment_methods {
  list-style: none;
  margin: 0;
  padding: 0;
}
.checkout-layout #payment .wc_payment_method {
  border-bottom: 1px solid var(--clr-line);
}
.checkout-layout #payment .wc_payment_method:last-child {
  border-bottom: none;
}
.checkout-layout #payment .wc_payment_method label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--clr-text);
  cursor: pointer;
  transition: background 0.15s;
  margin: 0;
}
.checkout-layout #payment .wc_payment_method label:hover {
  background: var(--clr-bg);
}
.checkout-layout #payment .wc_payment_method input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: var(--clr-accent);
  cursor: pointer;
  flex-shrink: 0;
  margin: 0;
}
.checkout-layout #payment .payment_box {
  background: var(--clr-bg);
  border-top: 1px solid var(--clr-line);
  margin: 0;
  padding: 12px 20px;
  font-size: 13px;
  color: var(--clr-muted);
  line-height: 1.5;
}
.checkout-layout #payment .payment_box p {
  margin: 0;
}

/* Place order area */
.checkout-layout .form-row.place-order {
  padding: 20px;
  border-top: 1px solid var(--clr-line);
  background: var(--clr-white);
}

/* Privacy policy */
.checkout-layout .woocommerce-terms-and-conditions-wrapper {
  margin-bottom: 16px;
}
.checkout-layout .woocommerce-privacy-policy-text {
  font-size: 12px;
  color: var(--clr-muted);
  line-height: 1.5;
  margin: 0;
}
.checkout-layout .woocommerce-privacy-policy-text p {
  margin: 0;
}
.checkout-layout .woocommerce-privacy-policy-text a {
  color: var(--clr-accent);
  text-decoration: underline;
}

/* Place order button */
.checkout-layout #place_order {
  width: 100%;
  padding: 16px 24px;
  background-color: var(--clr-text);
  color: var(--clr-white, #fff);
  border: none;
  border-radius: var(--radius-pill);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background-color 0.2s ease;
  display: block;
  text-align: center;
}
.checkout-layout #place_order:hover {
  background-color: var(--clr-accent);
}



/* Radio + label — в один рядок */
.checkout-layout #payment .wc_payment_method {
  display: flex;
  flex-direction: column;
}
.checkout-layout #payment .wc_payment_method > input[type="radio"] {
  display: none;
}
.checkout-layout #payment .wc_payment_method label {
  display: flex !important;
  align-items: center;
  gap: 12px;
  padding: 16px 20px !important;
  cursor: pointer;
}
.checkout-layout #payment .wc_payment_method label::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--clr-line);
  flex-shrink: 0;
  transition: border-color 0.2s, background 0.2s;
  background: var(--clr-white, #fff);
}
.checkout-layout #payment .wc_payment_method input[type="radio"]:checked + label::before {
  border-color: var(--clr-accent);
  background: var(--clr-accent);
  box-shadow: inset 0 0 0 3px var(--clr-white, #fff);
}

/* Free shipping рядок — показати "Доставка" зліва */
.checkout-layout .woocommerce-shipping-totals th {
  display: table-cell !important;
  font-weight: 400;
  color: var(--clr-muted);
  font-size: 14px;
}
.checkout-layout .woocommerce-shipping-totals th:empty::after {
  content: 'Доставка';
}


/* ============================================
   CHECKOUT SUMMARY — OVERRIDE WC DEFAULT STYLES
   ============================================ */
/*
/* Перебити WC border-collapse та padding */
.woocommerce .checkout-layout table.shop_table.woocommerce-checkout-review-order-table {
  border-collapse: collapse !important;
  border-radius: 0 !important;
  border: none !important;
  margin: 0 0 24px !important;
  width: 100% !important;
}

.woocommerce .checkout-layout table.shop_table th,
.woocommerce .checkout-layout table.shop_table td {
  padding: 12px 0 !important;
  border-bottom: 1px solid var(--clr-line) !important;
  font-size: 14px !important;
  vertical-align: top !important;
  background: none !important;
}

/* Thead */
.woocommerce .checkout-layout table.shop_table thead th {
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
  color: var(--clr-muted) !important;
  padding-bottom: 10px !important;
  border-bottom: 1px solid var(--clr-line) !important;
}
.woocommerce .checkout-layout table.shop_table thead th.product-total {
  text-align: right !important;
}

/* Товар */
.woocommerce .checkout-layout table.shop_table .cart_item td.product-name {
  font-size: 14px !important;
  font-weight: 600 !important;
  color: var(--clr-text) !important;
  line-height: 1.4 !important;
}
.woocommerce .checkout-layout table.shop_table .cart_item td.product-total {
  text-align: right !important;
  font-weight: 700 !important;
  white-space: nowrap !important;
}

/* Кількість */
.woocommerce .checkout-layout table.shop_table .product-quantity {
  font-weight: 400 !important;
  color: var(--clr-muted) !important;
  font-size: 13px !important;
}

/* Variation — один рядок */
.woocommerce .checkout-layout table.shop_table .variation {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  gap: 0 !important;
  margin: 3px 0 0 !important;
}
.woocommerce .checkout-layout table.shop_table .variation dt,
.woocommerce .checkout-layout table.shop_table .variation dd {
  display: inline !important;
  margin: 0 !important;
  padding: 0 !important;
  font-size: 12px !important;
  font-weight: 400 !important;
  color: var(--clr-muted) !important;
  line-height: 1.4 !important;
}
.woocommerce .checkout-layout table.shop_table .variation dd p {
  display: inline !important;
  margin: 0 !important;
}
.woocommerce .checkout-layout table.shop_table .variation dd::after {
  content: ' · ' !important;
  color: var(--clr-line) !important;
}
.woocommerce .checkout-layout table.shop_table .variation dd:last-of-type::after {
  display: none !important;
}

/* Tfoot рядки */
.woocommerce .checkout-layout table.shop_table tfoot th,
.woocommerce .checkout-layout table.shop_table tfoot td {
  font-size: 14px !important;
  font-weight: 400 !important;
  color: var(--clr-muted) !important;
}
.woocommerce .checkout-layout table.shop_table tfoot td {
  text-align: right !important;
}

/* Доставка */
.woocommerce .checkout-layout table.shop_table .woocommerce-shipping-totals th:empty::after {
  content: 'Доставка' !important;
  font-weight: 400 !important;
  color: var(--clr-muted) !important;
}
.woocommerce .checkout-layout .woocommerce-shipping-methods {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: inline !important;
}
.woocommerce .checkout-layout .woocommerce-shipping-methods li {
  display: inline !important;
}
.woocommerce .checkout-layout .woocommerce-shipping-methods label {
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #2e7d32 !important;
  margin: 0 !important;
  padding: 0 !important;
  display: inline !important;
}

/* Разом */
.woocommerce .checkout-layout table.shop_table .order-total th,
.woocommerce .checkout-layout table.shop_table .order-total td {
  font-size: 17px !important;
  font-weight: 700 !important;
  color: var(--clr-text) !important;
  border-bottom: none !important;
  padding-top: 16px !important;
}


*/

/* ============================================
   CHECKOUT VARIATION — FINAL FIX (перебити WC float)
   ============================================ */
.woocommerce td.product-name dl.variation,
.woocommerce .checkout-layout td.product-name dl.variation {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 0 4px !important;
  margin: 4px 0 0 !important;
}
.woocommerce td.product-name dl.variation dt,
.woocommerce td.product-name dl.variation dd,
.woocommerce .checkout-layout td.product-name dl.variation dt,
.woocommerce .checkout-layout td.product-name dl.variation dd {
  float: none !important;
  clear: none !important;
  display: inline-flex !important;
  align-items: baseline !important;
  margin: 0 !important;
  padding: 0 !important;
  font-size: 12px !important;
  font-weight: 400 !important;
  color: var(--clr-muted) !important;
  line-height: 1.5 !important;
}
.woocommerce td.product-name dl.variation dt::after,
.woocommerce .checkout-layout td.product-name dl.variation dt::after {
  content: ':' !important;
  margin-right: 2px !important;
}
.woocommerce td.product-name dl.variation dd::after,
.woocommerce .checkout-layout td.product-name dl.variation dd::after {
  content: '·' !important;
  margin: 0 4px !important;
  color: var(--clr-line) !important;
}
.woocommerce td.product-name dl.variation dd:last-of-type::after,
.woocommerce .checkout-layout td.product-name dl.variation dd:last-of-type::after {
  display: none !important;
}
.woocommerce td.product-name dl.variation dd p,
.woocommerce .checkout-layout td.product-name dl.variation dd p {
  display: inline !important;
  margin: 0 !important;
}

@media (max-width: 1023px) {
  /* Product card text */
  .product-card-v2__name {
    font-size: 13px;
  }
  .product-card-v2__notes {
    font-size: 11px;
  }
  .product-card-v2__price .woocommerce-Price-amount {
    font-size: 14px;
  }

  /* Single product text */
  .product-info-v2__title {
    font-size: clamp(26px, 6vw, 36px);
  }
  .product-info-v2__price {
    font-size: 24px;
  }
  .product-info-v2__desc {
    font-size: 14px;
  }
}
