/* Premium Product Hero - 2025 Design System */

:root {
  --premium-gold: #C6A57C;
  --premium-gold-dark: #B8956A;
  --premium-gold-light: #D4B890;
  --glass-bg: rgba(255, 255, 255, 0.25);
  --glass-border: rgba(255, 255, 255, 0.18);
  --backdrop-blur: blur(20px);
  --shadow-luxury: 0 8px 32px rgba(31, 38, 135, 0.15);
  --shadow-float: 0 20px 40px rgba(0, 0, 0, 0.1);
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Enhanced Font Rendering */
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Breadcrumb Navigation */
.breadcrumb-container {
  background: #f9f7f4;
  border-bottom: 1px solid rgba(198, 165, 124, 0.1);
  padding: 12px 0;
  font-size: 0.9rem;
}

.breadcrumb-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumb-list li {
  display: flex;
  align-items: center;
}

.breadcrumb-list li:not(:last-child)::after {
  content: '/';
  margin: 0 8px;
  color: #ccc;
}

.breadcrumb-list a {
  color: #777;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-list a:hover {
  color: #C6A57C;
}

.breadcrumb-list li:last-child {
  color: #333;
  font-weight: 600;
}

/* Premium Hero Container */
.premium-hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: flex-start;
  background: linear-gradient(135deg, 
    #fdfcfa 0%, 
    #f8f5f0 25%, 
    #f4f0e8 50%, 
    #f0ebe3 75%, 
    #ede6dd 100%);
  overflow: hidden;
  padding-top: 80px; /* Reduced from 120px */
  padding-bottom: 20px;
  margin-top: 0;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(198, 165, 124, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(198, 165, 124, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 40% 90%, rgba(198, 165, 124, 0.08) 0%, transparent 50%);
  animation: backdropShift 20s ease-in-out infinite;
}

@keyframes backdropShift {
  0%, 100% { transform: translateX(0) translateY(0); }
  25% { transform: translateX(10px) translateY(-10px); }
  50% { transform: translateX(-5px) translateY(5px); }
  75% { transform: translateX(5px) translateY(-5px); }
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}

/* Product Showcase */
.product-showcase {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1; /* Ensure it's below the header */
}

.product-stage {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1; /* Ensure it's properly stacked below header */
}

.premium-badge-float {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 10;
  background: var(--glass-bg);
  backdrop-filter: var(--backdrop-blur);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 12px 20px;
  text-align: center;
  box-shadow: var(--shadow-luxury);
  animation: floatBadge 4s ease-in-out infinite;
  transform-origin: center;
}

@keyframes floatBadge {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-8px) rotate(2deg); }
}

