/* ============================================================
   HOMEPAGE STYLES
   Hero, Vibe Slider, Spotlight, Product Slider, Category Banner
   ============================================================ */

/* -------------------------------------------------------
   HERO
   ------------------------------------------------------- */
.hero {
  position: relative;
  width: 100%;
  height: calc(100vh - var(--topbar-height) - var(--header-height));
  min-height: 500px;
  overflow: hidden;
  background-color: var(--color-topbar-bg);
  margin-top: calc(-1 * (var(--topbar-height) + var(--header-height)));
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  filter: saturate(0.95) contrast(1.05) brightness(0.9);
  background-size: cover;
  background-position: center 135px;
  background-repeat: no-repeat;
  transform: scale(1.02);
  transition: transform 8s ease;
}

body.logged-in .hero__bg {
  background-position: center 0;
}

@media (max-width: 768px) {
  .hero__bg {
    background-position: center 80px;
  }
  body.logged-in .hero__bg {
    background-position: center 0;
  }
}

.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    120% 90% at 50% 16%,
    rgba(253, 246, 236, 0.08) 0%,
    rgba(26, 8, 0, 0) 58%
  );
}

.hero:hover .hero__bg {
  transform: scale(1);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      180deg,
      rgba(var(--hero-overlay-rgb, 26, 8, 0), 0.18) 0%,
      rgba(var(--hero-overlay-rgb, 26, 8, 0), 0.45) 58%,
      rgba(var(--hero-overlay-rgb, 26, 8, 0), 0.72) 100%
    ),
    linear-gradient(
      90deg,
      rgba(var(--hero-overlay-rgb, 26, 8, 0), 0.2) 0%,
      rgba(var(--hero-overlay-rgb, 26, 8, 0), 0) 35%,
      rgba(var(--hero-overlay-rgb, 26, 8, 0), 0) 65%,
      rgba(var(--hero-overlay-rgb, 26, 8, 0), 0.2) 100%
    );
}

.hero__watermark {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.hero__watermark-img {
  width: 52%;
  max-width: 800px;
  opacity: 0.16;
}

.hero__actions {
  position: absolute;
  z-index: 3;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  padding: 0 clamp(1.25rem, 4vw, 3.5rem) clamp(2.25rem, 6vh, 4rem);
}

.hero__eyebrow {
  margin: 0;
  max-width: 42ch;
  text-align: center;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(0.9rem, 1.2vw, 1.02rem);
  font-weight: 500;
  letter-spacing: 0.11em;
  line-height: 1.5;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.hero__headline {
  margin: 0;
  max-width: 12ch;
  text-align: center;
  color: #ffffff;
  font-size: clamp(2.35rem, 5.8vw, 5.2rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-wrap: balance;
  text-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.hero__btn {
  min-width: 192px;
  --btn-pad-y: var(--btn-lg-py);
  --btn-pad-x: var(--btn-lg-px);
  --btn-font-size: var(--btn-lg-font-size);
  --btn-font-weight: var(--btn-lg-font-weight);
  --btn-letter-spacing: var(--btn-lg-letter-spacing);
  --btn-min-height: var(--btn-lg-min-height);
  text-align: center;
  margin-top: 0.35rem;
}

.hero__actions .hero__btn.btn,
.category-banner__content .category-banner__btn.btn,
.product-slider-section__cta.btn {
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  line-height: 1;
}

.hero__actions .hero__btn.btn:hover,
.category-banner__content .category-banner__btn.btn:hover,
.product-slider-section__cta.btn:hover {
  transform: translateY(-1px);
}

/* -------------------------------------------------------
   VIBE SECTION
   ------------------------------------------------------- */
.vibe-section {
  background-color: var(--bg-primary);
  padding: 6rem 2rem;
}

.vibe-section .section-header svg {
  width: 35px;
  height: 40px;
  color: #72171b;
}

.vibe-slider {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  max-width: var(--max-width-container);
  margin: 0 auto;
}

.vibe-slider__viewport {
  overflow: hidden;
  flex: 1;
}

.vibe-slider__track {
  display: flex;
  gap: 1.5rem;
  will-change: transform;
}

/* Slider Arrows */
.vibe-slider__arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-medium);
  background-color: var(--surface-1);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  z-index: 2;
}

.vibe-slider__arrow:hover {
  background-color: var(--accent);
  border-color: var(--accent);
  color: var(--button-hover-text, var(--text-inverse));
  box-shadow: var(--shadow-md);
}

.vibe-slider__arrow svg {
  width: 20px;
  height: 20px;
  stroke-width: 2;
}

.vibe-slider__arrow:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* Vibe Card */
.vibe-slider__item {
  flex: 0 0 calc(25% - 1rem);
  min-width: 0;
}

.vibe-card {
  display: block;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  border-radius: 50% 50% 8px 8px / 40% 40% 8px 8px;
  aspect-ratio: 5 / 6;
}

.vibe-card__image-wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.vibe-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.4s ease;
}

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

/* Label at bottom of card */
.vibe-card__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, transparent 100%);
  padding: 2rem 1.25rem 1.25rem;
  border-radius: 0 0 8px 8px;
}

