/** Shopify CDN: Minification failed

Line 5114:0 Unexpected "}"

**/
/* Base Styles for Superior Grooming Theme */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #050505;
  --secondary-color: #f8f7f4;
  --accent-color: #a68b5b;
  --accent-gold: #9d7c47;
  --accent-gold-light: #c4a876;
  --text-color: #1a1a1a;
  --text-light: #5a5a5a;
  --border-color: #e5e3df;
  --spacing: 1.5rem;
  --max-width: 1400px;
  --premium-shadow: 0 25px 70px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(0, 0, 0, 0.02);
  --premium-shadow-hover: 0 35px 100px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.04);
  --luxury-gradient: linear-gradient(135deg, rgba(157, 124, 71, 0.08) 0%, rgba(196, 168, 118, 0.04) 100%);
  --text-gradient: linear-gradient(135deg, #050505 0%, #2a2a2a 100%);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-color);
  line-height: 1.7;
  background-color: #ffffff;
  font-weight: 400;
  letter-spacing: 0.015em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "kern" 1, "liga" 1;
  animation: fadeIn 0.6s ease-in;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main,
.content-for-layout,
#MainContent {
  flex: 1 0 auto;
}

/* Respect user's motion preferences */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  html {
    scroll-behavior: auto;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--accent-color);
}

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 16px 40px;
  border: none;
  border-radius: 2px;
  font-size: 0.95rem;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.btn-primary {
  background-color: var(--primary-color);
  color: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15), 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
  background-color: var(--accent-gold);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(184, 148, 31, 0.35), 0 2px 6px rgba(0, 0, 0, 0.15);
  border-color: rgba(184, 148, 31, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Header */
.site-header {
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px) saturate(180%);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.04), 0 1px 0 rgba(255, 255, 255, 0.8) inset;
  transition: box-shadow 0.3s ease;
}

.site-header:hover {
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.06), 0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.header-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.25rem var(--spacing);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-logo .logo-text {
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--primary-color);
  letter-spacing: 0.05em;
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.logo-image {
  max-height: 50px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-link {
  font-weight: 500;
  color: var(--text-color);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  position: relative;
  padding-bottom: 5px;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--accent-gold);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-gold) 0%, var(--accent-gold-light) 100%);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover::after {
  width: 100%;
}

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

.home-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  border-radius: 6px;
  color: var(--text-color);
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 44px;
  min-height: 44px;
}

.home-link:hover {
  background-color: var(--secondary-color);
  color: var(--accent-gold);
  transform: translateY(-1px);
}

.home-link .icon-home {
  width: 24px;
  height: 24px;
}

.cart-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem;
  border-radius: 6px;
  transition: all 0.3s ease;
  position: relative;
}

.cart-link:hover {
  background-color: var(--secondary-color);
  transform: translateY(-1px);
}

.cart-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: var(--text-color);
  transition: color 0.3s ease, transform 0.3s ease;
}

.cart-icon .icon {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
}

.cart-link:hover .cart-icon {
  color: var(--accent-gold);
  transform: scale(1.1);
}

.cart-count {
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-light) 100%);
  color: #fff;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6875rem;
  font-weight: 600;
  box-shadow: 0 2px 4px rgba(157, 124, 71, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cart-link:hover .cart-count {
  transform: scale(1.15);
  box-shadow: 0 3px 6px rgba(157, 124, 71, 0.4);
}

/* Hero Banner */
.hero-banner {
  background-size: cover;
  background-position: center;
  background-color: var(--primary-color);
  color: #fff;
  padding: 140px var(--spacing);
  text-align: center;
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.85) 0%, rgba(0, 0, 0, 0.75) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.hero-title {
  font-size: 4.5rem;
  margin-bottom: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.4rem;
  margin-bottom: 3rem;
  opacity: 0.95;
  font-weight: 300;
  letter-spacing: 0.03em;
  line-height: 1.6;
}

.hero-button {
  margin-top: 1rem;
}

.hero-cta-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.hero-button-large {
  font-size: 1.3rem !important;
  padding: 1.2rem 3rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  box-shadow: 0 4px 20px rgba(157, 124, 71, 0.4) !important;
  transition: all 0.3s ease !important;
  min-width: 300px;
}

.hero-button-large:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 25px rgba(157, 124, 71, 0.5) !important;
}

.hero-product-preview-link {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.9;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-product-preview-link:hover {
  opacity: 1;
  transform: translateX(5px);
}

.hero-preview-text {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Section Container */
.section-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 3rem var(--spacing);
  min-height: 50px;
}

@media (max-width: 768px) {
  /* Ensure comparison section container doesn't create white overlay */
  .hero-comparison-section .section-container,
  .comparison-table-section .section-container {
    background: transparent !important;
    padding-top: 0 !important;
  }
}

.section-title {
  font-size: 3rem;
  text-align: center;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  margin-bottom: 2rem;
  color: var(--primary-color);
  font-weight: 400;
  letter-spacing: 0.02em;
  position: relative;
  padding-bottom: 1rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

/* Product Card */
.product-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 0;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--premium-shadow-hover);
  border-color: rgba(212, 175, 55, 0.2);
}

.product-card-link {
  display: block;
  color: inherit;
}

.product-card-image {
  position: relative;
  overflow: hidden;
  background-color: #f8f8f8;
  aspect-ratio: 1;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-card-image img {
  transform: scale(1.08);
}

.product-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: var(--primary-color);
  color: #fff;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 600;
}

.product-badge.sold-out {
  background-color: #999;
}

.product-card-info {
  padding: 1.5rem 1.25rem;
  background: #fff;
}

.product-card-title {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
  color: var(--primary-color);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.4;
}

.product-card-price {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}

.product-card-price .price {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--primary-color);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  letter-spacing: 0;
}

.product-card-price .compare-price {
  font-size: 1rem;
  color: var(--text-light);
  text-decoration: line-through;
}

/* Product Page */
.product-page {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4rem var(--spacing);
}

.product-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  padding: 4rem 0;
}

.product-images {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-main-image {
  width: 100%;
  border-radius: 8px;
}

.product-thumbnails {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.product-thumbnail {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  border: 2px solid transparent;
}

.product-thumbnail:hover {
  border-color: var(--accent-color);
}

.product-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.product-title {
  font-size: 3rem;
  color: var(--primary-color);
  font-weight: 400;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}

.product-price {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.product-price .price {
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--primary-color);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.product-price .compare-price {
  font-size: 1.5rem;
  color: var(--text-light);
  text-decoration: line-through;
}

.product-description {
  font-size: 1.125rem;
  line-height: 1.9;
  color: var(--text-light);
  margin-top: 1.5rem;
}

.product-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.product-variants {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-option label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.product-option select {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-size: 1rem;
}

.product-quantity {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.product-quantity label {
  font-weight: 600;
}

.product-quantity input {
  width: 100px;
  padding: 10px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-size: 1rem;
}

.add-to-cart-btn {
  padding: 18px 45px;
  font-size: 0.95rem;
  letter-spacing: 0.15em;
  width: 100%;
  max-width: 400px;
}

.add-to-cart-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Collection Page */
.collection-page {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4rem var(--spacing);
}

.collection-header {
  text-align: center;
  margin-bottom: 3rem;
}

.collection-title {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.collection-description {
  font-size: 1.125rem;
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto;
}

.no-products {
  text-align: center;
  padding: 4rem;
  color: var(--text-light);
}

/* Cart Page */
.cart-page {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4rem var(--spacing);
}

.cart-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--primary-color);
}

.cart-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
}

.cart-table th,
.cart-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.cart-table th {
  font-weight: 600;
  color: var(--primary-color);
}

.cart-item-image {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 4px;
}

.cart-item-product {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cart-item-title {
  font-weight: 600;
  color: var(--primary-color);
}

.cart-item-variant {
  font-size: 0.875rem;
  color: var(--text-light);
}

.cart-item-quantity input {
  width: 60px;
  padding: 5px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
}

.remove-item {
  color: #d32f2f;
  font-size: 0.875rem;
}

.cart-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  margin-top: 2rem;
}

.cart-totals {
  flex: 1;
}

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  padding: 1rem;
  background-color: var(--secondary-color);
  border-radius: 4px;
  font-size: 1.25rem;
  font-weight: bold;
}

.cart-actions {
  display: flex;
  gap: 1rem;
}

.cart-empty {
  text-align: center;
  padding: 4rem;
}

.cart-empty p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: var(--text-light);
}

/* Footer */
.site-footer {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  color: #fff;
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
}

.footer-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2.5rem var(--spacing) 1.5rem;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.footer-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.footer-description {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.9;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}

.footer-heading {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
}

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

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
}

/* Product Benefits Section */
.product-benefits {
  padding: 3rem 0;
  background-color: var(--secondary-color);
}

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

.benefit-item {
  text-align: center;
  padding: 2rem 1.5rem;
  background: #fff;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  border: none;
  display: block !important;
  visibility: visible !important;
  min-height: 200px;
}

.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--premium-shadow);
}

.benefit-icon {
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
}

.benefit-icon img {
  max-width: 80px;
  max-height: 80px;
  object-fit: contain;
}

.benefit-icon-placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
}

.benefit-icon-placeholder svg {
  width: 100%;
  height: 100%;
  stroke: var(--accent-gold);
  fill: none;
}

.benefit-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--primary-color);
  font-weight: 400;
  display: block !important;
  visibility: visible !important;
}

.benefit-description {
  display: block !important;
  visibility: visible !important;
  color: var(--text-light);
  line-height: 1.8;
  font-size: 1rem;
}

/* FAQ Section */
.faq-section {
  padding: 3rem 0;
  background-color: #fff;
}

.faq-container {
  display: block !important;
  visibility: visible !important;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 0;
  display: block !important;
  visibility: visible !important;
}

.faq-question {
  width: 100%;
  padding: 1rem 0;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.05rem;
  color: var(--primary-color);
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
  z-index: 1;
  pointer-events: auto !important;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  -webkit-touch-callout: none;
  user-select: none;
}

.faq-question:hover {
  color: var(--accent-gold);
}

.faq-question-text {
  flex: 1;
  padding-right: 2rem;
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform 0.3s ease;
  color: var(--accent-gold);
  min-width: 30px;
  text-align: center;
  display: inline-block;
  line-height: 1;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.3s ease;
  padding: 0;
  opacity: 0;
}

.faq-item.active .faq-answer {
  max-height: 1000px !important;
  padding-bottom: 1rem;
  padding-top: 0;
  opacity: 1 !important;
  display: block !important;
  visibility: visible !important;
  overflow: visible !important;
}

.faq-answer-content {
  color: var(--text-light);
  line-height: 1.8;
  padding-top: 0.5rem;
}

/* Trust Badges Section */
.trust-badges {
  padding: 3rem 0;
  background-color: var(--secondary-color);
}

.trust-badges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.trust-badge {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem;
  background: #fff;
  border-radius: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trust-badge:hover {
  transform: translateY(-3px);
  box-shadow: var(--premium-shadow);
}

.trust-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
  flex-shrink: 0;
}

.trust-icon-text {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--accent-gold);
}

.trust-icon-text svg {
  width: 100%;
  height: 100%;
  stroke: var(--accent-gold);
  fill: none;
  max-width: 28px;
  max-height: 28px;
}

.trust-badge-content {
  flex: 1;
}

.trust-title {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
  font-weight: 500;
}

.trust-description {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Product Showcase Section */
.product-showcase {
  padding: 3rem 0;
  background-color: #fff;
}

.showcase-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.showcase-image {
  position: relative;
}

.showcase-main-image {
  width: 100%;
  height: auto;
  border-radius: 0;
  box-shadow: var(--premium-shadow);
}

.showcase-placeholder {
  width: 100%;
  aspect-ratio: 1;
  background: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 1rem;
  letter-spacing: 0.1em;
}

.showcase-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: var(--accent-gold);
  color: #fff;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.showcase-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
  font-weight: 400;
  line-height: 1.2;
}

