/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Archivo+Black&display=swap');

/* Color Variables and Design System */
:root {
  --color-pink: #FF007F;
  --color-pink-hover: #E60072;
  --color-pink-light: #FFF0F5; /* Soft pink background for FAQ and Clinical Trials */
  --color-red-banner: #BD2031; /* Saturated banner red */
  --color-black: #000000;
  --color-dark: #121212;
  --color-white: #FFFFFF;
  --color-grey-light: #F4F4F4;
  --color-grey-bg: #FAF9F6;
  --color-grey-border: #E8E8E8;
  --color-grey-text: #333333;
  --color-grey-muted: #808080;
  
  --font-heading: 'Archivo Black', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --transition-smooth: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
  --shadow-subtle: 0 4px 12px rgba(0,0,0,0.02);
  --shadow-medium: 0 6px 20px rgba(0,0,0,0.06);
}

/* Reset and Core Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-white);
  color: var(--color-black);
  line-height: 1.35;
  padding-bottom: 75px; /* Space for the sticky bottom bar */
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 500px; /* Highly focused mobile column layout */
  margin: 0 auto;
  padding: 0 1rem;
}

/* Utility Classes for Tight Spacing */
.text-center { text-align: center; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.bold { font-weight: 700; }

/* Announcement Bar */
.announcement-bar {
  background-color: var(--color-red-banner);
  color: var(--color-white);
  text-align: center;
  padding: 0.65rem 0.8rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* 1. First Viewport (Hero Redesign - Ultra Compact) */
.hero-compact-section {
  padding: 0.8rem 0;
  display: flex;
  flex-direction: column;
}

.hero-product-title {
  font-size: 1.25rem; /* Smaller title */
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--color-black);
  margin-bottom: 0.35rem;
  text-align: center;
}

/* Stars rating */
.hero-rating-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-bottom: 0.4rem;
}

.hero-stars {
  display: flex;
  color: #FFB800;
  gap: 1px;
}

.hero-rating-score {
  font-size: 0.78rem;
  font-weight: 700;
}

.hero-rating-count {
  font-size: 0.75rem;
  color: var(--color-grey-muted);
}

/* 3 Badges horizontally (Fixed to Single Line) */
.hero-badges-row {
  display: flex;
  justify-content: center;
  gap: 0.3rem;
  margin-bottom: 0.8rem;
  flex-wrap: nowrap; /* Forces single line */
  overflow: hidden;
}

.hero-badge-pill {
  background-color: var(--color-grey-light);
  color: var(--color-black);
  padding: 0.2rem 0.45rem;
  border-radius: 12px;
  font-size: 0.55rem; /* Very small text */
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  border: 1px solid var(--color-grey-border);
  white-space: nowrap; /* Prevents text wrap */
  flex-shrink: 0;
}

/* Product Main Image (Resized to be slightly larger than buttons/announcement bar) */
.hero-image-carousel-container {
  position: relative;
  width: 175px; /* Moderately sized image focal point */
  height: 175px;
  margin: 0 auto 0.6rem;
}

.hero-image-wrapper {
  background-color: var(--color-grey-bg);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--color-grey-border);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Thumbnail Gallery Preview Row with nav chevrons */
.hero-thumb-gallery-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  margin-bottom: 0.8rem;
}

.gallery-nav-btn {
  background: none;
  border: none;
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--color-black);
  cursor: pointer;
  padding: 0 0.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.gallery-nav-btn:hover {
  color: var(--color-pink);
}

.hero-thumbnails-slider {
  display: flex;
  gap: 0.25rem;
  overflow-x: hidden;
  max-width: 210px;
}

.hero-thumb-item {
  width: 26px;
  height: 26px;
  border-radius: 3px;
  border: 1px solid var(--color-grey-border);
  object-fit: cover;
  cursor: pointer;
  opacity: 0.65;
  transition: var(--transition-smooth);
}

.hero-thumb-item:hover, .hero-thumb-item.active {
  opacity: 1;
  border-color: var(--color-black);
  box-shadow: 0 0 0 1px var(--color-black);
}