.vibe-card__name {
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-white);
  letter-spacing: 0.06em;
}

/* -------------------------------------------------------
   SPOTLIGHT SECTION
   ------------------------------------------------------- */
.spotlight-section {
  background-color: var(--bg-secondary);
  padding: 4rem 2rem 6rem;
}

.spotlight-section svg {
  width: 30px;
  height: 50px;
  fill: #72171b;
}

.spotlight-banner {
  position: relative;
  width: 100%;
  height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: var(--max-width-container);
  margin: 0 auto;
}

.spotlight-banner__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.spotlight-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.05) 0%,
    rgba(0, 0, 0, 0.55) 100%
  );
}

.spotlight-banner__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding: 2rem;
  gap: 1rem;
}

.spotlight-banner__subtitle {
  margin: 0;
  margin-top: auto;
  font-family: var(--font-primary);
  font-size: clamp(0.75rem, 1vw, 0.9rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.11em;
  line-height: 1.5;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.spotlight-banner__title {
  margin: 0;
  font-family: var(--font-primary);
  font-size: clamp(1.75rem, 4vw, 3.2rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  text-wrap: balance;
}

.spotlight-banner__btn {
  margin-top: auto;
  --btn-pad-y: 0.75rem;
  --btn-pad-x: 2.5rem;
  --btn-font-size: 0.85rem;
  --btn-font-weight: 700;
  --btn-letter-spacing: 0.1em;
  --btn-min-height: 44px;
}

.spotlight-banner__content .spotlight-banner__btn.btn {
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  line-height: 1;
}

.spotlight-banner__content .spotlight-banner__btn.btn:hover {
  transform: translateY(-1px);
}

/* -------------------------------------------------------
   PRODUCT SLIDER SECTION
   ------------------------------------------------------- */
.product-slider-section {
  background-color: var(--bg-primary);
  padding: 6rem 2rem;
  border-top: 1px solid var(--border-light);
}

.product-slider-section .section-header svg {
  width: 45px;
  height: 45px;
  fill: #72171b;
  color: #72171b;
}

.product-slider {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  max-width: var(--max-width-container);
  margin: 0 auto;
}

.product-slider__viewport {
  overflow: hidden;
  flex: 1;
}

.product-slider__track {
  display: flex;
  gap: 1rem;
  will-change: transform;
}

/* Slider Arrows */
.product-slider__arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-medium);
  background-color: var(--surface-1);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  z-index: 2;
}

.product-slider__arrow:hover {
  background-color: var(--accent);
  border-color: var(--accent);
  color: var(--button-hover-text, var(--text-inverse));
  box-shadow: var(--shadow-md);
}

.product-slider__arrow svg {
  width: 20px;
  height: 20px;
  stroke-width: 2;
}

.product-slider__arrow:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.product-slider-section__cta-wrap {
  margin-top: 1rem;
  text-align: center;
}

.product-slider-section__cta {
  margin-top: 0;
  --btn-pad-y: 0.62rem;
  --btn-pad-x: 1.35rem;
  --btn-font-size: 0.76rem;
  --btn-font-weight: 700;
  --btn-letter-spacing: 0.1em;
  --btn-min-height: 40px;
}

/* Product Card */
.product-card {
  flex: 0 0 calc(25% - 1.125rem - 2px);
  min-width: 0;
  padding-bottom: 0;
  position: relative;
}

.product-card__quick-atc-wrap {
  position: absolute;
  top: var(--atc-offset-top);
  right: var(--atc-offset-right);
  z-index: 3;
}

.product-card__quick-atc {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--atc-icon-width);
  height: auto;
  min-height: auto;
  padding: var(--atc-icon-padding);
  border-radius: var(--atc-radius);
  font-size: 0;
  line-height: 0;
}

