/*
 * Honeypacks Premium Landing Page Stylesheet
 * Custom designed premium styling system
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;600;700;800;900&display=swap');

:root {
  --navy-dark: #070c1e;
  --navy-brand: #0d1b41;
  --navy-light: #162a5c;
  --red-brand: #d02129;
  --red-dark: #b01820;
  --gold-brand: #e5a93b;
  --gold-hover: #f1be5c;
  --white: #ffffff;
  --off-white: #faf9f6;
  --white-trans-10: rgba(255, 255, 255, 0.1);
  --white-trans-20: rgba(255, 255, 255, 0.2);
  --white-trans-80: rgba(255, 255, 255, 0.8);
  --gray-bg: #0b1129;
  --card-bg: rgba(22, 42, 92, 0.25);
  --gray-text: #a0aec0;
  --gray-light: #cbd5e0;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --container-max-width: 1200px;
}

/* Base Reset & Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--navy-dark);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

ul {
  list-style: none;
}

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

/* Utilities */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 10;
}

.text-gold {
  color: var(--gold-brand);
}

.text-red {
  color: var(--red-brand);
}

.section-padding {
  padding: 8rem 0;
}

.section-title-wrapper {
  text-align: center;
  margin-bottom: 4rem;
}

.section-subtitle {
  color: var(--gold-brand);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  margin-bottom: 0.75rem;
  display: block;
}

.section-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
}

/* Top Promo Bar */
.promo-bar {
  background: linear-gradient(90deg, var(--red-brand) 0%, var(--red-dark) 100%);
  color: var(--white);
  text-align: center;
  padding: 0.6rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 100;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Header & Nav */
.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  background-color: rgba(7, 12, 30, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 90;
  transition: var(--transition-smooth);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo span {
  color: var(--gold-brand);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gray-light);
}

.nav-link:hover, .nav-link.active {
  color: var(--white);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.header-btn {
  background-color: transparent;
  color: var(--white);
  border: 1.5px solid var(--white-trans-20);
  padding: 0.6rem 1.5rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.header-btn:hover {
  background-color: var(--white);
  color: var(--navy-dark);
  border-color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.15);
}

/* Mobile Menu Button */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 101;
}

.mobile-nav-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--white);
  margin: 5px 0;
  transition: var(--transition-smooth);
}

/* Hero Section */
.hero {
  position: relative;
  background-image: url('../images/hero.webp');
  background-repeat: no-repeat;
  background-position: center right;
  background-size: cover;
  min-height: 100vh;
  margin-top: -80px; /* Offset sticky header height */
  padding-top: 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Hero Overlays */
.hero-left-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(to right, rgba(7, 12, 30, 0.98) 0%, rgba(7, 12, 30, 0.85) 45%, rgba(7, 12, 30, 0.4) 75%, rgba(7, 12, 30, 0) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: center;
  gap: 4rem;
  width: 100%;
  position: relative;
  z-index: 5;
}

/* Hero Content */
.hero-content {
  padding: 4.5rem 0;
}

.rating-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.rating-stars {
  color: var(--gold-brand);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  display: inline-flex;
}

.rating-text {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white-trans-80);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-title {
  font-size: 3.4rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 2rem;
  text-transform: uppercase;
  max-width: 780px;
}

.highlight-brush {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}

.highlight-brush::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 10' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,7 Q30,1 50,7 T100,5' stroke='%23e5a93b' stroke-width='4' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  animation: draw-brush 1.2s cubic-bezier(0.19, 1, 0.22, 1) 0.5s forwards;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--gray-light);
  margin-bottom: 3.5rem;
  max-width: 600px;
  font-weight: 400;
}

.hero-cta-wrapper {
  margin-bottom: 1.8rem;
}

.hero-btn {
  display: inline-block;
  background-color: var(--white);
  color: var(--navy-dark);
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  padding: 1.25rem 3.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: var(--transition-smooth);
  border: 2px solid var(--white);
  text-align: center;
  border-radius: 0; /* Sharp corners as shown in the screenshot */
}

