/* =============================================
   ANUKA Quantum Skincare — Main CSS
   Fonts: Poppins · Inter · Lora
   ============================================= */

/* 1. Root Variables */
:root {
  --red: #c8102e;
  --dark-red: #a50d24;
  --text-dark: #1a1a1a;
  --text-gray: #666;
  --text-light: #999;
  --border: #e0e0e0;
  --bg-light: #f9f9f9;
  --font-poppins: "Poppins", sans-serif;
  --font-inter: "Inter", sans-serif;
  --font-lora: "Lora", serif;
}

/* 2. Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-inter);
  color: var(--text-dark);
  font-size: 13px;
  line-height: 1.5;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}
button {
  cursor: pointer;
  font-family: var(--font-inter);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  line-height: 1.2;
}

/* 3. Buttons */
.btn-red {
  background: #b32026;
  background: linear-gradient(
    180deg,
    rgba(179, 32, 38, 1) 0%,
    rgba(214, 59, 59, 1) 100%
  );
  color: #fff;
  border: none;
  padding: 12px 22px;
  font-family: var(--font-inter);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
  border-radius: 7px;
}
.btn-red:hover {
  background: var(--dark-red);
  color: #fff;
  text-decoration: none;
}

.btn-outline-red-sm {
  background: transparent;
  color: var(--red);
  border: 1.5px solid var(--red);
  border-radius: 7px;
  padding: 11px 22px;
  font-family: var(--font-inter);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
}
.btn-outline-red-sm:hover {
  background: rgba(200, 16, 46, 0.07);
  color: var(--dark-red);
}

.btn-outline-dark-sm {
  background: transparent;
  color: #0d0d0d;
  border: 1.5px solid #0d0d0d;
  border-radius: 7px;
  padding: 11px 22px;
  font-family: var(--font-inter);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
}
.btn-outline-dark-sm:hover {
  background: rgba(13, 13, 13, 0.06);
  color: #0d0d0d;
}

.btn-dark-cta {
  display: inline-block;
  background: var(--text-dark);
  color: #fff;
  font-family: var(--font-inter);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 15px 27px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  border-radius: 8px;
}
.btn-dark-cta:hover {
  background: #333;
  color: #fff;
  text-decoration: none;
}

.btn-red-full {
  width: 100%;
  background: linear-gradient(
    180deg,
    rgba(179, 32, 38, 1) 0%,
    rgba(214, 59, 59, 1) 100%
  );
  color: #fff;
  border-radius: 7px;
  border: none;
  padding: 13px;
  font-family: var(--font-inter);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  display: block;
  text-align: center;
}
.btn-red-full:hover {
  background: var(--dark-red);
}

.btn-red-arrow {
  background: var(--red);
  color: #fff;
  border: none;
  padding: 18px 32px;
  font-family: var(--font-inter);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  text-decoration: none;
  transition: background 0.2s;
  border-radius: 12px;
}
.btn-red-arrow:hover {
  background: var(--dark-red);
  color: #fff;
}

/* ============================================
   TOP BANNER
   ============================================ */
.top-banner {
  background: #f5f5f5;
  border-bottom: 1px solid var(--border);
  padding: 8px 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}
.top-banner::before,
.top-banner::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}
.top-banner::before {
  left: 0;
  background: linear-gradient(to right, #f5f5f5 40%, transparent);
}
.top-banner::after {
  right: 0;
  background: linear-gradient(to left, #f5f5f5 40%, transparent);
}
.marquee-track {
  display: inline-flex;
  animation: marquee-scroll 26s linear infinite;
  will-change: transform;
}
.top-banner:hover .marquee-track {
  animation-play-state: paused;
}
.marquee-item {
  font-family: var(--font-inter);
  font-size: 11px;
  font-weight: 500;
  color: var(--text-gray);
  padding: 0 32px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.marquee-dot {
  width: 4px;
  height: 4px;
  background: var(--red);
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}
@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar-anuka {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}
.brand {
  font-family: var(--font-poppins);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 2px;
  color: var(--text-dark);
  text-decoration: none;
  flex-shrink: 0;
}
.brand img {
  height: 36px;
  display: inline-block;
}
.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
  min-width: 0;
  flex: 1 1 auto;
  justify-content: center;
  gap: 4px;
}
.nav-links li {
  list-style: none;
  margin: 0;
}
.nav-links a {
  font-family: var(--font-inter);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-dark);
  text-decoration: none;
  padding: 6px 10px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.2s;
  display: inline-block;
}
.nav-links a:hover {
  color: var(--red);
}
.nav-icons {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-icons a {
  color: var(--text-dark);
  margin-left: 12px;
  font-size: 15px;
  text-decoration: none;
  position: relative;
  transition: color 0.2s;
}
.nav-icons a:hover {
  color: var(--red);
}
.cart-count {
  background: var(--red);
  color: #fff;
  font-size: 9px;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -8px;
  right: -8px;
  font-weight: 700;
}
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  background: none;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  cursor: pointer;
  gap: 5px;
  padding: 0;
  margin-left: 10px;
  flex-shrink: 0;
  transition: border-color 0.2s;
}
.hamburger:hover {
  border-color: var(--text-dark);
}
.hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition:
    transform 0.3s,
    opacity 0.3s;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 0;
  margin: 0;
  list-style: none;
  overflow: hidden;
  max-height: 0;
  transition:
    max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    padding 0.3s;
}
.mobile-menu.open {
  max-height: calc(100vh - 80px);
  padding: 8px 0 16px;
  overflow-y: auto;
}
.mobile-menu li {
  list-style: none;
  margin: 0;
  padding: 0;
  display: block;
}
.mobile-menu a {
  display: block;
  font-family: var(--font-inter);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  text-decoration: none;
  padding: 14px 22px;
  border-bottom: 1px solid #f5f5f5;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition:
    background 0.15s,
    color 0.15s;
}
.mobile-menu a:hover {
  background: #f8f8f8;
  color: var(--red);
}
.mobile-menu li:last-child a {
  border-bottom: none;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  padding: 0.5rem 0;
  overflow: hidden;
  background: #ffe5e5;
  background: linear-gradient(
    63deg,
    rgba(255, 229, 229, 1) 0%,
    rgba(193, 211, 233, 1) 100%
  );
}
.hero-badge {
  font-family: var(--font-inter);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #0d0d0d;
  margin-bottom: 10px;
}
.hero h1 {
  font-family: var(--font-poppins);
  font-weight: 700;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.hero p.hero-desc {
  font-family: var(--font-inter);
  font-size: 13px;
  color: #555;
  max-width: 303px;
  margin-bottom: 17px;
  line-height: 1.6;
  font-weight: 400;
}
.hero-sub {
  font-family: var(--font-inter);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #5a5a5a;
  margin-bottom: 18px;
  max-width: 320px;
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12px 10px;
  position: relative;
}
.trust-item + .trust-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15%;
  bottom: 15%;
  width: 1px;
  background: var(--border);
}
.trust-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.trust-icon img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}
.trust-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--text-dark);
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.trust-label {
  font-family: var(--font-inter);
  font-size: 12px;
  font-weight: 800;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  line-height: 1.35;
  margin-bottom: 4px;
}
.trust-sub {
  font-family: var(--font-inter);
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.4;
  font-weight: 300;
  padding-top: 2px;
}

/* ============================================
   SECTION TITLES / UTILITIES
   ============================================ */
.sec-title {
  font-family: var(--font-lora);
  font-weight: 700;
  font-size: clamp(20px, 3vw, 28px);
  color: var(--text-dark);
  margin-bottom: 6px;
}
.sec-sub {
  font-family: var(--font-inter);
  font-size: 13px;
  color: var(--text-gray);
  max-width: 242px;
}
.see-all {
  font-family: var(--font-inter);
  font-size: 11px;
  font-weight: 600;
  color: var(--text-dark);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1.5px solid var(--text-dark);
  white-space: nowrap;
  transition:
    color 0.2s,
    border-color 0.2s;
}
.see-all:hover {
  color: var(--red);
  border-color: var(--red);
}
.section-divider {
  height: 1px;
  background: var(--border);
}
.line-vertical {
  display: inline-block;
  height: 35px;
  width: 3px;
  background: #0d0d0d;
  border-radius: 3px;
}

/* ============================================
   SISTEMA / SLIDER
   ============================================ */
.sistema-section {
  padding: 60px 0;
  background: #fafafa;
}
.sistema-slider-wrap {
  position: relative;
  overflow: hidden;
  user-select: none;
}
.sistema-track {
  display: flex;
  gap: 14px;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  padding: 6px 2px 10px;
}
.sistema-card-link {
  display: block;
  min-width: 175px;
  max-width: 175px;
  flex-shrink: 0;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.sistema-card-link:hover {
  transform: translateY(-3px);
}
.sistema-card-link:hover .btn-toin {
  background: var(--text-dark, #0d0d0d);
  color: #fff;
}
.sistema-card-link:focus-visible {
  outline: 2px solid var(--red, #c8102e);
  outline-offset: 4px;
  border-radius: 14px;
}
.sistema-card {
  min-width: 175px;
  max-width: 175px;
  flex-shrink: 0;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition:
    box-shadow 0.25s,
    transform 0.25s;
  position: relative;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.sistema-card .step-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--text-dark);
  background: #fff;
  font-family: var(--font-inter);
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  z-index: 2;
  transition:
    background 0.2s,
    color 0.2s;
}
.sistema-card .btn-toin {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #686868;
  z-index: 2;
}
.sistema-card.active .step-badge {
  background: var(--text-dark);
  color: #fff;
}
.sistema-card .img-box {
  width: 100%;
  height: 185px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}
.sistema-card .img-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.sistema-card.sc1,
.sc1 .img-box {
  background: #f5f0cc;
}
.sistema-card.sc2,
.sc2 .img-box {
  background: #f5dfc0;
}
.sistema-card.sc3,
.sc3 .img-box {
  background: #f9dde6;
}
.sistema-card.sc4,
.sc4 .img-box {
  background: #c8eaf5;
}
.sistema-card.sc5,
.sc5 .img-box {
  background: #d6f0d6;
}
.sistema-card .card-info {
  padding: 12px 13px 14px;
  text-align: center;
}
.sistema-card .prod-name {
  font-family: var(--font-poppins);
  font-weight: 700;
  font-size: 14px;
  color: var(--text-dark);
  margin-bottom: 3px;
}
.sistema-card .prod-type {
  font-family: var(--font-inter);
  font-size: 12px;
  color: #505050;
  font-weight: 300;
  line-height: 1.4;
  max-width: 130px;
  margin: 0 auto;
}
.slider-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}
.slider-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--text-dark);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--text-dark);
  outline: none;
  flex-shrink: 0;
}
.slider-btn:hover {
  background: var(--text-dark);
  color: #fff;
}
.slider-btn:disabled {
  opacity: 0.28;
  cursor: default;
  pointer-events: none;
}
.slider-btn svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 2.2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.slider-dots {
  display: flex;
  gap: 6px;
  align-items: center;
}
.slider-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: all 0.28s;
  border: none;
  padding: 0;
  outline: none;
}
.slider-dot.active {
  background: var(--text-dark);
  width: 20px;
  border-radius: 4px;
}

/* ============================================
   OFFER BAR / COUNTDOWN
   ============================================ */
.offer-bar {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}
.offer-eyebrow {
  font-family: var(--font-inter);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 10px;
}
.offer-title {
  font-family: var(--font-lora);
  font-weight: 700;
  font-size: clamp(20px, 3vw, 29px);
  color: var(--text-dark);
  line-height: 1.5;
  margin-bottom: 10px;
}
.offer-sub {
  font-family: var(--font-inter);
  font-size: 12px;
  color: var(--text-gray);
}
.countdown {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.cd-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  background-color: #f5f5f5;
  border: solid 1px #ebebeb;
  padding: 8px;
  border-radius: 9px;
}
.cd-box {
  color: var(--text-dark);
  font-family: var(--font-poppins);
  font-weight: 700;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  line-height: 1;
}
.cd-label {
  font-family: var(--font-inter);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-light);
}

/* ============================================
   PRODUCT CARDS
   ============================================ */