.showcase-subtitle {
  font-size: 1.125rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.showcase-price {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.showcase-price .price {
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--primary-color);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.showcase-price .compare-price {
  font-size: 1.75rem;
  color: var(--text-light);
  text-decoration: line-through;
}

.showcase-key-points {
  list-style: none;
  margin-bottom: 1.5rem;
}

.showcase-key-points li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  color: var(--text-color);
  font-size: 1.05rem;
  line-height: 1.6;
}

.showcase-key-points li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-gold);
  font-weight: bold;
  font-size: 1.25rem;
}

.showcase-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.showcase-button {
  width: 100%;
  max-width: 400px;
  text-align: center;
}

.showcase-button-large {
  font-size: 1.2rem !important;
  padding: 1rem 2.5rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  box-shadow: 0 4px 20px rgba(157, 124, 71, 0.3) !important;
  transition: all 0.3s ease !important;
  max-width: 450px !important;
  min-height: 48px !important;
  height: auto !important;
  box-sizing: border-box !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.showcase-button-large:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 25px rgba(157, 124, 71, 0.4) !important;
}

.showcase-button-secondary {
  width: 100%;
  max-width: 450px;
  text-align: center;
  font-size: 1.2rem !important;
  padding: 1rem 2.5rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  box-shadow: 0 4px 20px rgba(157, 124, 71, 0.3) !important;
  transition: all 0.3s ease !important;
  min-height: 48px !important;
  height: auto !important;
  box-sizing: border-box !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.showcase-button-secondary:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 25px rgba(157, 124, 71, 0.4) !important;
}

.showcase-trust-note {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* Testimonials Section */
.testimonials-section {
  padding: 3rem 0;
  background-color: var(--secondary-color);
}

.rating-summary {
  text-align: center;
  margin-bottom: 2rem;
}

.rating-stars {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.star {
  font-size: 1.5rem;
  color: #ddd;
}

.star.filled {
  color: var(--accent-gold);
}

.rating-text {
  color: var(--text-light);
  font-size: 1rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: #fff;
  padding: 1.75rem;
  border-radius: 0;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--premium-shadow);
}

.testimonial-rating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.testimonial-rating .star {
  font-size: 1.25rem;
}

.testimonial-text {
  color: var(--text-color);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-size: 1rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info {
  flex: 1;
}

.author-name {
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.25rem;
}

.author-location {
  color: var(--text-light);
  font-size: 0.9rem;
}

.verified-badge {
  display: inline-block;
  font-size: 0.75rem;
  color: var(--accent-gold);
  font-weight: 600;
  margin-left: 0.5rem;
  padding: 0.15rem 0.4rem;
  background: rgba(157, 124, 71, 0.1);
  border-radius: 3px;
}

/* Social Proof Styles */
.social-proof-recent,
.social-proof-visitors {
  background: linear-gradient(135deg, rgba(157, 124, 71, 0.05) 0%, rgba(196, 168, 118, 0.02) 100%);
  border: 1px solid rgba(157, 124, 71, 0.15);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  animation: fadeIn 0.5s ease-in;
}

.social-proof-text {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-color);
  margin: 0;
}

.social-proof-icon {
  font-size: 1.1rem;
}

.social-proof-message {
  flex: 1;
  font-weight: 500;
}

.social-proof-time {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 400;
}

.visitor-count {
  font-weight: 700;
  color: var(--accent-gold);
}

/* Network Error Banner */
.network-error-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #dc3545;
  color: white;
  padding: 0.75rem 1rem;
  text-align: center;
  z-index: 10000;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

/* Carousel Error Fallback */
.carousel-error {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  background: #f8f9fa;
  border: 2px dashed #dee2e6;
  border-radius: 8px;
  color: var(--text-light);
  text-align: center;
  padding: 2rem;
}

.carousel-error-message {
  font-size: 0.9rem;
}

/* Form Validation & Feedback */
.form-error-message {
  background: #fee;
  border: 1px solid #fcc;
  color: #c33;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  animation: slideDown 0.3s ease-out;
}

.form-success-message {
  background: #efe;
  border: 1px solid #cfc;
  color: #3c3;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  animation: slideDown 0.3s ease-out;
}

.btn.error-state {
  background: #dc3545 !important;
  border-color: #dc3545 !important;
  animation: shake 0.5s ease-in-out;
}

.btn.success-state {
  background: #28a745 !important;
  border-color: #28a745 !important;
  animation: pulse 0.5s ease-in-out;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Comparison Table */
.comparison-table-container {
  margin: 3rem 0;
  padding: 3rem 2.5rem;
  background: var(--secondary-color);
  border-radius: 12px;
  box-shadow: var(--premium-shadow);
}

.comparison-title {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 2rem;
  margin-top: 0;
  color: var(--primary-color);
  text-align: center;
  line-height: 1.3;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.comparison-table thead {
  background: var(--accent-gold);
  color: white;
}

.comparison-table th {
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-weight: 600;
  font-size: 1rem;
}

.comparison-table tbody tr {
  border-bottom: 1px solid var(--border-color);
}

.comparison-table tbody tr:last-child {
  border-bottom: none;
}

.comparison-table tbody th {
  background: var(--secondary-color);
  font-weight: 600;
  padding: 1.25rem 1.5rem;
  font-size: 1rem;
}

.comparison-table td {
  padding: 1.25rem 1.5rem;
  text-align: center;
  font-size: 1rem;
}

.comparison-table td:first-of-type {
  text-align: left;
}

/* Ingredients Section */
.ingredients-section {
  margin: 3rem 0;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(157, 124, 71, 0.05) 0%, rgba(196, 168, 118, 0.02) 100%);
  border-radius: 12px;
  border: 1px solid rgba(157, 124, 71, 0.15);
}

.ingredients-title,
.usage-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.ingredients-intro {
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.ingredients-list {
  list-style: none;
  padding: 0;
}

.ingredients-list li {
  padding: 0.75rem 0;
  padding-left: 1.5rem;
  position: relative;
  border-bottom: 1px solid rgba(157, 124, 71, 0.1);
}

.ingredients-list li:last-child {
  border-bottom: none;
}

.ingredients-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-gold);
  font-weight: bold;
}

/* Usage Instructions */
.usage-instructions {
  margin: 3rem 0;
  padding: 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: var(--premium-shadow);
}

.usage-steps {
  list-style: none;
  counter-reset: step-counter;
  padding: 0;
  margin: 1.5rem 0;
}

.usage-steps li {
  counter-increment: step-counter;
  padding: 1rem 0 1rem 3rem;
  position: relative;
  border-bottom: 1px solid var(--border-color);
}

.usage-steps li:last-child {
  border-bottom: none;
}

.usage-steps li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 1rem;
  width: 2rem;
  height: 2rem;
  background: var(--accent-gold);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
}

.usage-note {
  margin-top: 1.5rem;
  padding: 1rem;
  background: #fff3cd;
  border-left: 4px solid #ffc107;
  border-radius: 4px;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .comparison-table-container {
    padding: 2rem 1.5rem;
    margin: 2rem 0;
  }
  
  .ingredients-section,
  .usage-instructions {
    padding: 1.5rem;
    margin: 2rem 0;
  }
  
  .comparison-table {
    font-size: 0.9rem;
  }
  
  .comparison-table th,
  .comparison-table td {
    padding: 1rem 0.75rem;
  }
  
  .ingredients-title,
  .usage-title,
  .comparison-title {
    font-size: 1.25rem;
  }
}

/* Header Trust Badge */
.header-trust-badge {
  font-size: 0.8125rem;
  color: var(--text-color);
  padding: 0.5rem 0.875rem;
  background: linear-gradient(135deg, #ffffff 0%, var(--secondary-color) 100%);
  border-radius: 6px;
  font-weight: 500;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  border: 1px solid var(--border-color);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.header-trust-badge:hover {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  border-color: rgba(157, 124, 71, 0.2);
  transform: translateY(-1px);
}

.header-trust-badge .icon {
  width: 14px;
  height: 14px;
  color: var(--accent-gold);
  flex-shrink: 0;
  filter: drop-shadow(0 1px 2px rgba(157, 124, 71, 0.15));
}

/* Hero Trust Note */
.hero-product-trust-note {
  margin-top: 0.3rem;
  font-size: 0.7rem;
  color: var(--text-light);
  letter-spacing: 0.03em;
  font-weight: 400;
  text-align: center;
  flex-shrink: 0;
}

.hero-trust-note {
  margin-top: 2rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.05em;
  font-weight: 400;
}

/* Hero Product Showcase - Above the Fold */
.hero-product-showcase {
  padding: 0;
  height: calc(100vh - 80px);
  min-height: calc(100vh - 80px);
  max-height: calc(100vh - 80px);
  display: flex;
  align-items: stretch;
  background: linear-gradient(180deg, #ffffff 0%, #faf9f6 50%, var(--secondary-color) 100%);
  position: relative;
  overflow: hidden;
}

.hero-product-showcase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(157, 124, 71, 0.04) 0%, transparent 60%),
    radial-gradient(circle at 80% 80%, rgba(5, 5, 5, 0.015) 0%, transparent 60%),
    linear-gradient(135deg, transparent 0%, rgba(196, 168, 118, 0.02) 100%);
  pointer-events: none;
}

.hero-product-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.5rem var(--spacing);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1rem;
  align-items: start;
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.hero-product-image {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  grid-column: 1;
  height: 100%;
  overflow: hidden;
  min-height: 0;
  max-height: 100%;
  align-self: stretch;
}

/* Product Image Carousel */
.hero-product-image-carousel {
  width: 100%;
  aspect-ratio: 1 / 1;
  position: relative;
  margin: 0;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 100%;
  min-height: calc(100vh - 120px);
  max-height: calc(100vh - 100px);
}

.hero-product-main-image {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
}

.hero-product-main-image:hover {
  transform: scale(1.02);
}

.hero-product-placeholder {
  width: 100%;
  aspect-ratio: 1;
  max-height: 440px;
  min-height: 400px;
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
  border: 2px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-color);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}


.carousel-container {
  position: relative;
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 10px;
  display: block;
  background: #fff;
  min-height: calc(100vh - 120px);
}

.carousel-slides {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
}

.carousel-slide {
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
}

