/* ============================================================
       RESET & BASE
    ============================================================ */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Georgia", "Times New Roman", serif;
  background: #faf8f4;
  color: #1a1a1a;
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
}

.fa-icon {
  display: inline-block;
  vertical-align: -0.125em;
  width: 1em;
  height: 1em;
  fill: currentColor;
}

/* ============================================================
       TYPOGRAPHY
    ============================================================ */
.sans {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

/* ============================================================
       COLOR TOKENS
    ============================================================ */
:root {
  --gold: #b8860b;
  --gold-lt: #d4a017;
  --gold-dk: #8b6508;
  --cream: #faf8f4;
  --dark: #0f0f0f;
  --charcoal: #1a1a1a;
  --red-cta: #c0392b;
  --red-hover: #a93226;
  --text-muted: #666;
  --border: #e0d8cc;
}

/* ============================================================
       ANNOUNCEMENT BAR
    ============================================================ */
.announcement-bar {
  background: var(--dark);
  color: #f5e6c8;
  text-align: center;
  padding: 10px 16px;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.announcement-bar span {
  color: var(--gold-lt);
  font-weight: 700;
}

/* ============================================================
       HERO SECTION
    ============================================================ */
.hero {
  position: relative;
  min-height: 80vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  background: #0d0b08;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(10, 8, 6, 0.3)), to(rgba(10, 8, 6, 0.3))), url(/wp-content/themes/iberico/dist/images/landing/hero-jamon.webp);
  background-image: -webkit-linear-gradient(top, rgba(10, 8, 6, 0.3), rgba(10, 8, 6, 0.3)), url(/wp-content/themes/iberico/dist/images/landing/hero-jamon.webp);
  background-image: -o-linear-gradient(top, rgba(10, 8, 6, 0.3), rgba(10, 8, 6, 0.3)), url(/wp-content/themes/iberico/dist/images/landing/hero-jamon.webp);
  background-image: linear-gradient(to bottom, rgba(10, 8, 6, 0.3), rgba(10, 8, 6, 0.3)), url(/wp-content/themes/iberico/dist/images/landing/hero-jamon.webp);
  background-size: cover;
  background-position: center 45%;
  -webkit-transform: scale(1.04);
       -o-transform: scale(1.04);
          transform: scale(1.04);
  -webkit-transition: -webkit-transform 8s ease;
  transition: -webkit-transform 8s ease;
  -o-transition: -o-transform 8s ease;
  transition: transform 8s ease;
  transition: transform 8s ease, -webkit-transform 8s ease, -o-transform 8s ease;
}

.hero-bg.loaded {
  -webkit-transform: scale(1);
       -o-transform: scale(1);
          transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: -webkit-linear-gradient(315deg, rgba(10, 8, 4, 0.45) 0%, rgba(10, 8, 4, 0.3) 50%, rgba(10, 8, 4, 0.15) 100%);
  background: -o-linear-gradient(315deg, rgba(10, 8, 4, 0.45) 0%, rgba(10, 8, 4, 0.3) 50%, rgba(10, 8, 4, 0.15) 100%);
  background: linear-gradient(135deg, rgba(10, 8, 4, 0.45) 0%, rgba(10, 8, 4, 0.3) 50%, rgba(10, 8, 4, 0.15) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 80px 24px 100px;
  margin: 0 auto;
  text-align: center;
}

.hero-eyebrow {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 2px;
  margin-bottom: 22px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 600;
}

.hero h1 {
  font-size: clamp(2.1rem, 6vw, 3.6rem);
  color: #fff;
  font-weight: 700;
  line-height: 1.18;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
}

.hero h1 em {
  font-style: italic;
  color: #f5d98a;
}

.hero-sub {
  font-size: clamp(1.15rem, 3vw, 1.45rem);
  color: #f5efe4;
  margin-bottom: 18px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.4;
}

.hero-price-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.hero-price {
  font-size: 2.4rem;
  font-weight: 700;
  color: #f5d98a;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.hero-price-note {
  font-size: 0.85rem;
  color: #c8b898;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.hero-stars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 6px;
  margin-bottom: 30px;
}

.stars {
  color: #f5c518;
  font-size: 1.2rem;
  letter-spacing: 2px;
}

.review-count {
  font-size: 0.88rem;
  color: #c8b88a;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.btn-cta {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  background: var(--red-cta);
  color: #fff;
  font-size: 1.12rem;
  font-weight: 700;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0.04em;
  padding: 18px 42px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  -webkit-transition: background 0.2s, -webkit-transform 0.15s, -webkit-box-shadow 0.2s;
  transition: background 0.2s, -webkit-transform 0.15s, -webkit-box-shadow 0.2s;
  -o-transition: background 0.2s, box-shadow 0.2s, -o-transform 0.15s;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s, -webkit-transform 0.15s, -o-transform 0.15s, -webkit-box-shadow 0.2s;
  -webkit-box-shadow: 0 6px 28px rgba(192, 57, 43, 0.45);
          box-shadow: 0 6px 28px rgba(192, 57, 43, 0.45);
  text-transform: uppercase;
  width: 100%;
  max-width: 420px;
}

.btn-cta:hover {
  background: var(--red-hover);
  -webkit-transform: translateY(-2px);
       -o-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 10px 36px rgba(192, 57, 43, 0.55);
          box-shadow: 0 10px 36px rgba(192, 57, 43, 0.55);
}

.btn-cta:active {
  -webkit-transform: translateY(0);
       -o-transform: translateY(0);
          transform: translateY(0);
}

.btn-cta .arrow {
  font-size: 1.3rem;
}

.hero-guarantee {
  margin-top: 16px;
  font-size: 0.82rem;
  color: #b8a888;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.hero-guarantee span {
  color: #d4b870;
}

/* ============================================================
       URGENCY STRIP
    ============================================================ */
.urgency-strip {
  background: #1a0f00;
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  padding: 14px 16px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.urgency-strip .label {
  font-size: 0.82rem;
  color: #c8a060;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.urgency-strip .stock-msg {
  font-size: 0.95rem;
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 600;
}

.urgency-strip .stock-msg .highlight {
  color: #f5c518;
}

.countdown-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}

.countdown-unit {
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(184, 134, 11, 0.4);
  border-radius: 4px;
  padding: 4px 8px;
  min-width: 44px;
}

.countdown-unit .num {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
  color: #f5d98a;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1;
}

.countdown-unit .lbl {
  display: block;
  font-size: 0.68rem;
  color: #c8a870;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.countdown-sep {
  color: #f5d98a;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 4px;
}

/* ============================================================
       SECTION COMMON
    ============================================================ */
section {
  padding: 64px 24px;
}

.section-inner {
  max-width: 900px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}

.section-title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.25;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.2rem;
  color: #444;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  margin-bottom: 40px;
  max-width: 680px;
  line-height: 1.6;
}

.text-center {
  text-align: center;
}

.text-center .section-sub {
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
       TRUST BADGES SECTION
    ============================================================ */
.trust-section {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 24px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 480px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.trust-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  gap: 10px;
}

.trust-icon {
  width: 56px;
  height: 56px;
  background: #fdf6e8;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.5rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.trust-item h3 {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--charcoal);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.trust-item p {
  font-size: 0.9rem;
  color: #333;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.4;
}

/* ============================================================
       PACK SELECTOR
    ============================================================ */
.pack-selector {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  width: 100%;
}

.pack-option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 8px;
  padding: 14px 18px;
  cursor: pointer;
  -webkit-transition: border-color 0.2s, background 0.2s, -webkit-box-shadow 0.2s;
  transition: border-color 0.2s, background 0.2s, -webkit-box-shadow 0.2s;
  -o-transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s, -webkit-box-shadow 0.2s;
  position: relative;
}

.pack-option:hover {
  border-color: var(--gold);
  -webkit-box-shadow: 0 2px 12px rgba(184, 134, 11, 0.15);
          box-shadow: 0 2px 12px rgba(184, 134, 11, 0.15);
}

.pack-option.selected {
  border-color: var(--gold);
  background: #fdf8ee;
  -webkit-box-shadow: 0 2px 16px rgba(184, 134, 11, 0.2);
          box-shadow: 0 2px 16px rgba(184, 134, 11, 0.2);
}

.pack-radio {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #ccc;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: border-color 0.2s;
  -o-transition: border-color 0.2s;
  transition: border-color 0.2s;
}

.pack-option.selected .pack-radio {
  border-color: var(--gold);
  background: var(--gold);
}

.pack-option.selected .pack-radio::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
}

.pack-info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.pack-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--charcoal);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.pack-desc {
  font-size: 0.78rem;
  color: #555;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.pack-price-col {
  text-align: right;
}