.product-card {
  background: #fff;
  overflow: hidden;
  transition: box-shadow 0.2s;
  height: 100%;
  margin-top: 0.7rem;
  padding: 0 0.3rem;
}
.product-card .img-wrap {
  height: 200px;
  display: flex !important;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
}
.product-card .img-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.pc-yellow .img-wrap {
  background: #f5f0cc;
}
.pc-blue .img-wrap {
  background: #c8eaf5;
}
.pc-pink .img-wrap {
  background: #f8d6d6;
}
.pc-green .img-wrap {
  background: #d6efd6;
}
.pc-lpink .img-wrap {
  background: #f9dde6;
}
.pc-lyellow .img-wrap {
  background: #f5f0cc;
}
.product-card .card-body-p {
  padding: 12px 2px 0;
}
.prod-title {
  font-family: var(--font-poppins);
  font-weight: 700;
  font-size: 13px;
  color: var(--text-dark);
  margin-bottom: 2px;
}
.prod-desc {
  font-family: var(--font-inter);
  font-size: 11px;
  color: var(--text-light);
  margin-bottom: 8px;
}
.prod-price {
  font-family: var(--font-poppins);
  font-weight: 700;
  font-size: 15px;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.btn-add {
  width: 100%;
  border: 2px solid var(--red);
  background: transparent;
  color: var(--red);
  font-family: var(--font-inter);
  font-size: 13px;
  font-weight: 600;
  padding: 9px;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.2s;
  display: block;
  text-align: center;
}
.btn-add:hover {
  background: var(--red);
  color: #fff;
}

/* ============================================
   TECHNOLOGY SECTION
   ============================================ */
.tech-section {
  padding: 60px 0;
  background: #fff;
}
.tech-badge {
  font-family: var(--font-inter);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 10px;
}
.tech-title {
  font-family: var(--font-lora);
  font-weight: 700;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.tech-body {
  font-family: var(--font-inter);
  font-size: 13px;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 374px;
}
.tech-list {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
}
.tech-list li {
  font-family: var(--font-inter);
  font-size: 12px;
  color: var(--text-dark);
  padding: 5px 0 5px 18px;
  position: relative;
}
.tech-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #0d0d0d;
  font-size: 16px;
}
.tech-img-wrap img {
  max-width: 100%;
  border-radius: 12px;
}

/* ============================================
   ROUTINE / BUNDLE CARDS
   ============================================ */
.routine-section {
  padding: 40px 0;
}
.routine-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  height: 100%;
  transition: box-shadow 0.2s;
}
.routine-card:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}
.routine-card .badge-top {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #f8dede;
  color: #c51d24;
  font-size: 12px;
  font-weight: 700;
  font-family: var(--font-inter);
  padding: 5px 14px;
  border-radius: 17px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.routine-img {
  height: 200px;
  background: #fcf1f1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.routine-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.routine-body {
  padding: 20px;
}
.routine-title {
  font-family: var(--font-poppins);
  font-weight: 700;
  font-size: 16px;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.routine-items {
  font-family: var(--font-inter);
  font-size: 11px;
  color: var(--text-light);
  margin-bottom: 12px;
}
.routine-items ul {
  padding-left: 16px;
  list-style: disc;
}
.routine-items ul li {
  font-size: 12px;
  color: #555;
}
.routine-price {
  font-family: var(--font-poppins);
  font-weight: 700;
  font-size: 20px;
  color: var(--text-dark);
  line-height: 1;
}
.routine-orig {
  font-family: var(--font-inter);
  font-size: 14px;
  color: var(--text-light);
  text-decoration: line-through;
}

/* ============================================
   REVIEWS / TESTIMONIALS
   ============================================ */
.reviews-section {
  padding: 72px 0 68px;
  background: #fff;
}
.reviews-eyebrow {
  text-align: center;
  font-family: var(--font-inter);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 10px;
}
.review-title {
  font-family: var(--font-poppins);
  font-weight: 700;
  font-size: clamp(24px, 3.5vw, 36px);
  text-align: center;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.15;
}
.review-sub {
  text-align: center;
  font-family: var(--font-inter);
  font-size: 13px;
  color: var(--text-gray);
  margin-bottom: 48px;
}
.review-card {
  background: #fff;
  border: 1px solid #d8d8d8;
  border-radius: 8px;
  padding: 28px 26px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 18px;
  font-size: 18px;
  line-height: 1;
  color: #f5a623;
}
.review-text {
  font-family: var(--font-lora);
  font-style: italic;
  font-size: 13px;
  color: var(--text-dark);
  line-height: 1.75;
  margin-bottom: 0;
  flex: 1;
}
.review-divider {
  height: 1px;
  background: var(--border);
  margin: 22px 0 18px;
}
.reviewer-name {
  font-family: var(--font-poppins);
  font-weight: 700;
  font-size: 13px;
  color: var(--text-dark);
  margin-bottom: 3px;
}
.reviewer-meta {
  font-family: var(--font-inter);
  font-size: 11px;
  color: var(--text-light);
  line-height: 1.5;
}
.btn-outline-all {
  border: 1.5px solid var(--text-dark);
  background: transparent;
  color: var(--text-dark);
  font-family: var(--font-inter);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 40px;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  transition: all 0.2s;
  border-radius: 6px;
}
.btn-outline-all:hover {
  background: var(--text-dark);
  color: #fff;
}

/* ============================================
   ROUTINE STEPS
   ============================================ */
.steps-section {
  padding: 80px 0 70px;
  border-top: solid 1px #f2f2f2;
  border-bottom: solid 1px #f2f2f2;
}
.steps-eyebrow {
  text-align: center;
  font-family: var(--font-inter);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 10px;
}
.steps-title {
  font-family: var(--font-lora);
  font-weight: 700;
  font-size: clamp(26px, 4vw, 40px);
  text-align: center;
  color: var(--text-dark);
  margin-bottom: 14px;
  line-height: 1.1;
}
.steps-sub {
  font-family: var(--font-inter);
  font-size: 13px;
  color: var(--text-gray);
  text-align: center;
  max-width: 460px;
  margin: 0 auto 50px;
  line-height: 1.65;
}
.step-card {
  background: #fff;
  border: 1px solid #e4e4e4;
  border-radius: 12px;
  overflow: visible;
  height: 100%;
  position: relative;
}
.step-card-img {
  width: 100%;
  height: 230px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
  background: #fff;
}
.step-card-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.step-num-badge {
  position: absolute;
  top: -18px;
  left: -5px;
  width: 44px;
  height: 44px;
  background: var(--text-dark);
  color: #fff;
  border-radius: 50%;
  font-family: var(--font-poppins);
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}
.step-card-body {
  padding: 18px 18px 20px;
  border-top: 0;
}
.step-frequency {
  font-family: var(--font-inter);
  font-size: 12px;
  font-weight: 300;
  color: var(--text-light);
  margin-bottom: 8px;
}
.step-name {
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: 21px;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.05;
}
.step-desc {
  font-family: var(--font-inter);
  font-size: 13px;
  color: #282828;
  line-height: 1.65;
  margin-bottom: 12px;
}
.step-product-name {
  font-family: var(--font-inter);
  font-size: 13px;
  font-weight: 400;
  color: var(--text-light);
}

/* ============================================
   COMMUNITY / NEWSLETTER
   ============================================ */
.community-section {
  padding: 60px 0;
  background: #fafafa;
  text-align: center;
}
.community-title {
  font-family: var(--font-lora);
  font-weight: 700;
  font-size: clamp(22px, 3vw, 32px);
  margin-bottom: 8px;
}
.community-sub {
  font-family: var(--font-inter);
  font-size: 13px;
  color: var(--text-gray);
  max-width: 538px;
  margin: 0 auto 24px;
}
.community-sub-note {
  font-family: var(--font-inter);
  font-size: 12px;
  color: #999;
  max-width: 538px;
  margin: 0.8rem auto 0;
}
.community-input-wrap {
  display: flex;
  max-width: 400px;
  margin: 0 auto;
  border: 1.5px solid #ebebeb;
  border-radius: 6px;
  overflow: hidden;
}
.community-input {
  flex: 1;
  border: none;
  padding: 12px 16px;
  font-family: var(--font-inter);
  font-size: 12px;
  outline: none;
}
.btn-community {
  background: #0d0d0d;
  color: #fff;
  border: none;
  padding: 0 20px;
  font-family: var(--font-inter);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
.btn-community:hover {
  background: var(--red);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer,
.footer-main {
  background: var(--red);
  background: linear-gradient(
    180deg,
    rgba(179, 32, 38, 1) 0%,
    rgba(214, 59, 59, 1) 100%
  );
  color: #fff;
  padding: 50px 0 30px;
}

/* Cart page wrapper */
.page-wrap {
  padding: 48px 0 80px;
  min-height: 70vh;
}
.page-title {
  font-family: var(--font-poppins);
  font-weight: 700;
  font-size: 26px;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.footer-brand {
  font-family: var(--font-poppins);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.footer-brand img {
  height: 36px;
}
.footer-tagline {
  font-family: var(--font-inter);
  font-size: 13px;
  margin-bottom: 16px;
  color: #fff;
}
.footer-social a {
  color: #fff;
  font-size: 16px;
  margin-right: 14px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.footer-social a:hover {
  opacity: 0.75;
}
.footer-col-title {
  font-family: var(--font-poppins);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: block;
}
.footer-links {
  list-style: none;
  padding: 0;
}
.footer-links li {
  margin-bottom: 8px;
}
.footer-links a {
  font-family: var(--font-inter);
  font-size: 13px;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s;
}
.footer-links a:hover {
  opacity: 0.75;
}
.footer-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #fff;
  font-family: var(--font-inter);
  font-size: 13px;
  line-height: 1.6;
}
.footer-info-list li {
  margin-bottom: 10px;
}
.footer-info-list strong {
  font-weight: 600;
}
.footer-bottom {
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.72);
  padding: 16px 0;
  font-family: var(--font-inter);
  font-size: 13px;
  margin-top: 0.8rem;
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-payment-badges {
  display: flex;
  gap: 12px;
}
.footer-payment-badges span {
  font-family: var(--font-inter);
  font-size: 13px;
  color: #fff;
}

/* ============================================
   CART PAGE
   ============================================ */
.cart-page-wrap {
  padding: 48px 0 80px;
  min-height: 70vh;
}
.cart-page-title {
  font-family: var(--font-poppins);
  font-weight: 700;
  font-size: 26px;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.breadcrumb-line {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 36px;
}
.breadcrumb-line a {
  color: var(--text-light);
}
.breadcrumb-line a:hover {
  color: var(--red);
}
.breadcrumb-line span {
  margin: 0 6px;
}
.cart-table-head {
  display: grid;
  grid-template-columns: 1fr 120px 120px 40px;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 2px solid var(--text-dark);
  font-family: var(--font-poppins);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-dark);
}
.cart-item {
  display: grid;
  grid-template-columns: 1fr 120px 120px 40px;
  gap: 12px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.cart-item-info {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cart-item-img {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  object-fit: contain;
  background: var(--bg-light);
  flex-shrink: 0;
  padding: 6px;
}
.cart-item-name {
  font-family: var(--font-poppins);
  font-weight: 600;
  font-size: 13px;
  color: var(--text-dark);
  margin-bottom: 3px;
}
.cart-item-desc {
  font-size: 11px;
  color: var(--text-light);
}
.cart-item-price {
  font-family: var(--font-poppins);
  font-weight: 700;
  font-size: 14px;
  color: var(--text-dark);
}
.qty-ctrl {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  width: fit-content;
}
.qty-ctrl button {
  background: none;
  border: none;
  width: 32px;
  height: 34px;
  font-size: 16px;
  cursor: pointer;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.qty-ctrl button:hover {
  background: var(--bg-light);
}
.qty-ctrl .qty-val {
  width: 36px;
  text-align: center;
  font-family: var(--font-poppins);
  font-weight: 600;
  font-size: 13px;
  border: none;
  outline: none;
  background: none;
}
.btn-remove {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-light);
  font-size: 16px;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-remove:hover {
  color: var(--red);
}
.summary-box {
  background: var(--bg-light);
  border-radius: 14px;
  padding: 28px 24px;
  position: sticky;
  top: 90px;
}
.summary-title {
  font-family: var(--font-poppins);
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 20px;
  color: var(--text-dark);
}
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 13px;
  color: var(--text-gray);
}
.summary-row.total {
  border-top: 1px solid var(--border);
  padding-top: 14px;
  margin-top: 6px;
  font-family: var(--font-poppins);
  font-weight: 700;
  font-size: 16px;
  color: var(--text-dark);
}
.free-ship {
  color: #2a9d5c;
  font-weight: 600;
}
.btn-checkout {
  display: block;
  width: 100%;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 16px;
  font-family: var(--font-poppins);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  text-align: center;
  margin-top: 20px;
  transition: background 0.2s;
  text-decoration: none;
}
.btn-checkout:hover {
  background: var(--dark-red);
  color: #fff;
}
.continue-link {
  display: block;
  text-align: center;
  margin-top: 14px;
  font-size: 12px;
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.2s;
}
.continue-link:hover {
  color: var(--red);
}
.promo-wrap {
  display: flex;
  gap: 8px;
  margin-top: 18px;
}
.promo-wrap input {
  flex: 1;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 9px 12px;
  font-family: var(--font-inter);
  font-size: 12px;
  outline: none;
}
.promo-wrap input:focus {
  border-color: var(--red);
}
.promo-wrap button {
  background: var(--text-dark);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 9px 14px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
.promo-wrap button:hover {
  background: var(--red);
}
.empty-cart {
  text-align: center;
  padding: 80px 20px;
}
.empty-cart i {
  font-size: 56px;
  color: var(--border);
  margin-bottom: 20px;
  display: block;
}
.empty-cart h3 {
  font-family: var(--font-poppins);
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 10px;
}
.empty-cart p {
  color: var(--text-light);
  margin-bottom: 24px;
}
.btn-shop {
  display: inline-block;
  background: var(--red);
  color: #fff;
  text-decoration: none;
  padding: 13px 32px;
  border-radius: 10px;
  font-family: var(--font-poppins);
  font-weight: 700;
  font-size: 13px;
  transition: background 0.2s;
}
.btn-shop:hover {
  background: var(--dark-red);
  color: #fff;
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 42px;
  height: 42px;
  background: var(--text-dark);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 500;
  transition: all 0.2s;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
}
.back-to-top:hover {
  background: var(--red);
}

/* ============================================
   RESPONSIVE
   ============================================ */
/* Tighten the desktop nav between 992-1199px so 8+ items fit. */
@media (min-width: 992px) and (max-width: 1199px) {
  .nav-links a {
    font-size: 11px;
    padding: 6px 7px;
    letter-spacing: 0.3px;
  }
  .nav-links {
    gap: 2px;
  }
  .nav-icons a {
    margin-left: 10px;
  }
}
@media (max-width: 991px) {
  .nav-links {
    display: none !important;
  }
  .hamburger {
    display: flex;
  }
  .navbar-inner {
    gap: 8px;
  }
}
@media (max-width: 575px) {
  .nav-icons a {
    margin-left: 8px;
    font-size: 16px;
  }
  .brand img { height: 30px; }
  .hamburger {
    width: 36px;
    height: 36px;
    margin-left: 6px;
  }
  .navbar-inner {
    padding: 10px 0;
  }
  .top-banner {
    font-size: 11px;
  }
}
@media (max-width: 768px) {
  .hero {
    padding: 36px 0 0;
  }
  .hero h1 {
    font-size: 34px;
  }
  .trust-bar {
    padding: 20px 0;
  }
  .trust-item + .trust-item::before {
    display: none;
  }
  .trust-item {
    border-bottom: 1px solid var(--border);
    padding: 14px 8px;
  }
  .trust-item:nth-child(odd) {
    border-right: 1px solid var(--border);
  }
  .trust-item:last-child {
    border-bottom: none;
  }
  .offer-bar {
    padding: 28px 0;
  }
  .countdown {
    flex-wrap: wrap;
    justify-content: center;
  }
  .cd-box {
    width: 44px;
    font-size: 22px;
  }
  .btn-red-arrow {
    width: 100%;
    justify-content: center;
    margin-top: 16px;
  }
  .prod-title {
    font-size: 12px;
  }
  .prod-price {
    font-size: 14px;
  }
  .steps-sub {
    margin-bottom: 40px;
  }
  .step-name {
    font-size: 20px;
  }
  .step-card-img {
    height: 200px;
  }
  .slider-controls {
    justify-content: center;
  }
  .community-input-wrap {
    flex-direction: column;
    max-width: 100%;
  }
  .community-input {
    padding: 14px;
  }
  .btn-community {
    padding: 14px;
  }
  .footer-main {
    padding: 36px 0 20px;
  }
  .cart-table-head {
    display: none;
  }
  .cart-item {
    grid-template-columns: 1fr 40px;
    grid-template-rows: auto auto;
  }
  .cart-item-info {
    grid-column: 1 / -1;
  }
}
@media (max-width: 480px) {
  .hero h1 {
    font-size: 28px;
  }
  .cd-box {
    width: 40px;
    font-size: 18px;
  }
  .offer-title {
    font-size: 20px;
  }
  .step-card-img {
    height: 180px;
  }
  .sistema-card,
  .sistema-card-link {
    min-width: 155px;
    max-width: 155px;
  }
}

/* =============================================
   Product Detail Page (Figma: node 11:2)
   ============================================= */

.product-detail-page {
  background: #ffffff;
  padding: 48px 0 0;
  font-family: var(--font-inter);
}

.pd-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px;
}

/* Back link */
.pd-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #555;
  font-family: var(--font-inter);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.3125px;
  text-decoration: none;
  transition: color 0.2s;
}
.pd-back-link:hover {
  color: #0d0d0d;
}
.pd-back-link svg {
  flex-shrink: 0;
}

/* Main grid */
.pd-main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 32px;
}

/* Gallery */
.pd-gallery {
  width: 100%;
}
.pd-main-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  border: 1px solid #ebebeb;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}
.pd-main-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  padding: 2rem 0;
}

.pd-thumbs {
  display: flex;
  gap: 18px;
  margin-top: 16px;
}
.pd-thumb {
  width: 132.875px;
  height: 132.875px;
  padding: 2px;
  border: 2px solid transparent;
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.2s;
  flex-shrink: 0;
}
.pd-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 4px;
  display: block;
  padding: 9px;
}
.pd-thumb.active {
  border-color: #0d0d0d;
}
.pd-thumb:hover:not(.active) {
  border-color: #ebebeb;
}

/* Info column */
.pd-info {
  width: 100%;
}

.pd-eyebrow {
  font-family: var(--font-inter);
  font-size: 12px;
  font-weight: 400;
  color: #999;
  letter-spacing: 2px;
  line-height: 18px;
  text-transform: uppercase;
}

.pd-title {
  font-family: var(--font-lora);
  font-size: 42px;
  font-weight: 700;
  color: #0d0d0d;
  line-height: 52.5px;
  padding-top: 8px;
  margin: 0;
}

.pd-subtitle {
  font-family: var(--font-inter);
  font-size: 16px;
  font-weight: 400;
  color: #555;
  line-height: 24px;
  letter-spacing: -0.3125px;
  padding-top: 8px;
  margin: 0;
}

.pd-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding-top: 24px;
  height: 57px;
}
.pd-price {
  font-family: var(--font-inter);
  font-size: 38px;
  font-weight: 700;
  color: #0d0d0d;
  line-height: 57px;
  letter-spacing: 0.3711px;
}
.pd-volume {
  font-family: var(--font-inter);
  font-size: 14px;
  font-weight: 400;
  color: #999;
  line-height: 21px;
}

.pd-description {
  padding-top: 32px;
  padding-bottom: 33px;
  border-bottom: 1px solid #ebebeb;
}
.pd-description p {
  font-family: var(--font-inter);
  font-size: 15px;
  font-weight: 400;
  color: #555;
  line-height: 27px;
  letter-spacing: -0.2344px;
  margin: 0;
}

/* Short description (Benefici block under the divider) */
.pd-short-description {
  padding-top: 32px;
}
.pd-short-description :where(h1, h2, h3, h4, h5, h6) {
  font-family: var(--font-inter);
  font-size: 16px;
  font-weight: 700;
  color: #0d0d0d;
  line-height: 24px;
  margin: 0 0 16px 0;
}
.pd-short-description ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pd-short-description li {
  position: relative;
  padding-left: 16px;
  font-family: var(--font-inter);
  font-size: 14px;
  font-weight: 400;
  color: #555;
  line-height: 21px;
  letter-spacing: -0.1504px;
}
.pd-short-description li::before {
  content: "\2022";
  position: absolute;
  left: 0;
  top: 0;
  color: #0d0d0d;
  font-size: 14px;
  line-height: 21px;
}
.pd-short-description p {
  font-family: var(--font-inter);
  font-size: 15px;
  font-weight: 400;
  color: #555;
  line-height: 27px;
  letter-spacing: -0.2344px;
  margin: 0 0 12px 0;
}

/* Benefits (legacy attribute-based list) */
.pd-benefits {
  padding-top: 32px;
}
.pd-section-heading {
  font-family: var(--font-inter);
  font-size: 16px;
  font-weight: 700;
  color: #0d0d0d;
  line-height: 24px;
  margin: 0;
}
.pd-benefit-list {
  list-style: none;
  margin: 0;
  padding: 16px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pd-benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-family: var(--font-inter);
  font-size: 14px;
  font-weight: 400;
  color: #555;
  line-height: 21px;
  letter-spacing: -0.1504px;
}
.pd-bullet {
  color: #0d0d0d;
  font-size: 14px;
  line-height: 21px;
  flex-shrink: 0;
}

/* Quantity */
.pd-quantity {
  padding-top: 32px;
}
.pd-quantity-label {
  display: block;
  font-family: var(--font-inter);
  font-size: 14px;
  font-weight: 500;
  color: #0d0d0d;
  line-height: 21px;
}
.pd-quantity-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid #ebebeb;
  border-radius: 6px;
  margin-top: 12px;
  overflow: hidden;
  background: #fff;
}
.pd-qty-btn {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: #0d0d0d;
  cursor: pointer;
  transition: background 0.15s;
}
.pd-qty-btn:hover {
  background: #f5f5f5;
}
.pd-qty-value {
  width: 56px;
  height: 40px;
  text-align: center;
  border: none;
  background: transparent;
  font-family: var(--font-inter);
  font-size: 16px;
  font-weight: 500;
  color: #0a0a0a;
  line-height: 24px;
  letter-spacing: -0.3125px;
  outline: none;
  padding: 0;
  -moz-appearance: textfield;
}
.pd-qty-value::-webkit-outer-spin-button,
.pd-qty-value::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Actions */
.pd-actions {
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pd-btn {
  width: 100%;
  border-radius: 6px;
  font-family: var(--font-inter);
  font-size: 15px;
  font-weight: 500;
  line-height: 22.5px;
  letter-spacing: -0.2344px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition:
    opacity 0.2s,
    transform 0.1s;
  text-decoration: none;
}
.pd-btn:active {
  transform: translateY(1px);
}

.pd-btn-primary {
  height: 54.5px;
  background: linear-gradient(180deg, #b32026 0%, #d63b3b 100%);
  color: #ffffff;
  border: none;
  padding: 16px;
}
.pd-btn-primary:hover {
  opacity: 0.95;
}
.pd-btn-primary svg {
  flex-shrink: 0;
}

.pd-btn-secondary {
  height: 57.5px;
  background: #ffffff;
  border: 1.5px solid #b32026;
  padding: 16px;
  position: relative;
}
.pd-btn-secondary span {
  background: linear-gradient(180deg, #b32026 0%, #d63b3b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #b32026;
  font-weight: 500;
}
.pd-btn-secondary:hover {
  background: rgba(179, 32, 38, 0.04);
}

/* Ingredients */
.pd-ingredients {
  padding-top: 32px;
  margin-top: 32px;
  border-top: 1px solid #ebebeb;
}
.pd-ingredients-heading {
  font-family: var(--font-inter);
  font-size: 14px;
  font-weight: 700;
  color: #0d0d0d;
  line-height: 21px;
  letter-spacing: -0.1504px;
  margin: 0;
}
.pd-ingredients-text {
  font-family: var(--font-inter);
  font-size: 13px;
  font-weight: 400;
  color: #999;
  line-height: 20.8px;
  letter-spacing: -0.0762px;
  padding-top: 8px;
  margin: 0;
}

/* Related Products */
.pd-related {
  margin-top: 80px;
  padding-top: 49px;
  padding-bottom: 80px;
  border-top: 1px solid #ebebeb;
}
.pd-related-title {
  font-family: var(--font-lora);
  font-size: 28px;
  font-weight: 700;
  color: #0d0d0d;
  line-height: 42px;
  margin: 0;
}
.pd-related-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.pd-related-card {
  background: #fff;
  border: 1px solid #ebebeb;
  border-radius: 12px;
  padding: 17px;
  text-decoration: none;
  color: inherit;
  display: block;
  transition:
    border-color 0.2s,
    transform 0.2s;
}
.pd-related-card:hover {
  border-color: #d0d0d0;
  transform: translateY(-2px);
  text-decoration: none;
  color: inherit;
}
.pd-related-image {
  width: 100%;
  height: 180px;
  border-radius: 8px;
  overflow: hidden;
  background: #f5f5f5;
}
.pd-related-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  padding: 1rem 0;
}
.pd-related-name {
  font-family: var(--font-inter);
  font-size: 15px;
  font-weight: 600;
  color: #0d0d0d;
  line-height: 22.5px;
  letter-spacing: -0.2344px;
  padding-top: 12px;
}
.pd-related-volume {
  font-family: var(--font-inter);
  font-size: 13px;
  font-weight: 400;
  color: #999;
  line-height: 19.5px;
  padding-top: 4px;
}
.pd-related-price {
  font-family: var(--font-inter);
  font-size: 16px;
  font-weight: 700;
  color: #0d0d0d;
  line-height: 24px;
  letter-spacing: -0.3125px;
  padding-top: 8px;
}

/* Responsive */
@media (max-width: 1199px) {
  .pd-container {
    padding: 0 48px;
  }
  .pd-main-grid {
    gap: 40px;
  }
  .pd-title {
    font-size: 36px;
    line-height: 1.25;
  }
  .pd-price {
    font-size: 32px;
    line-height: 1.4;
  }
  .pd-related-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) {
  .product-detail-page {
    padding-top: 32px;
  }
  .pd-container {
    padding: 0 32px;
  }
  .pd-main-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .pd-thumbs {
    gap: 12px;
  }
  .pd-thumb {
    width: 100px;
    height: 100px;
  }
  .pd-related {
    margin-top: 56px;
    padding-top: 32px;
        padding-bottom: 56px;
  }
  .pd-related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pd-related-title {
    font-size: 24px;
    line-height: 1.35;
  }
}

@media (max-width: 575px) {
  .pd-container {
    padding: 0 16px;
  }
  .pd-title {
    font-size: 28px;
  }
  .pd-price {
    font-size: 28px;
  }
  .pd-thumbs {
    gap: 8px;
  }
  .pd-thumb {
    width: 80px;
    height: 80px;
  }
  .pd-related-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .pd-related-card {
    padding: 12px;
  }
  .pd-related-image {
    height: 140px;
  }
}

/* =============================================
   Cart Page (Figma: node 11:621)
   ============================================= */

.cart-page {
  background: #ffffff;
  padding: 48px 0 80px;
  font-family: var(--font-inter);
}

.cart-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px;
}

.cart-title {
  font-family: var(--font-lora);
  font-size: 42px;
  font-weight: 700;
  color: #0d0d0d;
  line-height: 63px;
  margin: 0;
}

.cart-grid {
  display: grid;
  grid-template-columns: 1fr 367.664px;
  gap: 48px;
  align-items: start;
  padding-top: 32px;
}

/* Items column */
.cart-items-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cart-item {
  position: relative;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  width: 100%;
  border: 1px solid #ebebeb;
  border-radius: 12px;
  padding: 25px;
  background: #fff;
}

.cart-item-image {
  width: 120px;
  height: 120px;
  border-radius: 6px;
  overflow: hidden;
  background: #f5f5f5;
  flex-shrink: 0;
}
.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
  display: block;
}

.cart-item-body {
  flex: 1;
  min-width: 0;
  padding-right: 32px;
}

.cart-item-name {
  font-family: var(--font-inter);
  font-size: 18px;
  font-weight: 600;
  color: #0d0d0d;
  line-height: 27px;
  letter-spacing: -0.4395px;
  margin: 0;
}
.cart-item-subtitle {
  font-family: var(--font-inter);
  font-size: 14px;
  font-weight: 400;
  color: #999;
  line-height: 21px;
  letter-spacing: -0.1504px;
  padding-top: 4px;
  margin: 0;
}

.cart-item-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  gap: 16px;
}

.cart-item-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid #ebebeb;
  border-radius: 6px;
  background: #fff;
  padding: 1px;
}
.cart-qty-btn {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: #0d0d0d;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.15s;
}
.cart-qty-btn:hover {
  background: #f5f5f5;
}
.cart-qty-value {
  min-width: 32px;
  padding: 0 8px;
  text-align: center;
  font-family: var(--font-inter);
  font-size: 15px;
  font-weight: 500;
  color: #0a0a0a;
  line-height: 22.5px;
  letter-spacing: -0.2344px;
}

