/* HoneyPower Official Brand Store - Design System: Warm Botanic Apothecary */
:root {
  --font-serif: 'Literata', Georgia, serif;
  --font-sans: 'Mulish', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  --color-bg: #faf6ee;
  --color-bg-alt: #f3ecde;
  --color-surface: #ffffff;
  --color-surface-translucent: rgba(255, 255, 255, 0.85);
  
  --color-text: #1c130c;
  --color-text-muted: #5c4d42;
  --color-text-subtle: #8a7b6f;
  
  --color-amber: #d97706;
  --color-amber-dark: #b45309;
  --color-amber-light: #fef3c7;
  --color-amber-glow: rgba(217, 119, 6, 0.15);
  
  --color-honey: #eab308;
  --color-honey-deep: #ca8a04;
  
  --color-border: #e6dcce;
  --color-border-dark: #cdbeaa;
  
  --color-save: #15803d;
  --color-save-bg: #dcfce7;
  
  --color-dark-surface: #19120b;
  --color-dark-border: #332415;
  --color-dark-text: #f5ede2;
  
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  
  --shadow-sm: 0 2px 4px rgba(28, 19, 12, 0.05);
  --shadow-md: 0 6px 16px rgba(28, 19, 12, 0.08);
  --shadow-lg: 0 12px 32px rgba(28, 19, 12, 0.12);
  --shadow-amber: 0 8px 24px rgba(180, 83, 9, 0.25);
  
  --max-width: 1200px;
  --header-height: 72px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 74px; /* Space for sticky bar */
}

body.no-sticky-padding {
  padding-bottom: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.hp-container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, .hp-serif {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.25;
}

h1 { font-size: clamp(2.1rem, 4vw, 3.1rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); letter-spacing: -0.015em; }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.6rem); }
h4 { font-size: 1.15rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.hp-eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-amber-dark);
  margin-bottom: 8px;
}

.hp-subheading {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  max-width: 680px;
  margin: 0 auto 36px;
}

.hp-text-center { text-align: center; }

/* Announcement Bar */
.hp-announce {
  background-color: var(--color-dark-surface);
  color: var(--color-dark-text);
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  padding: 8px 16px;
  border-bottom: 1px solid var(--color-dark-border);
}

.hp-announce__inner span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Header */
.hp-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--color-surface-translucent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  height: var(--header-height);
  display: flex;
  align-items: center;
}

.hp-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hp-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hp-logo__text {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hp-logo__gold { color: var(--color-amber); }
.hp-logo__dark { color: var(--color-text); }
.hp-logo__light { color: #ffffff; }

.hp-nav__list {
  display: flex;
  align-items: center;
  gap: 28px;
}

.hp-nav__list a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text-muted);
  transition: color 0.15s ease;
  position: relative;
  padding: 6px 0;
}

.hp-nav__list a:hover,
.hp-nav__list a.is-active {
  color: var(--color-amber-dark);
}

.hp-nav__list a.is-active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--color-amber);
  border-radius: 2px;
}

.hp-header__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Buttons */
.hp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  border-radius: var(--radius-md);
  padding: 14px 28px;
  transition: all 0.2s ease;
  box-shadow: var(--shadow-sm);
}

.hp-btn--primary {
  background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
  color: #ffffff;
  box-shadow: var(--shadow-amber);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hp-btn--primary:hover {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(180, 83, 9, 0.35);
}

.hp-btn--header {
  padding: 9px 20px;
  font-size: 0.88rem;
  background: var(--color-dark-surface);
  color: #ffffff;
  border: 1px solid var(--color-dark-border);
}

.hp-btn--header:hover {
  background: var(--color-amber-dark);
  color: #ffffff;
}

.hp-btn--sticky {
  padding: 9px 22px;
  font-size: 0.9rem;
  background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
  color: #ffffff;
}

.hp-btn--outline {
  background: transparent;
  color: var(--color-amber-dark);
  border: 1.5px solid var(--color-amber-dark);
}

.hp-btn--outline:hover {
  background: var(--color-amber-light);
}

/* Hamburger */
.hp-hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 20px;
}

.hp-hamburger span {
  display: block;
  height: 2.5px;
  width: 100%;
  background-color: var(--color-text);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Buy Box / PDP Hero */
.hp-buybox-hero {
  padding: 36px 0 54px;
}

.hp-buybox-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
  align-items: start;
}

.hp-gallery {
  position: sticky;
  top: 100px;
}