/* Horizontal Individual Pack rows (Delgadas de altura, casi todo el ancho de la pagina) */
.packs-selector-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 0.8rem;
  width: 100%;
}

.pack-card {
  border: 1px solid var(--color-grey-border);
  border-radius: 6px;
  padding: 0.6rem 1rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  cursor: pointer;
  background-color: var(--color-white);
  transition: var(--transition-smooth);
  min-height: 48px; /* Delgado */
  width: 100%;
}

.pack-card:hover {
  border-color: var(--color-black);
}

.pack-card.selected {
  border-color: var(--color-black);
  box-shadow: 0 0 0 1px var(--color-black);
  background-color: var(--color-white);
}

.pack-left-row {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.pack-name-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-black);
}

.pack-sub-text {
  font-size: 0.75rem;
  color: var(--color-grey-muted);
}

.pack-price-tag {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-black);
}

/* Price total display box */
.hero-price-summary-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.6rem;
  border-top: 1px solid var(--color-grey-border);
  padding-top: 0.5rem;
}

.hero-price-summary-box span {
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
}

.hero-price-display {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-black);
}

/* Hero Row for Quantity selector + Add to Cart button */
.hero-qty-and-buy-row {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 0.8rem;
}

.hero-qty-selector {
  display: flex;
  align-items: center;
  border: 1px solid var(--color-black);
  border-radius: 6px;
  overflow: hidden;
  height: 44px;
  background-color: var(--color-white);
}

.hero-qty-btn {
  background: none;
  border: none;
  width: 32px;
  height: 100%;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.hero-qty-btn:hover {
  background-color: var(--color-grey-light);
  color: var(--color-pink);
}

.hero-qty-display {
  width: 26px;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  border: none;
  outline: none;
  background: none;
  color: var(--color-black);
}

.btn-add-to-cart {
  background-color: var(--color-black);
  color: var(--color-white);
  border: 1px solid var(--color-black);
  height: 44px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition-smooth);
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-add-to-cart:hover {
  background-color: var(--color-pink);
  border-color: var(--color-pink);
}

/* USA #1 Premium Minimal Badge Redesigned (Soft Pink background, custom visual crown) */
.usa-no1-badge-container {
  background-color: var(--color-pink-light); /* Soft pink */
  border: 1px solid rgba(255, 0, 127, 0.08); /* Minimal border */
  border-radius: 6px;
  padding: 0.8rem;
  margin-bottom: 0.8rem;
  box-shadow: var(--shadow-subtle);
}

.usa-no1-badge-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  color: var(--color-pink);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.usa-no1-badge-title svg {
  fill: currentColor;
  flex-shrink: 0;
}

.usa-no1-badge-desc {
  font-size: 0.62rem;
  color: var(--color-grey-muted);
  line-height: 1.3;
  text-align: justify;
}

/* Slogan row */
.brand-slogan-row {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-align: center;
  color: var(--color-black);
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}

/* 2. Minimalist Accordion (White background) */
.minimal-accordion-wrapper {
  margin-bottom: 1.5rem;
  border-top: 1px solid var(--color-grey-border);
}

.min-accordion-item {
  border-bottom: 1px solid var(--color-grey-border);
}

.min-accordion-header {
  width: 100%;
  background: none;
  border: none;
  padding: 1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-black);
}

.min-accordion-icon {
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-black);
  transition: transform 0.25s ease;
}

.min-accordion-item.active .min-accordion-icon {
  transform: rotate(45deg);
}

.min-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s cubic-bezier(0.25, 0.8, 0.25, 1), padding 0.25s ease;
  font-size: 0.82rem;
  color: var(--color-grey-text);
  line-height: 1.4;
}

.min-accordion-item.active .min-accordion-content {
  max-height: 400px;
  padding-bottom: 1rem;
}

/* 3. Client Videos carousel (Smaller) */
.videos-carousel-section {
  margin-bottom: 2rem;
}