.cart-item-price {
  text-align: right;
}
.cart-item-line-total {
  font-family: var(--font-inter);
  font-size: 20px;
  font-weight: 700;
  color: #0d0d0d;
  line-height: 30px;
  letter-spacing: -0.4492px;
}
.cart-item-unit {
  font-family: var(--font-inter);
  font-size: 13px;
  font-weight: 400;
  color: #999;
  line-height: 19.5px;
  letter-spacing: -0.0762px;
  padding-top: 2px;
}

.cart-item-remove {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  color: #999;
  cursor: pointer;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    color 0.2s,
    background 0.2s;
}
.cart-item-remove:hover {
  color: #b32026;
  background: #faeaea;
}

.cart-empty {
  border: 1px solid #ebebeb;
  border-radius: 12px;
  padding: 48px 24px;
  text-align: center;
  background: #fff;
}
.cart-empty p {
  font-family: var(--font-inter);
  font-size: 16px;
  color: #555;
  margin: 0 0 16px;
}
.cart-empty-link {
  display: inline-block;
  font-family: var(--font-inter);
  font-size: 14px;
  font-weight: 500;
  color: #b32026;
  text-decoration: underline;
}

.cart-continue-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-top: 24px;
  font-family: var(--font-inter);
  font-size: 14px;
  font-weight: 500;
  color: #0d0d0d;
  line-height: 21px;
  letter-spacing: -0.1504px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.cart-continue-link:hover {
  opacity: 0.7;
  color: #0d0d0d;
}