.badge-text {
  display: block;
  font-family: 'CASTELAR', serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--premium-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.badge-subtitle {
  display: block;
  font-size: 0.75rem;
  color: rgba(198, 165, 124, 0.8);
  margin-top: 2px;
}

/* Sphynx Joke Badge */
.sphynx-joke-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 10;
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid var(--premium-gold);
  border-radius: 16px;
  padding: 10px 16px;
  text-align: center;
  box-shadow: 
    0 0 0 1px var(--premium-gold-dark),
    0 8px 32px rgba(198, 165, 124, 0.3),
    0 4px 16px rgba(198, 165, 124, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 0 20px rgba(198, 165, 124, 0.2);
  animation: floatBadge 6s ease-in-out infinite, glowPulse 3s ease-in-out infinite alternate;
  transform-origin: center;
  cursor: default;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  max-width: 180px;
}

.sphynx-joke-badge:hover {
  transform: scale(1.08) rotate(2deg);
  border-color: var(--premium-gold-dark);
  box-shadow: 
    0 0 0 2px var(--premium-gold),
    0 16px 48px rgba(198, 165, 124, 0.4),
    0 8px 24px rgba(198, 165, 124, 0.3),
    0 0 30px rgba(198, 165, 124, 0.4),
    0 0 15px rgba(198, 165, 124, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.joke-text {
  display: block;
  font-family: 'Cormorant', serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #2c2c2c;
  line-height: 1.2;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.joke-subtitle {
  display: block;
  font-size: 0.7rem;
  color: rgba(198, 165, 124, 0.9);
  margin-top: 2px;
  font-style: italic;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.product-spotlight {
  position: relative;
  z-index: 5;
  filter: drop-shadow(var(--shadow-float));
}

.hero-product-image {
  height: 550px;
  max-width: 100%;
  object-fit: contain;
  animation: productFloat 6s ease-in-out infinite;
  transition: var(--transition-smooth);
}

@keyframes productFloat {
  0%, 100% { transform: translateY(0px) rotateY(0deg); }
  25% { transform: translateY(-10px) rotateY(2deg); }
  50% { transform: translateY(-20px) rotateY(0deg); }
  75% { transform: translateY(-10px) rotateY(-2deg); }
}

.stage-reflection {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 30px;
  background: radial-gradient(
    ellipse at center,
    rgba(198, 165, 124, 0.2) 0%,
    rgba(198, 165, 124, 0.1) 40%,
    transparent 70%
  );
  border-radius: 50%;
  filter: blur(8px);
  animation: reflectionPulse 6s ease-in-out infinite;
}

@keyframes reflectionPulse {
  0%, 100% { opacity: 0.6; transform: translateX(-50%) scale(1); }
  50% { opacity: 0.8; transform: translateX(-50%) scale(1.1); }
}

/* Product Specs Floating Overlay */
.product-specs-overlay {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(198, 165, 124, 0.3);
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.1),
    0 2px 8px rgba(198, 165, 124, 0.2);
  transition: var(--transition-smooth);
  z-index: 10;
  min-width: 200px;
}

.product-specs-overlay:hover {
  transform: translateX(-50%) translateY(-2px);
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.15),
    0 4px 12px rgba(198, 165, 124, 0.3);
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(198, 165, 124, 0.5);
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.spec-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--premium-gold), var(--premium-gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
  box-shadow: 0 2px 8px rgba(198, 165, 124, 0.3);
}

.spec-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.spec-value {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #2c2c2c;
  line-height: 1;
  letter-spacing: 0.5px;
}

.spec-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 10px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
}

.spec-divider {
  width: 1px;
  height: 24px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(198, 165, 124, 0.3),
    transparent
  );
}

/* Responsive adjustments for specs overlay */
@media (max-width: 768px) {
  .product-specs-overlay {
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 16px;
    gap: 12px;
    border-radius: 12px;
  }
  
  .product-specs-overlay:hover {
    transform: translateX(-50%) translateY(-2px);
  }
  
  .spec-icon {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }
  
  .spec-value {
    font-size: 14px;
  }
  
  .spec-label {
    font-size: 9px;
  }
}

@media (max-width: 480px) {
  .product-specs-overlay {
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 14px;
    gap: 10px;
    border-radius: 10px;
    min-width: 180px;
    background: rgba(255, 255, 255, 0.9);
  }
  
  .product-specs-overlay:hover {
    transform: translateX(-50%) translateY(-2px);
  }
}

/* Product Narrative */
.product-narrative {
  display: flex;
  flex-direction: column;
  gap: 2rem; /* Reduced gap for better spacing */
  position: relative;
  padding-top: 0;
}

.product-intro {
  position: relative;
}

.hero-title {
  margin: 0 0 1.5rem 0;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.75rem;
}

.title-main {
  font-family: 'CASTELAR', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 400;
  color: #2c2c2c;
  line-height: 1.1;
  background: linear-gradient(135deg, #2c2c2c 0%, #4a4a4a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
}

.title-accent {
  font-family: 'Cormorant', serif;
  font-size: clamp(1.0rem, 2.2vw, 1.3rem);
  font-style: italic;
  color: var(--premium-gold);
  font-weight: 600;
  opacity: 0;
  animation: slideInFade 1s ease 0.5s forwards;
  white-space: nowrap;
}

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

.hero-description {
  font-family: 'Cormorant', serif;
  font-size: 1.2rem;
  line-height: 1.6;
  color: #555;
  margin: 0;
  opacity: 0;
  animation: slideInFade 1s ease 0.8s forwards;
}

/* Purchase Experience */
.purchase-experience {
  background: var(--glass-bg);
  backdrop-filter: var(--backdrop-blur);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: var(--shadow-luxury);
  position: relative;
  overflow: hidden;
}

.purchase-experience::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    var(--premium-gold) 50%, 
    transparent 100%);
}