.section-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-pink);
  margin-bottom: 0.25rem;
  display: block;
}

.section-title {
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.videos-horizontal-scroll {
  display: flex;
  gap: 0.8rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.5rem;
}

.video-card-item {
  flex: 0 0 130px; /* Much smaller video items */
  scroll-snap-align: center;
  background-color: var(--color-grey-bg);
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--color-grey-border);
  aspect-ratio: 9/16;
  position: relative;
}

.video-card-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-play-overlay-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(255, 255, 255, 0.9);
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 3px 8px rgba(0,0,0,0.15);
  transition: var(--transition-smooth);
}

/* 4. Before & After Slider Component */
.before-after-slider-section {
  margin-bottom: 2rem;
}

.ba-slider-container {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--color-grey-border);
  user-select: none;
}

.ba-image-before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.ba-image-after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  width: 50%;
}

.ba-label-watermark {
  position: absolute;
  bottom: 0.6rem;
  background-color: rgba(0,0,0,0.6);
  color: var(--color-white);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  pointer-events: none;
}

.ba-label-watermark.before-label { left: 0.6rem; }
.ba-label-watermark.after-label { right: 0.6rem; }

.ba-slider-range-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 10;
}

.ba-separator-line {
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background-color: var(--color-white);
  z-index: 5;
  pointer-events: none;
}

.ba-handle-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  background-color: var(--color-white);
  color: var(--color-black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: bold;
  box-shadow: 0 3px 8px rgba(0,0,0,0.2);
  z-index: 6;
  pointer-events: none;
}

/* 5. Clinical Trials Box (Pink block) */
.clinical-box-section {
  background-color: var(--color-pink-light);
  border-radius: 8px;
  padding: 1.8rem 1.25rem;
  border: 1px solid rgba(255, 0, 127, 0.05);
  margin-bottom: 2rem;
  text-align: center;
}

.clinical-box-title {
  color: var(--color-pink);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.2rem;
  display: block;
}

.clinical-stat-row {
  margin-bottom: 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.clinical-stat-row:last-child {
  margin-bottom: 0.5rem;
}

.clinical-stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--color-black);
  line-height: 1;
}

.clinical-stat-text {
  font-size: 0.8rem;
  color: var(--color-black);
  font-weight: 500;
}

.clinical-stat-disclaimer {
  font-size: 0.65rem;
  color: var(--color-grey-muted);
  border-top: 1px solid rgba(0,0,0,0.05);
  padding-top: 0.6rem;
  margin-top: 1rem;
}

/* 6. Active Ingredients (Accordion Style like FAQ, No Pink Border) */
.ingredients-detail-section {
  margin-bottom: 2rem;
}

.ing-intro-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 1rem;
  display: block;
  border: 1px solid var(--color-grey-border);
}

.ingredients-accordion-stack {
  border-top: 1px solid var(--color-grey-border);
  margin-bottom: 1.5rem;
}

.ing-accordion-item {
  border-bottom: 1px solid var(--color-grey-border);
}

.ing-accordion-header {
  width: 100%;
  background: none;
  border: none;
  padding: 0.9rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-black);
}

.ing-accordion-icon {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--color-black);
  transition: transform 0.25s ease;
}

.ing-accordion-item.active .ing-accordion-icon {
  transform: rotate(45deg);
}

.ing-accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s cubic-bezier(0.25, 0.8, 0.25, 1), padding 0.25s ease;
  font-size: 0.8rem;
  color: var(--color-grey-text);
  line-height: 1.4;
}

.ing-accordion-item.active .ing-accordion-panel {
  max-height: 150px;
  padding-bottom: 0.8rem;
}

.reveal-ingredients-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: underline;
  color: var(--color-black);
}

.full-ingredients-reveal-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  background-color: var(--color-grey-light);
  border-radius: 6px;
}

.full-ingredients-reveal-panel.visible {
  max-height: 400px;
  margin-top: 0.8rem;
}

.reveal-inner-content {
  padding: 0.9rem;
  font-size: 0.75rem;
  color: var(--color-grey-text);
  line-height: 1.4;
}