.carousel-slide.active {
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: visible;
  animation: fadeInSlide 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Loading skeleton for carousel */
.carousel-slide.loading {
  position: relative;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading-shimmer 1.5s infinite;
}

@keyframes loading-shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

@keyframes fadeInSlide {
  from {
    opacity: 0;
    transform: scale(0.98);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  display: block;
  transition: opacity 0.3s ease;
  position: relative;
  z-index: 1;
}

.carousel-slide img[loading="lazy"] {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.carousel-slide img[loading="lazy"].loaded {
  opacity: 1;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 247, 244, 0.98) 100%);
  border: 1px solid var(--border-color);
  width: 32px;
  height: 32px;
  min-width: 32px;
  min-height: 32px;
  border-radius: 50%;
  font-size: 1.2rem;
  font-size: 1.5rem;
  color: var(--primary-color);
  cursor: pointer;
  z-index: 15;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  line-height: 1;
  padding: 0;
  backdrop-filter: blur(8px);
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.carousel-arrow:hover {
  background: linear-gradient(135deg, #ffffff 0%, var(--secondary-color) 100%);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18), 0 4px 10px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 1);
  transform: translateY(-50%) scale(1.12);
  border-color: rgba(157, 124, 71, 0.4);
  color: var(--accent-gold);
}

.carousel-arrow:active {
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 2px 4px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.carousel-prev {
  left: 10px;
}

.carousel-next {
  right: 10px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  padding: 0;
  position: relative;
  z-index: 5;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  min-width: 8px;
  min-height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.2);
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.carousel-dot::before {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.carousel-dot:hover {
  background: rgba(157, 124, 71, 0.6);
  transform: scale(1.3);
  box-shadow: 0 2px 6px rgba(157, 124, 71, 0.3);
}

.carousel-dot.active {
  background: var(--accent-gold);
  width: 24px;
  border-radius: 3px;
  box-shadow: 0 2px 8px rgba(157, 124, 71, 0.5), 0 0 0 2px rgba(157, 124, 71, 0.1);
  animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
  0%, 100% {
    box-shadow: 0 2px 8px rgba(157, 124, 71, 0.5), 0 0 0 2px rgba(157, 124, 71, 0.1);
  }
  50% {
    box-shadow: 0 2px 12px rgba(157, 124, 71, 0.7), 0 0 0 3px rgba(157, 124, 71, 0.2);
  }
}

/* Below Carousel Content */
.hero-product-image-extra {
  width: 100%;
  padding: 1.125rem 1.25rem;
  background: linear-gradient(135deg, #ffffff 0%, var(--secondary-color) 100%);
  border-radius: 8px;
  border: 1px solid var(--border-color);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-shrink: 0;
  min-height: 220px;
}

/* Hide description box on desktop to fit above fold */
@media screen and (min-width: 750px) {
  .desktop-hidden {
    display: none !important;
  }
}

/* Hero Comparison Section - Above the Fold */
.hero-comparison-section {
  margin-top: 3rem !important;
  padding: 2rem 0 !important;
  padding-top: 4rem !important;
  scroll-margin-top: 2rem !important; /* Extra space when scrolling to anchor */
  user-select: text !important;
  -webkit-user-select: text !important;
  -moz-user-select: text !important;
  -ms-user-select: text !important;
  pointer-events: auto !important;
  position: relative !important;
  display: block !important;
}

@media (max-width: 768px) {
  /* CRITICAL: Hero showcase must contain everything and button must be on top */
  .hero-product-showcase {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    position: relative !important;
    z-index: 100 !important;
    overflow: hidden !important;
  }
  
  .hero-product-container {
    position: relative !important;
    z-index: 101 !important;
    overflow: visible !important;
  }
  
  .hero-product-content {
    position: relative !important;
    z-index: 102 !important;
    overflow: visible !important;
  }
  
  /* CRITICAL: Button area has MAXIMUM priority - always on top */
  .hero-product-cta-enhanced {
    position: relative !important;
    z-index: 999999 !important;
    isolation: isolate !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    background: transparent !important;
    background-color: transparent !important;
  }
  
  .hero-product-button-massive,
  .hero-add-to-cart-form,
  button.hero-product-button-massive,
  form.hero-add-to-cart-form {
    position: relative !important;
    z-index: 1000000 !important;
    background: var(--primary-color) !important;
  }
  
  /* Ensure button container is also on top */
  .hero-product-content {
    position: relative !important;
    z-index: 999998 !important;
  }
  
  /* Force button to be visible above everything - consolidate all button rules */
  button.btn.hero-product-button-massive,
  .btn.hero-product-button-massive,
  .hero-product-button-massive,
  button.hero-product-button-massive,
  .hero-add-to-cart-form,
  form.hero-add-to-cart-form {
    position: relative !important;
    z-index: 1000000 !important;
    transform: translateZ(0) !important; /* Force hardware acceleration */
  }
  
  /* Sections after hero showcase - MUST be below, not overlapping */
  .hero-product-showcase ~ section,
  .hero-product-showcase ~ .product-benefits,
  section.product-benefits,
  .product-benefits {
    position: relative !important;
    z-index: 1 !important; /* Lower z-index so button stays on top */
    margin-top: 0.5rem !important; /* Minimal spacing */
    padding-top: 2rem !important; /* Normal padding */
    clear: both !important;
  }
  
  /* Comparison section - normal positioning, lower z-index */
  .hero-comparison-section,
  .comparison-table-section,
  section.hero-comparison-section,
  section.comparison-table-section {
    position: relative !important;
    z-index: 1 !important; /* Lower z-index so button stays on top */
    margin-top: 2rem !important; /* Normal spacing */
    padding-top: 2rem !important; /* Normal padding */
    padding-bottom: 2rem !important;
  }
  
  /* Also ensure any section container doesn't overlap */
  .hero-comparison-section .section-container,
  .comparison-table-section .section-container {
    position: relative !important;
    z-index: 1 !important;
    background: transparent !important;
    background-color: transparent !important;
  }
  
  /* Override any inline styles on the comparison section */
  section.hero-comparison-section[style*="background-color"],
  section.comparison-table-section[style*="background-color"],
  .hero-comparison-section[style*="background-color"],
  .comparison-table-section[style*="background-color"] {
    background-color: transparent !important;
    background: transparent !important;
  }
  
  /* Override ALL inline background styles on mobile - force transparent using attribute selector */
  section.hero-comparison-section[style*="background"],
  section.comparison-table-section[style*="background"],
  .hero-comparison-section[style*="background-color"],
  .comparison-table-section[style*="background-color"] {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
  }
  
  /* Force transparent on the section element itself */
  section.hero-comparison-section,
  section.comparison-table-section {
    background: transparent !important;
    background-color: transparent !important;
  }
  
  /* Also override any background on the section container */
  .hero-comparison-section .section-container,
  .comparison-table-section .section-container {
    background: transparent !important;
    background-color: transparent !important;
  }
  
  /* Ensure the comparison table container doesn't create white overlay */
  .hero-comparison-table-container,
  .comparison-table-container {
    background: var(--secondary-color) !important; /* Light beige, not white */
  }
  
  /* Ensure comparison container doesn't overlap and has no white background */
  .hero-comparison-table-container,
  .comparison-table-container {
    position: relative !important;
    z-index: 1 !important;
    margin-top: 0 !important;
    background: var(--secondary-color) !important; /* Keep the light beige, not white */
  }
  
  /* Ensure nothing can overlap the button area - create a barrier */
  .hero-product-cta-enhanced {
    overflow: visible !important;
    position: relative !important;
    z-index: 200 !important;
  }
  
  /* Create a protective barrier after the button */
  .hero-product-cta-enhanced::after {
    content: '';
    display: block;
    height: 25rem;
    width: 100%;
    position: absolute;
    bottom: -25rem;
    left: 0;
    z-index: 199 !important;
    pointer-events: none;
    background: transparent !important;
  }
  
  /* Ensure button and form are always on top */
  .hero-add-to-cart-form,
  .hero-product-button-massive {
    position: relative !important;
    z-index: 201 !important;
  }
}

.hero-section-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
  text-align: center;
  color: var(--primary-color);
}

.hero-comparison-table-container {
  margin: 0;
  padding: 0.75rem 1rem;
  background: var(--secondary-color);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  user-select: text !important;
  -webkit-user-select: text !important;
  -moz-user-select: text !important;
  -ms-user-select: text !important;
  pointer-events: auto !important;
  position: relative;
  z-index: 1;
}

.hero-comparison-title {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
  color: var(--primary-color);
  text-align: center;
}

.hero-comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 6px;
  overflow: hidden;
  font-size: 0.9rem;
  user-select: text !important;
  -webkit-user-select: text !important;
  -moz-user-select: text !important;
  -ms-user-select: text !important;
  pointer-events: auto !important;
}

.hero-comparison-table thead {
  background: var(--accent-gold);
  color: white;
}

.hero-comparison-table th {
  padding: 0.6rem 0.85rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.85rem;
}

.hero-comparison-table tbody tr {
  border-bottom: 1px solid var(--border-color);
}

.hero-comparison-table tbody tr:last-child {
  border-bottom: none;
}

.hero-comparison-table tbody th {
  background: var(--secondary-color);
  font-weight: 600;
  padding: 0.6rem 0.85rem;
  font-size: 0.85rem;
}

.hero-comparison-table td {
  padding: 0.6rem 0.85rem;
  text-align: center;
  font-size: 0.85rem;
}

.hero-image-extra-description {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-color);
  margin: 0 0 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hero-image-extra-description p {
  margin: 0;
  color: var(--text-color);
  line-height: 1.45;
}

.hero-image-extra-description p:last-child {
  margin-bottom: 0;
}

.hero-image-extra-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary-color);
  margin: 0 0 0.375rem 0;
  letter-spacing: 0.025em;
}

.hero-image-extra-features {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.hero-image-extra-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  color: var(--text-color);
  line-height: 1.3;
}

.hero-image-extra-icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
}

.hero-image-extra-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.hero-image-extra-text {
  flex: 1;
}

.hero-image-extra-specs {
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  margin-top: 0;
}

.hero-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.875rem 1.25rem;
}

.hero-spec-item {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.hero-spec-label {
  font-size: 0.7rem;
  color: var(--text-light);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-spec-value {
  font-size: 0.9rem;
  color: var(--primary-color);
  font-weight: 600;
  letter-spacing: 0.01em;
}

.hero-product-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-light) 100%);
  color: #fff;
  padding: 0.4rem 0.75rem;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(157, 124, 71, 0.3), 0 1px 2px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.15);
  z-index: 25;
  line-height: 1.2;
  pointer-events: none;
}

.hero-product-content {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  justify-content: space-between;
  grid-column: 2;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 0.5rem;
  padding-bottom: 0;
  min-height: 0;
  position: relative;
  z-index: 1;
  max-height: calc(100vh - 100px);
}

.hero-product-title {
  font-size: 2.5rem;
  line-height: 1.3;
  color: var(--primary-color);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 0.6rem 0;
  background: var(--text-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
  flex-shrink: 0;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-product-subheadline {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.4;
  margin: 0;
}

.hero-product-value-prop {
  font-size: 1rem;
  color: var(--accent-gold);
  font-weight: 500;
  margin: 0 0 0.6rem 0;
  letter-spacing: 0.03em;
  line-height: 1.38;
  text-transform: uppercase;
  flex-shrink: 0;
}

.hero-product-rating {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-rating-stars {
  display: flex;
  gap: 0.25rem;
}

.hero-rating-stars .star {
  font-size: 1.25rem;
  color: #ddd;
}

.hero-rating-stars .star.filled {
  color: var(--accent-gold);
}

.hero-rating-text {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* Enhanced Social Proof */
.hero-product-rating-enhanced {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #ffffff 100%);
  padding: 0.65rem 0.9rem;
  border-radius: 6px;
  margin: 0 0 0.6rem 0;
  border: 1px solid var(--border-color);
  border-left: 3px solid var(--accent-gold);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.hero-product-rating-enhanced::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--accent-gold) 0%, var(--accent-gold-light) 100%);
  animation: ratingBorderGlow 2s ease-in-out infinite;
}

@keyframes ratingBorderGlow {
  0%, 100% {
    box-shadow: 0 0 4px rgba(157, 124, 71, 0.3);
  }
  50% {
    box-shadow: 0 0 8px rgba(157, 124, 71, 0.6);
  }
}

.hero-rating-stars-large {
  display: flex;
  gap: 0.28rem;
  margin-bottom: 0.45rem;
}

.hero-rating-stars-large .star {
  font-size: 1.38rem;
  color: #ddd;
}

.hero-rating-stars-large .star.filled {
  color: var(--accent-gold);
  text-shadow: 0 1px 2px rgba(157, 124, 71, 0.2);
  filter: drop-shadow(0 0 2px rgba(157, 124, 71, 0.15));
  animation: starTwinkle 3s ease-in-out infinite;
}

.hero-rating-stars-large .star.filled:nth-child(1) { animation-delay: 0s; }
.hero-rating-stars-large .star.filled:nth-child(2) { animation-delay: 0.2s; }
.hero-rating-stars-large .star.filled:nth-child(3) { animation-delay: 0.4s; }
.hero-rating-stars-large .star.filled:nth-child(4) { animation-delay: 0.6s; }
.hero-rating-stars-large .star.filled:nth-child(5) { animation-delay: 0.8s; }

@keyframes starTwinkle {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(0.95);
  }
}

.hero-rating-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hero-rating-number {
  font-size: 1.32rem;
  font-weight: 600;
  color: var(--primary-color);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.2;
  letter-spacing: 0.01em;
  position: relative;
}

.hero-rating-number::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(157, 124, 71, 0.1) 0%, transparent 70%);
  animation: ratingGlow 2s ease-in-out infinite;
  pointer-events: none;
}