.pricing-display {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-top: 0.5rem;
}

.price-main {
  display: flex;
  align-items: baseline;
  font-family: 'Cormorant', serif;
  font-weight: 700;
  color: #2c2c2c;
}

.currency {
  font-size: 2rem;
  margin-right: 0.25rem;
}

.amount {
  font-size: 3.5rem;
  line-height: 1;
}

.decimal {
  font-size: 2rem;
}

.trust-indicators {
  margin-bottom: 1.5rem;
}

.stock-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: #2e7d32;
  font-weight: 600;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #4caf50;
  border-radius: 50%;
  animation: statusPulse 2s ease-in-out infinite;
}

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

.premium-features {
  display: flex;
  flex-wrap: nowrap; /* Keep items on same line */
  gap: 1rem;
  justify-content: space-between;
  width: 100%;
}

.feature {
  font-size: 0.85rem; /* Slightly smaller font */
  color: #666;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  background: linear-gradient(145deg, 
    rgba(255, 255, 255, 0.9) 0%, 
    rgba(255, 255, 255, 0.7) 50%, 
    rgba(255, 255, 255, 0.8) 100%);
  backdrop-filter: blur(20px);
  padding: 0.65rem 1rem; /* More compact padding */
  border-radius: 25px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  gap: 0.5rem; /* Reduced gap */
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 4px 20px rgba(198, 165, 124, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    inset 0 -1px 0 rgba(0, 0, 0, 0.05);
  white-space: nowrap; /* Prevent text wrapping */
  flex-shrink: 0; /* Prevent shrinking */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(255, 255, 255, 0.8) 50%, 
    transparent 100%);
}

.feature::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, 
    rgba(198, 165, 124, 0.1) 0%, 
    transparent 50%, 
    rgba(198, 165, 124, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 25px;
}

.feature:hover::after {
  opacity: 1;
}