.propellant-notice-box {
  margin-top: 0.6rem;
  border-top: 1px solid var(--color-grey-border);
  padding-top: 0.5rem;
  font-style: italic;
  color: var(--color-grey-muted);
}

/* 7. "CÓMO usar" section (Horizontal Scroll Carousel) */
.how-to-use-section {
  margin-bottom: 2rem;
}

.how-to-use-title {
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-black);
  margin-bottom: 1rem;
}

.how-to-use-title span.script-style {
  font-style: italic;
  font-weight: 300;
  text-transform: none;
}

.how-to-use-horizontal-scroll {
  display: flex;
  gap: 0.8rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.5rem;
}

.how-to-card-item {
  flex: 0 0 160px; /* Small card scroll sizing */
  scroll-snap-align: center;
  background-color: var(--color-white);
  border: 1px solid var(--color-grey-border);
  border-radius: 6px;
  padding: 0.65rem;
}

.how-to-image-box {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 0.5rem;
  border: 1px solid var(--color-grey-border);
}

.how-to-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.how-to-card-step-name {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
  color: var(--color-black);
}

.how-to-card-step-desc {
  font-size: 0.75rem;
  color: var(--color-grey-text);
  line-height: 1.3;
}

/* 8. FAQ Section (Pink Base) */
.faq-block-section {
  background-color: var(--color-pink-light);
  padding: 2rem 1rem;
  border-top: 1px solid var(--color-grey-border);
}

.faq-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: 1.5rem;
  text-align: center;
}

.faq-accordion-container {
  border-top: 1px solid rgba(0,0,0,0.06);
}

.faq-accordion-item {
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.faq-accordion-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 0.9rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-black);
  text-align: left;
}

.faq-accordion-icon {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--color-black);
  transition: transform 0.25s ease;
}

.faq-accordion-item.active .faq-accordion-icon {
  transform: rotate(45deg);
}

.faq-accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s cubic-bezier(0.25, 0.8, 0.25, 1), padding 0.25s ease;
  font-size: 0.8rem;
  color: var(--color-grey-text);
  line-height: 1.4;
}

.faq-accordion-item.active .faq-accordion-panel {
  max-height: 200px;
  padding-bottom: 0.9rem;
}

/* 9. Reviews Section with Customer Photo Attachments */
.reviews-section {
  padding: 2rem 0;
}

.reviews-title-block {
  text-align: center;
  margin-bottom: 1.5rem;
}

.reviews-title-block h2 {
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
}

.reviews-summary-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  background-color: var(--color-grey-bg);
  border-radius: 8px;
  padding: 1.2rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--color-grey-border);
}

.summary-score-large {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
}

.reviews-list-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.review-card-item {
  background-color: var(--color-white);
  border: 1px solid var(--color-grey-border);
  border-radius: 8px;
  padding: 1.1rem;
}

.review-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.4rem;
}

.review-author-name {
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.pr-flag-badge {
  font-size: 0.85rem;
  display: inline-block;
  vertical-align: middle;
}

.review-verified-badge {
  color: #22c55e;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.review-recommendation-tag {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background-color: var(--color-pink-light);
  color: var(--color-pink);
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  font-size: 0.68rem;
  font-weight: 700;
  margin-top: 0.4rem;
  align-self: flex-start;
  border: 1px solid rgba(255, 0, 127, 0.05);
}

.review-stars-row {
  display: flex;
  color: #FFB800;
  margin-bottom: 0.4rem;
}

.review-card-title {
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

.review-card-body {
  font-size: 0.8rem;
  color: var(--color-grey-text);
  line-height: 1.4;
  margin-bottom: 0.6rem;
}

/* User attached review photos */
.review-attached-photos-row {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 0.5rem;
}

.review-photo-thumbnail {
  width: 70px;
  height: 70px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--color-grey-border);
  cursor: pointer;
}

.review-photo-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-card-date {
  font-size: 0.68rem;
  color: var(--color-grey-muted);
}

/* 10. Sticky bottom bar */
.sticky-bottom-action-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--color-white);
  border-top: 1px solid var(--color-grey-border);
  padding: 0.7rem 1rem;
  z-index: 500;
  box-shadow: 0 -3px 10px rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