/* Summary card (shared base used by Checkout) */
.cart-summary,
.checkout-summary {
  width: 100%;
  border: 1px solid #ebebeb;
  border-radius: 12px;
  padding: 25px;
  background: #ffffff;
  align-self: start;
}

.cart-summary-title,
.checkout-summary-title {
  font-family: var(--font-lora);
  font-size: 20px;
  font-weight: 700;
  color: #0d0d0d;
  line-height: 30px;
  margin: 0;
}

.cart-summary-rows {
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cart-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-summary-label {
  font-family: var(--font-inter);
  font-size: 15px;
  font-weight: 400;
  color: #555;
  line-height: 22.5px;
  letter-spacing: -0.2344px;
}
.cart-summary-value {
  font-family: var(--font-inter);
  font-size: 15px;
  font-weight: 500;
  color: #0d0d0d;
  line-height: 22.5px;
  letter-spacing: -0.2344px;
}

.cart-summary-total-row {
  margin-top: 16px;
  padding-top: 17px;
  border-top: 1px solid #ebebeb;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-summary-total-label,
.cart-summary-total-value {
  font-family: var(--font-inter);
  font-size: 18px;
  font-weight: 700;
  color: #0d0d0d;
  line-height: 27px;
  letter-spacing: -0.4395px;
}

.cart-summary-actions {
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cart-btn-primary,
.checkout-btn-primary {
  width: 100%;
  height: 54.5px;
  background: linear-gradient(180deg, #b32026 0%, #d63b3b 100%);
  color: #ffffff;
  border: none;
  border-radius: 6px;
  padding: 16px;
  font-family: var(--font-inter);
  font-size: 15px;
  font-weight: 500;
  line-height: 22.5px;
  letter-spacing: -0.2344px;
  text-decoration: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition:
    opacity 0.2s,
    transform 0.1s;
}
.cart-btn-primary:hover,
.checkout-btn-primary:hover {
  opacity: 0.95;
  color: #fff;
  text-decoration: none;
}
.cart-btn-primary:active,
.checkout-btn-primary:active {
  transform: translateY(1px);
}
.cart-btn-primary.is-disabled,
.cart-btn-primary[aria-disabled="true"] {
  opacity: 0.5;
  pointer-events: none;
}

.cart-btn-secondary {
  width: 100%;
  height: 57.5px;
  background: #fff;
  border: 1.5px solid #b32026;
  border-radius: 6px;
  font-family: var(--font-inter);
  font-size: 15px;
  font-weight: 500;
  line-height: 22.5px;
  letter-spacing: -0.2344px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.2s;
}
.cart-btn-secondary span {
  background: linear-gradient(180deg, #b32026 0%, #d63b3b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #b32026;
}
.cart-btn-secondary:hover {
  background: rgba(179, 32, 38, 0.04);
  text-decoration: none;
}

.cart-trust-list {
  list-style: none;
  margin: 24px 0 0;
  padding: 25px 0 0;
  border-top: 1px solid #ebebeb;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cart-trust-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-inter);
  font-size: 13px;
  font-weight: 400;
  color: #555;
  line-height: 19.5px;
  letter-spacing: -0.0762px;
}
.cart-trust-check {
  color: #0d0d0d;
  font-weight: 600;
  flex-shrink: 0;
}

/* =============================================
   Checkout Page (Figma: node 11:862)
   ============================================= */

.checkout-page {
  background: #ffffff;
  padding: 48px 0 80px;
  font-family: var(--font-inter);
}

.checkout-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px;
}

.checkout-title {
  font-family: var(--font-lora);
  font-size: 42px;
  font-weight: 700;
  color: #0d0d0d;
  line-height: 63px;
  margin: 0;
}

.checkout-trust {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-top: 8px;
  font-family: var(--font-inter);
  font-size: 14px;
  font-weight: 400;
  color: #999;
  line-height: 21px;
  letter-spacing: -0.1504px;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 367.664px;
  gap: 48px;
  align-items: start;
  padding-top: 32px;
}
/* Pin our two real children to the correct columns ONLY when the grid is
   actually two columns. On mobile (≤991px) the grid becomes 1fr, so the
   pins must not apply — otherwise the summary gets forced into an implicit
   second column and the form is squeezed into the first. */
@media (min-width: 992px) {
  .checkout-grid > .checkout-forms-col { grid-column: 1; }
  .checkout-grid > .checkout-summary   { grid-column: 2; }
}
/* Any other direct grid child spans the full width above the two columns
   (e.g. an injected notice group renders as a banner, not a column). */
.checkout-grid > .woocommerce-NoticeGroup,
.checkout-grid > .woocommerce-notices-wrapper {
  grid-column: 1 / -1;
  margin: 0;
}

.checkout-forms-col {
  display: flex;
  flex-direction: column;
  gap: 32px;
  min-width: 0;
}

.checkout-card {
  border: 1px solid #ebebeb;
  border-radius: 12px;
  padding: 33px;
  background: #fff;
}

.checkout-card-title {
  font-family: var(--font-lora);
  font-size: 20px;
  font-weight: 700;
  color: #0d0d0d;
  line-height: 30px;
  margin: 0;
}

.checkout-form {
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.checkout-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.checkout-row-2 {
  grid-template-columns: 1fr 1fr;
}
.checkout-row-3 {
  grid-template-columns: 1fr 1fr 1fr;
}

.checkout-field {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.checkout-label {
  display: block;
  padding-bottom: 8px;
  font-family: var(--font-inter);
  font-size: 14px;
  font-weight: 500;
  color: #0d0d0d;
  line-height: 21px;
  letter-spacing: -0.1504px;
}

.checkout-input {
  width: 100%;
  height: 48.5px;
  border: 1px solid #ebebeb;
  border-radius: 6px;
  padding: 13px 17px;
  background: #fff;
  font-family: var(--font-inter);
  font-size: 15px;
  font-weight: 400;
  color: #0a0a0a;
  line-height: 22.5px;
  letter-spacing: -0.2344px;
  transition: border-color 0.2s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.checkout-input::placeholder {
  color: rgba(10, 10, 10, 0.5);
}
.checkout-input:focus,
.checkout-input:hover {
  border-color: #0d0d0d;
}
.checkout-input:focus {
  box-shadow: 0 0 0 3px rgba(13, 13, 13, 0.06);
}

/* Payment method radio cards */
.checkout-pay-methods {
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.checkout-pay-method {
  position: relative;
  display: grid;
  grid-template-columns: 22px 40px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border: 1.5px solid #ebebeb;
  border-radius: 12px;
  cursor: pointer;
  background: #fff;
  transition:
    border-color 0.18s ease,
    background 0.18s ease,
    box-shadow 0.18s ease;
}
.checkout-pay-method:hover {
  border-color: #c8c8c8;
  background: #fcfcfc;
}
.checkout-pay-method.is-selected {
  border-color: var(--red, #c8102e);
  background: #fffafa;
  box-shadow: 0 1px 2px rgba(200, 16, 46, 0.06);
}
.checkout-pay-radio {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #cfcfcf;
  background: #fff;
  display: inline-block;
  position: relative;
  transition: border-color 0.18s ease;
}
.checkout-pay-method.is-selected .checkout-pay-radio {
  border-color: var(--red, #c8102e);
}
.checkout-pay-method.is-selected .checkout-pay-radio::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--red, #c8102e);
}
.checkout-pay-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #f5f5f5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #555;
  flex-shrink: 0;
  transition:
    background 0.18s ease,
    color 0.18s ease;
}
.checkout-pay-method.is-selected .checkout-pay-icon {
  background: #fde6ea;
  color: var(--red, #c8102e);
}
.checkout-pay-method[data-method="stripe"] .checkout-pay-icon {
  background: #fff;
  border: 1px solid #ebebeb;
}
.checkout-pay-method[data-method="stripe"] .checkout-pay-icon svg {
  width: 36px;
  height: auto;
}
.checkout-pay-method[data-method="stripe"].is-selected .checkout-pay-icon {
  background: #fff;
}
.checkout-pay-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.checkout-pay-label {
  font-family: var(--font-inter);
  font-size: 15px;
  font-weight: 600;
  color: #0a0a0a;
  line-height: 1.35;
  letter-spacing: -0.2px;
}
.checkout-pay-meta {
  font-family: var(--font-inter);
  font-size: 13px;
  color: #6b6b6b;
  line-height: 1.45;
}
.checkout-pay-empty {
  font-family: var(--font-inter);
  font-size: 14px;
  color: #6b6b6b;
  margin: 0;
}
.checkout-pay-chevron {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #9a9a9a;
  transition: transform 0.22s ease, color 0.18s ease;
  flex-shrink: 0;
}
.checkout-pay-method.is-selected .checkout-pay-chevron {
  transform: rotate(180deg);
  color: var(--red, #c8102e);
}

/* Accordion: gateway-specific fields revealed when its parent card is selected */
.checkout-pay-fields {
  max-height: 0;
  opacity: 0;
  overflow: visible;
  transition: max-height 0.32s ease, opacity 0.22s ease, margin 0.22s ease;
  margin: 0;
}
.checkout-pay-method.is-selected + .checkout-pay-fields {
  max-height: 1400px;
  opacity: 1;
  margin: 6px 0 2px;
}
.checkout-pay-fields-inner {
  position: relative;
  padding: 20px 22px 18px;
  border: 1.5px solid var(--red, #c8102e);
  border-radius: 14px;
  background: linear-gradient(180deg, #fffafa 0%, #fff 60%);
  box-shadow: 0 1px 3px rgba(200, 16, 46, 0.04);
}
.checkout-pay-fields-inner::before {
  content: '';
  position: absolute;
  top: -7px;
  left: 28px;
  width: 12px;
  height: 12px;
  background: #fffafa;
  border-left: 1.5px solid var(--red, #c8102e);
  border-top: 1.5px solid var(--red, #c8102e);
  transform: rotate(45deg);
}

/* Stripe-rendered card inputs */
.checkout-pay-fields #wc-stripe-upe-form,
.checkout-pay-fields .wc-upe-form {
  border: 0;
  padding: 0;
  margin: 0;
}
/* Hide Stripe's test-mode helper banner ("Test mode: use card 4242…"). */
.checkout-pay-fields .testmode-info,
.checkout-pay-fields p.testmode-info {
  display: none !important;
}
.checkout-pay-fields .wc-stripe-upe-element {
  margin-top: 0;
  padding: 4px 0;
}

/* ── ATM CARD FACE (Stripe panel skeuomorphic surface) ────────────────── */
.atm-card {
  position: relative;
  margin: 6px 0 14px;
  padding: 22px 24px 20px;
  border-radius: 18px;
  background:
    radial-gradient(140% 90% at 110% -20%, rgba(255, 90, 110, 0.22) 0%, transparent 55%),
    radial-gradient(120% 80% at -10% 110%, rgba(82, 90, 140, 0.4) 0%, transparent 60%),
    linear-gradient(135deg, #1a1d2e 0%, #232846 45%, #1a1d2e 100%);
  color: #f5f6fa;
  box-shadow:
    0 18px 40px -18px rgba(20, 22, 38, 0.6),
    0 4px 14px -4px rgba(20, 22, 38, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  overflow: hidden;
  aspect-ratio: auto;
  isolation: isolate;
}
.atm-card-shine {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.07) 45%, transparent 55%);
  z-index: 0;
}
.atm-card-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 18px;
}
.atm-card-chip {
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.4));
}
.atm-card-contactless {
  opacity: 0.85;
}
.atm-card-body {
  position: relative;
  z-index: 1;
}
.atm-card-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.atm-card-brand-label {
  font-family: var(--font-inter);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: rgba(245, 246, 250, 0.6);
}
.atm-card-networks {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.atm-net {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 22px;
  padding: 0 6px;
  border-radius: 4px;
  font-family: var(--font-inter);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.6px;
  background: #fff;
  color: #111;
}
.atm-net-visa {
  background: #fff;
  color: #1a1f71;
  font-style: italic;
  letter-spacing: 1.5px;
  padding: 0 8px;
}
.atm-net-amex {
  background: #2671c2;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.8px;
}
.atm-net-mc {
  width: 30px;
  height: 22px;
  background: #fff;
  position: relative;
  padding: 0;
}
.atm-net-mc span {
  position: absolute;
  top: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  transform: translateY(-50%);
}
.atm-net-mc span:first-child {
  left: 3px;
  background: #eb001b;
}
.atm-net-mc span:last-child {
  right: 3px;
  background: #f79e1b;
  mix-blend-mode: multiply;
}

/* When inside the ATM card, Stripe's mount-point sits on a white "input slab"
   for high contrast and readability against the dark card. */
.atm-card .wc-stripe-upe-element {
  background: #fff;
  border-radius: 10px;
  padding: 14px 16px;
  margin: 0;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.6),
    0 1px 2px rgba(0, 0, 0, 0.25);
}
.atm-card #wc-stripe-upe-errors {
  margin-top: 10px;
  color: #ffb4bd;
  font-family: var(--font-inter);
  font-size: 12.5px;
  line-height: 1.4;
}

/* Saved-cards radio + the "use a new payment method" row sit dark-on-card */
.atm-card .woocommerce-SavedPaymentMethods {
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
}
.atm-card .woocommerce-SavedPaymentMethods li {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #f5f6fa;
  border-radius: 10px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-inter);
  font-size: 13px;
}
.atm-card .woocommerce-SavedPaymentMethods li label {
  color: #212121;
  margin: 0;
}
.atm-card .woocommerce-SavedPaymentMethods input[type="radio"] {
  accent-color: #fff;
}

/* Mobile: tighten card padding */
@media (max-width: 600px) {
  .atm-card {
    padding: 18px 16px 16px;
    border-radius: 14px;
  }
  .atm-card-top {
    margin-bottom: 14px;
  }
}
.checkout-pay-fields p,
.checkout-pay-fields .form-row {
  margin: 0 0 12px;
}
.checkout-pay-fields p:last-child,
.checkout-pay-fields .form-row:last-child {
  margin-bottom: 0;
}
.checkout-pay-fields label {
  font-family: var(--font-inter);
  font-size: 13px;
  font-weight: 500;
  color: #4a4a4a;
  display: block;
  margin-bottom: 6px;
}
.checkout-pay-fields input[type="text"],
.checkout-pay-fields input[type="email"],
.checkout-pay-fields input[type="tel"] {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ebebeb;
  border-radius: 10px;
  background: #fff;
  font-family: var(--font-inter);
  font-size: 14px;
  color: #0a0a0a;
  box-sizing: border-box;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.checkout-pay-fields input:focus,
.checkout-pay-fields .StripeElement--focus {
  outline: none;
  border-color: var(--red, #c8102e);
  box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.08);
}

/* "Salva i dati di pagamento" row (Stripe save-card checkbox) */
.checkout-pay-fields fieldset:has(#wc-stripe-new-payment-method) {
  border: 0;
  padding: 0;
  margin: 14px 0 0;
}
.checkout-pay-fields .woocommerce-SavedPaymentMethods-saveNew,
.checkout-pay-fields p:has(#wc-stripe-new-payment-method) {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid #ebebeb;
  border-radius: 10px;
  font-family: var(--font-inter);
  font-size: 13.5px;
  color: #2a2a2a;
  font-weight: 500;
  cursor: pointer;
  box-sizing: border-box;
  transition: border-color 0.16s ease, background 0.16s ease;
}
.woocommerce-SavedPaymentMethods-saveNew::before{
display: none;
}
.checkout-pay-fields p:has(#wc-stripe-new-payment-method):hover {
  border-color: #d4d4d4;
  background: #fcfcfc;
}
.checkout-pay-fields p:has(#wc-stripe-new-payment-method:checked) {
  border-color: var(--red, #c8102e);
  background: #fffafa;
}

/* Custom-styled checkbox — overrides Stripe's inline style="width:auto;" */
.checkout-pay-fields input#wc-stripe-new-payment-method {
  appearance: none;
  -webkit-appearance: none;
  width: 20px !important;
  height: 20px !important;
  border: 1.5px solid #cfcfcf;
  border-radius: 5px;
  background: #fff;
  margin: 0;
  flex-shrink: 0;
  cursor: pointer;
  position: relative;
  transition: border-color 0.16s ease, background 0.16s ease;
}
.checkout-pay-fields input#wc-stripe-new-payment-method:hover {
  border-color: #999;
}
.checkout-pay-fields input#wc-stripe-new-payment-method:checked {
  background: var(--red, #c8102e);
  border-color: var(--red, #c8102e);
}
.checkout-pay-fields input#wc-stripe-new-payment-method:checked::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 1px;
  width: 6px;
  height: 11px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
}
.checkout-pay-fields input#wc-stripe-new-payment-method:focus-visible {
  outline: 2px solid rgba(200, 16, 46, 0.25);
  outline-offset: 2px;
}

/* Override Stripe's inline style="display:inline;" on the label */
.checkout-pay-fields label[for="wc-stripe-new-payment-method"] {
  display: flex !important;
  align-items: center;
  flex: 1;
  margin: 0;
  padding: 0;
  font-family: var(--font-inter);
  font-size: 13.5px;
  font-weight: 500;
  color: #2a2a2a;
  line-height: 1.4;
  cursor: pointer;
  /* Stop browser translate from underlining individual words */
  -webkit-text-decoration-skip: none;
}

/* Saved-cards radio list (returning customers) */
.checkout-pay-fields .woocommerce-SavedPaymentMethods {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.checkout-pay-fields .woocommerce-SavedPaymentMethods li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid #ebebeb;
  border-radius: 10px;
  background: #fff;
  font-family: var(--font-inter);
  font-size: 13px;
  color: #2a2a2a;
  cursor: pointer;
  transition: border-color 0.16s ease, background 0.16s ease;
}
.checkout-pay-fields .woocommerce-SavedPaymentMethods li:has(input:checked) {
  border-color: var(--red, #c8102e);
  background: #fffafa;
}
.checkout-pay-fields .woocommerce-SavedPaymentMethods input[type="radio"] {
  accent-color: var(--red, #c8102e);
}

/* Trust footer inside the Stripe panel */
.checkout-pay-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px dashed #f3c0c7;
  font-family: var(--font-inter);
  font-size: 12px;
  color: #777;
  line-height: 1.4;
}
.checkout-pay-trust svg {
  color: var(--red, #c8102e);
  flex-shrink: 0;
}
.checkout-pay-trust strong {
  color: #4a4a4a;
  font-weight: 600;
}

/* Inline login banner on /checkout/ */
.checkout-login-banner {
  margin-bottom: 24px;
  border: 1px solid #ebebeb;
  border-radius: 12px;
  background: #fafafa;
  overflow: hidden;
  transition: border-color 0.18s ease, background 0.18s ease;
}
.checkout-login-banner[open] {
  background: #fff;
  border-color: #e0e0e0;
}
.checkout-login-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.checkout-login-summary::-webkit-details-marker { display: none; }
.checkout-login-summary-text {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-inter);
  font-size: 14px;
  color: #4a4a4a;
  line-height: 1.45;
}
.checkout-login-summary-text strong {
  color: #0a0a0a;
  font-weight: 600;
  margin-right: 2px;
}
.checkout-login-summary-text svg {
  color: var(--red, #c8102e);
  flex-shrink: 0;
}
.checkout-login-toggle {
  font-family: var(--font-inter);
  font-size: 13px;
  font-weight: 600;
  color: var(--red, #c8102e);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.checkout-login-banner[open] .checkout-login-toggle::after {
  content: ' ▴';
}
.checkout-login-banner:not([open]) .checkout-login-toggle::after {
  content: ' ▾';
}
.checkout-login-form {
  padding: 0 18px 18px;
  border-top: 1px solid #ebebeb;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 16px;
}
.checkout-login-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.checkout-login-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.checkout-login-remember {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-inter);
  font-size: 13px;
  color: #4a4a4a;
  cursor: pointer;
}
.checkout-login-remember input { accent-color: var(--red, #c8102e); }
.checkout-login-lost {
  font-family: var(--font-inter);
  font-size: 13px;
  color: var(--red, #c8102e);
  text-decoration: none;
  font-weight: 500;
}
.checkout-login-lost:hover { text-decoration: underline; }
.checkout-login-submit {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--red, #c8102e);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: var(--font-inter);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s ease, transform 0.05s ease;
}
.checkout-login-submit:hover { background: #a80d26; }
.checkout-login-submit:active { transform: translateY(1px); }
.checkout-pay-flag {
  font-family: var(--font-inter);
  font-size: 12px;
  font-weight: 500;
  color: #999;
  line-height: 18px;
  padding: 4px 8px;
  background: #f7f7f7;
  border-radius: 4px;
}

.checkout-card-fields {
  margin-top: 24px;
  padding-top: 25px;
  border-top: 1px solid #ebebeb;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.checkout-card-fields[hidden] {
  display: none;
}

/* Checkout summary card */
.checkout-summary-items {
  padding-top: 24px;
  padding-bottom: 25px;
  border-bottom: 1px solid #ebebeb;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.checkout-summary-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.checkout-summary-thumb {
  width: 60px;
  height: 60px;
  border-radius: 6px;
  overflow: hidden;
  /* background: #f5f5f5; */
  flex-shrink: 0;
}
.checkout-summary-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
  display: block;
}
.checkout-summary-item-body {
  flex: 1;
  min-width: 0;
}
.checkout-summary-item-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.checkout-summary-item-name {
  font-family: var(--font-inter);
  font-size: 14px;
  font-weight: 500;
  color: #0d0d0d;
  line-height: 21px;
  letter-spacing: -0.1504px;
}
.checkout-summary-item-price {
  font-family: var(--font-inter);
  font-size: 14px;
  font-weight: 700;
  color: #0d0d0d;
  line-height: 21px;
}
.checkout-summary-item-qty {
  display: block;
  font-family: var(--font-inter);
  font-size: 12px;
  font-weight: 400;
  color: #999;
  line-height: 18px;
  padding-top: 4px;
}

.checkout-summary-totals {
  padding-top: 24px;
  padding-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.checkout-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.checkout-summary-label {
  font-family: var(--font-inter);
  font-size: 15px;
  font-weight: 400;
  color: #555;
  line-height: 22.5px;
  letter-spacing: -0.2344px;
}
.checkout-summary-value {
  font-family: var(--font-inter);
  font-size: 15px;
  font-weight: 500;
  color: #0d0d0d;
  line-height: 22.5px;
  letter-spacing: -0.2344px;
}
.checkout-summary-total-row {
  margin-top: 12px;
  padding-top: 13px;
  border-top: 1px solid #ebebeb;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.checkout-summary-total-label,
.checkout-summary-total-value {
  font-family: var(--font-inter);
  font-size: 18px;
  font-weight: 700;
  color: #0d0d0d;
  line-height: 27px;
  letter-spacing: -0.4395px;
}

.checkout-terms {
  margin: 16px 0 0;
  text-align: center;
  font-family: var(--font-inter);
  font-size: 12px;
  font-weight: 400;
  color: #999;
  line-height: 18px;
}
.checkout-terms-link {
  background: linear-gradient(180deg, #b32026 0%, #d63b3b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #b32026;
  text-decoration: underline;
  text-decoration-color: #b32026;
}

/* Cart + Checkout Responsive */
@media (max-width: 1199px) {
  .cart-container,
  .checkout-container {
    padding: 0 48px;
  }
  .cart-grid,
  .checkout-grid {
    grid-template-columns: 1fr 340px;
    gap: 32px;
  }
}

@media (max-width: 991px) {
  .cart-page,
  .checkout-page {
    padding: 32px 0 56px;
  }
  .cart-container,
  .checkout-container {
    padding: 0 32px;
  }
  .cart-title,
  .checkout-title {
    font-size: 32px;
    line-height: 1.4;
  }
  .cart-grid,
  .checkout-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .checkout-card {
    padding: 24px;
  }
}

@media (max-width: 640px) {
  .cart-container,
  .checkout-container {
    padding: 0 16px;
  }
  .cart-title,
  .checkout-title {
    font-size: 28px;
    line-height: 1.35;
  }

  .cart-item {
    flex-wrap: wrap;
    padding: 16px;
    gap: 16px;
  }
  .cart-item-image {
    width: 88px;
    height: 88px;
  }
  .cart-item-body {
    padding-right: 32px;
  }
  .cart-item-row {
    flex-wrap: wrap;
    gap: 12px;
  }
  .cart-item-name {
    font-size: 16px;
    line-height: 24px;
  }
  .cart-item-line-total {
    font-size: 18px;
    line-height: 27px;
  }

  .checkout-row-2,
  .checkout-row-3 {
    grid-template-columns: 1fr;
  }
  .checkout-card {
    padding: 20px;
  }
  .checkout-pay-method {
    padding: 14px;
    grid-template-columns: 20px 36px 1fr auto;
    gap: 12px;
  }
  .checkout-pay-icon {
    width: 36px;
    height: 36px;
  }
  .checkout-pay-suboption {
    grid-template-columns: 16px 30px 1fr;
    padding: 9px 11px;
  }
  .checkout-pay-sub-icon {
    width: 30px;
    height: 30px;
  }
  .checkout-login-grid {
    grid-template-columns: 1fr;
  }
  .checkout-login-submit {
    margin-left: 0;
    width: 100%;
    justify-content: center;
  }

  .cart-summary,
  .checkout-summary {
    padding: 20px;
  }
}

/* ── LEGAL DOCUMENT PAGE (Privacy, Terms, Returns) ───────────────────────── */
.legal-page {
  background: #fafafa;
  padding: 60px 0 100px;
}
.legal-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.legal-header {
  margin-bottom: 48px;
  padding-bottom: 36px;
  border-bottom: 1px solid #e8e8e8;
}
.legal-eyebrow {
  font-family: var(--font-poppins);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #999;
  margin: 0 0 12px;
}
.legal-title {
  font-family: var(--font-lora);
  font-size: 44px;
  line-height: 1.15;
  color: #0d0d0d;
  margin: 0 0 8px;
  font-weight: 700;
}
.legal-lede {
  font-family: var(--font-inter);
  font-size: 16px;
  color: #555;
  font-style: italic;
  margin: 0 0 32px;
}
.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-end;
  justify-content: space-between;
}
.legal-meta-block {
  font-family: var(--font-inter);
  font-size: 13px;
  line-height: 1.7;
  color: #555;
}
.legal-meta-block strong { color: #0d0d0d; font-weight: 600; }
.legal-meta-block--updated {
  text-align: right;
  background: #fff;
  border: 1px solid #ebebeb;
  border-radius: 10px;
  padding: 12px 18px;
}
.legal-meta-label {
  display: block;
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 4px;
}
.legal-meta-value {
  display: block;
  font-weight: 600;
  color: #0d0d0d;
  font-size: 14px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 64px;
  align-items: start;
}

.legal-toc {
  position: sticky;
  top: 96px;
  background: #fff;
  border: 1px solid #ebebeb;
  border-radius: 12px;
  padding: 22px 22px 18px;
}
.legal-toc-title {
  font-family: var(--font-poppins);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #0d0d0d;
  margin: 0 0 14px;
}
.legal-toc-list {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: legal-toc;
}
.legal-toc-list li {
  position: relative;
  padding: 6px 0;
  border-bottom: 1px dashed #f0f0f0;
}
.legal-toc-list li:last-child { border-bottom: none; }
.legal-toc-list a {
  font-family: var(--font-inter);
  font-size: 13px;
  line-height: 1.5;
  color: #555;
  text-decoration: none;
  transition: color 0.15s;
  display: block;
}
.legal-toc-list a:hover {
  color: var(--red, #c8102e);
}

.legal-content {
  background: #fff;
  border: 1px solid #ebebeb;
  border-radius: 14px;
  padding: 48px 56px;
  font-family: var(--font-inter);
  color: #2a2a2a;
  font-size: 15px;
  line-height: 1.75;
}
.legal-section + .legal-section {
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid #f0f0f0;
}
.legal-section-title {
  font-family: var(--font-lora);
  font-size: 26px;
  line-height: 1.25;
  font-weight: 700;
  color: #0d0d0d;
  margin: 0 0 18px;
  scroll-margin-top: 96px;
}
.legal-subsection-title {
  font-family: var(--font-inter);
  font-size: 15px;
  font-weight: 700;
  color: #0d0d0d;
  margin: 28px 0 12px;
  letter-spacing: 0.2px;
}
.legal-section p {
  margin: 0 0 14px;
}
.legal-section p:last-child { margin-bottom: 0; }
.legal-section a {
  color: var(--red, #c8102e);
  text-decoration: none;
  border-bottom: 1px solid rgba(200, 16, 46, 0.25);
  transition: border-color 0.15s;
}
.legal-section a:hover {
  border-bottom-color: var(--red, #c8102e);
}
.legal-list {
  margin: 0 0 16px;
  padding: 0 0 0 22px;
}
.legal-list li {
  margin-bottom: 8px;
  padding-left: 4px;
}
.legal-list li::marker {
  color: var(--red, #c8102e);
}
ol.legal-list {
  list-style: decimal;
}
ol.legal-list--ordered li::marker {
  font-weight: 700;
}

.legal-info-card,
.legal-callout {
  background: #fafafa;
  border-left: 3px solid var(--red, #c8102e);
  border-radius: 6px;
  padding: 16px 20px;
  margin: 16px 0 20px;
  font-size: 14px;
  line-height: 1.65;
}
.legal-info-card strong { color: #0d0d0d; }
.legal-callout strong { color: #0d0d0d; }

.legal-footer {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid #f0f0f0;
  font-size: 13px;
  color: #999;
  text-align: center;
}
.legal-footer p { margin: 0; }
.legal-footer strong { color: #555; }

@media (max-width: 991px) {
  .legal-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .legal-toc {
    position: static;
  }
  .legal-content {
    padding: 32px 28px;
  }
  .legal-title { font-size: 34px; }
  .legal-section-title { font-size: 22px; }
}
@media (max-width: 576px) {
  .legal-page { padding: 32px 0 60px; }
  .legal-container { padding: 0 16px; }
  .legal-meta {
    flex-direction: column;
    align-items: stretch;
  }
  .legal-meta-block--updated {
    text-align: left;
  }
  .legal-content {
    padding: 24px 20px;
  }
  .legal-title { font-size: 28px; }
}

/* ── AUTH PAGES (Login & Register) ─────────────────────────────────────── */
.auth-page {
  background: #fafafa;
  padding: 64px 0 96px;
  display: flex;
  justify-content: center;
}
.auth-container {
  width: 100%;
  max-width: 520px;
  padding: 0 24px;
}
.auth-card {
  background: #fff;
  border: 1px solid #ebebeb;
  border-radius: 14px;
  padding: 44px 40px 36px;
}
.auth-header {
  text-align: center;
  margin-bottom: 28px;
}
.auth-eyebrow {
  font-family: var(--font-poppins);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #999;
  margin: 0 0 8px;
}
.auth-title {
  font-family: var(--font-lora);
  font-size: 34px;
  line-height: 1.2;
  color: #0d0d0d;
  font-weight: 700;
  margin: 0 0 10px;
}
.auth-subtitle {
  font-family: var(--font-inter);
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  margin: 0;
}
.auth-notices {
  position: relative;
  background: #fff5f6;
  border: 1px solid #f3c0c7;
  border-left: 3px solid var(--red, #c8102e);
  color: #6a0a18;
  border-radius: 10px;
  padding: 14px 16px 14px 48px;
  margin-bottom: 22px;
  font-family: var(--font-inter);
  font-size: 13px;
  line-height: 1.55;
  box-shadow: 0 1px 2px rgba(200, 16, 46, 0.05);
}
.auth-notices::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 14px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--red, #c8102e);
  box-shadow: 0 0 0 4px rgba(200, 16, 46, 0.12);
}
.auth-notices::after {
  content: '!';
  position: absolute;
  left: 16px;
  top: 14px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-inter);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}
.auth-notices > ul,
.auth-notices ul.woocommerce-error {
  list-style: none;
  margin: 0;
  padding: 0;
  background: transparent;
  border: none;
}
.auth-notices ul.woocommerce-error li {
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
}
.auth-notices ul li + li { margin-top: 8px; padding-top: 8px; border-top: 1px solid rgba(200, 16, 46, 0.18); }
.auth-notices p { margin: 0; }
.auth-notices p + p { margin-top: 8px; padding-top: 8px; border-top: 1px solid rgba(200, 16, 46, 0.18); }
.auth-notices strong { color: #4a0710; font-weight: 700; }
.auth-notices a {
  color: var(--red, #c8102e);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.auth-notices a:hover { color: #8a0e22; }
.auth-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.auth-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.auth-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.auth-label {
  font-family: var(--font-inter);
  font-size: 13px;
  font-weight: 600;
  color: #2a2a2a;
  letter-spacing: 0.1px;
}
.auth-input {
  font-family: var(--font-inter);
  font-size: 14px;
  color: #0d0d0d;
  background: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  padding: 12px 14px;
  height: 44px;
  transition: border-color 0.15s, box-shadow 0.15s;
  width: 100%;
}
.auth-input:focus {
  outline: none;
  border-color: var(--red, #c8102e);
  box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.12);
}
.auth-hint {
  font-family: var(--font-inter);
  font-size: 12px;
  color: #999;
}
.auth-row-inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: -4px;
  flex-wrap: wrap;
}
.auth-check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-inter);
  font-size: 13px;
  color: #444;
  cursor: pointer;
}
.auth-check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--red, #c8102e);
  cursor: pointer;
  margin: 0;
}
.auth-check-block {
  align-items: flex-start;
  line-height: 1.5;
}
.auth-check-block input[type="checkbox"] {
  margin-top: 2px;
}
.auth-link {
  color: var(--red, #c8102e);
  text-decoration: none;
  font-size: 13px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s;
}
.auth-link:hover {
  border-bottom-color: var(--red, #c8102e);
}
.auth-link-strong {
  font-weight: 600;
}
.auth-btn-primary {
margin-top: 6px;
padding: 10px 18px;
background: var(--red, #c8102e);
color: #fff;
border: none;
border-radius: 7px;
height: auto;
font-family: var(--font-inter);
font-size: 15px;
font-weight: 600;
letter-spacing: 0.2px;
display: inline-flex;
align-items: center;
justify-content: center;
gap: 10px;
cursor: pointer;
transition: background 0.15s, transform 0.1s;
}
.auth-btn-primary:hover { background: #a90d27; }
.auth-btn-primary:active { transform: translateY(1px); }
.auth-foot {
  margin: 24px 0 0;
  text-align: center;
  font-family: var(--font-inter);
  font-size: 14px;
  color: #555;
}
@media (max-width: 576px) {
  .auth-page { padding: 32px 0 60px; }
  .auth-card { padding: 32px 22px 28px; }
  .auth-title { font-size: 28px; }
  .auth-row-2 { grid-template-columns: 1fr; }
}

/* ── MY ACCOUNT (WC) ──────────────────────────────────────────────────── */
/* Hide the raw WC "My account" heading from theme/WC; we render our own. */
.anuka-account ~ .woocommerce-message,
.anuka-account ~ .woocommerce-error { display: none; }

.anuka-account {
  max-width: 1180px;
  margin: 0 auto;
  padding: 60px 24px 100px;
  font-family: var(--font-inter);
  color: #2a2a2a;
}
.anuka-account-header {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid #ebebeb;
}
.anuka-account-eyebrow {
  font-family: var(--font-poppins);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #999;
  margin: 0 0 8px;
}
.anuka-account-title {
  font-family: var(--font-lora);
  font-size: 38px;
  line-height: 1.2;
  font-weight: 700;
  color: #0d0d0d;
  margin: 0 0 6px;
}
.anuka-account-subtitle {
  font-family: var(--font-inter);
  font-size: 14px;
  color: #666;
  margin: 0;
}
.anuka-account-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 32px;
  align-items: start;
}

/* Sidebar (woocommerce_account_navigation) */
.anuka-account-sidebar {
  background: #fff;
  border: 1px solid #ebebeb;
  border-radius: 12px;
  padding: 12px 0;
  position: sticky;
  top: 96px;
}
.anuka-account-sidebar nav.woocommerce-MyAccount-navigation ul,
.anuka-account-sidebar .woocommerce-MyAccount-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.anuka-account-sidebar .woocommerce-MyAccount-navigation li {
  margin: 0;
}
.anuka-account-sidebar .woocommerce-MyAccount-navigation li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 500;
  color: #2a2a2a;
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.anuka-account-sidebar .woocommerce-MyAccount-navigation li a:hover {
  background: #fafafa;
  color: var(--red, #c8102e);
}
.anuka-account-sidebar .woocommerce-MyAccount-navigation li.is-active a,
.anuka-account-sidebar .woocommerce-MyAccount-navigation li.woocommerce-MyAccount-navigation-link--dashboard.is-active a {
  background: #fafafa;
  color: var(--red, #c8102e);
  border-left-color: var(--red, #c8102e);
  font-weight: 600;
}

/* Main content card */
.anuka-account-main {
  background: #fff;
  border: 1px solid #ebebeb;
  border-radius: 12px;
  padding: 18px;
  min-height: 320px;
}
.anuka-account-main .woocommerce-MyAccount-content {
  font-size: 14px;
  line-height: 1.65;
  color: #444;
}
.anuka-account-main p { margin: 0 0 14px; }
.anuka-account-main p:last-child { margin-bottom: 0; }
.anuka-account-main strong { color: #0d0d0d; }
.anuka-account-main a {
  color: var(--red, #c8102e);
  text-decoration: none;
  border-bottom: 1px solid rgba(200, 16, 46, 0.25);
  transition: border-color 0.15s;
}
.anuka-account-main a:hover { border-bottom-color: var(--red, #c8102e); }

.anuka-account-main h2,
.anuka-account-main h3 {
  font-family: var(--font-lora);
  color: #0d0d0d;
  font-weight: 700;
  margin: 0 0 16px;
}
.anuka-account-main h2 { font-size: 22px; }
.anuka-account-main h3 { font-size: 18px; margin-top: 28px; }

/* Dashboard quick links */
.anuka-account-main .woocommerce-MyAccount-content > p:first-child {
  font-size: 15px;
  color: #2a2a2a;
}

/* Orders / addresses / etc. tables */
.anuka-account-main table.woocommerce-orders-table,
.anuka-account-main table.woocommerce-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 18px;
  font-size: 13.5px;
}
.anuka-account-main table.woocommerce-orders-table th,
.anuka-account-main table.woocommerce-table th {
  text-align: left;
  background: #fafafa;
  color: #0d0d0d;
  font-weight: 600;
  letter-spacing: 0.3px;
  padding: 12px 14px;
  border-bottom: 1px solid #ebebeb;
}
.anuka-account-main table.woocommerce-orders-table td,
.anuka-account-main table.woocommerce-table td {
  padding: 14px;
  border-bottom: 1px solid #f1f1f1;
  vertical-align: middle;
}
.anuka-account-main table.woocommerce-orders-table tbody tr:hover {
  background: #fcfcfc;
}

/* Buttons inside content */
.anuka-account-main .button,
.anuka-account-main button[type="submit"],
.anuka-account-main .woocommerce-Button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--red, #c8102e);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 18px;
  font-family: var(--font-inter);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.2px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, transform 0.1s;
}
.anuka-account-main .button:hover,
.anuka-account-main button[type="submit"]:hover {
  background: #a90d27;
  color: #fff;
  border-bottom-color: transparent;
}
.anuka-account-main .button:active,
.anuka-account-main button[type="submit"]:active { transform: translateY(1px); }
.anuka-account-main .button.view {
  background: transparent;
  color: var(--red, #c8102e);
  border: 1px solid var(--red, #c8102e);
}
.anuka-account-main .button.view:hover {
  background: var(--red, #c8102e);
  color: #fff;
}

/* Address grid (woocommerce_my_account_my_address) */
.anuka-account-main .woocommerce-Addresses,
.anuka-account-main .u-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 0;
}
.anuka-account-main .woocommerce-Address,
.anuka-account-main .woocommerce-Addresses .col-1,
.anuka-account-main .woocommerce-Addresses .col-2 {
  background: #fafafa;
  border: 1px solid #ebebeb;
  border-radius: 10px;
  padding: 22px;
  width: 100%;
}
.anuka-account-main .woocommerce-Address-title h2,
.anuka-account-main .woocommerce-Address-title h3 {
  font-size: 16px;
  font-family: var(--font-inter);
  font-weight: 700;
  margin: 0 0 12px;
}
.anuka-account-main .woocommerce-Address-title .edit {
  font-size: 12px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}
.anuka-account-main address {
  font-style: normal;
  color: #444;
  line-height: 1.7;
  font-size: 13.5px;
}

/* Account-details / address edit form */
.anuka-account-main form .woocommerce-form-row,
.anuka-account-main form p.form-row {
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.anuka-account-main form label {
  font-size: 13px;
  font-weight: 600;
  color: #2a2a2a;
  margin: 0;
}
.anuka-account-main form input[type="text"],
.anuka-account-main form input[type="email"],
.anuka-account-main form input[type="tel"],
.anuka-account-main form input[type="password"],
.anuka-account-main form input[type="number"],
.anuka-account-main form select,
.anuka-account-main form textarea,
.anuka-account-main .select2-container--default .select2-selection--single {
  font-family: var(--font-inter);
  font-size: 14px;
  color: #0d0d0d;
  background: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  padding: 12px 14px;
  height: 44px;
  width: 100%;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.anuka-account-main form textarea { height: auto; min-height: 100px; }
.anuka-account-main form input:focus,
.anuka-account-main form select:focus,
.anuka-account-main form textarea:focus {
  outline: none;
  border-color: var(--red, #c8102e);
  box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.12);
}
.anuka-account-main form .form-row-first,
.anuka-account-main form .form-row-last {
  flex: 1;
  min-width: 0;
}
.anuka-account-main form fieldset {
  border: 1px solid #ebebeb;
  border-radius: 10px;
  padding: 18px 20px;
  margin: 24px 0;
}
.anuka-account-main form fieldset legend {
  font-weight: 700;
  color: #0d0d0d;
  padding: 0 8px;
  font-size: 14px;
}

/* WC notices inside the content area */
.anuka-account-main .woocommerce-message,
.anuka-account-main .woocommerce-info,
.anuka-account-main .woocommerce-error,
.anuka-account-main .woocommerce-notice {
  background: #fafafa;
  border-left: 3px solid var(--red, #c8102e);
  padding: 12px 16px;
  border-radius: 6px;
  margin: 0 0 18px;
  font-size: 13.5px;
  line-height: 1.55;
  list-style: none;
}
.anuka-account-main .woocommerce-message {
  background: #ecf8ee;
  border-left-color: #2f9e44;
}
.anuka-account-main .woocommerce-error {
  background: #fdecee;
  border-left-color: #c8102e;
}

/* Empty state (orders, downloads, etc.) */
.anuka-account-main .anuka-empty-state {
  text-align: center;
  padding: 48px 24px 36px;
  border: 1px dashed #e4e4e4;
  border-radius: 12px;
  background: #fafafa;
}
.anuka-account-main .anuka-empty-icon {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #ebebeb;
  color: var(--red, #c8102e);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}
.anuka-account-main .anuka-empty-title {
  font-family: var(--font-lora);
  font-size: 22px;
  line-height: 1.3;
  color: #0d0d0d;
  font-weight: 700;
  margin: 0 0 10px;
}
.anuka-account-main .anuka-empty-text {
  font-family: var(--font-inter);
  font-size: 14px;
  line-height: 1.65;
  color: #666;
  max-width: 440px;
  margin: 0 auto 24px;
}
.anuka-account-main .anuka-empty-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red, #c8102e);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 12px 22px;
  font-family: var(--font-inter);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2px;
  text-decoration: none;
  border-bottom: none;
  transition: background 0.15s, transform 0.1s;
}
.anuka-account-main .anuka-empty-cta:hover {
  background: #a90d27;
  color: #fff;
  border-bottom: none;
}
.anuka-account-main .anuka-empty-cta:active {
  transform: translateY(1px);
}

/* Pagination */
.anuka-account-main .woocommerce-pagination ul {
  list-style: none;
  display: flex;
  gap: 6px;
  padding: 0;
  margin: 16px 0 0;
}
.anuka-account-main .woocommerce-pagination li a,
.anuka-account-main .woocommerce-pagination li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  padding: 0 10px;
  border-radius: 6px;
  border: 1px solid #ebebeb;
  color: #444;
  text-decoration: none;
  border-bottom: 1px solid #ebebeb;
}
.anuka-account-main .woocommerce-pagination li .current,
.anuka-account-main .woocommerce-pagination li a:hover {
  background: var(--red, #c8102e);
  color: #fff;
  border-color: var(--red, #c8102e);
}

@media (max-width: 991px) {
  .anuka-account-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .anuka-account-sidebar { position: static; }
  .anuka-account-main { padding: 28px 24px; }
  .anuka-account-main .woocommerce-Addresses,
  .anuka-account-main .u-columns { grid-template-columns: 1fr; }
}
@media (max-width: 576px) {
  .anuka-account { padding: 32px 16px 60px; }
  .anuka-account-title { font-size: 28px; }
  .anuka-account-main { padding: 22px 18px; }
  .anuka-account-main table.woocommerce-orders-table,
  .anuka-account-main table.woocommerce-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}
.woocommerce-account .woocommerce-MyAccount-navigation {
    width: 100% !important;
}
.auth-notices .woocommerce-error::before,
.auth-notices .woocommerce-info::before,
.auth-notices .woocommerce-message::before,
.auth-notices .woocommerce-NoticeGroup::before,
.auth-notices .woocommerce-notices-wrapper::before {
    display: none !important;
    content: none !important;
}
.auth-notices .woocommerce-notices-wrapper,
.auth-notices .woocommerce-NoticeGroup,
.auth-notices .woocommerce-info,
.auth-notices .woocommerce-message,
.auth-notices .woocommerce-error {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
    color: #6a0a18 !important;
    list-style: none !important;
}
.auth-notices .woocommerce-error li,
.auth-notices .woocommerce-info li,
.auth-notices .woocommerce-message li {
    background: transparent !important;
    border: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    color: #6a0a18 !important;
    font-family: var(--font-inter);
    font-size: 13px;
    line-height: 1.55;
}
.auth-notices .woocommerce-error li::before,
.auth-notices .woocommerce-info li::before,
.auth-notices .woocommerce-message li::before {
    display: none !important;
    content: none !important;
}
.auth-notices .button,
.auth-notices a.button {
    background: none !important;
    border: 0 !important;
    padding: 0 !important;
    color: var(--red, #c8102e) !important;
    text-decoration: underline !important;
    font-weight: 600 !important;
    font-size: 13px !important;
}

/* Checkout-specific spacing tweak — give the notice some breathing room
   from the header trust line above and the form below. */
.checkout-notices {
    margin: 12px 0 22px;
}

/* ── ORDER CONFIRMATION (Thank you / Failed) ───────────────────────────── */
.anuka-order {
  background: #fafafa;
  padding: 60px 0 100px;
  display: flex;
  justify-content: center;
}
.anuka-order-container {
  width: 100%;
  max-width: 760px;
  padding: 0 24px;
}
.anuka-order-card {
  background: #fff;
  border: 1px solid #ebebeb;
  border-radius: 16px;
  padding: 56px 48px 44px;
  text-align: center;
  position: relative;
  box-shadow: 0 1px 2px rgba(0,0,0,0.02);
}
.anuka-order-icon {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  color: #fff;
  position: relative;
}
.anuka-order-icon::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  z-index: -1;
}
.anuka-order-icon--success { background: #2f9e44; }
.anuka-order-icon--success::after { background: rgba(47, 158, 68, 0.12); }
.anuka-order-icon--failed { background: var(--red, #c8102e); }
.anuka-order-icon--failed::after { background: rgba(200, 16, 46, 0.12); }
.anuka-order-eyebrow {
  font-family: var(--font-poppins);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #999;
  margin: 0 0 10px;
}
.anuka-order-card--success .anuka-order-eyebrow { color: #2f9e44; }
.anuka-order-card--failed .anuka-order-eyebrow { color: var(--red, #c8102e); }
.anuka-order-title {
  font-family: var(--font-lora);
  font-size: 36px;
  line-height: 1.2;
  font-weight: 700;
  color: #0d0d0d;
  margin: 0 0 14px;
}
.anuka-order-subtitle {
  font-family: var(--font-inter);
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  max-width: 520px;
  margin: 0 auto 32px;
}
.anuka-order-subtitle strong { color: #0d0d0d; }
.anuka-order-overview {
  list-style: none;
  padding: 0;
  margin: 0 auto 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  background: #fafafa;
  border: 1px solid #ebebeb;
  border-radius: 12px;
  overflow: hidden;
  text-align: left;
}
.anuka-order-overview li {
  padding: 16px 20px;
  border-right: 1px solid #ebebeb;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.anuka-order-overview li:last-child { border-right: none; }
.anuka-order-overview-label {
  font-family: var(--font-inter);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #999;
}
.anuka-order-overview-value {
  font-family: var(--font-inter);
  font-size: 15px;
  font-weight: 700;
  color: #0d0d0d;
  line-height: 1.3;
}
.anuka-order-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 12px;
}
.anuka-order-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 10px;
  padding: 13px 22px;
  font-family: var(--font-inter);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, transform 0.1s, border-color 0.15s;
}
.anuka-order-btn--primary { background: var(--red, #c8102e); color: #fff; }
.anuka-order-btn--primary:hover { background: #a90d27; color: #fff; }
.anuka-order-btn--ghost { background: #fff; color: #0d0d0d; border-color: #d9d9d9; }
.anuka-order-btn--ghost:hover { border-color: #0d0d0d; color: #0d0d0d; }
.anuka-order-btn:active { transform: translateY(1px); }
.anuka-order-help {
  font-family: var(--font-inter);
  font-size: 13px;
  color: #777;
  margin: 22px 0 0;
}
.anuka-order-help a {
  color: var(--red, #c8102e);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(200, 16, 46, 0.3);
}
.anuka-order-help a:hover { border-bottom-color: var(--red, #c8102e); }
/* Order details (item list + addresses below the card) */
.anuka-order-details {
  margin-top: 36px;
  background: #fff;
  border: 1px solid #ebebeb;
  border-radius: 16px;
  padding: 36px 40px;
  font-family: var(--font-inter);
  color: #2a2a2a;
}
.anuka-order-details h2,
.anuka-order-details h3 {
  font-family: var(--font-lora);
  color: #0d0d0d;
  font-weight: 700;
  margin: 0 0 18px;
}
.anuka-order-details h2 { font-size: 22px; }
.anuka-order-details h3 { font-size: 17px; margin-top: 28px; }
.anuka-order-details table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.anuka-order-details table th,
.anuka-order-details table td {
  padding: 12px 14px;
  border-bottom: 1px solid #f1f1f1;
  text-align: left;
  vertical-align: top;
}
.anuka-order-details table th {
  background: #fafafa;
  font-weight: 600;
  color: #0d0d0d;
  font-size: 12px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}
.anuka-order-details table tfoot th,
.anuka-order-details table tfoot td {
  border-bottom: none;
  background: transparent;
}
.anuka-order-details a {
  color: var(--red, #c8102e);
  text-decoration: none;
  border-bottom: 1px solid rgba(200, 16, 46, 0.25);
}
.anuka-order-details a:hover { border-bottom-color: var(--red, #c8102e); }
.anuka-order-details address {
  font-style: normal;
  line-height: 1.7;
  font-size: 14px;
  color: #444;
  background: #fafafa;
  border: 1px solid #ebebeb;
  border-radius: 10px;
  padding: 18px 20px;
}
.anuka-order-details .col2-set,
.anuka-order-details .woocommerce-customer-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.anuka-order-details .woocommerce-customer-details .col-1,
.anuka-order-details .woocommerce-customer-details .col-2 {
  width: 100%;
}
@media (max-width: 768px) {
  .anuka-order { padding: 36px 0 60px; }
  .anuka-order-card { padding: 40px 24px 30px; }
  .anuka-order-title { font-size: 28px; }
  .anuka-order-overview { grid-template-columns: 1fr 1fr; }
  .anuka-order-overview li {
    border-right: none;
    border-bottom: 1px solid #ebebeb;
  }
  .anuka-order-overview li:nth-last-child(-n+2) { border-bottom: none; }
  .anuka-order-details { padding: 28px 22px; }
  .anuka-order-details .col2-set,
  .anuka-order-details .woocommerce-customer-details {
    grid-template-columns: 1fr;
  }
  .anuka-order-actions { flex-direction: column; align-items: stretch; }
  .anuka-order-btn { width: 100%; }
}

/* ──────────────────────────────────────────────────────────────────────────
   GLOBAL RESPONSIVE SWEEP
   Fills gaps left by the original page-specific media queries. Breakpoints
   roughly track Bootstrap 5: xl=1200, lg=992, md=768, sm=576, xs=≤480.
   ────────────────────────────────────────────────────────────────────────── */

/* Tablets / small laptops — 1200px down */
@media (max-width: 1199.98px) {
  .legal-container,
  .auth-container,
  .anuka-account,
  .pd-container {
    max-width: 100%;
  }
  .anuka-account-layout { gap: 24px; }
  .anuka-account-sidebar { top: 88px; }
}

/* Tablets — 992px down */
@media (max-width: 991.98px) {
  /* Auth pages — slightly tighter card */
  .auth-card { padding: 36px 28px 30px; }

  /* Checkout — collapse to single column already handled, tighten the
     inline-login banner so its label+button row stacks cleanly. */
  .checkout-login-summary { flex-wrap: wrap; gap: 8px; }
  .checkout-login-summary-text { font-size: 13.5px; }

  /* ATM card — already responsive, but cap its width on landscape phones */
  .atm-card { max-width: 100%; }

  /* My-account — sidebar becomes a row of pills */
  .anuka-account-sidebar nav.woocommerce-MyAccount-navigation ul,
  .anuka-account-sidebar .woocommerce-MyAccount-navigation ul {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 6px;
  }
  .anuka-account-sidebar nav.woocommerce-MyAccount-navigation li a {
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 13px;
  }

  /* PDP — tighten action buttons row */
  .pd-actions { gap: 10px; }

  /* Order confirmation — overview goes 2-col earlier */
  .anuka-order-overview { grid-template-columns: 1fr 1fr; }
}

/* Phones — 768px down */
@media (max-width: 767.98px) {
  /* PDP related grid 2-col → 1.5 col feel */
  .pd-related-grid { gap: 16px; }
  .pd-related-card { padding: 12px; }

  /* Auth pages — full-width subtitle, smaller eyebrow */
  .auth-subtitle { font-size: 13px; }
  .auth-eyebrow { letter-spacing: 1.6px; }

  /* Checkout login banner — stack summary vertically */
  .checkout-login-summary {
    flex-direction: column;
    align-items: flex-start;
  }
  .checkout-login-toggle { font-size: 12px; }

  /* Payment method radio cards — drop the chevron at this size,
     keep tap target large */
  .checkout-pay-method { gap: 10px; }
  .checkout-pay-chevron { display: none; }
  .checkout-pay-label { font-size: 14px; }
  .checkout-pay-meta { font-size: 12px; }

  /* ATM card — chip + contactless row gets tighter */
  .atm-card { padding: 18px 18px 16px; }
  .atm-card-top { margin-bottom: 16px; }
  .atm-card-chip svg { width: 36px; height: 27px; }
  .atm-card-contactless svg { width: 22px; height: 22px; }
  .atm-card-bottom { flex-wrap: wrap; gap: 10px; }
  .atm-card-brand-label { font-size: 9.5px; letter-spacing: 1.4px; }

  /* Stripe input slab — slightly tighter padding */
  .atm-card .wc-stripe-upe-element { padding: 12px 14px; }

  /* Stripe panel inner — pull arrow tab closer to the parent card edge */
  .checkout-pay-fields-inner { padding: 16px 16px 14px; }

  /* Trust footer inside the pay panel — wrap nicely */
  .checkout-pay-trust { flex-wrap: wrap; }

  /* My-account — content card tighter */
  .anuka-account-main { padding: 24px 18px; }

  /* PDP — gallery thumbs smaller */
  .pd-thumbs { gap: 8px; }
}

/* Small phones — 576px down */
@media (max-width: 575.98px) {
  /* Headings scale down */
  .auth-title { font-size: 26px; }
  .checkout-title,
  .cart-title { font-size: 26px; line-height: 1.3; }
  .anuka-account-title { font-size: 26px; }
  .anuka-order-title { font-size: 24px; }
  .pd-title { font-size: 24px; }
  .pd-price { font-size: 24px; }

  /* Auth card — edge-to-edge feel with a small gutter */
  .auth-container { padding: 0 12px; }
  .auth-card {
    padding: 28px 18px 24px;
    border-radius: 10px;
  }

  /* Checkout — fields stack, smaller spacing */
  .checkout-card { padding: 18px; }
  .checkout-form { gap: 14px; }
  .checkout-label { font-size: 12.5px; }
  .checkout-input { padding: 11px 13px; font-size: 13.5px; }
  .checkout-row,
  .checkout-row-2,
  .checkout-row-3 { gap: 12px; }

  /* Cart-page summary spacing */
  .cart-summary,
  .checkout-summary { padding: 18px; }

  /* Place-order button & login banner buttons — full width */
  .checkout-btn-primary,
  .checkout-login-submit { width: 100%; justify-content: center; }

  /* PDP actions — full-width primary CTA */
  .pd-btn { padding: 12px 18px; font-size: 14px; }

  /* Anuka order confirmation overview — single column */
  .anuka-order-overview { grid-template-columns: 1fr; }
  .anuka-order-overview li:nth-last-child(-n+2) { border-bottom: 1px solid #ebebeb; }
  .anuka-order-overview li:last-child { border-bottom: none; }

  /* My-account sidebar pills — wrap to 2 per row */
  .anuka-account-sidebar nav.woocommerce-MyAccount-navigation li a {
    padding: 8px 10px;
    font-size: 12.5px;
  }

  /* Save-payment row inside Stripe — tighter padding */
  .checkout-pay-fields p:has(#wc-stripe-new-payment-method) {
    padding: 12px 14px;
    font-size: 13px;
  }
}

/* Very small phones — 380px down (iPhone SE 1st gen, low-end Android) */
@media (max-width: 379.98px) {
  .checkout-pay-method {
    grid-template-columns: 18px 32px 1fr;
    padding: 12px;
  }
  .checkout-pay-icon { width: 32px; height: 32px; }
  .checkout-pay-method[data-method="stripe"] .checkout-pay-icon svg { width: 30px; }
  .checkout-pay-label { font-size: 13.5px; }
  .checkout-pay-meta { font-size: 11.5px; }

  .atm-card { padding: 16px 14px 14px; border-radius: 12px; }
  .atm-card-body { font-size: 13px; }
  .atm-net { height: 18px; font-size: 9px; padding: 0 5px; }
  .atm-net-mc { width: 26px; height: 18px; }
  .atm-net-mc span { width: 11px; height: 11px; }

  .auth-card { padding: 24px 16px 20px; border-radius: 8px; }
  .auth-title { font-size: 22px; }
  .auth-btn-primary { padding: 12px 16px; }

  .checkout-title,
  .cart-title { font-size: 22px; }

  .anuka-account { padding: 24px 12px 48px; }
  .anuka-account-main { padding: 20px 14px; }
  .anuka-order-card { padding: 28px 16px 22px; }
  .anuka-order-title { font-size: 20px; }

  /* PDP — keep image readable but tighten chrome */
  .pd-container { padding: 0 12px; }
  .pd-title { font-size: 22px; }
  .pd-thumb { width: 64px; height: 64px; }
}

/* Landscape phone orientation — short viewport */
@media (max-height: 480px) and (orientation: landscape) {
  .anuka-account-sidebar { position: static; }
  .hero { min-height: auto; }
}

/* ──────────────────────────────────────────────────────────────────────────
   GLOBAL — Bootstrap gutter overflow fix on mobile
   Bootstrap 5 .row with g-4/g-5 uses margin-inline: -12px to -24px.
   The .container only compensates with 12px padding. On mobile the 12-24px
   overflow causes the left content edge to be clipped by the viewport or a
   parent with overflow-x:hidden. Fix: neutralise the row's negative margin
   inside sections that use large gutters, and ensure the hero's overflow
   doesn't clip columns.
   ────────────────────────────────────────────────────────────────────────── */
@media (max-width: 767.98px) {
  /* Hero — overflow:hidden was clipping the row's negative gutter margin */
  .hero {
    overflow-x: visible;
    overflow-y: hidden;
  }
  .hero > .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .hero .col-lg-5,
  .hero .col-md-6 {
    padding-left: 4px;
    padding-right: 4px;
  }
  .hero h1 {
    font-size: 30px;
  }
  .hero p.hero-desc,
  .hero-sub {
    max-width: 100%;
  }
  .hero .d-flex.gap-3 {
    gap: 10px !important;
  }
  .btn-red,
  .btn-outline-red-sm {
    font-size: 13px;
    padding: 10px 16px;
  }

  /* chi-siamo / tech-section — g-5 row overflows container on mobile */
  .tech-section > .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .tech-section .row.g-5 {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 2rem;
  }
  .tech-body {
    max-width: 100%;
  }
}

/* ──────────────────────────────────────────────────────────────────────────
   #SISTEMA — mobile redesign
   Desktop: 3-col left panel + 9-col slider side by side.
   Mobile: heading row (title left, arrows right) → subtitle → CTA →
   full-bleed slider with larger cards (show ~1.5 for swipe affordance).
   ────────────────────────────────────────────────────────────────────────── */
@media (max-width: 767.98px) {
  .sistema-section {
    padding: 40px 0 48px;
  }

  /* Row: remove g-4 vertical gap, stack cleanly */
  .sistema-section .row.g-4 {
    --bs-gutter-x: 0;
    --bs-gutter-y: 0;
    flex-direction: column;
  }

  /* Left panel — full width, no bottom gap before slider */
  .sistema-section .col-12.col-md-3 {
    width: 100%;
    padding: 0 20px;
    margin-bottom: 20px;
  }

  /* Title row: heading takes all space, controls pushed right */
  .sistema-section .col-12.col-md-3 {
    display: flex;
    flex-direction: column;
  }

  /* Put heading + controls in a flex row */
  .sistema-section .sec-title {
    display: block;
    font-size: 26px !important;
    line-height: 1.15 !important;
    margin-bottom: 0;
  }

  .slider-controls {
    margin-top: 16px;
    justify-content: flex-start;
  }

  /* Subtitle */
  .sistema-section .sec-sub {
    font-size: 13px;
    margin-top: 10px !important;
    margin-bottom: 0 !important;
    line-height: 1.55;
    color: #c8102e;
    max-width: 100%;
  }

  /* CTA button */
  .sistema-section .btn-red {
    margin-top: 14px !important;
    font-size: 11px !important;
    letter-spacing: 1.5px;
    display: inline-flex !important;
    align-items: center;
    width: auto;
  }

  /* Slider column — full width, no side padding (wrap handles it) */
  .sistema-section .col-12.col-md-9 {
    width: 100%;
    padding: 0;
  }

  /* Wrap: clip so cards don't bleed out both sides; left padding starts
     the first card flush with the section's text content */
  .sistema-slider-wrap {
    overflow: hidden;
    padding-left: 20px;
  }

  /* Track: give right padding so the next card peeks at the right edge */
  .sistema-track {
    gap: 12px;
    padding: 6px 40px 12px 0;
  }

  /* Cards: wider on mobile — aim for ~1.5 visible cards (swipe affordance) */
  .sistema-card-link,
  .sistema-card {
    min-width: calc(55vw) !important;
    max-width: calc(55vw) !important;
  }

  .sistema-card .img-box {
    height: 200px;
  }

  .sistema-card .prod-name {
    font-size: 13.5px;
  }

  .sistema-card .prod-type {
    font-size: 11.5px;
  }
}

/* ──────────────────────────────────────────────────────────────────────────
   MY-ACCOUNT NAV — pill row treatment on mobile
   The vertical sidebar uses border-left for the active marker; on mobile we
   switch to a flat pill with red background tint so the active item reads
   as a button, not as a row with a stray left bar.
   ────────────────────────────────────────────────────────────────────────── */
@media (max-width: 991.98px) {
  .anuka-account-sidebar .woocommerce-MyAccount-navigation li a {
    border-left: 0 !important;
    border-radius: 8px;
    background: #fafafa;
    color: #2a2a2a;
    padding: 8px 14px !important;
    font-size: 13px;
  }
  .anuka-account-sidebar .woocommerce-MyAccount-navigation li.is-active a,
  .anuka-account-sidebar .woocommerce-MyAccount-navigation li.woocommerce-MyAccount-navigation-link--dashboard.is-active a {
    border-left: 0 !important;
    background: var(--red, #c8102e) !important;
    color: #fff !important;
  }
}

/* ──────────────────────────────────────────────────────────────────────────
   MY-ACCOUNT ORDERS TABLE — card layout on mobile
   WC's woocommerce-smallscreen.css turns the orders table into a stacked
   data-title list with alternating gray rows. The default styling makes
   each order blend into the next. Override so each <tr> becomes its own
   bordered card with the date as the heading.
   ────────────────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .anuka-account-main table.shop_table_responsive,
  .anuka-account-main table.my_account_orders,
  .anuka-account-main table.woocommerce-orders-table {
    border: 0;
    background: transparent;
  }
  .anuka-account-main table.shop_table_responsive tbody,
  .anuka-account-main table.my_account_orders tbody {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .anuka-account-main table.shop_table_responsive tr,
  .anuka-account-main table.my_account_orders tr {
    display: block;
    background: #fff !important;
    border: 1px solid #ebebeb;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
  }
  /* Kill WC's "every other row is gray" rule */
  .anuka-account-main table.shop_table_responsive tr:nth-child(2n) td,
  .anuka-account-main table.my_account_orders tr:nth-child(2n) td {
    background: transparent !important;
  }
  .anuka-account-main table.shop_table_responsive tr td,
  .anuka-account-main table.my_account_orders tr td {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 8px 0 !important;
    border: 0;
    text-align: right !important;
    font-size: 13.5px;
    color: #2a2a2a;
  }
  .anuka-account-main table.shop_table_responsive tr td + td,
  .anuka-account-main table.my_account_orders tr td + td {
    border-top: 1px solid #f1f1f1;
  }
  .anuka-account-main table.shop_table_responsive tr td::before,
  .anuka-account-main table.my_account_orders tr td::before {
    content: attr(data-title);
    float: none !important;
    font-weight: 500;
    color: #777;
    font-size: 12.5px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
  }
  .anuka-account-main table.shop_table_responsive tr td.order-actions,
  .anuka-account-main table.my_account_orders tr td.order-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding-top: 14px !important;
    margin-top: 4px;
    border-top: 1px solid #ebebeb;
  }
  .anuka-account-main table.shop_table_responsive tr td.order-actions::before,
  .anuka-account-main table.my_account_orders tr td.order-actions::before {
    display: none;
  }
  .anuka-account-main table.shop_table_responsive tr td.order-actions .button,
  .anuka-account-main table.shop_table_responsive tr td.order-actions a.button,
  .anuka-account-main table.my_account_orders tr td.order-actions .button,
  .anuka-account-main table.my_account_orders tr td.order-actions a.button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    float: none;
  }
  /* Status / total emphasis */
  .anuka-account-main table.shop_table_responsive tr td.order-status,
  .anuka-account-main table.my_account_orders tr td.order-status {
    color: #0d0d0d;
    font-weight: 600;
  }
  .anuka-account-main table.shop_table_responsive tr td.order-total,
  .anuka-account-main table.my_account_orders tr td.order-total {
    color: var(--red, #c8102e);
    font-weight: 700;
  }
}