.feature:hover {
  background: linear-gradient(145deg, 
    rgba(255, 255, 255, 0.95) 0%, 
    rgba(255, 255, 255, 0.8) 50%, 
    rgba(255, 255, 255, 0.9) 100%);
  transform: translateY(-3px);
  box-shadow: 
    0 8px 30px rgba(198, 165, 124, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    inset 0 -1px 0 rgba(0, 0, 0, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
}

.feature i {
  color: var(--premium-gold);
  font-size: 1rem;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

/* Purchase Controls */
.purchase-controls {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.quantity-elegant {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.qty-label {
  font-family: 'Cormorant', serif;
  font-weight: 600;
  font-size: 1.5rem;
  color: #555;
}

/* Action Buttons Container - Horizontal Layout */
.action-buttons {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  width: 100%;
}

.qty-selector {
  display: flex;
  align-items: center;
  background: linear-gradient(145deg, 
    rgba(255, 255, 255, 0.9) 0%, 
    rgba(255, 255, 255, 0.7) 50%, 
    rgba(255, 255, 255, 0.8) 100%);
  backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 
    0 8px 32px rgba(198, 165, 124, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    inset 0 -1px 0 rgba(0, 0, 0, 0.05);
  position: relative;
}

.qty-selector::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(255, 255, 255, 0.8) 50%, 
    transparent 100%);
}

.qty-btn {
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--premium-gold);
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.qty-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, 
    rgba(198, 165, 124, 0.1) 0%, 
    transparent 50%, 
    rgba(198, 165, 124, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.qty-btn:hover::before {
  opacity: 1;
}

.qty-btn:hover {
  background: linear-gradient(145deg, 
    rgba(255, 255, 255, 0.3) 0%, 
    rgba(255, 255, 255, 0.1) 100%);
  transform: translateY(-1px);
}

.qty-btn:active {
  transform: translateY(0);
  background: linear-gradient(145deg, 
    rgba(198, 165, 124, 0.2) 0%, 
    rgba(198, 165, 124, 0.1) 100%);
}

.qty-value {
  min-width: 40px;
  text-align: center;
  font-weight: 600;
  padding: 0 0.5rem;
  position: relative;
  background: linear-gradient(145deg, 
    rgba(255, 255, 255, 0.2) 0%, 
    rgba(255, 255, 255, 0.05) 100%);
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

/* Enhanced Button Liquid Glass Effects */
.btn-primary,
.btn-secondary {
  flex: 1;
  padding: 1.25rem 2rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  border: none;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(25px);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -1px 0 rgba(0, 0, 0, 0.05);
  min-height: 56px;
  font-family: 'Montserrat', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.btn-primary {
  background: linear-gradient(145deg, 
    var(--premium-gold) 0%, 
    var(--premium-gold-dark) 50%, 
    var(--premium-gold) 100%);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.3), 
    transparent);
  transition: left 0.6s ease;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, 
    rgba(255, 255, 255, 0.2) 0%, 
    transparent 30%, 
    transparent 70%, 
    rgba(0, 0, 0, 0.1) 100%);
  border-radius: 20px;
  pointer-events: none;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 12px 40px rgba(198, 165, 124, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

.btn-primary:active {
  transform: translateY(-1px);
  transition: transform 0.1s ease;
}

.btn-secondary {
  background: linear-gradient(145deg, 
    rgba(255, 255, 255, 0.9) 0%, 
    rgba(255, 255, 255, 0.7) 50%, 
    rgba(255, 255, 255, 0.8) 100%);
  color: var(--premium-gold);
  border: 1px solid rgba(198, 165, 124, 0.3);
}

.btn-secondary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, 
    rgba(198, 165, 124, 0.1) 0%, 
    transparent 50%, 
    rgba(198, 165, 124, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 20px;
}

.btn-secondary:hover::before {
  opacity: 1;
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 12px 40px rgba(198, 165, 124, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    inset 0 -1px 0 rgba(0, 0, 0, 0.05);
  border-color: rgba(198, 165, 124, 0.5);
}

/* Enhanced Payment Badges */
.payment-security {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(198, 165, 124, 0.2);
}

.payment-badges {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  padding: 1rem 2rem;
  background: linear-gradient(145deg, 
    rgba(255, 255, 255, 0.8) 0%, 
    rgba(255, 255, 255, 0.6) 50%, 
    rgba(255, 255, 255, 0.7) 100%);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.payment-badges i {
  font-size: 2.2rem;
  opacity: 0.8;
  transition: var(--transition-smooth);
  cursor: pointer;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.payment-badges i:hover {
  opacity: 1;
  transform: translateY(-3px) scale(1.1);
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.2));
}

.fab.fa-cc-visa {
  color: #1a1f71;
}

.fab.fa-cc-mastercard {
  color: #eb001b;
}

.fab.fa-cc-amex {
  color: #006fcf;
}

.fab.fa-paypal {
  color: #003087;
}

/* Enhanced Mobile Responsiveness for Glass Effects */
@media (max-width: 768px) {
  .premium-hero {
    padding-top: 100px; /* Tablet header spacing */
  }
  
  .hero-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  /* Mobile product intro spacing - push title lower like Blanco */
  .product-intro {
    margin-top: 3rem;
  }
  
  /* Mobile title formatting */
  .hero-title {
    justify-content: center;
    gap: 0.5rem;
  }
  
  .title-main {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }
  
  .title-accent {
    font-size: clamp(0.9rem, 3vw, 1.2rem);
  }
  
  .payment-badges {
    gap: 1rem;
    padding: 0.75rem 1.5rem;
  }
  
  .payment-badges i {
    font-size: 1.8rem;
  }
  
  .btn-primary,
  .btn-secondary {
    border-radius: 16px;
    padding: 1rem 1.5rem;
    min-height: 50px;
  }
  
  .action-buttons {
    flex-direction: column; /* Stack on mobile */
    gap: 0.75rem;
  }
  
  .premium-features {
    flex-wrap: wrap; /* Allow wrapping on mobile */
    justify-content: center;
    gap: 0.75rem;
  }
  
  .feature {
    padding: 0.5rem 0.85rem;
    border-radius: 20px;
    gap: 0.4rem;
    font-size: 0.8rem;
  }
  
  .feature i {
    font-size: 0.85rem;
  }
  
  /* Tablet-specific joke badge optimizations */
  .sphynx-joke-badge {
    top: 15px; /* Move closer to top on tablets */
    left: 15px; /* Move closer to edge on tablets */
    max-width: 160px; /* Smaller on tablets */
    animation: none; /* Disable floating animation on tablets */
    transform: none !important; /* Disable transforms on tablets */
  }
  
  .sphynx-joke-badge:hover {
    transform: scale(1.02) !important; /* Very subtle hover effect on tablets */
  }
}

@media (max-width: 480px) {
  .premium-hero {
    padding-top: 90px; /* Slightly reduced for very small screens */
  }
  

  
  /* Very small screen title handling */
  .hero-title {
    flex-direction: column;
    gap: 0.25rem;
    align-items: center;
  }
  
  .title-main {
    font-size: clamp(1.6rem, 8vw, 2.2rem);
    white-space: normal; /* Allow wrapping on very small screens */
    text-align: center;
  }
  
  .title-accent {
    font-size: clamp(0.8rem, 4vw, 1.1rem);
    white-space: normal;
    text-align: center;
  }
  
  .payment-badges {
    gap: 0.75rem;
    padding: 0.5rem 1rem;
  }
  
  .payment-badges i {
    font-size: 1.5rem;
  }
  
  .action-buttons {
    gap: 0.5rem;
  }
  
  .premium-features {
    flex-direction: column; /* Stack vertically on very small screens */
    align-items: center;
    gap: 0.5rem;
  }
  
  .feature {
    padding: 0.4rem 0.75rem;
    font-size: 0.75rem;
  }
}

/* Medium screens - tablets and large phones */
@media (min-width: 481px) and (max-width: 768px) {
  .hero-title {
    gap: 0.6rem;
  }
  
  .title-main {
    white-space: nowrap;
  }
  
  .title-accent {
    white-space: nowrap;
  }
}

/* Desktop and larger screens - keep trust indicators on same line */
@media (min-width: 769px) {
  .premium-features {
    flex-wrap: nowrap;
    justify-content: space-between;
  }
  
  .action-buttons {
    flex-direction: row;
    gap: 1rem;
  }
  
  .feature {
    flex: 1;
    max-width: none;
    text-align: center;
  }
}

/* Enhanced Mobile Optimizations for Glass Effects */
@media (max-width: 480px) {
  .purchase-experience {
    padding: 1.5rem;
    backdrop-filter: blur(15px);
  }
  
  .btn-primary,
  .btn-secondary {
    backdrop-filter: blur(15px);
  }/* Mobile-specific joke badge fixes */
  .sphynx-joke-badge {
    position: absolute !important; /* Back to absolute positioning */
    top: -45px; /* Small negative value to get it higher but not above header */
    left: 50%; /* Center horizontally */
    right: auto; /* Remove right constraint */
    transform: translateX(-50%) !important; /* Center with transform, disable all other transforms */
    max-width: calc(100vw - 40px); /* Use most of screen width minus margins */
    margin: 0; /* Remove margin */
    animation: none !important; /* Disable distracting animations */
    box-shadow: 
      0 4px 16px rgba(198, 165, 124, 0.2),
      0 2px 8px rgba(198, 165, 124, 0.1);
    border-radius: 12px; /* Slightly smaller border radius */
    padding: 8px 12px; /* Reduce padding for mobile */
    z-index: 15; /* Higher z-index to stay above other elements */
    /* Prevent accidental touches */
    pointer-events: none;
    user-select: none;
    -webkit-user-select: none;
  }
    .sphynx-joke-badge:hover {
    transform: translateX(-50%) !important; /* Keep centered, disable other hover transforms on mobile */
    box-shadow: 
      0 4px 16px rgba(198, 165, 124, 0.2),
      0 2px 8px rgba(198, 165, 124, 0.1);
  }
  
  .joke-text {
    font-size: 0.8rem; /* Slightly smaller text on mobile */
  }
  
  .joke-subtitle {
    font-size: 0.65rem; /* Smaller subtitle on mobile */
  }
}

/* Medium screens - tablets and large phones */
@media (min-width: 481px) and (max-width: 768px) {
  .hero-title {
    gap: 0.6rem;
  }
  
  .title-main {
    white-space: nowrap;
  }
  
  .title-accent {
    white-space: nowrap;
  }
}

/* Desktop and larger screens - keep trust indicators on same line */
@media (min-width: 769px) {
  .premium-features {
    flex-wrap: nowrap;
    justify-content: space-between;
  }
  
  .action-buttons {
    flex-direction: row;
    gap: 1rem;
  }
  
  .feature {
    flex: 1;
    max-width: none;
    text-align: center;
  }
}

/* ========== MOBILE SCROLLING FIXES ========== */
/* Specific fixes for mobile touch scrolling issues */

/* Ensure smooth scrolling and proper touch behavior */
html {
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}

/* Mobile viewport and scrolling fixes */
@media (max-width: 768px) {
  /* Fix viewport height issues on mobile */
  .premium-hero {
    min-height: auto;
    height: auto;
    padding-top: 80px;
    padding-bottom: 40px;
  }

  /* Ensure proper z-index stacking */
  .hero-container {
    z-index: 1;
    position: relative;
  }

  .product-stage {
    z-index: 1;
    position: relative;
  }

  /* Fix backdrop filter issues that can cause scrolling problems */
  .hero-backdrop {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    will-change: transform;
  }

  /* Remove problematic fixed heights and use auto */
  .product-stage {
    height: auto;
    min-height: 400px;
  }

  /* Optimize glass effects for mobile performance */
  .sphynx-joke-badge,
  .premium-badge-float {
    backdrop-filter: none;
    background: rgba(255, 255, 255, 0.95);
  }

  /* Grid layout adjustments for mobile */
  .hero-container {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0 1rem;
  }

  /* Ensure content doesn't overflow */
  .product-showcase,
  .product-narrative {
    width: 100%;
    max-width: 100%;
    overflow: visible;
  }

  /* Fix positioning issues that can interfere with scrolling */
  .premium-hero {
    position: relative;
    overflow: visible;
  }

  /* Touch optimization */
  .purchase-controls,
  .action-buttons {
    touch-action: manipulation;
  }

  /* Prevent horizontal overflow */
  .hero-product-image {
    max-width: 100%;
    height: auto;
  }
}

/* Additional fixes for smaller mobile devices */
@media (max-width: 480px) {
  /* Further optimize for small screens */
  .premium-hero {
    padding-top: 60px;
    padding-bottom: 20px;
  }

  .hero-container {
    padding: 0 0.75rem;
  }

  /* Ensure buttons are touch-friendly */
  .btn-primary,
  .btn-secondary {
    min-height: 44px;
    touch-action: manipulation;
  }

  /* Optimize image sizing */
  .hero-product-image {
    max-height: 300px;
    width: auto;
  }

  .product-stage {
    min-height: 320px;
  }
}

/* iOS Safari specific fixes */
@supports (-webkit-overflow-scrolling: touch) {
  body {
    -webkit-overflow-scrolling: touch;
  }

  .premium-hero {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

  /* Fix for iOS viewport height issues */
  .premium-hero {
    min-height: calc(100vh - 100px);
  }
}

/* Prevent zoom on form inputs for mobile */
@media (max-width: 768px) {
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  select,
  textarea {
    font-size: 16px;
  }
}

/* Fix for potential scrolling issues with fixed elements */
@media (max-width: 768px) {
  /* Ensure main content starts below header */
  #main-content {
    margin-top: 0;
    padding-top: 0;
  }

  /* Breadcrumb adjustments */
  .breadcrumb-container {
    position: relative;
    z-index: 1;
  }

  /* Remove any transforms that might interfere with scrolling */
  .characteristics-grid {
    transform: none;
  }

  .characteristic-card {
    transform: none;
    transition: transform 0.3s ease;
  }

  .characteristic-card:hover {
    transform: translateY(-2px);
  }
}

/* Premium Product Details Section */
.premium-details-section {
  padding: 50px 0;
  background: linear-gradient(135deg, #fafafa 0%, #f8f8f8 100%);
  position: relative;
}

.premium-details-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(198, 165, 124, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}

/* Elegant Title Divider */
.section-divider {
  display: flex;
  align-items: center;
  margin-bottom: 35px;
  position: relative;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(198, 165, 124, 0.3) 20%, rgba(198, 165, 124, 0.6) 50%, rgba(198, 165, 124, 0.3) 80%, transparent 100%);
  position: relative;
}

.divider-line::after {
  content: '';
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 5px;
  background: linear-gradient(90deg, transparent 0%, var(--premium-gold) 50%, transparent 100%);
  border-radius: 3px;
  opacity: 0.7;
}

.divider-content {
  padding: 0 40px;
  text-align: center;
  position: relative;
}

.section-title {
  font-family: 'Cormorant', serif;
  font-size: 2rem;
  font-weight: 600;
  color: #2c2c2c;
  margin: 0;
  letter-spacing: 0.8px;
  position: relative;
}

.title-accent {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--premium-gold), var(--premium-gold-dark));
  margin: 15px auto 0;
  border-radius: 2px;
  position: relative;
}

.title-accent::after {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  background: var(--premium-gold);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(198, 165, 124, 0.4);
}

/* Product Characteristics Grid */
.characteristics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.characteristic-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(248, 248, 248, 0.9));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(198, 165, 124, 0.3);
  border-radius: 16px;
  padding: 25px 20px;
  text-align: center;
  position: relative;
  transition: all 0.4s ease;
  overflow: hidden;
  box-shadow: 
    0 4px 15px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.characteristic-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, 
    transparent 30%, 
    rgba(198, 165, 124, 0.1) 50%, 
    transparent 70%);
  transform: rotate(45deg) translateX(-100%);
  transition: transform 0.6s ease;
}

.characteristic-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    var(--premium-gold) 30%, 
    var(--premium-gold-dark) 50%, 
    var(--premium-gold) 70%, 
    transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.characteristic-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(198, 165, 124, 0.1), transparent);
  transition: left 0.6s ease;
}