@keyframes ratingGlow {
  0%, 100% {
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

.hero-rating-text {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.32;
}

.hero-trusted-by {
  color: var(--accent-gold);
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 0.35rem;
  line-height: 1.28;
  letter-spacing: 0.01em;
}

.hero-product-price {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
}

.hero-product-price .price {
  font-size: 3rem;
  font-weight: 500;
  color: var(--primary-color);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.hero-product-price .compare-price {
  font-size: 2rem;
  color: var(--text-light);
  text-decoration: line-through;
}

/* Enhanced Price Display */
.hero-product-price-enhanced {
  margin: 0 0 0.6rem 0;
  padding: 0.65rem 1rem;
  background: linear-gradient(135deg, #ffffff 0%, var(--secondary-color) 100%);
  border-radius: 6px;
  border: 1.5px solid var(--accent-gold);
  box-shadow: 0 3px 12px rgba(157, 124, 71, 0.1), 0 0 0 1px rgba(157, 124, 71, 0.08), inset 0 1px 2px rgba(255, 255, 255, 0.9);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.hero-product-price-enhanced::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(157, 124, 71, 0.3), transparent);
}

.hero-urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 0.95rem;
  background: linear-gradient(135deg, #fff3cd 0%, #ffe69c 100%);
  border: 1.5px solid #ffc107;
  border-radius: 5px;
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #856404;
  box-shadow: 0 2px 8px rgba(255, 193, 7, 0.25);
  animation: pulse-urgency 2s ease-in-out infinite, shake 3s ease-in-out infinite;
  position: relative;
}

@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translateX(-1px);
  }
  20%, 40%, 60%, 80% {
    transform: translateX(1px);
  }
}

@keyframes pulse-urgency {
  0%, 100% {
    box-shadow: 0 2px 8px rgba(255, 193, 7, 0.25);
  }
  50% {
    box-shadow: 0 2px 12px rgba(255, 193, 7, 0.4);
  }
}

.hero-urgency-icon {
  font-size: 1.1rem;
  line-height: 1;
}

.hero-urgency-text {
  font-weight: 600;
  letter-spacing: 0.02em;
}

.price-main {
  display: flex;
  align-items: baseline;
  gap: 0.9rem;
  margin-bottom: 0.6rem;
  flex-wrap: wrap;
}

.hero-product-price-enhanced .price {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--primary-color);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.hero-product-price-enhanced .compare-price {
  font-size: 1.7rem;
  color: var(--text-light);
  text-decoration: line-through;
  line-height: 1;
}

.savings-badge {
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-light) 100%);
  color: #fff;
  padding: 0.75rem 1.3rem;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
  box-shadow: 0 2px 6px rgba(157, 124, 71, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.15);
  animation: savingsPulse 2.5s ease-in-out infinite;
  position: relative;
}

@keyframes savingsPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 2px 6px rgba(157, 124, 71, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(157, 124, 71, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  }
}

.price-note {
  color: var(--text-light);
  font-size: 0.95rem;
  margin: 0.45rem 0 0;
  line-height: 1.32;
}

.hero-product-benefits {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hero-product-benefits li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-color);
  font-size: 1rem;
  line-height: 1.6;
}

.hero-product-benefits li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 6px;
  height: 6px;
  background-color: var(--accent-gold);
  border-radius: 50%;
}

/* Enhanced Benefits with Icons - Compact 2x2 Grid */
.hero-product-benefits-enhanced {
  margin: 0 0 0.6rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  flex-shrink: 0;
}

.hero-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.2rem;
  background: linear-gradient(135deg, #ffffff 0%, var(--secondary-color) 100%);
  border-radius: 6px;
  border: 1px solid var(--border-color);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  position: relative;
  overflow: hidden;
}

.hero-benefit-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--accent-gold) 0%, var(--accent-gold-light) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hero-benefit-item:hover::before {
  opacity: 1;
}

.hero-benefit-item:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  border-color: rgba(157, 124, 71, 0.2);
}

.hero-benefit-item:hover .hero-benefit-icon {
  transform: scale(1.1) rotate(5deg);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Professional Icon System */
.hero-benefit-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  line-height: 1;
  padding-top: 0.15rem;
}

.hero-benefit-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
  color: var(--accent-gold);
  filter: drop-shadow(0 1px 2px rgba(157, 124, 71, 0.15));
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-benefit-content {
  flex: 1;
  display: flex;
  align-items: center;
}

.hero-benefit-title {
  color: var(--text-color);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.01em;
  margin: 0;
  padding: 0;
  display: block;
}

.hero-product-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0 0 0.6rem 0;
  flex-shrink: 0;
}

.hero-trust-badge {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.9rem 1.15rem;
  background: linear-gradient(135deg, #ffffff 0%, var(--secondary-color) 100%);
  border-radius: 6px;
  border: 1px solid var(--border-color);
  font-size: 1rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.hero-trust-badge:hover {
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  border-color: rgba(157, 124, 71, 0.3);
  transform: translateY(-2px) scale(1.02);
  background: linear-gradient(135deg, #ffffff 0%, #faf9f6 100%);
}

.hero-trust-badge:hover .hero-trust-icon {
  transform: scale(1.15);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-trust-icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.hero-trust-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
  color: var(--accent-gold);
  filter: drop-shadow(0 1px 2px rgba(157, 124, 71, 0.15));
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-trust-text {
  color: var(--text-color);
  font-weight: 500;
  line-height: 1.2;
}

.hero-product-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 0.5rem;
}

.hero-product-button {
  width: 100%;
  max-width: 100%;
  padding: 18px 40px;
  font-size: 1rem;
  letter-spacing: 0.1em;
}

.hero-product-button-secondary {
  width: 100% !important;
  max-width: 100% !important;
  text-align: center !important;
  padding: 14px 24px !important;
  font-size: 1.25rem !important;
  font-weight: 600 !important;
  margin: 0.6rem 0 0 0 !important;
  height: auto !important;
  min-height: 56px !important;
  max-height: none !important;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-sizing: border-box !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 1px solid var(--primary-color) !important;
  border-radius: 8px !important;
  line-height: 1.3 !important;
  position: relative;
  overflow: hidden;
}

/* Override base .btn class for proper centering */
a.hero-product-button-secondary,
a.hero-product-button-secondary.btn,
.btn.hero-product-button-secondary {
  display: flex !important;
  text-align: center !important;
  justify-content: center !important;
  align-items: center !important;
  width: 100% !important;
}

a.hero-product-button-secondary * {
  text-align: center !important;
  margin: 0 auto !important;
}

/* Force text centering in Learn More button */
a.btn.hero-product-button-secondary,
a.hero-product-button-secondary.btn {
  text-align: center !important;
}

a.btn.hero-product-button-secondary::before,
a.btn.hero-product-button-secondary::after {
  display: none !important;
}

.hero-add-to-cart-form {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
}

.hero-add-to-cart-form button,
.hero-add-to-cart-form .hero-product-button-massive {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  margin: 0 !important;
  display: block !important;
}

/* Ensure both buttons are in the same container context */
.hero-product-cta-enhanced {
  width: 100% !important;
  box-sizing: border-box !important;
}

.hero-product-cta-enhanced .hero-add-to-cart-form,
.hero-product-cta-enhanced .hero-product-button-secondary,
.hero-product-cta-enhanced form,
.hero-product-cta-enhanced a {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  display: block !important;
}

/* Enhanced MASSIVE CTA - Compact but Prominent */
.hero-product-cta-enhanced {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 5rem !important;
  padding-bottom: 3rem !important;
  margin-top: auto;
  flex-shrink: 0;
  width: 100% !important;
}

.hero-cta-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1rem;
  background: linear-gradient(135deg, rgba(157, 124, 71, 0.08) 0%, rgba(196, 168, 118, 0.04) 100%);
  font-size: 1rem;
  border: 1px solid rgba(157, 124, 71, 0.2);
  border-radius: 6px;
  margin-bottom: 0;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-color);
  text-align: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  line-height: 1.25;
}

.hero-cta-guarantee-text {
  color: var(--text-color);
  line-height: 1.4;
}

.hero-product-button-massive {
  width: 100% !important;
  max-width: 100% !important;
  padding: 16px 24px !important;
  font-size: 1.35rem !important;
  font-weight: 700 !important;
  height: auto !important;
  min-height: 60px !important;
  max-height: none !important;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--primary-color) 0%, #1a1a1a 50%, var(--primary-color) 100%) !important;
  background-size: 200% 100%;
  color: #fff !important;
  border: 1px solid var(--primary-color) !important;
  border-radius: 8px !important;
  box-shadow: none !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
  animation: pulseCTA 3s ease-in-out infinite;
  box-sizing: border-box !important;
  line-height: 1.3 !important;
}

@keyframes pulseCTA {
  0%, 100% {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 0 2px rgba(157, 124, 71, 0.35), 0 4px 8px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }
  50% {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35), 0 0 0 3px rgba(157, 124, 71, 0.5), 0 6px 12px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  }
}

.hero-product-button-massive::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.hero-product-button-massive:hover::before {
  left: 100%;
}

.hero-product-button-massive:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), 0 0 0 2px var(--accent-gold), 0 6px 12px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-light) 50%, var(--accent-gold) 100%) !important;
  background-size: 200% 100%;
  background-position: right center;
  border-color: rgba(157, 124, 71, 0.5) !important;
}

.hero-product-button-massive:active {
  transform: translateY(-1px);
}

.cta-main-text {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 1;
  line-height: 1.2;
  margin: 0;
  padding: 0;
}

.cta-subtext {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  opacity: 0.9;
  margin-top: 0.2rem;
  position: relative;
  z-index: 1;
  line-height: 1.2;
  padding: 0;
}

.hero-product-trust-note {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.35;
  margin: 0.5rem 0 0 0;
  text-align: center;
  flex-shrink: 0;
}

/* Sticky CTA for Mobile */
.hero-product-cta-sticky {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  padding: 1rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
  /* Header & Navigation - Mobile Optimized - Ultra Compact */
  .site-header {
    padding: 0;
  }

  .header-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    padding: 0.4rem 0.65rem;
    min-height: 41px;
  }

  .header-logo {
    flex: 0 0 auto;
  }

  .header-logo .logo-text {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.02em;
  }

  .header-nav {
    display: flex;
    align-items: center;
  }

  .product-link {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }

.product-link {
  font-weight: 600;
  color: var(--text-color);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.product-link:hover {
  color: var(--accent-gold);
  background-color: var(--secondary-color);
}

  .nav-menu {
    display: none;
  }

  .header-actions {
    flex: 0 0 auto;
    gap: 0.5rem;
  }

  .home-link {
    padding: 0.5rem;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .home-link .icon-home {
    width: 20px;
    height: 20px;
  }

  .cart-link {
    padding: 0.5rem;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .cart-icon {
    width: 22px;
    height: 22px;
  }

  .cart-count {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 18px;
    height: 18px;
    font-size: 0.65rem;
  }

  /* Hero Banner - Mobile Optimized */
  .hero-banner {
    padding: 60px 1rem 40px;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-content {
    max-width: 100%;
    padding: 0;
    width: 100%;
  }

  .hero-title {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    line-height: 1.2;
    padding: 0;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    padding: 0;
  }

  .hero-cta-container {
    gap: 0.75rem;
    width: 100%;
    margin-bottom: 1rem;
    padding: 0;
  }

  .hero-button-large {
    font-size: 1rem !important;
    padding: 0.95rem 1.5rem !important;
    min-width: 100% !important;
    max-width: 100% !important;
    width: 100% !important;
    min-height: 48px; /* Touch-friendly */
  }

  .hero-product-preview-link {
    font-size: 0.875rem;
    padding: 0.5rem;
    display: block;
    text-align: center;
  }

  .hero-trust-note {
    font-size: 0.8rem;
    padding: 0;
    line-height: 1.5;
    margin-top: 0.5rem;
  }

  .section-container {
    padding: 1.5rem 1rem;
  }

  .section-title {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
  }

  .product-container {
    grid-template-columns: 1fr;
  }

  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
  }

  .cart-footer {
    flex-direction: column;
  }

  .cart-table {
    font-size: 0.875rem;
  }

  .cart-table th,
  .cart-table td {
    padding: 0.5rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Product Showcase - Mobile Optimized */
  .product-showcase {
    padding: 1.5rem 0;
  }

  .section-container {
    padding: 0 1rem;
  }

  .showcase-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0;
  }

  .showcase-image {
    order: 1;
    margin-bottom: 0;
  }

  .showcase-main-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 0;
  }

  .showcase-content {
    order: 2;
    text-align: center;
    padding: 0;
  }

  .showcase-badge {
    font-size: 0.7rem;
    padding: 0.35rem 0.7rem;
    margin-bottom: 0.5rem;
  }

  .showcase-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
  }

  .showcase-subtitle {
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    line-height: 1.5;
  }

  .showcase-price {
    justify-content: center;
    margin-bottom: 0.75rem;
    gap: 0.75rem;
  }

  .showcase-price .price {
    font-size: 1.75rem;
  }

  .showcase-price .compare-price {
    font-size: 1.25rem;
  }

  .showcase-key-points {
    margin-bottom: 1rem;
    text-align: left;
    padding: 0;
  }

  .showcase-key-points li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    font-size: 0.875rem;
    line-height: 1.5;
  }

  .showcase-cta {
    width: 100%;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
  }

  .showcase-button {
    max-width: 100% !important;
    width: 100% !important;
    min-height: 48px; /* Touch-friendly */
  }

  .showcase-button-large {
    font-size: 0.95rem !important;
    padding: 0.85rem 1.5rem !important;
    max-width: 100% !important;
    width: 100% !important;
    min-height: 48px !important;
    height: auto !important;
    box-sizing: border-box !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  
  .showcase-button-secondary {
    font-size: 0.95rem !important;
    padding: 0.85rem 1.5rem !important;
    max-width: 100% !important;
    width: 100% !important;
    min-height: 48px !important;
    height: auto !important;
    box-sizing: border-box !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .showcase-trust-note {
    font-size: 0.8rem;
    padding: 0;
    line-height: 1.5;
  }

  /* Social Proof - Mobile */
  .social-proof-section {
    padding: 1.5rem 0;
  }

  .social-proof-recent,
  .social-proof-visitors {
    padding: 0.6rem 0.8rem;
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
  }

  /* Product Benefits - Mobile */
  .product-benefits {
    padding: 1.5rem 0;
  }

  /* Trust Badges - Mobile */
  .trust-badges {
    padding: 1.5rem 0;
  }

  .trust-badges-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  /* Testimonials - Mobile */
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* FAQ - Mobile */
  .faq-section {
    padding: 1.5rem 0;
  }

  /* Newsletter - Mobile */
  .newsletter-section {
    padding: 1.5rem 0;
  }

  /* Related Products - Mobile */
  .related-products-section {
    padding: 1.5rem 0;
  }

  /* Buttons - Touch-friendly on mobile */
  .btn {
    min-height: 44px; /* Minimum touch target size */
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
  }

  .btn-primary,
  .btn-secondary {
    min-height: 48px; /* Larger for primary actions */
  }

  /* Ensure interactive buttons and links are touch-friendly */
  .btn,
  .hero-button,
  .showcase-button,
  a.btn {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .header-trust-badge {
    display: none;
  }

  /* Ensure header stays compact and doesn't interfere with content */
  .site-header {
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.05);
  }

  /* Hero Product Showcase - Mobile Optimized - Above the Fold - Same as Desktop */
  .hero-product-showcase {
    padding: 0;
    height: auto !important; /* Allow content to determine height */
    min-height: calc(100vh - 41px) !important;
    max-height: none !important; /* Remove max-height restriction */
    overflow: visible !important; /* Allow button to be fully visible */
    position: relative !important;
    z-index: 100 !important;
    margin-bottom: 0 !important; /* No gap */
  }

  .hero-product-container {
    display: grid !important;
    grid-template-columns: 1fr !important;
    grid-template-rows: auto 1fr !important;
    gap: 0 !important; /* Zero gap - absolutely no negative space */
    padding: 0.2rem 0.4rem 0.2rem 0.4rem !important; /* Minimal padding */
    height: 100% !important;
    min-height: 0;
    max-height: 100% !important;
    align-items: stretch;
    overflow: hidden !important; /* No scrolling - static layout */
  }

  /* Force image to appear FIRST - before all content using grid-row */
  .hero-product-container > .hero-product-image {
    width: 100% !important;
    max-width: 100% !important;
    gap: 0 !important;
    height: auto;
    min-height: 0;
    grid-row: 1 !important; /* First row - appears at top */
    grid-column: 1 !important;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: visible !important;
    visibility: visible !important;
    margin-top: 0 !important;
    margin-bottom: 1.2rem !important; /* Extra large margin to prevent overlap with title */
    padding: 0 !important;
  }

  /* Hide image description box on mobile to save space */
  .hero-product-image-extra {
    display: none;
  }

  /* Force content to appear AFTER image using grid-row */
  .hero-product-container > .hero-product-content {
    grid-row: 2 !important; /* Second row - appears after image */
    grid-column: 1 !important;
    gap: 0.3rem !important; /* Reduced gap */
    overflow-y: hidden !important; /* No scrolling - static layout */
    overflow-x: hidden !important;
    padding: 0 !important; /* Zero padding - no negative space */
    height: 100% !important; /* Fill remaining space exactly */
    min-height: 0;
    max-height: 100% !important; /* Cannot exceed available space */
    width: 100%;
    text-align: left;
    display: flex !important;
    flex-direction: column;
    justify-content: flex-start !important; /* Start from top - no space distribution */
  }
  
  /* Hide less critical elements on mobile to get button above fold */
  .hero-product-benefits-enhanced {
    display: none !important;
  }
  
  .hero-product-trust-badges {
    display: none !important;
  }
  
  .hero-cta-guarantee {
    display: none !important;
  }
  
  .hero-product-rating-enhanced {
    padding: 0.5rem 0.7rem !important;
    margin: 0 0 0.4rem 0 !important;
  }
  
  .hero-product-price-enhanced {
    padding: 0.5rem 0.75rem !important;
    margin: 0 0 0.4rem 0 !important;
  }
  
  .hero-product-title {
    font-size: 1.5rem !important;
    margin: 0 0 0.3rem 0 !important;
    line-height: 1.2 !important;
  }
  
  .hero-product-value-prop {
    font-size: 0.85rem !important;
    margin: 0 0 0.3rem 0 !important;
    line-height: 1.3 !important;
  }
  
  .hero-urgency-badge {
    padding: 0.5rem 0.7rem !important;
    margin-bottom: 0.4rem !important;
    font-size: 0.85rem !important;
  }
  
  .product-quantity {
    margin-bottom: 0.5rem !important;
  }
  
  .product-quantity label,
  .product-variants label {
    font-size: 0.9rem !important;
    margin-bottom: 0.3rem !important;
  }
  
  .quantity-input,
  .variant-selector {
    padding: 0.6rem !important;
    font-size: 0.95rem !important;
  }

  /* Carousel - Mobile Optimized - Full width to fill viewport */
  .hero-product-image-carousel {
    display: block !important;
    width: 100% !important; /* Full width */
    max-width: 100% !important; /* Full width */
    position: relative !important;
    visibility: visible !important;
    opacity: 1 !important;
    margin: 0 auto !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding: 0 !important;
    text-align: center;
    aspect-ratio: 1 / 1 !important;
    height: auto !important;
    min-height: auto !important; /* Override desktop calc(100vh - 120px) */
    max-height: none !important; /* Remove max-height constraint */
  }

  .hero-product-placeholder {
    width: 100% !important;
    height: 100% !important;
    max-height: 250px !important; /* Increased from 200px */
    aspect-ratio: 1 / 1 !important;
    border-radius: 5px;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: var(--text-light) !important;
    font-size: 0.9rem !important;
    letter-spacing: 0.08em;
    text-align: center !important;
    padding: 0.5rem !important;
    margin: 0 auto !important;
    visibility: visible !important;
    opacity: 1 !important;
    background: var(--secondary-color) !important;
  }

  .hero-product-placeholder span {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    color: var(--text-light) !important;
  }

  .hero-product-main-image {
    max-height: none !important; /* Remove max-height constraint for full width */
    width: 100% !important; /* Full width */
    border-radius: 6px;
    display: block !important;
  }
  
  .carousel-slide img {
    max-width: 100% !important;
    width: 100% !important; /* Full width */
    max-height: none !important; /* Remove max-height constraint */
    height: auto !important;
    object-fit: contain !important;
    display: block !important;
    border-radius: 6px;
  }

  /* Ensure carousel container is visible and functional on mobile - Full width */
  .carousel-container {
    position: relative !important;
    width: 100% !important; /* Full width */
    max-width: 100% !important; /* Full width */
    overflow: hidden !important;
    border-radius: 5px;
    display: block !important;
    aspect-ratio: 1 / 1 !important;
    height: auto !important;
    min-height: auto !important; /* Override desktop calc(100vh - 120px) */
    max-height: none !important; /* Remove max-height constraint */
    visibility: visible !important;
    opacity: 1 !important;
    margin: 0 auto !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding: 0 !important;
    text-align: center;
  }

  .carousel-slides {
    display: block !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    max-height: none !important; /* Remove max-height constraint for full width */
    visibility: visible !important;
    opacity: 1 !important;
    overflow: hidden !important;
  }

  .carousel-slide {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    max-height: none !important; /* Remove max-height constraint for full width */
    opacity: 0 !important;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    visibility: hidden !important;
  }

  .carousel-slide.active {
    opacity: 1 !important;
    display: flex !important;
    visibility: visible !important;
    z-index: 2 !important;
  }

  .carousel-slide.active .hero-product-placeholder {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100% !important;
    height: 100% !important;
    max-height: none !important; /* Remove max-height constraint for full width */
    margin: 0 auto !important;
  }

  .carousel-slide .hero-product-placeholder {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100% !important;
    height: 100% !important;
    max-height: none !important; /* Remove max-height constraint for full width */
    margin: 0 auto !important;
  }

  /* Carousel arrows - visible and tappable on mobile */
  .carousel-arrow {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 36px !important;
    height: 36px !important;
    font-size: 1.3rem !important;
    min-width: 36px !important;
    min-height: 36px !important;
    background: rgba(255, 255, 255, 0.98) !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2) !important;
    z-index: 15 !important;
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(157, 124, 71, 0.2);
    touch-action: manipulation;
    user-select: none;
  }

  .carousel-arrow:active {
    transform: translateY(-50%) scale(0.95) !important;
    background: rgba(255, 255, 255, 1) !important;
  }

  .carousel-prev {
    left: 12px !important;
    display: flex !important;
  }

  .carousel-next {
    right: 12px !important;
    display: flex !important;
  }

  /* Carousel dots - visible on mobile */
  .carousel-dots {
    display: flex !important;
    margin: 0.3rem 0 2.5rem 0 !important; /* Very large bottom margin to prevent overlap with title */
    gap: 0.05rem !important; /* Minimal gap - no negative space */
    justify-content: center;
    align-items: center;
  }

  .carousel-dot {
    display: block !important;
    width: 10px;
    height: 10px;
    min-width: 10px;
    min-height: 10px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }

  .carousel-dot.active {
    width: 28px;
  }

  /* Image Description Box - Mobile Optimized */
  .hero-product-image-extra {
    margin-top: 0;
    padding: 1.25rem 1.5rem;
    min-height: auto;
    max-height: none;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  }

  .hero-image-extra-title {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
  }

  .hero-image-extra-item {
    font-size: 0.875rem;
    gap: 0.625rem;
    padding: 0.375rem 0;
  }

  .hero-image-extra-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
  }
  
  .hero-image-extra-icon svg {
    width: 100%;
    height: 100%;
  }

  .hero-image-extra-specs {
    font-size: 0.8125rem;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-color);
  }

  .hero-specs-grid {
    gap: 0.75rem;
    margin-top: 0.5rem;
  }

  .hero-spec-item {
    padding: 0.5rem 0;
  }

  .hero-spec-label {
    font-size: 0.75rem;
  }

  .hero-spec-value {
    font-size: 0.875rem;
  }

  /* Typography - Mobile Enhanced - Fill Viewport */
  .hero-product-title {
    font-size: 1.4rem !important; /* Increased from 1.15rem to fill space */
    margin: 0 !important; /* Zero margin - no negative space */
    line-height: 1.2 !important; /* Slightly more breathing room */
    font-weight: 600;
    letter-spacing: -0.01em;
    flex-shrink: 0;
  }

  .hero-product-value-prop {
    font-size: 0.75rem !important; /* Increased from 0.65rem to fill space */
    margin: 0 !important; /* Zero margin - no negative space */
    line-height: 1.2 !important; /* Slightly more breathing room */
    color: var(--accent-gold);
    flex-shrink: 0;
  }

  /* Rating Section - Mobile Enhanced - Compact - Less Height */
  .hero-product-rating-enhanced {
    padding: 0.25rem 0.4rem !important; /* Minimal padding - no negative space */
    margin: 0 0 0.05rem 0 !important; /* Minimal margin - no negative space */
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    flex-shrink: 0;
  }

  .hero-rating-stars-large {
    margin-bottom: 0.1rem !important; /* Minimal margin */
  }

  .hero-rating-stars-large .star {
    font-size: 0.9rem !important;
  }

  .hero-rating-number {
    font-size: 0.9rem !important;
    font-weight: 600;
  }

  .hero-rating-text {
    font-size: 0.7rem !important;
    margin-top: 0.02rem !important; /* Minimal margin */
  }

  .hero-trusted-by {
    font-size: 0.65rem !important;
    margin-top: 0.05rem !important; /* Minimal margin */
  }

  /* Price Section - Mobile Enhanced - Fill Viewport */
  .hero-product-price-enhanced {
    padding: 0.4rem 0.5rem !important; /* Increased padding to fill space */
    margin: 0 !important; /* Zero margin - no negative space */
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    flex-shrink: 0;
  }

  .hero-product-price-enhanced .price {
    font-size: 1.75rem !important; /* Increased from 1.5rem */
    font-weight: 700;
  }

  .hero-product-price-enhanced .compare-price {
    font-size: 1.15rem !important; /* Increased from 1rem */
  }

  .savings-badge {
    font-size: 0.75rem !important; /* Increased from 0.65rem */
    padding: 0.25rem 0.4rem !important; /* Increased padding */
    font-weight: 600;
  }

  .price-note {
    font-size: 0.8rem !important; /* Increased from 0.7rem */
    margin: 0 !important; /* Zero margin - no negative space */
    line-height: 1.25 !important; /* More breathing room */
  }

  /* Benefits - Mobile Enhanced - Fill Viewport */
  .hero-product-benefits-enhanced {
    grid-template-columns: 1fr 1fr !important;
    gap: 0.15rem !important; /* Increased gap to fill space */
    margin: 0 !important; /* Zero margin - no negative space */
    flex-shrink: 0;
  }

  .hero-benefit-item {
    padding: 0.35rem 0.45rem !important; /* Increased padding to fill space */
    border-radius: 4px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
  }

  .hero-benefit-icon {
    width: 18px !important; /* Increased from 16px */
    height: 18px !important; /* Increased from 16px */
    flex-shrink: 0;
  }

  .hero-benefit-title {
    font-size: 0.75rem !important; /* Increased from 0.65rem */
    font-weight: 500;
    line-height: 1.2 !important; /* More breathing room */
  }

  /* Trust Badges - Mobile Enhanced - Fill Viewport */
  .hero-product-trust-badges {
    gap: 0.15rem !important; /* Increased gap to fill space */
    margin: 0 !important; /* Zero margin - no negative space */
    margin-bottom: 0 !important; /* Zero bottom margin - no gap before guarantee */
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    flex-wrap: nowrap;
    flex-shrink: 0;
  }

  .hero-trust-badge {
    font-size: 0.7rem !important; /* Increased from 0.6rem */
    padding: 0.3rem 0.4rem !important; /* Increased padding to fill space */
    border-radius: 4px;
    font-weight: 500;
  }

  .hero-trust-icon {
    width: 16px !important; /* Increased from 14px */
    height: 16px !important; /* Increased from 14px */
    flex-shrink: 0;
  }
  
  .hero-trust-icon svg {
    width: 100%;
    height: 100%;
  }

  /* CTA Section - Mobile Enhanced - Fill Viewport */
  .hero-product-cta-enhanced {
    margin: 0 !important; /* Zero margin - no negative space */
    margin-top: 0 !important; /* Zero top margin - no gap after trust badges */
    margin-bottom: 10rem !important; /* Very large bottom margin to ensure buy button is always visible */
    padding-bottom: 8rem !important; /* Extra padding for cushion */
    gap: 0.15rem !important; /* Increased gap to fill space */
    flex-shrink: 0;
    position: relative !important;
    z-index: 100 !important;
    isolation: isolate !important;
    display: flex !important;
    flex-direction: column !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  /* Ensure button itself is never overlapped and always visible */
  .hero-product-button-massive,
  .hero-add-to-cart-form,
  .hero-add-to-cart-form button {
    position: relative !important;
    z-index: 101 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .hero-cta-guarantee {
    padding: 0.35rem 0.5rem !important; /* Increased padding to fill space */
    margin: 0 !important; /* Zero margin - no negative space */
    margin-bottom: 0 !important; /* Zero bottom margin - no gap before form */
    font-size: 0.8rem !important; /* Increased from 0.7rem */
  }

  .hero-cta-guarantee-text {
    font-size: 0.8rem !important; /* Increased from 0.7rem */
    line-height: 1.25 !important; /* More breathing room */
  }

  .hero-product-button-massive {
    padding: 14px 20px !important;
    font-size: 0.95rem !important;
    height: 48px !important;
    min-height: 48px !important;
    max-height: 48px !important;
    min-width: 100%;
    width: 100% !important;
    max-width: 100% !important;
    font-weight: 600;
    letter-spacing: 0.05em;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
    box-sizing: border-box !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .cta-main-text {
    font-size: 0.95rem !important; /* Increased from 0.85rem */
    font-weight: 600;
  }

  .cta-subtext {
    font-size: 0.85rem !important; /* Increased from 0.75rem */
  }

  .hero-product-button-secondary {
    display: none !important; /* Hide Learn More button on mobile */
  }

  .hero-product-trust-note {
    font-size: 0.7rem;
    margin-top: 0.3rem;
    line-height: 1.3;
  }

  .cta-subtext {
    font-size: 0.8rem;
    margin-top: 0.25rem;
  }

  .hero-product-trust-note {
    font-size: 0.75rem;
    margin: 0.4rem 0 0;
    line-height: 1.3;
    text-align: center;
  }

  .hero-product-button-secondary {
    padding: 12px 18px;
    font-size: 0.9rem;
    min-height: 44px;
    min-width: 100%;
    border-radius: 5px;
    font-weight: 500;
  }

  .hero-product-cta-sticky {
    display: block;
    padding: 1rem 1.5rem;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.1);
  }

  /* Reduce animation complexity on mobile for performance */
  .hero-product-button-massive {
    animation: none;
  }

  .hero-urgency-badge {
    animation: none;
    padding: 0.35rem 0.5rem !important; /* Increased padding to fill space */
    font-size: 0.75rem !important; /* Increased from 0.65rem */
    margin: 0 0 0.1rem 0 !important; /* Slightly increased margin */
  }

  .hero-urgency-icon {
    font-size: 0.8rem !important; /* Increased from 0.7rem */
  }

  .hero-urgency-text {
    font-size: 0.75rem !important; /* Increased from 0.65rem */
  }

  .hero-rating-stars-large .star.filled {
    animation: none;
  }

  .hero-rating-number {
    animation: none;
  }

  .hero-product-rating-enhanced {
    animation: none;
  }

  .savings-badge {
    animation: none;
  }

  /* Form Fields - Mobile Fill Viewport */
  .product-quantity,
  .product-option {
    margin: 0 !important; /* Zero margin - no negative space */
    margin-bottom: 0.2rem !important; /* Increased spacing to fill space */
  }

  .product-quantity label,
  .product-option label {
    font-size: 0.95rem !important; /* Increased from 0.85rem */
    margin-bottom: 0.3rem !important; /* Increased margin */
  }

  .product-quantity input,
  .product-option select,
  .quantity-input,
  .variant-selector,
  #Quantity,
  input[type="number"],
  input.quantity-input,
  .hero-add-to-cart-form input[type="number"],
  .hero-add-to-cart-form .quantity-input {
    padding: 0.7rem !important; /* Increased from 0.5rem to fill space */
    font-size: 1rem !important; /* Increased from 0.9rem */
    border-radius: 4px;
    background-color: #ffffff !important; /* White background */
    background: #ffffff !important; /* White background */
    color: var(--text-color) !important; /* Readable text color */
    color: #1a1a1a !important; /* Explicit dark text color */
    border: 1px solid var(--border-color) !important; /* Visible border */
  }

  .hero-add-to-cart-form {
    gap: 0 !important; /* Zero gap - no negative space */
    margin-top: 0 !important; /* Zero top margin - no gap after guarantee */
  }
}

/* Utility Classes */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.skip-to-content-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary-color);
  color: #fff;
  padding: 12px 16px;
  z-index: 1000;
  text-decoration: none;
  font-weight: 600;
  border-radius: 0 0 4px 0;
  transition: top 0.2s ease;
}