.hp-gallery__main {
  background: radial-gradient(circle at center, #ffffff 0%, #f7f1e6 100%);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 32px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: var(--shadow-md);
  position: relative;
}

.hp-gallery__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--color-dark-surface);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hp-gallery__img {
  width: 100%;
  max-width: 480px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.hp-gallery__bonuses {
  margin-top: 18px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 16px;
}

.hp-gallery__bonuses-title {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-amber-dark);
  margin-bottom: 10px;
  text-align: center;
}

.hp-bonuses-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.hp-bonus-thumb {
  text-align: center;
}

.hp-bonus-thumb img {
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}

.hp-bonus-thumb span {
  display: block;
  font-size: 0.74rem;
  font-weight: 700;
  margin-top: 4px;
  color: var(--color-text-muted);
}

/* Buy Box Column */
.hp-buybox__details {
  display: flex;
  flex-direction: column;
}

.hp-rating-inline {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 0.9rem;
  font-weight: 700;
}

.hp-stars {
  color: #f59e0b;
  letter-spacing: 1px;
}

.hp-rating-link {
  color: var(--color-text-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hp-buybox__title {
  margin-bottom: 12px;
}

.hp-buybox__definition {
  font-size: 1.05rem;
  color: var(--color-text);
  line-height: 1.6;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--color-border);
}

/* Package Options */
.hp-packages-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}

.hp-package-card {
  position: relative;
  background: var(--color-surface);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: all 0.2s ease;
}

.hp-package-card:hover {
  border-color: var(--color-border-dark);
  box-shadow: var(--shadow-sm);
}

.hp-package-card.is-selected {
  border-color: var(--color-amber);
  background: #fffdfa;
  box-shadow: 0 0 0 1px var(--color-amber), var(--shadow-md);
}

.hp-package-card__radio-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hp-package-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.hp-custom-radio {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--color-border-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.hp-package-card.is-selected .hp-custom-radio {
  border-color: var(--color-amber-dark);
  background-color: var(--color-amber-dark);
}

.hp-package-card.is-selected .hp-custom-radio::after {
  content: '';
  width: 8px;
  height: 8px;
  background: #ffffff;
  border-radius: 50%;
}

.hp-package-card__info {
  display: flex;
  flex-direction: column;
}

.hp-package-card__name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-text);
}

.hp-package-card__tagline {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.hp-package-card__pricing {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.hp-package-card__price-big {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--color-text);
  line-height: 1;
}

.hp-package-card__price-unit {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 2px;
}

.hp-package-card__total {
  font-size: 0.85rem;
  color: var(--color-text-subtle);
  margin-top: 4px;
}

.hp-package-card__total .was {
  text-decoration: line-through;
  margin-right: 4px;
}

.hp-package-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: var(--color-amber);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 6px rgba(217, 119, 6, 0.3);
}

.hp-save-pill {
  display: inline-block;
  background: var(--color-save-bg);
  color: var(--color-save);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 4px;
  margin-top: 4px;
}

/* Buy Box Summary & CTA */
.hp-buybox__summary {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 22px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}

.hp-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 12px;
}

.hp-summary-row__label {
  font-weight: 700;
  color: var(--color-text-muted);
}

.hp-summary-row__price {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--color-text);
}

.hp-summary-shipping {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-save);
}

.hp-btn--buybox {
  width: 100%;
  font-size: 1.15rem;
  padding: 18px 24px;
}

.hp-microcopy {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 14px;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  text-align: center;
}

.hp-microcopy__stock {
  font-weight: 700;
  color: var(--color-save);
}

/* Trust Strip */
.hp-trust-strip {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 24px 0;
  margin: 36px 0;
}

.hp-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.hp-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hp-trust-item__icon {
  width: 38px;
  height: 38px;
  color: var(--color-amber-dark);
}

.hp-trust-item__title {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--color-text);
}

.hp-trust-item__desc {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}

/* Section Standard Layout */
.hp-section {
  padding: 56px 0;
}

.hp-section--alt {
  background-color: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.hp-section--dark {
  background-color: var(--color-dark-surface);
  color: var(--color-dark-text);
  border-top: 1px solid var(--color-dark-border);
  border-bottom: 1px solid var(--color-dark-border);
}

.hp-section--dark h2,
.hp-section--dark h3 {
  color: #ffffff;
}

.hp-section--dark .hp-subheading {
  color: #c9baa9;
}

/* Spec Table (Product Details) */
.hp-spec-table-wrap {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-top: 24px;
}

.hp-spec-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.hp-spec-table th,
.hp-spec-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.95rem;
}