.characteristic-card:hover::before {
  left: 100%;
}

.characteristic-card:hover::before {
  transform: rotate(45deg) translateX(100%);
}

.characteristic-card:hover::after {
  opacity: 1;
}

.characteristic-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 
    0 15px 35px rgba(0, 0, 0, 0.12),
    0 0 25px rgba(198, 165, 124, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  border-color: rgba(198, 165, 124, 0.5);
  background: linear-gradient(145deg, rgba(255, 255, 255, 1), rgba(250, 250, 250, 0.95));
}

.characteristics-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--premium-gold), var(--premium-gold-dark), #e6b800);
  border-radius: 50%;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 auto 20px;
  position: relative;
  transition: all 0.4s ease;
  box-shadow: 
    0 4px 15px rgba(198, 165, 124, 0.3),
    inset 0 2px 4px rgba(255, 255, 255, 0.3);
}

.characteristics-icon::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: rotate(45deg);
  transition: transform 0.6s ease;
  z-index: 1;
}

.characteristics-icon::after {
  content: '';
  position: absolute;
  top: 15%;
  left: 25%;
  width: 30%;
  height: 30%;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  filter: blur(4px);
  transition: all 0.4s ease;
  z-index: 1;
}

.characteristic-card:hover .characteristics-icon::before {
  transform: rotate(45deg) translate(100%, 100%);
}