.skip-to-content-link:focus {
  top: 0;
  outline: 3px solid var(--accent-gold);
  outline-offset: 2px;
}

/* Enhanced Focus States for Accessibility */
*:focus-visible {
  outline: 3px solid var(--accent-gold);
  outline-offset: 2px;
  border-radius: 2px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--accent-gold);
  outline-offset: 2px;
}

/* Remove default focus outline for mouse users, keep for keyboard */
*:focus:not(:focus-visible) {
  outline: none;
}

/* Improved keyboard navigation */
.carousel-arrow:focus-visible,
.carousel-dot:focus-visible {
  outline: 3px solid var(--accent-gold);
  outline-offset: 3px;
  z-index: 11;
}

.nav-link:focus-visible {
  outline: 2px solid var(--accent-gold);
  outline-offset: 4px;
}

.btn:focus-visible,
.hero-product-button-massive:focus-visible,
.hero-product-button-secondary:focus-visible {
  outline: 3px solid var(--accent-gold);
  outline-offset: 3px;
  box-shadow: 0 0 0 3px rgba(157, 124, 71, 0.3);
}

/* ============================================
   NEW COMPONENTS & UTILITY CLASSES
   ============================================ */

/* Button Sizes */
.btn-small {
  padding: 10px 24px;
  font-size: 0.85rem;
}