.pack-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--charcoal);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.pack-was {
  font-size: 0.75rem;
  color: #777;
  text-decoration: line-through;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.pack-save-badge {
  position: absolute;
  top: -10px;
  right: 14px;
  background: var(--gold);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 10px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.pack-popular-badge {
  position: absolute;
  top: -10px;
  left: 14px;
  background: var(--red-cta);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 10px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* ============================================================
       PRODUCT SHOWCASE
    ============================================================ */
.product-section {
  background: var(--cream);
}

.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

.product-img-wrap {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  -webkit-box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
          box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.product-img-wrap img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  display: block;
}

.product-img-wrap .img-second {
  margin-top: 16px;
  border-radius: 8px;
  overflow: hidden;
  -webkit-box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
          box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
}

.product-img-wrap .img-second img {
  width: 100%;
  display: block;
}

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 2px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.product-details .section-title {
  margin-bottom: 12px;
}

.flavor-note {
  background: #fdf6e8;
  border-left: 3px solid var(--gold);
  padding: 18px 22px;
  border-radius: 0 6px 6px 0;
  margin-bottom: 24px;
  font-style: italic;
  font-size: 1.15rem;
  color: #3a2a10;
  line-height: 1.5;
}

.highlights-list {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.highlights-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 12px;
  font-size: 1.05rem;
  color: var(--charcoal);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.4;
}

.highlights-list li .check {
  color: var(--gold);
  font-size: 1rem;
  margin-top: 2px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.price-buy-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.price-block .price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--charcoal);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.price-block .per {
  font-size: 0.82rem;
  color: #555;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.btn-cta-sm {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  background: var(--red-cta);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0.04em;
  padding: 14px 28px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  -webkit-transition: background 0.2s, -webkit-transform 0.15s;
  transition: background 0.2s, -webkit-transform 0.15s;
  -o-transition: background 0.2s, -o-transform 0.15s;
  transition: background 0.2s, transform 0.15s;
  transition: background 0.2s, transform 0.15s, -webkit-transform 0.15s, -o-transform 0.15s;
  text-transform: uppercase;
}

.btn-cta-sm:hover {
  background: var(--red-hover);
  -webkit-transform: translateY(-1px);
       -o-transform: translateY(-1px);
          transform: translateY(-1px);
}

/* ============================================================
       BENEFITS SECTION
    ============================================================ */
.benefits-section {
  background: #fff;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.benefit-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px 24px;
  -webkit-transition: -webkit-box-shadow 0.2s, -webkit-transform 0.2s;
  transition: -webkit-box-shadow 0.2s, -webkit-transform 0.2s;
  -o-transition: box-shadow 0.2s, -o-transform 0.2s;
  transition: box-shadow 0.2s, transform 0.2s;
  transition: box-shadow 0.2s, transform 0.2s, -webkit-box-shadow 0.2s, -webkit-transform 0.2s, -o-transform 0.2s;
}

.benefit-card:hover {
  -webkit-box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
          box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  -webkit-transform: translateY(-3px);
       -o-transform: translateY(-3px);
          transform: translateY(-3px);
}

.benefit-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}

.benefit-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 8px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.benefit-card p {
  font-size: 1rem;
  color: #444;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

/* ============================================================
       TESTIMONIALS
    ============================================================ */
.testimonials-section {
  background: #1a0f00;
}

.testimonials-section .section-title {
  color: #f5e6c8;
}

.testimonials-section .section-label {
  color: var(--gold-lt);
}

.testimonials-section .section-sub {
  color: #a89060;
}

.reviews-summary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  margin-bottom: 40px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.big-score {
  font-size: 4rem;
  font-weight: 700;
  color: #f5d98a;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1;
}

.score-detail {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 160px;
}

.score-stars {
  color: #f5c518;
  font-size: 1.4rem;
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.score-count {
  font-size: 0.85rem;
  color: #c8a870;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.bar-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.bar-label {
  font-size: 0.75rem;
  color: #c8a870;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  width: 30px;
  text-align: right;
}

.bar-track {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: var(--gold);
  border-radius: 3px;
}

.bar-pct {
  font-size: 0.75rem;
  color: #a89060;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  width: 30px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(184, 134, 11, 0.25);
  border-radius: 8px;
  padding: 24px;
}

.t-stars {
  color: #f5c518;
  font-size: 1rem;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.t-quote {
  font-size: 1.1rem;
  color: #f5efe4;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 14px;
}

.t-author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

.t-avatar {
  width: 36px;
  height: 36px;
  background: var(--gold);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.t-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: #f5e6c8;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.t-meta {
  font-size: 0.75rem;
  color: #c8a870;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.t-verified {
  font-size: 0.75rem;
  color: #8ec88e;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  margin-left: auto;
}

/* ============================================================
       GIFTING SECTION
    ============================================================ */
.gifting-section {
  background: -webkit-linear-gradient(315deg, #fdf6e8 0%, #f5e8c8 100%);
  background: -o-linear-gradient(315deg, #fdf6e8 0%, #f5e8c8 100%);
  background: linear-gradient(135deg, #fdf6e8 0%, #f5e8c8 100%);
  border-top: 1px solid var(--border);
}

.gifting-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.gifting-text .section-title {
  color: var(--charcoal);
}

.gifting-list {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.gifting-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--charcoal);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.gifting-list li .icon {
  font-size: 1.2rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 1px;
}

.gifting-img {
  border-radius: 8px;
  overflow: hidden;
  -webkit-box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
          box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.gifting-img img {
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
}

/* ============================================================
       SCARCITY / URGENCY SECTION
    ============================================================ */
.scarcity-section {
  background: var(--dark);
  text-align: center;
  padding: 56px 24px;
}

.scarcity-section .section-label {
  color: var(--gold-lt);
}

.scarcity-section .section-title {
  color: #fff;
}

.stock-bar-wrap {
  max-width: 480px;
  margin: 0 auto 28px;
}

.stock-bar-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 0.82rem;
  color: #c8a870;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  margin-bottom: 8px;
}

.stock-bar-track {
  height: 10px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  overflow: hidden;
}

.stock-bar-fill {
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(var(--gold-dk)), to(var(--gold-lt)));
  background: -webkit-linear-gradient(left, var(--gold-dk), var(--gold-lt));
  background: -o-linear-gradient(left, var(--gold-dk), var(--gold-lt));
  background: linear-gradient(90deg, var(--gold-dk), var(--gold-lt));
  border-radius: 5px;
  width: 78%;
  -webkit-animation: pulse-bar 2s ease-in-out infinite;
       -o-animation: pulse-bar 2s ease-in-out infinite;
          animation: pulse-bar 2s ease-in-out infinite;
}

@-webkit-keyframes pulse-bar {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.75;
  }
}

@-o-keyframes pulse-bar {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.75;
  }
}

@keyframes pulse-bar {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.75;
  }
}
.scarcity-note {
  font-size: 0.9rem;
  color: #d0a870;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  margin-bottom: 32px;
}

.scarcity-note strong {
  color: #f5d98a;
}

.big-countdown {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.big-unit {
  text-align: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(184, 134, 11, 0.35);
  border-radius: 6px;
  padding: 14px 18px;
  min-width: 72px;
}

.big-unit .num {
  display: block;
  font-size: 2.2rem;
  font-weight: 700;
  color: #f5d98a;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1;
}

.big-unit .lbl {
  display: block;
  font-size: 0.72rem;
  color: #c8a870;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  margin-top: 4px;
}

.big-sep {
  color: #f5d98a;
  font-size: 2rem;
  font-weight: 700;
  -ms-flex-item-align: center;
      align-self: center;
  margin-bottom: 18px;
}

/* ============================================================
       GUARANTEE STRIP
    ============================================================ */
.guarantee-strip {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 24px;
}

.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.guarantee-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}

.guarantee-icon {
  font-size: 1.8rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.guarantee-item h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--charcoal);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.guarantee-item p {
  font-size: 0.9rem;
  color: #333;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* ============================================================
       FINAL CTA SECTION
    ============================================================ */
.final-cta {
  background: -webkit-linear-gradient(315deg, #1a0f00 0%, #0d0b08 100%);
  background: -o-linear-gradient(315deg, #1a0f00 0%, #0d0b08 100%);
  background: linear-gradient(135deg, #1a0f00 0%, #0d0b08 100%);
  text-align: center;
  padding: 72px 24px;
}

.final-cta .section-label {
  color: var(--gold-lt);
}

.final-cta .section-title {
  color: #f5e6c8;
  margin-bottom: 12px;
}

.final-cta .section-sub {
  color: #a89060;
  margin: 0 auto 36px;
}

.final-cta .btn-cta {
  margin: 0 auto;
}

.final-cta .hero-guarantee {
  margin-top: 20px;
}

/* ============================================================
       FOOTER
    ============================================================ */
footer {
  background: #0a0806;
  color: #6a5a40;
  padding: 32px 24px;
  text-align: center;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.footer-logo {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.footer-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 16px;
}

.footer-links a {
  font-size: 0.78rem;
  color: #b8a888;
  -webkit-transition: color 0.2s;
  -o-transition: color 0.2s;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--gold-lt);
}

.footer-copy {
  font-size: 0.75rem;
  color: #a89878;
}

.footer-badges {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 16px;
}

.footer-badge {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(184, 134, 11, 0.2);
  border-radius: 4px;
  padding: 6px 12px;
  font-size: 0.75rem;
  color: #a89878;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}

/* ============================================================
       STICKY MOBILE CTA
    ============================================================ */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(10, 8, 6, 0.97);
  border-top: 2px solid var(--gold);
  padding: 12px 16px;
  backdrop-filter: blur(8px);
}

.sticky-cta-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 12px;
  max-width: 600px;
  margin: 0 auto;
}

.sticky-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: #f5d98a;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.sticky-note {
  font-size: 0.75rem;
  color: #b8a888;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.sticky-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  background: var(--red-cta);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0.04em;
  padding: 12px 22px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  white-space: nowrap;
  -webkit-transition: background 0.2s;
  -o-transition: background 0.2s;
  transition: background 0.2s;
}

.sticky-btn:hover {
  background: var(--red-hover);
}

.pack-selector-title {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: -apple-system, sans-serif;
  margin-bottom: 12px;
}

.pack-cta-full {
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.pack-guarantee-text {
  font-size: 0.75rem;
  color: #666;
  font-family: -apple-system, sans-serif;
  margin-top: 8px;
  text-align: center;
}

.reviews-link {
  color: var(--gold-lt);
  font-size: 0.85rem;
  font-family: -apple-system, sans-serif;
  text-decoration: underline;
  display: inline-block;
  padding: 12px 4px;
}

.footer-logo-img {
  margin: 0 auto 12px;
  display: block;
  opacity: 0.9;
}

.product-img-transition {
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.ornament--dark .ornament-line {
  background: var(--gold-lt);
}

.ornament--dark .ornament-icon {
  color: var(--gold-lt);
}

.section-title--mb24 {
  margin-bottom: 24px;
}

.section-sub--mb24 {
  margin-bottom: 24px;
}

.scarcity-cta {
  margin: 0 auto;
}

.hero-guarantee--mt16 {
  margin-top: 16px;
}

.bars-wrap {
  margin-top: 10px;
}

.reviews-cta-wrap {
  text-align: center;
  margin-top: 8px;
}

.product-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0;
}

.product-img-wrap--flush {
  margin-bottom: 0;
}

/* ============================================================
       RESPONSIVE
    ============================================================ */
@media (max-width: 768px) {
  section {
    padding: 48px 16px;
  }

  .product-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .gifting-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .gifting-img {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }

  .price-buy-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }

  .btn-cta-sm {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .sticky-cta {
    display: block;
  }

  body {
    padding-bottom: 72px;
  }

  .reviews-summary {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }

  .urgency-strip {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 8px;
    padding: 12px 16px;
  }

  .final-cta {
    padding: 48px 16px;
  }

  .scarcity-section {
    padding: 40px 16px;
  }

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

  .product-img-wrap {
    -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  }

  .product-img-wrap img {
    max-height: 400px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }

  .pack-option {
    padding: 16px 14px;
    gap: 10px;
  }

  .pack-price-col {
    min-width: 70px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }

  .footer-links {
    gap: 8px;
  }

  .footer-links a {
    padding: 10px 8px;
    font-size: 0.85rem;
  }

  .sticky-cta {
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
  }

  .sticky-btn {
    padding: 14px 24px;
    min-height: 44px;
  }

  body {
    padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
  }

  .announcement-bar {
    font-size: 0.9rem;
  }

  .hero-sub {
    font-size: 1rem;
    font-weight: 400;
    color: #e0d4c0;
  }

  .hero-guarantee {
    font-size: 0.9rem;
    color: #d0c0a0;
  }

  .hero-price-note {
    font-size: 0.95rem;
    color: #d0c0a0;
  }

  .urgency-strip .label {
    font-size: 0.9rem;
  }

  .urgency-strip .stock-msg {
    font-size: 1rem;
  }

  .trust-item p {
    font-size: 0.9rem;
    color: #444;
  }

  .trust-item h3 {
    font-size: 0.95rem;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .section-label {
    font-size: 0.8rem;
  }

  .section-sub {
    font-size: 1rem;
  }

  .pack-name {
    font-size: 1rem;
  }

  .pack-desc {
    font-size: 0.9rem;
    color: #555;
  }

  .pack-price {
    font-size: 1.15rem;
  }

  .pack-guarantee-text {
    font-size: 0.9rem;
  }

  .guarantee-item p {
    font-size: 0.9rem;
    color: #555;
  }

  .guarantee-item h4 {
    font-size: 1rem;
  }

  .benefit-card p {
    font-size: 0.95rem;
  }

  .benefit-card h3 {
    font-size: 1.1rem;
  }

  .t-quote {
    font-size: 1rem;
  }

  .t-meta {
    font-size: 0.9rem;
  }

  .t-name {
    font-size: 0.95rem;
  }

  .t-verified {
    font-size: 0.85rem;
  }

  .score-count {
    font-size: 0.95rem;
  }

  .stock-bar-label {
    font-size: 0.9rem;
  }

  .scarcity-note {
    font-size: 1rem;
  }

  .btn-cta {
    font-size: 1.1rem;
    padding: 18px 32px;
  }

  .btn-cta-sm {
    font-size: 1rem;
    padding: 16px 24px;
  }

  .highlights-list li {
    font-size: 1rem;
  }

  .flavor-note {
    font-size: 1rem;
  }

  .gifting-list li {
    font-size: 1rem;
  }

  .footer-copy {
    font-size: 0.85rem;
    color: #b0a080;
  }

  .footer-badge {
    font-size: 0.85rem;
    color: #b0a080;
  }

  .footer-links a {
    font-size: 0.9rem;
    color: #c0a888;
  }

  .sticky-note {
    font-size: 0.85rem;
    color: #c0a888;
  }

  .sticky-price {
    font-size: 1.4rem;
  }

  .reviews-link {
    font-size: 1rem;
  }

  .bar-label,
.bar-pct {
    font-size: 0.85rem;
  }

  .pack-selector-title {
    font-size: 0.9rem;
  }

  .price-block .per {
    font-size: 0.9rem;
  }

  .price-block .price {
    font-size: 2.2rem;
  }

  .big-score {
    font-size: 3.2rem;
  }

  .product-img-wrap img {
    max-height: 340px;
  }
}
@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.9rem;
  }

  .hero-content {
    padding: 60px 16px 80px;
  }

  .big-unit {
    padding: 10px 12px;
    min-width: 58px;
  }

  .big-unit .num {
    font-size: 1.7rem;
  }

  .hero-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    padding: 5px 12px;
  }

  .announcement-bar {
    font-size: 0.75rem;
    padding: 8px 12px;
    line-height: 1.6;
  }

  .guarantee-grid {
    grid-template-columns: 1fr;
  }

  .pack-save-badge,
.pack-popular-badge {
    font-size: 0.65rem;
    padding: 2px 6px;
  }

  .hero-sub {
    font-weight: 400;
  }

  .big-unit .lbl {
    font-size: 0.72rem;
  }
}
@media (max-width: 380px) {
  .sticky-cta-inner {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
  }

  .sticky-btn {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
/* ============================================================
       ANIMATIONS
    ============================================================ */
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(24px);
            transform: translateY(24px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-o-keyframes fadeInUp {
  from {
    opacity: 0;
    -o-transform: translateY(24px);
       transform: translateY(24px);
  }
  to {
    opacity: 1;
    -o-transform: translateY(0);
       transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(24px);
         -o-transform: translateY(24px);
            transform: translateY(24px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
         -o-transform: translateY(0);
            transform: translateY(0);
  }
}
.fade-in {
  -webkit-animation: fadeInUp 0.7s ease both;
       -o-animation: fadeInUp 0.7s ease both;
          animation: fadeInUp 0.7s ease both;
}

.delay-1 {
  -webkit-animation-delay: 0.15s;
       -o-animation-delay: 0.15s;
          animation-delay: 0.15s;
}

.delay-2 {
  -webkit-animation-delay: 0.3s;
       -o-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

.delay-3 {
  -webkit-animation-delay: 0.45s;
       -o-animation-delay: 0.45s;
          animation-delay: 0.45s;
}

.delay-4 {
  -webkit-animation-delay: 0.6s;
       -o-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

/* Divider ornament */
.ornament {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  margin: 0 auto 32px;
  max-width: 200px;
}

.ornament-line {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
}

.ornament-icon {
  color: var(--gold);
  font-size: 1rem;
}

@media (prefers-reduced-motion: reduce) {
  *,
*::before,
*::after {
    -webkit-animation-duration: 0.01ms !important;
         -o-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
         -o-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
         -o-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
  }
}
.side-cart {
  display: none !important;
}
/*# sourceMappingURL=landing-pata-negra.css.map*/