.characteristics-icon i {
  font-size: 1.8rem !important;
  color: white;
  position: relative;
  z-index: 10;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
  transition: all 0.3s ease;
  line-height: 1 !important;
  width: 100% !important;
  height: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 !important;
  padding: 0 !important;
  text-align: center !important;
  box-sizing: border-box !important;
}

.characteristic-card:hover .characteristics-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 
    0 8px 25px rgba(198, 165, 124, 0.4),
    inset 0 2px 4px rgba(255, 255, 255, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
  .premium-details-section {
    padding: 40px 0;
  }
  
  .section-container {
    padding: 0 20px;
  }
  
  .section-title {
    font-size: 1.7rem;
  }
  
  .characteristics-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .characteristic-card {
    padding: 18px 15px;
  }
  
  .divider-content {
    padding: 0 20px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.5rem;
  }
  
  .char-icon {
    width: 45px;
    height: 45px;
  }
  
  .char-icon i {
    font-size: 1rem;
  }
  
  .char-label {
    font-size: 1rem;
  }
  
  .char-value {
    font-size: 0.85rem;
  }
}

/* ========== MOBILE SCROLLING FIXES ========== */
/* Specific fixes for mobile touch scrolling issues */

/* Ensure smooth scrolling and proper touch behavior */
html {
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}