.btn-medium {
  padding: 16px 40px;
  font-size: 0.95rem;
}

.btn-large {
  padding: 20px 48px;
  font-size: 1.1rem;
}

/* Button Icons */
.btn-icon {
  display: inline-block;
  vertical-align: middle;
}

.btn-icon-left {
  margin-right: 0.5rem;
}

.btn-icon-right {
  margin-left: 0.5rem;
}

/* Section Headers */
.section-header {
  margin-bottom: 2rem;
}

.section-header-left {
  text-align: left;
}

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

.section-header-right {
  text-align: right;
}

.section-title-small,
.section-title-medium,
.section-title-large {
  font-size: 1.75rem;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--primary-color);
  font-weight: 400;
  letter-spacing: 0.02em;
  position: relative;
  padding-bottom: 1rem;
}

.section-title-medium {
  font-size: 2.5rem;
}

.section-title-large {
  font-size: 3.5rem;
}

.section-title-small::after,
.section-title-medium::after,
.section-title-large::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.section-header-left .section-title-small,
.section-header-left .section-title-medium,
.section-header-left .section-title-large {
  text-align: left;
}

.section-header-left .section-title-small::after,
.section-header-left .section-title-medium::after,
.section-header-left .section-title-large::after {
  left: 0;
  transform: none;
}

.section-header-right .section-title-small,
.section-header-right .section-title-medium,
.section-header-right .section-title-large {
  text-align: right;
}

.section-header-right .section-title-small::after,
.section-header-right .section-title-medium::after,
.section-header-right .section-title-large::after {
  left: auto;
  right: 0;
  transform: none;
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-light);
  margin-top: 0.5rem;
  line-height: 1.6;
}

/* Product Form Components */
.product-variant-selector {
  margin-bottom: 1rem;
}

.variant-label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.variant-select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-size: 1rem;
  background: white;
}

.product-quantity-selector {
  margin-bottom: 1rem;
}

.quantity-label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.quantity-btn {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-color);
  background: white;
  border-radius: 6px;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.quantity-btn:hover {
  background: var(--secondary-color);
  border-color: var(--accent-gold);
}

.quantity-input {
  width: 60px;
  padding: 0.5rem;
  text-align: center;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-size: 1rem;
  background-color: #ffffff !important;
  color: var(--text-color) !important;
}

.product-stock-info {
  margin-bottom: 1rem;
}

.stock-count {
  font-size: 0.9rem;
  margin: 0;
}

.stock-low {
  color: #dc3545;
  font-weight: 600;
}

.stock-available {
  color: #28a745;
}

.stock-out {
  color: #dc3545;
  font-weight: 600;
}

/* Newsletter Form */
.newsletter-form-container {
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.newsletter-input-group {
  display: flex;
  gap: 0.5rem;
}

.newsletter-input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-size: 1rem;
}

.newsletter-submit {
  white-space: nowrap;
}

.newsletter-success {
  background: #d4edda;
  color: #155724;
  padding: 1rem;
  border-radius: 6px;
  text-align: center;
}

.newsletter-errors {
  background: #f8d7da;
  color: #721c24;
  padding: 1rem;
  border-radius: 6px;
}

.newsletter-privacy {
  font-size: 0.85rem;
  color: var(--text-light);
  text-align: center;
  margin: 0;
}

/* FAQ Controls */
.faq-controls {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.faq-expand-all,
.faq-collapse-all {
  padding: 0.5rem 1rem;
  background: var(--secondary-color);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.faq-expand-all:hover,
.faq-collapse-all:hover {
  background: var(--accent-gold);
  color: white;
  border-color: var(--accent-gold);
}

/* FAQ Styles */
.faq-style-bordered .faq-item {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-style-minimal .faq-item {
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 0.5rem;
}

.faq-style-minimal .faq-item:last-child {
  border-bottom: none;
}

.faq-item.default-expanded .faq-answer {
  display: block;
}

.faq-item.default-expanded.active .faq-answer {
  display: block;
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 40px;
  height: 40px;
}

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-color);
  transition: all 0.3s ease;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Sticky Header */
.sticky-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Footer Newsletter */
.footer-newsletter-form {
  margin-top: 1rem;
}

.footer-newsletter-input-group {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.footer-newsletter-input-group input {
  flex: 1;
  padding: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.footer-newsletter-input-group input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.footer-social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.social-link {
  color: inherit;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  transition: all 0.2s ease;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.footer-payment-icons {
  margin-top: 1rem;
  text-align: center;
}

.payment-text {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.payment-icons-list {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.payment-icon {
  padding: 0.25rem 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  font-size: 0.85rem;
}

/* Usage Step Images */
.usage-step-image {
  margin-bottom: 0.5rem;
}

.usage-step-image img {
  border-radius: 8px;
  max-width: 100%;
}

.usage-step-content {
  flex: 1;
}

/* Mobile Responsive for New Components */
@media (max-width: 768px) {
  .btn-small {
    padding: 8px 20px;
    font-size: 0.8rem;
  }

  .btn-large {
    padding: 16px 32px;
    font-size: 1rem;
  }

  .section-title-small {
    font-size: 1.5rem;
  }

  .section-title-medium {
    font-size: 2rem;
  }

  .section-title-large {
    font-size: 2.5rem;
  }

  .newsletter-input-group {
    flex-direction: column;
  }
}

/* ============================================
   NEW SECTIONS STYLING
   ============================================ */

/* Social Proof Section */
.social-proof-section {
  padding: 2rem 0;
}

.social-proof-recent,
.social-proof-visitors {
  background: linear-gradient(135deg, rgba(157, 124, 71, 0.05) 0%, rgba(196, 168, 118, 0.02) 100%);
  border: 1px solid rgba(157, 124, 71, 0.15);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
}

.social-proof-text {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-color);
  margin: 0.5rem 0;
}

.social-proof-icon {
  font-size: 1.1rem;
}

.social-proof-message {
  flex: 1;
  font-weight: 500;
}

.social-proof-time {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 400;
}

/* Newsletter Section */
.newsletter-section {
  padding: 3rem 0;
}

.newsletter-form-container {
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.newsletter-input-group {
  display: flex;
  gap: 0.5rem;
  align-items: stretch;
}

.newsletter-input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
}

.newsletter-submit {
  white-space: nowrap;
  padding: 0.75rem 2rem;
}

.newsletter-success {
  background: #d4edda;
  color: #155724;
  padding: 1rem;
  border-radius: 6px;
  text-align: center;
  margin: 0;
}

.newsletter-errors {
  background: #f8d7da;
  color: #721c24;
  padding: 1rem;
  border-radius: 6px;
  margin: 0;
}

.newsletter-privacy {
  font-size: 0.85rem;
  color: var(--text-light);
  text-align: center;
  margin: 0.5rem 0 0 0;
}

/* Related Products Section */
.related-products-section {
  padding: 3rem 0;
}

.related-products-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

/* Comparison Table Section */
.comparison-table-section {
  padding: 4rem 0;
  background: transparent !important;
}

@media (max-width: 768px) {
  .comparison-table-section {
    background: transparent !important;
    padding-top: 0 !important;
  }
}

/* Ingredients Section Wrapper */
.ingredients-section-wrapper {
  padding: 3rem 0;
}

/* Usage Instructions Section */
.usage-instructions-section {
  padding: 3rem 0;
}

.usage-note {
  margin-top: 1.5rem;
  padding: 1rem;
  background: var(--secondary-color);
  border-radius: 6px;
  font-size: 0.95rem;
  color: var(--text-color);
  border-left: 3px solid var(--accent-gold);
}

/* Mobile Responsive for New Sections */
@media (max-width: 768px) {
  .social-proof-section,
  .newsletter-section,
  .related-products-section,
  .comparison-table-section,
  .ingredients-section-wrapper,
  .usage-instructions-section {
    padding: 2rem 0;
  }

  .comparison-table-container {
    padding: 1rem;
    margin: 1rem 0;
  }

  .newsletter-input-group {
    flex-direction: column;
  }

  .newsletter-submit {
    width: 100%;
  }
}

  .newsletter-submit {
    width: 100%;
  }

  .footer-newsletter-input-group {
    flex-direction: column;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .header-nav.mobile-hamburger .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

  .header-nav.mobile-hamburger .nav-menu.active {
    display: flex;
  }

  .faq-controls {
    flex-direction: column;
  }

  .faq-expand-all,
  .faq-collapse-all {
    width: 100%;
  }
}

/* ============================================
   CART DRAWER
   ============================================ */

.cart-drawer {
  position: fixed !important;
  top: 0 !important;
  right: 0 !important;
  width: 100% !important;
  max-width: 420px !important;
  height: 100vh !important;
  z-index: 10000 !important;
  pointer-events: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  transition: visibility 0.3s ease, opacity 0.3s ease !important;
  display: none !important;
  overflow: hidden !important;
}

.cart-drawer[aria-hidden="true"] {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.cart-drawer[aria-hidden="false"] {
  display: block !important;
  visibility: visible !important;
  pointer-events: auto !important;
  opacity: 1 !important;
}

.cart-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.cart-drawer[aria-hidden="false"] .cart-drawer-overlay {
  opacity: 1;
}

.cart-drawer-content {
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: #fff !important;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15) !important;
  display: flex !important;
  flex-direction: column !important;
  transform: translateX(100%) !important;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  overflow: hidden !important;
  z-index: 10001 !important;
}

.cart-drawer[aria-hidden="false"] .cart-drawer-content {
  transform: translateX(0) !important;
}

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

.cart-drawer-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
  margin: 0;
}

.cart-drawer-close {
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  color: var(--text-color);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}

.cart-drawer-close:hover {
  background-color: var(--secondary-color);
}

.cart-drawer-close svg {
  width: 20px;
  height: 20px;
}

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

.cart-drawer-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 1rem;
  color: var(--text-light);
}

.cart-drawer-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--border-color);
  border-top-color: var(--accent-gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-bottom: 1rem;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.cart-drawer-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background: var(--secondary-color);
}

.cart-drawer-item-image {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}

.cart-drawer-item-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cart-drawer-item-title {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--primary-color);
  margin: 0;
}

.cart-drawer-item-variant {
  font-size: 0.85rem;
  color: var(--text-light);
}

.cart-drawer-item-price {
  font-weight: 600;
  color: var(--primary-color);
  font-size: 0.95rem;
}

.cart-drawer-item-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.cart-drawer-item-quantity {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cart-drawer-item-quantity input {
  width: 60px;
  padding: 0.4rem;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  text-align: center;
  font-size: 0.9rem;
}

.cart-drawer-item-remove {
  background: none;
  border: none;
  color: var(--text-light);
  cursor: pointer;
  font-size: 0.85rem;
  padding: 0.25rem 0.5rem;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.cart-drawer-item-remove:hover {
  color: #dc3545;
}

.cart-drawer-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 1rem;
  text-align: center;
  color: var(--text-light);
}

.cart-drawer-empty p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

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

.cart-drawer-totals {
  margin-bottom: 1.5rem;
}

.cart-drawer-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.cart-drawer-shipping {
  font-size: 0.85rem;
  color: var(--text-light);
  margin: 0;
  text-align: center;
}

.cart-drawer-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cart-drawer-actions .btn {
  width: 100%;
  text-align: center;
}

@media (max-width: 768px) {
  .cart-drawer {
    max-width: 100%;
  }
  
  .cart-drawer-header {
    padding: 1rem;
  }
  
  .cart-drawer-body {
    padding: 1rem;
  }
  
  .cart-drawer-footer {
    padding: 1rem;
  }
}

/* ============================================
   MINI CART PREVIEW
   ============================================ */

.cart-link {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.2s ease;
}

.cart-link:hover {
  color: var(--accent-color);
}

.mini-cart-preview {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  width: 320px;
  max-height: 500px;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}

.mini-cart-preview[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.mini-cart-content {
  padding: 1rem;
  max-height: 400px;
  overflow-y: auto;
}

.mini-cart-items {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mini-cart-item {
  display: flex;
  gap: 0.75rem;
  padding: 0.5rem;
  border-bottom: 1px solid var(--border-color);
}

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

.mini-cart-item-image {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}

.mini-cart-item-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mini-cart-item-title {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--primary-color);
  margin: 0;
  line-height: 1.3;
}

.mini-cart-item-price {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-gold);
  margin: 0;
}

.mini-cart-more {
  font-size: 0.85rem;
  color: var(--text-light);
  text-align: center;
  padding: 0.5rem;
  margin: 0;
}

.mini-cart-total {
  padding: 1rem;
  border-top: 1px solid var(--border-color);
  text-align: center;
  font-size: 1rem;
  color: var(--primary-color);
}

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

.mini-cart-empty,
.mini-cart-loading,
.mini-cart-error {
  text-align: center;
  padding: 2rem 1rem;
  color: var(--text-light);
  margin: 0;
}

@media (max-width: 768px) {
  .mini-cart-preview {
    width: calc(100vw - 2rem);
    right: -1rem;
  }
}

/* ============================================
   LOADING STATES & SKELETON LOADERS
   ============================================ */

.skeleton-loader {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s ease-in-out infinite;
  border-radius: 4px;
}

@keyframes skeleton-loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.skeleton-image {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s ease-in-out infinite;
  border-radius: 8px;
}

.skeleton-text {
  height: 1em;
  margin-bottom: 0.5rem;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s ease-in-out infinite;
  border-radius: 4px;
}

.skeleton-text.short {
  width: 60%;
}

.skeleton-text.medium {
  width: 80%;
}

.skeleton-text.long {
  width: 100%;
}

.skeleton-button {
  height: 48px;
  width: 100%;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s ease-in-out infinite;
  border-radius: 4px;
}

.loading-spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.loading-spinner-large {
  width: 40px;
  height: 40px;
  border-width: 4px;
}

.loading-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  border-radius: 8px;
}

.btn.loading {
  position: relative;
  color: transparent;
  pointer-events: none;
}

.btn.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.image-loading {
  position: relative;
  background: #f0f0f0;
  overflow: hidden;
}

.image-loading::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

/* Form loading states */
.form-loading {
  opacity: 0.6;
  pointer-events: none;
  position: relative;
}

.form-loading::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.5);
  z-index: 1;
}

/* Smooth transitions for state changes */
.fade-in {
  animation: fadeIn 0.3s ease-in;
}

.slide-up {
  animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   EXIT INTENT POPUP
   ============================================ */

.exit-intent-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 20000;
  pointer-events: none;
  visibility: hidden;
  transition: visibility 0.3s ease;
}

.exit-intent-popup[aria-hidden="false"] {
  visibility: visible;
  pointer-events: auto;
}

.exit-intent-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.exit-intent-popup[aria-hidden="false"] .exit-intent-overlay {
  opacity: 1;
}

.exit-intent-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: 90%;
  max-width: 500px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  padding: 2rem;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.exit-intent-popup[aria-hidden="false"] .exit-intent-content {
  transform: translate(-50%, -50%) scale(1);
}

.exit-intent-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  color: var(--text-color);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  transition: background-color 0.2s ease;
  z-index: 2;
}