.product-card__quick-atc.product_type_variable,
.product-card__quick-atc.product_type_grouped,
.product-card__quick-atc.product_type_external {
  width: auto;
  height: auto;
  min-height: auto;
  padding: var(--atc-text-padding);
  border-radius: var(--atc-radius);
  font-size: inherit;
  line-height: inherit;
}

.product-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  transition: transform 0.22s ease;
}

.product-card__link:hover {
  box-shadow: none;
  transform: translateY(-2px);
}

.product-card__image-wrap {
  width: 100%;
  aspect-ratio: 4 / 5.75;
  overflow: hidden;
  background-color: var(--color-header-bg);
}

.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.product-card__details {
  padding: 0.7rem 0 0.2rem;
}

.product-card__title {
  font-family: var(--font-primary);
  font-size: var(--pc-title-font-size);
  font-weight: var(--pc-title-font-weight);
  color: var(--color-dark);
  line-height: var(--pc-title-line-height);
  letter-spacing: -0.005em;
  margin-bottom: 0;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card__price {
  font-family: var(--font-primary);
  font-size: var(--pc-price-font-size);
  font-weight: var(--pc-price-font-weight);
  line-height: var(--pc-price-line-height);
  color: var(--color-dark);
  margin-top: var(--pc-price-margin-top);
}

.product-card__price .woocommerce-Price-amount {
  color: var(--color-dark);
}

.product-card__price .woocommerce-Price-amount bdi {
  display: inline-flex;
  align-items: baseline;
  flex-direction: row;
  gap: 0.12em;
}

.product-card__price .woocommerce-Price-currencySymbol {
  order: -1;
}

.product-card__price del {
  opacity: 0.58;
  margin-right: 0.3rem;
}

.product-card__price ins {
  text-decoration: none;
}

@media (min-width: 769px) {
  .product-card__title {
    font-size: 1rem !important;
    font-weight: 500 !important;
    line-height: 1.3 !important;
    margin-bottom: 0 !important;
  }

  .product-card__price {
    font-size: 16px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    margin-top: 5px !important;
  }

  .product-card__price .woocommerce-Price-amount,
  .product-card__price .woocommerce-Price-amount bdi {
    display: inline-flex;
    align-items: baseline;
    flex-direction: row !important;
    gap: 0.12em;
  }

  .product-card__price .woocommerce-Price-currencySymbol {
    order: -1 !important;
  }
}

/* -------------------------------------------------------
   CATEGORY BANNER
   ------------------------------------------------------- */
.category-banner {
  width: 100%;
  padding: 4rem 0 0;
  background-color: var(--bg-primary);
}

.category-banner .section-header {
  margin-bottom: 2.5rem;
}

.category-banner svg {
  width: 100px;
  height: 50px;
  color: #72171b;
}

.category-banner__frame {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  height: 85vh;
  min-height: 500px;
  overflow: hidden;
}

.category-banner__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 0;
  background-repeat: no-repeat;
  transition: transform 8s ease;
}