body.cart-open .sticky-bottom-action-bar {
  display: none !important;
}

.sticky-bottom-left-info {
  display: flex;
  flex-direction: column;
}

.sticky-selected-pack-name {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-black);
  text-transform: uppercase;
  max-width: 180px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sticky-selected-pack-price {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--color-pink);
}

.sticky-buy-btn {
  background-color: var(--color-black);
  color: var(--color-white);
  border: none;
  padding: 0.65rem 1.1rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.sticky-buy-btn:hover {
  background-color: var(--color-pink);
}

/* Modal layers */
.cart-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

body.cart-open .cart-drawer-overlay {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 420px;
  height: 100%;
  background-color: var(--color-white);
  z-index: 1001;
  box-shadow: -6px 0 25px rgba(0,0,0,0.12);
  display: flex;
  flex-direction: column;
  transition: right 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
}

body.cart-open .cart-drawer {
  right: 0;
}

.cart-header {
  padding: 1rem;
  border-bottom: 1px solid var(--color-grey-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-title {
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
}

.btn-close-cart {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-content-body {
  flex-grow: 1;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cart-empty {
  text-align: center;
  margin: auto;
  color: var(--color-grey-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.cart-item-row {
  display: flex;
  gap: 0.8rem;
  border-bottom: 1px solid var(--color-grey-border);
  padding-bottom: 1rem;
}

.cart-item-row:last-child {
  border-bottom: none;
}

.cart-item-image {
  width: 70px;
  height: 70px;
  border-radius: 4px;
  overflow: hidden;
  background-color: var(--color-grey-light);
  border: 1px solid var(--color-grey-border);
  flex-shrink: 0;
}

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

.cart-item-details {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}

.cart-item-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-black);
}

.cart-item-size {
  font-size: 0.72rem;
  color: var(--color-grey-muted);
}

.cart-item-qty-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.qty-buttons-group {
  display: flex;
  align-items: center;
  border: 1px solid var(--color-grey-border);
  border-radius: 4px;
  overflow: hidden;
}

.qty-adjust-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.15rem 0.35rem;
  font-weight: 700;
  font-size: 0.75rem;
}

.qty-adjust-btn:hover {
  background-color: var(--color-grey-light);
  color: var(--color-pink);
}

.qty-display-val {
  padding: 0 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
}

.cart-item-remove-link {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-grey-muted);
  font-size: 0.68rem;
  text-decoration: underline;
}

.cart-item-remove-link:hover {
  color: var(--color-pink);
}

.cart-item-total-price {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-black);
  text-align: right;
}

.cart-footer {
  padding: 1rem;
  border-top: 1px solid var(--color-grey-border);
  background-color: var(--color-grey-bg);
}

.cart-subtotal-line {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.cart-shipping-incentive {
  font-size: 0.7rem;
  color: var(--color-grey-text);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.cart-shipping-incentive svg {
  color: #22c55e;
  flex-shrink: 0;
}

/* Footer styling with common links */
.footer-links-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
  text-align: left;
}

.footer-links-column {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links-column h4 {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-white);
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
}

.footer-link-item {
  color: var(--color-grey-muted);
  font-size: 0.75rem;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.footer-link-item:hover {
  color: var(--color-pink);
}

.footer-divider-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.7rem;
  color: var(--color-grey-muted);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
  text-align: center;
}

#checkoutBtn {
  background-color: var(--color-red-banner) !important;
  color: var(--color-white) !important;
  border: 1px solid var(--color-red-banner) !important;
  padding: 0.8rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition-smooth);
  width: 100%;
  display: block;
  text-align: center;
  margin-top: 1rem;
}

#checkoutBtn:hover {
  background-color: var(--color-black) !important;
  border-color: var(--color-black) !important;
}