.exit-intent-close:hover {
  background-color: var(--secondary-color);
}

.exit-intent-close svg {
  width: 20px;
  height: 20px;
}

.exit-intent-body {
  text-align: center;
}

.exit-intent-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.exit-intent-message {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.exit-intent-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1rem;
}

.exit-intent-input {
  padding: 0.875rem 1rem;
  border: 2px solid var(--border-color);
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.2s ease;
  width: 100%;
}

.exit-intent-input:focus {
  outline: none;
  border-color: var(--accent-gold);
}

.exit-intent-submit {
  width: 100%;
  padding: 0.875rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
}

.exit-intent-note {
  font-size: 0.85rem;
  color: var(--text-light);
  margin: 0 0 1rem 0;
  line-height: 1.5;
}

.exit-intent-skip {
  background: none;
  border: none;
  color: var(--text-light);
  cursor: pointer;
  font-size: 0.9rem;
  text-decoration: underline;
  padding: 0.5rem;
  transition: color 0.2s ease;
}

.exit-intent-skip:hover {
  color: var(--primary-color);
}

@media (max-width: 768px) {
  .exit-intent-content {
    padding: 1.5rem;
    max-width: 90%;
  }
  
  .exit-intent-title {
    font-size: 1.5rem;
  }
  
  .exit-intent-message {
    font-size: 1rem;
  }
  
  /* Fix FAQ on mobile - ensure touch events work */
  .faq-question {
    pointer-events: auto !important;
    touch-action: manipulation !important;
    -webkit-tap-highlight-color: rgba(157, 124, 71, 0.2) !important;
    min-height: 44px !important;
    padding: 1rem 0 !important;
  }
  
  .faq-question:active {
    background-color: rgba(157, 124, 71, 0.05) !important;
  }
  
  .faq-item {
    pointer-events: auto !important;
  }
  
  .faq-icon {
    pointer-events: none !important;
  }
}

/* ============================================
   TRUST SIGNALS & SOCIAL PROOF
   ============================================ */

.hero-social-proof {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.75rem;
  background: rgba(157, 124, 71, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(157, 124, 71, 0.1);
}

.social-proof-purchase,
.social-proof-viewers,
.social-proof-recent,
.social-proof-visitors,
.hero-social-proof,
#social-proof-purchase,
#social-proof-viewers {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
}

.social-proof-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
}

.social-proof-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--accent-gold);
}

.social-proof-text {
  flex: 1;
  font-weight: 500;
}

.social-proof-time {
  font-size: 0.8rem;
  color: var(--text-light);
  white-space: nowrap;
}

#viewer-count {
  font-weight: 700;
  color: var(--accent-gold);
}

@media (max-width: 768px) {
  .hero-social-proof {
    padding: 0.6rem;
    gap: 0.4rem;
  }
  
  .social-proof-purchase,
  .social-proof-viewers {
    font-size: 0.8rem;
  }
  
  .social-proof-icon {
    font-size: 1rem;
  }
}

/* ============================================
   KEYBOARD NAVIGATION ENHANCEMENTS
   ============================================ */

/* Skip links */
.skip-to-content-link:focus {
  top: 0;
  z-index: 10001;
}

/* Enhanced focus for form elements */
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--accent-gold);
  outline-offset: 2px;
  border-color: var(--accent-gold);
}

/* Quantity controls keyboard navigation */
.quantity-controls button:focus-visible {
  outline: 3px solid var(--accent-gold);
  outline-offset: 2px;
  z-index: 1;
}

/* Variant selector keyboard navigation */
.variant-selector:focus-visible {
  outline: 3px solid var(--accent-gold);
  outline-offset: 2px;
}

/* Modal focus styles */
[role="dialog"]:focus-visible {
  outline: none;
}

[role="dialog"] *:focus-visible {
  outline: 3px solid var(--accent-gold);
  outline-offset: 2px;
}

/* ============================================
   MICRO-INTERACTIONS & ANIMATIONS
   ============================================ */

/* Button press animation */
.btn:active,
.hero-product-button-massive:active,
button:active {
  transform: translateY(1px) scale(0.98);
  transition: transform 0.1s ease;
}

/* Cart count badge animation */
.cart-count {
  transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.cart-count:empty {
  display: none;
}

@keyframes cartBounce {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

.cart-count.updated {
  animation: cartBounce 0.4s ease;
}

/* Hover effects for product cards */
.product-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--premium-shadow-hover);
}

/* Smooth transitions for trust badges */
.hero-trust-badge {
  transition: all 0.3s ease;
}

.hero-trust-badge:hover {
  transform: translateY(-2px);
  background-color: rgba(157, 124, 71, 0.1);
}

/* Benefit items hover */
.hero-benefit-item {
  transition: all 0.3s ease;
}

.hero-benefit-item:hover {
  transform: translateX(4px);
  background-color: rgba(157, 124, 71, 0.05);
}

/* Rating stars animation */
.star {
  transition: transform 0.2s ease;
}

.star:hover {
  transform: scale(1.2);
}

/* Price animation on change */
.price {
  transition: color 0.3s ease;
}

.price.updated {
  animation: pricePulse 0.5s ease;
}

@keyframes pricePulse {
  0%, 100% {
    color: inherit;
  }
  50% {
    color: var(--accent-gold);
    transform: scale(1.05);
  }
}

/* Form input focus animation */
input:focus,
select:focus,
textarea:focus {
  transform: scale(1.02);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

/* Loading spinner for buttons */
.btn.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

/* Smooth page transitions */
body {
  transition: opacity 0.3s ease;
}

/* Image loading animation */
img {
  transition: opacity 0.3s ease;
}

img[loading="lazy"] {
  opacity: 0;
}

img[loading="lazy"].loaded {
  opacity: 1;
}

/* Cart drawer item hover */
.cart-drawer-item {
  transition: all 0.2s ease;
}

.cart-drawer-item:hover {
  background-color: rgba(157, 124, 71, 0.05);
  transform: translateX(4px);
}

/* Mini cart item hover */
.mini-cart-item {
  transition: background-color 0.2s ease;
}

.mini-cart-item:hover {
  background-color: rgba(157, 124, 71, 0.05);
}

/* Trust badge icon animation */
.hero-trust-icon svg {
  transition: transform 0.3s ease;
}

.hero-trust-badge:hover .hero-trust-icon svg {
  transform: scale(1.1) rotate(5deg);
}

/* Benefit icon animation */
.hero-benefit-icon svg {
  transition: transform 0.3s ease;
}

.hero-benefit-item:hover .hero-benefit-icon svg {
  transform: scale(1.15) rotate(-5deg);
}

/* Smooth scroll behavior for anchor links */
html {
  scroll-behavior: smooth;
}

/* Fade in animation for dynamically added content */
.fade-in {
  animation: fadeIn 0.4s ease-in;
}

/* Stagger animation for lists */
@keyframes staggerFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-benefit-item {
  animation: staggerFadeIn 0.4s ease-out backwards;
}

.hero-benefit-item:nth-child(1) { animation-delay: 0.1s; }
.hero-benefit-item:nth-child(2) { animation-delay: 0.2s; }
.hero-benefit-item:nth-child(3) { animation-delay: 0.3s; }
.hero-benefit-item:nth-child(4) { animation-delay: 0.4s; }

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