.hero-btn:hover {
  background-color: transparent;
  color: var(--white);
  border-color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.15);
}

.hero-meta {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-text);
  letter-spacing: 0.05em;
}

/* Value Propositions Section */
.value-props {
  background-color: var(--gray-bg);
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.props-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.prop-card {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.03);
  padding: 3rem 2rem;
  border-radius: 12px;
  text-align: center;
  transition: var(--transition-smooth);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.prop-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(22, 42, 92, 0.35);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.prop-icon-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(229, 169, 59, 0.1);
  color: var(--gold-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 1.8rem;
  border: 1px solid rgba(229, 169, 59, 0.2);
  transition: var(--transition-smooth);
}

.prop-card:hover .prop-icon-wrapper {
  background: var(--gold-brand);
  color: var(--navy-dark);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 20px rgba(229, 169, 59, 0.4);
}

.prop-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--white);
}

.prop-card p {
  color: var(--gray-text);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Product Section */
.product-showcase {
  background-color: var(--off-white);
  color: #1a202c;
}
.product-showcase .product-name {
  color: #070c1e;
}
.product-showcase .product-rating-count {
  color: #555555;
}
.product-showcase .product-desc {
  color: #4a5568;
}
.product-showcase .product-benefits-list li {
  color: #333333;
}
.product-showcase .purchase-option-row {
  border-color: rgba(0, 0, 0, 0.1);
  background: rgba(0, 0, 0, 0.02);
}
.product-showcase .purchase-option-row:hover {
  border-color: rgba(229, 169, 59, 0.5);
  background: rgba(229, 169, 59, 0.03);
}
.product-showcase .purchase-option-row.selected {
  border-color: var(--gold-brand);
  background: rgba(229, 169, 59, 0.08);
  box-shadow: 0 0 15px rgba(229, 169, 59, 0.1);
}
.product-showcase .purchase-option-row h4 {
  color: #070c1e;
}
.product-showcase .purchase-option-row p {
  color: #555555;
}
.product-showcase .price-main {
  color: #070c1e;
}
.product-showcase .price-strike {
  color: #888888;
}
.product-showcase .custom-radio {
  border-color: rgba(0, 0, 0, 0.3);
}
.product-showcase .purchase-option-row.selected .custom-radio {
  border-color: var(--gold-brand);
}
.product-showcase .checkout-btn {
  background-color: var(--navy-dark);
  color: var(--white);
  border-color: var(--navy-dark);
}
.product-showcase .checkout-btn:hover {
  background-color: transparent;
  color: var(--navy-dark);
  border-color: var(--navy-dark);
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

/* Product Visuals (Left) */
.product-visuals {
  position: relative;
}

.product-image-container {
  background: linear-gradient(145deg, rgba(22, 42, 92, 0.2) 0%, rgba(7, 12, 30, 0.6) 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.product-image-container::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(229, 169, 59, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.product-main-img {
  max-height: 400px;
  object-fit: contain;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.7));
  transition: var(--transition-smooth);
}

.product-image-container:hover .product-main-img {
  transform: scale(1.05) translateY(-5px);
}

.product-badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: var(--red-brand);
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  padding: 0.6rem 1.2rem;
  border-radius: 5px;
  text-transform: uppercase;
  z-index: 5;
  box-shadow: 0 5px 15px rgba(208, 33, 41, 0.4);
}

/* Product Details (Right) */
.product-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.product-rating-count {
  font-size: 0.85rem;
  color: var(--gray-text);
  font-weight: 500;
}

.product-name {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.product-tagline {
  font-size: 1.1rem;
  color: var(--gold-brand);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.product-desc {
  color: var(--gray-text);
  font-size: 1rem;
  margin-bottom: 2rem;
}

.product-benefits-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.product-benefits-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.95rem;
  font-weight: 500;
}

.product-benefits-list li svg {
  color: var(--gold-brand);
  flex-shrink: 0;
}

/* Buying Form */
.purchase-options {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.purchase-option-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.5rem;
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-bottom: 1rem;
  cursor: pointer;
  background: rgba(22, 42, 92, 0.1);
  transition: var(--transition-smooth);
}

.purchase-option-row:last-child {
  margin-bottom: 0;
}

.purchase-option-row:hover {
  border-color: rgba(229, 169, 59, 0.5);
  background: rgba(22, 42, 92, 0.2);
}

.purchase-option-row.selected {
  border-color: var(--gold-brand);
  background: rgba(229, 169, 59, 0.05);
  box-shadow: 0 0 15px rgba(229, 169, 59, 0.1);
}

.purchase-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.custom-radio {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.purchase-option-row.selected .custom-radio {
  border-color: var(--gold-brand);
}

.custom-radio::after {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold-brand);
  transform: scale(0);
  transition: var(--transition-smooth);
}

.purchase-option-row.selected .custom-radio::after {
  transform: scale(1);
}

.option-info h4 {
  font-size: 1.05rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.option-badge {
  background: var(--red-brand);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  text-transform: uppercase;
}

.option-info p {
  font-size: 0.85rem;
  color: var(--gray-text);
  margin-top: 0.2rem;
}

.purchase-right {
  text-align: right;
}

.price-main {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  font-family: 'Outfit', sans-serif;
}

.price-strike {
  font-size: 0.9rem;
  color: var(--gray-text);
  text-decoration: line-through;
}

.checkout-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.checkout-btn {
  background-color: var(--white);
  color: var(--navy-dark);
  border: 2px solid var(--white);
  width: 100%;
  padding: 1.2rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: var(--transition-smooth);
  border-radius: 0;
}

.checkout-btn:hover {
  background-color: transparent;
  color: var(--white);
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

.checkout-urgency {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-brand);
}

/* Ingredients Section */
.ingredients {
  background-color: var(--off-white);
  color: #1a202c;
}
.ingredients h2 {
  color: #070c1e;
}
.ingredients p {
  color: #4a5568;
}
.ingredients .ingredient-item {
  background: #f8fafc;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.ingredients .ingredient-item:hover {
  border-color: rgba(229, 169, 59, 0.3);
  background: #f1f5f9;
}
.ingredients .ingredient-info h3 {
  color: #070c1e;
}
.ingredients .ingredient-info p {
  color: #555555;
}
.ingredients .ingredient-thumb {
  background: rgba(229, 169, 59, 0.08);
  border-color: rgba(229, 169, 59, 0.3);
}

.ingredients-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 5rem;
  align-items: center;
}

.ingredients-title-block {
  padding-right: 2rem;
}

.ingredients-title-block h2 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.ingredients-title-block p {
  color: var(--gray-text);
  margin-bottom: 2rem;
}

.ingredient-cards-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.ingredient-item {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  transition: var(--transition-smooth);
}

.ingredient-item:hover {
  border-color: rgba(229, 169, 59, 0.2);
  transform: translateX(5px);
  background: rgba(22, 42, 92, 0.35);
}

.ingredient-thumb {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  background: rgba(229, 169, 59, 0.05);
  color: var(--gold-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  border: 1px solid rgba(229, 169, 59, 0.15);
  flex-shrink: 0;
}

.ingredient-info h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.ingredient-info p {
  font-size: 0.95rem;
  color: var(--gray-text);
  line-height: 1.5;
}

/* Reviews / Testimonials Section */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.review-card {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  transition: var(--transition-smooth);
}

.review-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.review-stars {
  color: var(--gold-brand);
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
}

.review-quote {
  font-size: 1rem;
  color: var(--white-trans-80);
  font-style: italic;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1.5rem;
}

.author-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--navy-light);
  color: var(--white);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  border: 1.5px solid var(--white-trans-10);
  text-transform: uppercase;
}

.author-meta h4 {
  font-size: 0.95rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.verified-badge {
  color: #38a169;
  display: inline-flex;
  font-size: 0.85rem;
}

.author-meta p {
  font-size: 0.8rem;
  color: var(--gray-text);
  margin-top: 0.1rem;
}

/* FAQ Section */
.faq {
  background-color: #000000;
}

/* Section Backgrounds */
.testimonials {
  background-color: #000000;
}

.why-choose-section {
  background-color: #ffffff;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-item {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.08);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  padding: 1.5rem 2rem;
  text-align: left;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: var(--transition-smooth);
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.02);
}

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: var(--gold-brand);
  color: var(--navy-dark);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
  padding: 0 2rem 1.5rem;
  color: var(--gray-text);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Footer Section */
.site-footer {
  background-color: var(--navy-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 5rem;
  padding-bottom: 2.5rem;
  font-size: 0.9rem;
  color: var(--gray-text);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.footer-logo span {
  color: var(--gold-brand);
}

.footer-about p {
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition-smooth);
}

.social-link:hover {
  background: var(--gold-brand);
  color: var(--navy-dark);
  transform: translateY(-3px);
}

.footer-nav-col h4 {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-nav-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-nav-col a:hover {
  color: var(--white);
  padding-left: 3px;
}

.footer-newsletter h4 {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-newsletter p {
  margin-bottom: 1.5rem;
}

.newsletter-form {
  display: flex;
  position: relative;
}

.newsletter-input {
  width: 100%;
  padding: 0.9rem 1.2rem;
  padding-right: 80px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 5px;
  color: var(--white);
  font-family: inherit;
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--gold-brand);
  background: rgba(255, 255, 255, 0.06);
}

.newsletter-btn {
  position: absolute;
  right: 5px;
  top: 5px;
  bottom: 5px;
  background: var(--white);
  color: var(--navy-dark);
  border: none;
  padding: 0 1.2rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  border-radius: 3px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.newsletter-btn:hover {
  background: var(--gold-brand);
  color: var(--navy-dark);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.footer-payment-icons {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

/* Animations */
@keyframes draw-brush {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

/* Squiggle Underline */
.squiggle-underline-container {
  width: 120px;
  height: 14px;
  margin: 0.5rem auto 0;
  position: relative;
}
.squiggle-underline-container.left {
  margin-left: 0;
}
.squiggle-svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Trust Strip Banner */
.trust-strip-banner {
  background-color: #000000;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 3rem 0;
  text-align: center;
}
.trust-strip-content h2 {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin: 0;
}

/* Why Choose Honeypacks Section */
.why-choose-section {
  background-color: var(--navy-dark);
}
.why-choose-box {
  background-color: #040817;
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  padding: 5rem 3rem;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}
.why-choose-title {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.01em;
}
.why-choose-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3.5rem 3rem;
  margin-top: 2rem;
}
.why-choose-item {
  flex: 0 1 210px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
}
.why-choose-icon-circle {
  width: 85px;
  height: 85px;
  border-radius: 50%;
  background-color: var(--white);
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.why-choose-icon-circle svg {
  width: 32px;
  height: 32px;
}
.why-choose-item:hover .why-choose-icon-circle {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 15px 30px rgba(229, 169, 59, 0.2);
  background-color: var(--gold-brand);
  color: var(--navy-dark);
}
.why-choose-item span {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
  line-height: 1.3;
}

/* Subscription Perks Section */
.sub-perks-section {
  background-color: #000000;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}
.sub-perks-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 5rem;
  align-items: center;
}
.sub-perks-title {
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.15;
  color: var(--white);
}
.sub-perks-list {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  margin-bottom: 3rem;
}
.sub-perks-list li {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}
.perk-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--gold-brand);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
  box-shadow: 0 4px 10px rgba(229, 169, 59, 0.2);
}
.perk-info h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.2rem;
}
.perk-info p {
  font-size: 0.95rem;
  color: var(--gray-text);
}
.sub-cta-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 400px;
}
.sub-btn {
  background-color: var(--white);
  color: var(--navy-dark);
  border: 2px solid var(--white);
  width: 100%;
  padding: 1.2rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: var(--transition-smooth);
  border-radius: 0;
}
.sub-btn:hover {
  background-color: transparent;
  color: var(--white);
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}
.sub-meta {
  font-size: 0.85rem;
  color: var(--gray-text);
  font-weight: 500;
  letter-spacing: 0.05em;
}
.sub-perks-visual {
  width: 100%;
  display: flex;
  justify-content: center;
}

.always-ready-section {
  background-color: #000000;
  color: #ffffff;
  padding: 7rem 0;
}
.always-ready-title {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.01em;
}
.ready-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-top: 2rem;
}
.ready-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
}
.ready-circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: #ffd300;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  box-shadow: 0 10px 25px rgba(255, 211, 0, 0.2);
}
.ready-circle svg {
  width: 30px;
  height: 30px;
}
.ready-item:hover .ready-circle {
  transform: scale(1.1) translateY(-5px);
  background-color: #f3b900;
  box-shadow: 0 15px 35px rgba(243, 185, 0, 0.35);
}
.ready-item h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.3;
}
.ready-item p {
  font-size: 0.95rem;
  color: var(--gray-text);
  line-height: 1.5;
}