/* Mobile viewport and scrolling fixes */
@media (max-width: 768px) {
  /* Fix viewport height issues on mobile */
  .premium-hero {
    min-height: auto;
    height: auto;
    padding-top: 80px;
    padding-bottom: 40px;
  }

  /* Ensure proper z-index stacking */
  .hero-container {
    z-index: 1;
    position: relative;
  }

  .product-stage {
    z-index: 1;
    position: relative;
  }

  /* Fix backdrop filter issues that can cause scrolling problems */
  .hero-backdrop {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    will-change: transform;
  }

  /* Remove problematic fixed heights and use auto */
  .product-stage {
    height: auto;
    min-height: 400px;
  }

  /* Optimize glass effects for mobile performance */
  .sphynx-joke-badge,
  .premium-badge-float {
    backdrop-filter: none;
    background: rgba(255, 255, 255, 0.95);
  }

  /* Grid layout adjustments for mobile */
  .hero-container {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0 1rem;
  }

  /* Ensure content doesn't overflow */
  .product-showcase,
  .product-narrative {
    width: 100%;
    max-width: 100%;
    overflow: visible;
  }

  /* Fix positioning issues that can interfere with scrolling */
  .premium-hero {
    position: relative;
    overflow: visible;
  }

  /* Touch optimization */
  .purchase-controls,
  .action-buttons {
    touch-action: manipulation;
  }

  /* Prevent horizontal overflow */
  .hero-product-image {
    max-width: 100%;
    height: auto;
  }
}