.hp-spec-table tr:last-child th,
.hp-spec-table tr:last-child td {
  border-bottom: none;
}

.hp-spec-table th {
  width: 32%;
  background: var(--color-bg);
  font-weight: 800;
  color: var(--color-text);
}

.hp-spec-table td {
  color: var(--color-text-muted);
}

/* Short Version / TL;DR Box */
.hp-tldr-box {
  background: radial-gradient(circle at top left, #ffffff 0%, #faf3e6 100%);
  border: 2px solid var(--color-amber);
  border-radius: var(--radius-lg);
  padding: 26px 30px;
  margin: 36px 0;
  box-shadow: var(--shadow-md);
}

.hp-tldr-box__title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  color: var(--color-amber-dark);
  margin-bottom: 12px;
}

.hp-tldr-box p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--color-text);
}

/* Feature Cards / Grid */
.hp-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 36px;
}

.hp-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hp-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.hp-card__num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-amber);
  line-height: 1;
  margin-bottom: 14px;
}

.hp-card__title {
  margin-bottom: 10px;
}

.hp-card p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

/* Supplement Facts Panel (Authentic Label Style) */
.hp-label-panel {
  background: #ffffff;
  border: 3px solid #000000;
  padding: 24px;
  max-width: 640px;
  margin: 36px auto;
  color: #000000;
  font-family: Arial, Helvetica, sans-serif;
  box-shadow: var(--shadow-md);
}

.hp-label-panel h3 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
  border-bottom: 10px solid #000000;
  padding-bottom: 6px;
  margin-bottom: 8px;
  color: #000000;
}

.hp-label-serving {
  font-size: 0.9rem;
  line-height: 1.4;
  border-bottom: 4px solid #000000;
  padding-bottom: 6px;
  margin-bottom: 8px;
}

.hp-label-table {
  width: 100%;
  border-collapse: collapse;
}

.hp-label-table th,
.hp-label-table td {
  padding: 5px 0;
  font-size: 0.88rem;
  border-bottom: 1px solid #000000;
}

.hp-label-table th {
  text-align: right;
  font-weight: 700;
}

.hp-label-table th:first-child {
  text-align: left;
}

.hp-label-table td.col-amount {
  text-align: right;
  font-weight: 700;
}

.hp-label-table td.col-dv {
  text-align: right;
  width: 60px;
}

.hp-label-table tr.heavy-bar td {
  border-bottom: 8px solid #000000;
}

.hp-label-footnote {
  font-size: 0.78rem;
  line-height: 1.4;
  margin-top: 8px;
}

.hp-label-other {
  font-size: 0.82rem;
  line-height: 1.4;
  margin-top: 10px;
  padding-top: 8px;
  border-top: 2px solid #000000;
}

/* Reviews Wall */
.hp-reviews-summary {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 36px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 40px;
  box-shadow: var(--shadow-sm);
}

.hp-rating-big {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-right: 1px solid var(--color-border);
  padding-right: 32px;
}

.hp-rating-big__number {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 800;
  color: var(--color-text);
  line-height: 1;
}

.hp-rating-big__stars {
  color: #f59e0b;
  font-size: 1.4rem;
  margin: 8px 0;
}

.hp-rating-big__count {
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.hp-bars-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
}

.hp-bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
}

.hp-bar-label {
  width: 50px;
  font-weight: 700;
  color: var(--color-text);
}

.hp-bar-track {
  flex: 1;
  height: 10px;
  background: var(--color-bg-alt);
  border-radius: 5px;
  overflow: hidden;
}

.hp-bar-fill {
  height: 100%;
  background: #f59e0b;
  border-radius: 5px;
}

.hp-bar-pct {
  width: 40px;
  text-align: right;
  color: var(--color-text-muted);
  font-weight: 600;
}

.hp-review-wall {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.hp-review-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hp-review-card__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 12px;
}

.hp-review-card__author {
  font-weight: 800;
  font-size: 1.05rem;
}

.hp-review-card__loc {
  font-size: 0.82rem;
  color: var(--color-text-subtle);
}

.hp-review-card__verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--color-save);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.hp-review-card__text {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 14px;
}

.hp-review-card__date {
  font-size: 0.78rem;
  color: var(--color-text-subtle);
  border-top: 1px solid var(--color-border);
  padding-top: 10px;
}

/* FAQ Accordion */
.hp-faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 860px;
  margin: 0 auto;
}