/* Product Gallery and Detail Page Elements */
.product-gallery-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.product-thumbs-grid {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.product-thumb-item {
  width: 70px;
  height: 70px;
  border-radius: 8px;
  border: 2px solid rgba(0, 0, 0, 0.06);
  padding: 0.25rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product-thumb-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s;
}
.product-thumb-item:hover img {
  transform: scale(1.08);
}
.product-thumb-item.active {
  border-color: var(--gold-brand);
  box-shadow: 0 0 10px rgba(229, 169, 59, 0.2);
}
.product-thumb-item:hover {
  border-color: rgba(229, 169, 59, 0.5);
}

/* Shop All Products Section */
.shop-all-section {
  background-color: var(--off-white);
  color: #1a202c;
  padding: 7rem 0;
}
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}
.shop-product-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}
.shop-product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(229, 169, 59, 0.3);
}
.shop-product-img-wrapper {
  height: 240px;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}
.shop-product-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.shop-product-card:hover .shop-product-img {
  transform: scale(1.08);
}
.shop-product-info {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.shop-product-rating {
  color: var(--gold-brand);
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.shop-product-rating-score {
  color: #718096;
  font-weight: 500;
}
.shop-product-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: #070c1e;
  margin-bottom: 0.5rem;
  line-height: 1.25;
}
.shop-product-tagline {
  font-size: 0.95rem;
  color: #4a5568;
  margin-bottom: 1.5rem;
  line-height: 1.4;
  flex-grow: 1;
}
.shop-product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 1.25rem;
}
.shop-product-price {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 900;
  color: #070c1e;
}
.shop-product-price span {
  font-size: 0.8rem;
  color: #718096;
  font-weight: 500;
  display: block;
}
.shop-product-btn {
  background-color: var(--navy-dark);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  border-radius: 5px;
  text-decoration: none;
  transition: var(--transition-smooth);
  border: 1.5px solid var(--navy-dark);
}
.shop-product-btn:hover {
  background-color: transparent;
  color: var(--navy-dark);
}