.category-banner:hover .category-banner__bg {
  transform: scale(1.02);
}

.category-banner__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(26, 8, 0, 0.18) 0%,
      rgba(26, 8, 0, 0.42) 58%,
      rgba(26, 8, 0, 0.62) 100%
    ),
    linear-gradient(
      90deg,
      rgba(26, 8, 0, 0.2) 0%,
      rgba(26, 8, 0, 0) 35%,
      rgba(26, 8, 0, 0) 65%,
      rgba(26, 8, 0, 0.2) 100%
    );
}

.category-banner__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 0.9rem;
  padding: 2.25rem 3rem 3rem;
}

.category-banner__copy {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(calc(100% - 6rem), 900px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
}

.category-banner__eyebrow {
  margin: 0;
  max-width: 840px;
  text-align: center;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1rem, 1.8vw, 1.28rem);
  font-weight: 600;
  letter-spacing: 0.045em;
  line-height: 1.32;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.category-banner__headline {
  margin: 0;
  max-width: 900px;
  text-align: center;
  color: #ffffff;
  font-size: clamp(2.5rem, 6vw, 5.1rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.024em;
  text-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.category-banner__btn {
  min-width: 192px;
  --btn-pad-y: var(--btn-lg-py);
  --btn-pad-x: var(--btn-lg-px);
  --btn-font-size: var(--btn-lg-font-size);
  --btn-font-weight: var(--btn-lg-font-weight);
  --btn-letter-spacing: var(--btn-lg-letter-spacing);
  --btn-min-height: var(--btn-lg-min-height);
}

@media (max-width: 991px) {
  .hero__actions {
    padding: 0 1.5rem;
    gap: 0.8rem;
  }

  .hero__eyebrow {
    font-size: clamp(0.82rem, 1.9vw, 0.95rem);
    letter-spacing: 0.1em;
    line-height: 1.45;
  }

  .hero__headline {
    max-width: 14ch;
    font-size: clamp(2rem, 7.3vw, 3.6rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
  }

  .category-banner__content {
    padding: 0 1.8rem 2.6rem;
  }

  .category-banner__copy {
    position: static;
    transform: none;
    width: 100%;
    gap: 0.6rem;
  }

  .category-banner__headline {
    font-size: clamp(2.1rem, 8vw, 3.5rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
  }
}

@media (max-width: 640px) {
  .hero__actions {
    padding: 0 1rem;
    gap: 0.65rem;
  }

  .hero__eyebrow {
    font-size: 0.8rem;
    letter-spacing: 0.095em;
    line-height: 1.45;
  }

  .hero__headline {
    max-width: 15ch;
    font-size: clamp(1.68rem, 9.4vw, 1rem);
    line-height: 1.14;
    letter-spacing: -0.01em;
  }

  .hero__btn {
    min-width: 0;
  }

  .category-banner__btn {
    min-width: 170px;
    --btn-pad-y: var(--btn-lg-py);
    --btn-pad-x: var(--btn-lg-px);
  }
}

/* ============================================================
   home.css - Tablet (max-width: 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .hero {
    height: 100vh;
    min-height: 100vh;
  }

  .vibe-section,
  .product-slider-section,
  .spotlight-section {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .vibe-slider__item,
  .product-card {
    flex: 0 0 calc(50% - 0.75rem);
  }

  .product-card {
    flex: 0 0 calc(50% - 0.75rem - 2px);
  }

  .section-header__title {
    font-size: 1.35rem;
  }
}

/* ============================================================
   home.css - Mobile (max-width: 768px)
   ============================================================ */
@media (max-width: 768px) {
  .hero {
    --hero-btn-mobile-width: 142px;
    --hero-btn-mobile-max-width: 66%;
    --hero-btn-mobile-min-height: 40px;
    --hero-btn-mobile-pad-y: 0.46rem;
    --hero-btn-mobile-pad-x: 0.86rem;
    --hero-btn-mobile-font-size: 0.74rem;
    --hero-btn-mobile-letter-spacing: 0.09em;
  }

  .hero {
    margin-top: calc(-1 * (var(--topbar-height) + 10px));
    height: 100vh;
    min-height: 100vh;
    height: 100svh;
    min-height: 100svh;
    height: 100dvh;
    min-height: 100dvh;
  }

  .hero__actions {
    justify-content: flex-end;
    align-items: center;
    text-align: center;
    gap: 1rem;
    padding-top: 0;
    padding-bottom: clamp(3rem, 8vh, 4.5rem);
  }

  .hero__eyebrow {
    margin-top: 0;
  }

  .hero__btn {
    width: min(var(--hero-btn-mobile-width), var(--hero-btn-mobile-max-width));
    min-height: var(--hero-btn-mobile-min-height);
    --btn-pad-y: var(--hero-btn-mobile-pad-y);
    --btn-pad-x: var(--hero-btn-mobile-pad-x);
    --btn-font-size: var(--hero-btn-mobile-font-size);
    --btn-letter-spacing: var(--hero-btn-mobile-letter-spacing);
    font-size: var(--hero-btn-mobile-font-size);
    margin-top: 0.25rem;
  }

  .hero__actions .hero__btn.btn {
    font-size: var(--hero-btn-mobile-font-size);
    letter-spacing: var(--hero-btn-mobile-letter-spacing);
  }

  .vibe-section {
    padding-left: 0;
    padding-right: 0;
    padding-top: 20px;
    padding-bottom: 0;
  }

  .vibe-section .container {
    padding-left: 0;
    padding-right: 0;
  }

  .product-slider-section .container {
    padding-left: 0;
    padding-right: 0;
  }

  .product-slider-section,
  .spotlight-section {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    padding-top: var(--space-12);
    padding-bottom: var(--space-12);
  }

  .product-slider-section {
    padding-top: 20px;
    padding-bottom: 0;
    border-top: none;
  }

  .spotlight-section {
    padding-top: 20px;
    padding-bottom: 1rem;
    margin-top: 1.5rem;
  }

  .section-header__title {
    font-size: 1.45rem;
  }

  .vibe-section .section-header,
  .product-slider-section .section-header,
  .spotlight-section .section-header {
    margin-bottom: 1rem;
    padding-top: 0;
    padding-bottom: 0;
  }

  .vibe-section .section-header {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .product-slider-section .section-header {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .spotlight-section .section-header {
    margin-bottom: 0.6rem;
  }

  .section-header__icon {
    width: 56px;
    height: 56px;
    margin-bottom: -5px;
  }

  .vibe-slider,
  .product-slider,
  .spotlight-banner {
    max-width: 100%;
  }

  .vibe-slider__arrow,
  .product-slider__arrow {
    display: none;
  }

  .vibe-slider {
    gap: 0;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding-left: 0;
    padding-right: 0;
    box-sizing: border-box;
  }

  .product-slider {
    gap: 0;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding-left: 0;
    padding-right: 0;
    box-sizing: border-box;
  }

  .vibe-slider__viewport,
  .product-slider__viewport {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 0.5rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    padding-bottom: 0.3rem;
  }

  .vibe-slider__track,
  .product-slider__track {
    gap: 0.75rem;
    padding-right: 0.75rem;
  }

  .vibe-slider__track {
    padding-right: 0;
  }

  .product-slider__track {
    padding-right: 0;
  }

  .vibe-slider__item,
  .product-card {
    flex: 0 0 65%;
    scroll-snap-align: start;
  }

  .product-card {
    flex: 0 0 calc(65% - 2px);
  }

  .product-card__details {
    padding: 0.6rem 0 0.15rem;
    padding-left: 0.5rem;
  }

  .product-card__title {
    font-size: var(--pc-title-font-size);
    font-weight: var(--pc-title-font-weight);
  }

  .product-card__price {
    font-size: var(--pc-price-font-size);
    font-weight: var(--pc-price-font-weight);
    margin-top: 5px;
  }

  .product-card__price .woocommerce-Price-amount,
  .product-card__price .woocommerce-Price-amount bdi {
    display: inline-flex !important;
    align-items: baseline;
    flex-direction: row !important;
    gap: 0.12em;
  }

  .product-card__price .woocommerce-Price-currencySymbol {
    order: -1 !important;
  }

  .product-card__quick-atc {
    width: var(--atc-icon-width);
    height: var(--atc-mobile-icon-size);
    min-height: var(--atc-mobile-icon-size);
  }

  .product-card__quick-atc.product_type_variable,
  .product-card__quick-atc.product_type_grouped,
  .product-card__quick-atc.product_type_external {
    width: auto;
    height: auto;
    min-height: auto;
    padding: var(--atc-text-padding);
    font-size: var(--atc-mobile-text-size);
    line-height: inherit;
  }

  .spotlight-banner {
    height: auto;
    min-height: 460px;
  }

  .spotlight-banner__content {
    padding: 2rem 1rem;
    gap: 0.35rem;
    justify-content: flex-start;
    align-items: center;
  }

  .category-banner__frame {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    height: auto;
    min-height: 460px;
    box-sizing: border-box;
  }

  .category-banner__content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 1rem 1rem 2.2rem;
    gap: 0.35rem;
  }

  .category-banner__copy {
    gap: 0.35rem;
  }

  .spotlight-banner__title {
    font-size: 1.75rem;
    line-height: 1.2;
  }

  .spotlight-banner__btn {
    margin-top: auto;
    align-self: center;
  }

  .spotlight-section {
    padding-bottom: 4rem;
  }

  .category-banner {
    padding-top: 20px;
    padding-bottom: 0;
    margin-top: 0;
  }

  .category-banner .section-header {
    margin-bottom: 0.6rem;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .category-banner__content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    gap: 0.35rem;
  }

  .category-banner__headline {
    font-size: 1.75rem;
    line-height: 1.2;
    margin-top: 165px;
  }

  .category-banner__btn {
    margin-top: auto;
    width: min(180px, 70%);
    max-width: none;
    min-height: 48px;
  }

  /* Homepage-only compact mobile CTA sizing */
  .hero__btn,
  .product-slider-section__cta,
  .spotlight-banner__btn,
  .category-banner__btn {
    width: min(142px, 66%);
    min-width: 0;
    min-height: 40px;
    --btn-pad-y: 0.46rem;
    --btn-pad-x: 0.86rem;
    --btn-font-size: 0.74rem;
    --btn-letter-spacing: 0.09em;
    font-size: 0.74rem;
  }

  .hero__actions .hero__btn.btn,
  .product-slider-section__cta.btn,
  .spotlight-banner__content .spotlight-banner__btn.btn,
  .category-banner__content .category-banner__btn.btn {
    font-size: 0.74rem;
    letter-spacing: 0.09em;
  }
}

/* ============================================================
   home.css - Mobile small (max-width: 480px)
   ============================================================ */
@media (max-width: 480px) {
  .hero__btn,
  .product-slider-section__cta,
  .spotlight-banner__btn,
  .category-banner__btn {
    width: min(136px, 64%);
    min-height: 38px;
    --btn-pad-y: 0.4rem;
    --btn-pad-x: 0.74rem;
    --btn-font-size: 0.74rem;
    --btn-letter-spacing: 0.08em;
    font-size: 0.74rem;
  }

  .hero__actions .hero__btn.btn,
  .product-slider-section__cta.btn,
  .spotlight-banner__content .spotlight-banner__btn.btn,
  .category-banner__content .category-banner__btn.btn {
    font-size: 0.74rem;
    letter-spacing: 0.08em;
  }

  .vibe-slider__item,
  .product-card {
    flex: 0 0 72%;
  }

  .product-card {
    flex: 0 0 calc(72% - 2px);
  }

  .spotlight-banner__title {
    font-size: 1.75rem;
  }
}