.hp-faq-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.hp-faq-item[open] {
  border-color: var(--color-amber);
}

.hp-faq-item summary {
  padding: 18px 22px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.hp-faq-item summary::-webkit-details-marker {
  display: none;
}

.hp-faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--color-amber-dark);
  font-weight: 400;
  line-height: 1;
}

.hp-faq-item[open] summary::after {
  content: '−';
}

.hp-faq-answer {
  padding: 0 22px 20px;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* Guarantee Band */
.hp-guarantee-band {
  background: radial-gradient(circle at top right, #fffcf7 0%, #f4ebd9 100%);
  border: 2px solid var(--color-amber);
  border-radius: var(--radius-xl);
  padding: 42px;
  box-shadow: var(--shadow-md);
  margin: 48px 0;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 36px;
  align-items: center;
}

.hp-guarantee-seal-img {
  width: 100%;
  max-width: 170px;
  margin: 0 auto;
}

/* References Section */
.hp-references {
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
  padding: 40px 0;
  font-size: 0.85rem;
  color: var(--color-text-subtle);
}

.hp-references h4 {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.hp-references ol {
  list-style: decimal inside;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hp-references a {
  color: var(--color-amber-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Sticky Bottom Order Bar */
.hp-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-dark-surface);
  color: var(--color-dark-text);
  border-top: 2px solid var(--color-amber);
  padding: 12px 0;
  z-index: 99;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.25);
  transform: translateY(110%);
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.hp-sticky-bar.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.hp-sticky-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.hp-sticky-bar__info {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hp-sticky-bar__brand {
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--color-amber);
}

.hp-sticky-bar__selection {
  font-size: 0.9rem;
  color: #e2d7c9;
}

.hp-sticky-bar__price {
  font-size: 1.1rem;
  font-weight: 800;
  color: #ffffff;
}

.hp-sticky-bar__cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hp-sticky-bar__close {
  color: #a89886;
  font-size: 1.5rem;
  line-height: 1;
  padding: 4px 8px;
  transition: color 0.15s ease;
}

.hp-sticky-bar__close:hover {
  color: #ffffff;
}

/* Footer */
.hp-footer {
  background-color: var(--color-dark-surface);
  color: var(--color-dark-text);
  padding: 64px 0 32px;
  border-top: 1px solid var(--color-dark-border);
}

.hp-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.hp-footer__heading {
  color: #ffffff;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}

.hp-footer__links li {
  margin-bottom: 10px;
}

.hp-footer__links a {
  color: #c4b5a5;
  font-size: 0.9rem;
  transition: color 0.15s ease;
}

.hp-footer__links a:hover {
  color: var(--color-amber);
}

.hp-footer__blurb {
  font-size: 0.9rem;
  color: #b3a494;
  margin: 14px 0 16px;
  max-width: 420px;
}

.hp-footer__corp {
  font-size: 0.85rem;
  color: #8c7e70;
  line-height: 1.6;
}

.hp-footer__corp a {
  color: var(--color-amber);
}

.hp-footer__payments {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.hp-pay-tag {
  background: #2a1f14;
  border: 1px solid #423222;
  color: #e6dacb;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
}

.hp-footer__disclaimers {
  border-top: 1px solid var(--color-dark-border);
  padding: 28px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hp-disclaimer {
  font-size: 0.78rem;
  color: #8f8173;
  line-height: 1.55;
}

.hp-footer__bottom {
  border-top: 1px solid var(--color-dark-border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: #7a6e62;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .hp-buybox-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hp-gallery {
    position: static;
  }
  .hp-trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hp-cards-grid {
    grid-template-columns: 1fr;
  }
  .hp-reviews-summary {
    grid-template-columns: 1fr;
  }
  .hp-rating-big {
    border-right: none;
    border-bottom: 1px solid var(--color-border);
    padding-right: 0;
    padding-bottom: 24px;
  }
  .hp-review-wall {
    grid-template-columns: 1fr;
  }
  .hp-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 64px;
  }
  .hp-hamburger {
    display: flex;
  }
  .hp-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-surface);
    border-bottom: 2px solid var(--color-amber);
    box-shadow: var(--shadow-lg);
    padding: 20px;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0.2s;
  }
  .hp-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s;
  }
  .hp-nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .hp-guarantee-band {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 28px 20px;
  }
  .hp-guarantee-seal-img {
    max-width: 130px;
  }
  .hp-sticky-bar__selection {
    display: none;
  }
  .hp-footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hp-footer__bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}