/* Form Inputs Premium Styling */
.checkout-section input[type="text"]:focus,
.checkout-section input[type="email"]:focus,
.checkout-section input[type="tel"]:focus {
  outline: none;
  border-color: var(--gold-brand) !important;
  background-color: #ffffff !important;
  box-shadow: 0 0 10px rgba(229, 169, 59, 0.15) !important;
}
.cart-icon-btn:hover {
  color: var(--gold-brand) !important;
}

/* Responsive Styling */
@media (max-width: 1200px) {
  :root {
    font-size: 15px;
  }
  .hero-title {
    font-size: 3rem;
  }
  .sub-perks-title {
    font-size: 2.5rem;
  }
  .always-ready-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 991px) {
  .section-padding {
    padding: 6rem 0;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero {
    min-height: auto;
    padding-bottom: 6rem;
  }
  .hero-left-overlay {
    width: 100%;
    background: linear-gradient(to bottom, rgba(7, 12, 30, 0.96) 0%, rgba(7, 12, 30, 0.8) 100%);
  }
  .hero-content {
    text-align: center;
    padding-bottom: 1rem;
  }
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
  .rating-badge {
    justify-content: center;
  }
  .product-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .product-visuals {
    max-width: 500px;
    margin: 0 auto;
  }
  .ingredients-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .ingredients-title-block {
    text-align: center;
    padding-right: 0;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }

  /* New Sections Responsive */
  .trust-strip-content h2 {
    font-size: 1.8rem;
  }
  .why-choose-box {
    padding: 4rem 1.5rem;
  }
  .why-choose-title {
    font-size: 2.2rem;
  }
  .why-choose-grid {
    gap: 2.5rem 1.5rem;
  }
  .sub-perks-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 4rem;
  }
  .squiggle-underline-container.left {
    margin: 0.5rem auto 0;
  }
  .sub-perks-list li {
    justify-content: center;
    text-align: left;
  }
  .sub-cta-wrapper {
    margin: 0 auto;
  }
  .always-ready-title {
    font-size: 2.2rem;
  }
  .ready-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 2rem;
  }
  .shop-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .header-actions {
    display: none;
  }
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--navy-dark);
    flex-direction: column;
    padding: 3rem;
    gap: 2rem;
    transition: var(--transition-smooth);
    z-index: 99;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
  }
  .nav-menu.open {
    left: 0;
  }
  .mobile-nav-toggle {
    display: block;
  }
  .mobile-nav-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-nav-toggle.open span:nth-child(2) {
    opacity: 0;
  }
  .mobile-nav-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -7px);
  }
  .hero-title {
    font-size: 2.4rem;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  .ready-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .shop-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.9rem;
  }
  .trust-strip-content h2 {
    font-size: 1.4rem;
  }
  .why-choose-title {
    font-size: 1.8rem;
  }
  .sub-perks-title {
    font-size: 1.8rem;
  }
  .always-ready-title {
    font-size: 1.8rem;
  }
  .purchase-option-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .purchase-right {
    text-align: left;
    padding-left: 2.2rem;
  }
}