/* Additional fixes for smaller mobile devices */
@media (max-width: 480px) {
  /* Further optimize for small screens */
  .premium-hero {
    padding-top: 60px;
    padding-bottom: 20px;
  }

  .hero-container {
    padding: 0 0.75rem;
  }

  /* Ensure buttons are touch-friendly */
  .btn-primary,
  .btn-secondary {
    min-height: 44px;
    touch-action: manipulation;
  }

  /* Optimize image sizing */
  .hero-product-image {
    max-height: 300px;
    width: auto;
  }

  .product-stage {
    min-height: 320px;
  }
}

/* iOS Safari specific fixes */
@supports (-webkit-overflow-scrolling: touch) {
  body {
    -webkit-overflow-scrolling: touch;
  }

  .premium-hero {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

  /* Fix for iOS viewport height issues */
  .premium-hero {
    min-height: calc(100vh - 100px);
  }
}

/* Prevent zoom on form inputs for mobile */
@media (max-width: 768px) {
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  select,
  textarea {
    font-size: 16px;
  }
}

/* Fix for potential scrolling issues with fixed elements */
@media (max-width: 768px) {
  /* Ensure main content starts below header */
  #main-content {
    margin-top: 0;
    padding-top: 0;
  }

  /* Breadcrumb adjustments */
  .breadcrumb-container {
    position: relative;
    z-index: 1;
  }

  /* Remove any transforms that might interfere with scrolling */
  .characteristics-grid {
    transform: none;
  }

  .characteristic-card {
    transform: none;
    transition: transform 0.3s ease;
  }

  .characteristic-card:hover {
    transform: translateY(-2px);
  }
}