/* Color Alternation Overrides (Tail End of Homepage) */
.why-choose-section {
  background-color: #000000 !important;
}
.why-choose-box {
  background-color: #0e121e !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6) !important;
}

.testimonials {
  background-color: var(--off-white) !important;
  color: #1a202c !important;
}
.testimonials .section-title {
  color: #070c1e !important;
}
.testimonials .review-card {
  background: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.06) !important;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02) !important;
}
.testimonials .review-card:hover {
  border-color: rgba(229, 169, 59, 0.3) !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.07) !important;
}
.testimonials .review-quote {
  color: #4a5568 !important;
}
.testimonials .review-author {
  border-top: 1px solid rgba(0, 0, 0, 0.06) !important;
}
.testimonials .author-avatar {
  background: #f1f5f9 !important;
  color: #070c1e !important;
  border-color: rgba(0, 0, 0, 0.05) !important;
}
.testimonials .author-meta h4 {
  color: #070c1e !important;
}

.trust-strip-banner {
  background-color: #000000 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
}
.trust-strip-content h2 {
  color: var(--white) !important;
}

.faq {
  background-color: var(--off-white) !important;
  color: #1a202c !important;
}
.faq .section-title {
  color: #070c1e !important;
}
.faq-item {
  background: #f8fafc !important;
  border: 1px solid rgba(0, 0, 0, 0.05) !important;
}
.faq-item:hover {
  border-color: rgba(229, 169, 59, 0.3) !important;
}
.faq-question {
  color: #070c1e !important;
}
.faq-question:hover {
  background: rgba(0, 0, 0, 0.01) !important;
}
.faq-icon {
  background: rgba(0, 0, 0, 0.04) !important;
  color: #070c1e !important;
}
.faq-item.active .faq-icon {
  background: var(--gold-brand) !important;
  color: var(--navy-dark) !important;
}
.faq-answer-inner {
  color: #4a5568 !important;
}

