/* ==========================================================================
   Çilek Diyarı Hüyük - Modern Luxury Agricultural E-Commerce Design System
   ========================================================================== */

:root {
  /* Brand Colors */
  --primary-ruby: #D91E36;
  --primary-ruby-hover: #BE123C;
  --primary-ruby-dark: #991B1B;
  --primary-ruby-light: #FFE4E6;
  --primary-ruby-gradient: linear-gradient(135deg, #E11D48 0%, #BE123C 50%, #9F1239 100%);
  
  --emerald-leaf: #15803D;
  --emerald-leaf-hover: #166534;
  --emerald-leaf-light: #DCFCE7;
  
  --gold-accent: #D97706;
  --gold-light: #FEF3C7;
  
  --wa-green: #25D366;
  --wa-green-hover: #20BA59;

  /* Neutral Backgrounds & Tones */
  --bg-cream: #FDFBF7;
  --bg-surface: #FFFFFF;
  --bg-surface-soft: #F9F7F2;
  --bg-surface-tint: #FFF5F6;
  
  /* Text & Border Colors */
  --text-main: #1C1917;
  --text-muted: #57534E;
  --text-light: #78716C;
  --text-inverse: #FFFFFF;
  
  --border-subtle: #E7E5E4;
  --border-focus: #BE123C;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.03);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
  --shadow-ruby: 0 10px 25px -5px rgba(225, 29, 72, 0.35);

  /* Typography */
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-heading: 'Outfit', system-ui, -apple-system, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  overflow-x: clip;
  max-width: 100%;
  width: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-cream);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-x: clip;
  max-width: 100%;
  width: 100%;
  position: relative;
}

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

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

button {
  cursor: pointer;
  border: none;
  font-family: inherit;
  outline: none;
  background: none;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.icon-svg {
  width: 18px;
  height: 18px;
  display: inline-block;
  vertical-align: middle;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9rem;
  transition: all var(--transition-smooth);
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary-ruby-gradient);
  color: var(--text-inverse);
  box-shadow: var(--shadow-ruby);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -5px rgba(225, 29, 72, 0.45);
}

.btn-secondary-wa {
  background-color: #E8F9EE;
  color: #128C7E;
  border: 1px solid rgba(37, 211, 102, 0.3);
}

.btn-secondary-wa:hover {
  background-color: var(--wa-green);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-lg {
  padding: 15px 30px;
  font-size: 1.05rem;
}

/* ==========================================================================
   Announcement Bar
   ========================================================================== */
.announcement-bar {
  background: linear-gradient(90deg, #9F1239 0%, #BE123C 100%);
  color: #FFFFFF;
  font-size: 0.84rem;
  padding: 7px 0;
  text-align: center;
  position: relative;
  z-index: 50;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.announcement-inner {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.announcement-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
}

.announcement-content p {
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pulse-badge {
  width: 8px;
  height: 8px;
  background-color: #4ADE80;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
  animation: pulse-dot 1.8s infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(74, 222, 128, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}

.free-shipping-tag {
  background: rgba(255, 255, 255, 0.22);
  padding: 2px 10px;
  border-radius: var(--radius-full);
  font-weight: 700;
  margin-left: 6px;
}

/* ==========================================================================
   Sleek & Clean Header Navigation
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  background: rgba(253, 251, 247, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(231, 229, 228, 0.8);
  z-index: 40;
  height: 72px;
  display: flex;
  align-items: center;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 100%;
  gap: 20px;
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 1;
  min-width: 0;
}

.logo-icon {
  font-size: 1.85rem;
  line-height: 1;
  filter: drop-shadow(0 2px 4px rgba(225, 29, 72, 0.25));
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.brand-logo:hover .logo-icon {
  transform: rotate(-10deg) scale(1.1);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.18rem;
  letter-spacing: -0.02em;
  color: var(--primary-ruby-dark);
  line-height: 1.1;
  white-space: nowrap;
}

.brand-tagline {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--emerald-leaf);
  white-space: nowrap;
}

/* Centered Navigation */
.main-nav {
  display: flex;
  align-items: center;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-ruby);
  transition: width var(--transition-smooth);
  border-radius: var(--radius-full);
}

.nav-link:hover {
  color: var(--primary-ruby);
}

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

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Admin Panel Quick Link Button */
.btn-admin-header {
  background-color: #F3F4F6;
  color: #374151;
  border: 1px solid #E5E7EB;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.btn-admin-header:hover {
  background-color: #0F172A;
  color: #FFFFFF;
  border-color: #0F172A;
}

.btn-whatsapp-header {
  background-color: #E8F9EE;
  color: #15803D;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(21, 128, 61, 0.2);
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.btn-whatsapp-header:hover {
  background-color: var(--wa-green);
  color: #FFFFFF;
}

.cart-trigger-btn {
  background-color: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.86rem;
  color: var(--text-main);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
  white-space: nowrap;
}

.cart-trigger-btn:hover {
  border-color: var(--primary-ruby);
  color: var(--primary-ruby);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.cart-badge {
  background: var(--primary-ruby);
  color: #FFFFFF;
  font-size: 0.72rem;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 800;
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cart-badge.bounce {
  transform: scale(1.3);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  padding: 4px;
  cursor: pointer;
}

.mobile-menu-toggle span {
  width: 100%;
  height: 2.5px;
  background-color: var(--text-main);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  padding: 48px 0 64px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 10% 20%, rgba(255, 228, 230, 0.45) 0%, transparent 45%),
              radial-gradient(circle at 90% 80%, rgba(220, 252, 231, 0.35) 0%, transparent 40%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #FFFFFF;
  border: 1px solid rgba(225, 29, 72, 0.2);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--primary-ruby-dark);
  box-shadow: var(--shadow-sm);
  margin-bottom: 18px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.1rem;
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -0.03em;
  color: var(--text-main);
  margin-bottom: 16px;
}

.highlight-text {
  color: var(--primary-ruby);
  position: relative;
  display: inline-block;
}

.highlight-text::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(225, 29, 72, 0.18);
  z-index: -1;
  border-radius: 4px;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 24px;
  max-width: 580px;
}

.hero-highlights {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-main);
}

.check-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--emerald-leaf-light);
  color: var(--emerald-leaf);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--border-subtle);
}

.stat-card {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--primary-ruby);
  line-height: 1.1;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
}

.stat-divider {
  width: 1px;
  height: 32px;
  background-color: var(--border-subtle);
}

.hero-visual {
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 25px 40px -15px rgba(217, 30, 54, 0.2), 0 0 0 1px rgba(0,0,0,0.05);
}

.hero-img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  transition: transform 0.6s var(--transition-smooth);
}

.hero-image-wrapper:hover .hero-img {
  transform: scale(1.03);
}

.hero-floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 5;
  animation: float-card 3.5s ease-in-out infinite alternate;
}

.floating-bottom-left {
  bottom: 24px;
  left: 20px;
}

.floating-top-right {
  top: 24px;
  right: 20px;
  animation-delay: 1.5s;
}

.hero-floating-card .card-icon {
  font-size: 1.7rem;
}

.hero-floating-card strong {
  display: block;
  font-size: 0.88rem;
  color: var(--text-main);
  line-height: 1.2;
}

.hero-floating-card p {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 2px;
}

@keyframes float-card {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-8px); }
}

/* ==========================================================================
   Trust Features Bar
   ========================================================================== */
.trust-features-section {
  padding: 34px 0;
  background-color: #FFFFFF;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.trust-icon-box {
  font-size: 1.8rem;
  background-color: var(--bg-surface-tint);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.trust-info h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 4px;
}

.trust-info p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* ==========================================================================
   Section Headers
   ========================================================================== */
.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary-ruby);
  background-color: var(--primary-ruby-light);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-main);
  line-height: 1.2;
  margin-bottom: 14px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ==========================================================================
   Products Catalog
   ========================================================================== */
.products-section {
  padding: 76px 0;
}

.product-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 32px 0 44px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 9px 20px;
  border-radius: var(--radius-full);
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: all var(--transition-smooth);
}

.filter-btn:hover {
  border-color: var(--primary-ruby);
  color: var(--primary-ruby);
}

.filter-btn.active {
  background: var(--primary-ruby);
  color: #FFFFFF;
  border-color: var(--primary-ruby);
  box-shadow: 0 4px 12px rgba(217, 30, 54, 0.25);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.product-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-smooth);
  position: relative;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(225, 29, 72, 0.15);
}

.product-thumb-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background-color: #F3F0E9;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--transition-smooth);
}

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

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.74rem;
  font-weight: 800;
  color: var(--primary-ruby-dark);
  box-shadow: var(--shadow-sm);
  z-index: 2;
}

.product-badge.badge-harvest {
  background: var(--primary-ruby);
  color: #FFFFFF;
}

.product-content {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-category-tag {
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--emerald-leaf);
  margin-bottom: 6px;
}

.product-title {
  font-family: var(--font-heading);
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.3;
  margin-bottom: 8px;
}

.product-desc {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 16px;
  flex-grow: 1;
}

.product-variants-wrap {
  margin-bottom: 16px;
}

.variants-label {
  display: block;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.variants-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.variant-pill {
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
  background-color: var(--bg-surface-soft);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-main);
  transition: all var(--transition-fast);
}

.variant-pill:hover {
  border-color: var(--primary-ruby);
}

.variant-pill.active {
  background-color: var(--primary-ruby-light);
  border-color: var(--primary-ruby);
  color: var(--primary-ruby-dark);
  font-weight: 700;
}

.product-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
  gap: 12px;
}

.product-price-box {
  display: flex;
  flex-direction: column;
}

.product-price {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary-ruby-dark);
  line-height: 1.1;
}

.product-unit {
  font-size: 0.72rem;
  color: var(--text-light);
}

.product-actions-btn-group {
  display: flex;
  gap: 8px;
}

.btn-add-cart {
  background: var(--primary-ruby);
  color: #FFFFFF;
  padding: 9px 15px;
  border-radius: var(--radius-full);
  font-size: 0.84rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all var(--transition-smooth);
}

.btn-add-cart:hover {
  background: var(--primary-ruby-hover);
  transform: scale(1.03);
}

.btn-quick-wa {
  background: #E8F9EE;
  color: #128C7E;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(37, 211, 102, 0.3);
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

.btn-quick-wa:hover {
  background: var(--wa-green);
  color: #FFFFFF;
  transform: scale(1.08);
}

.catalog-assurance-box {
  margin-top: 44px;
  background-color: #FFFFFF;
  border: 1px dashed var(--emerald-leaf);
  border-radius: var(--radius-md);
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.assurance-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.assurance-text {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.assurance-text a {
  color: var(--emerald-leaf);
  font-weight: 700;
  text-decoration: underline;
}

/* ==========================================================================
   Why Huyuk Section
   ========================================================================== */
.why-huyuk-section {
  padding: 76px 0;
  background-color: #FFFFFF;
}

.why-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: center;
}

.why-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.why-img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.why-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: rgba(21, 128, 61, 0.95);
  backdrop-filter: blur(8px);
  color: #FFFFFF;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.why-badge-num {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 800;
  display: block;
  line-height: 1;
}

.why-badge-text {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.9;
}

.why-intro {
  font-size: 1.08rem;
  color: var(--text-muted);
  margin-bottom: 26px;
  line-height: 1.6;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.feature-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.feature-num {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary-ruby);
  background: var(--primary-ruby-light);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-row h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 3px;
}

.feature-row p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   Story Section
   ========================================================================== */
.story-section {
  padding: 76px 0;
  background: var(--bg-surface-tint);
}

.story-card-wrapper {
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  padding: 44px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(225, 29, 72, 0.1);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 44px;
  align-items: center;
}

.story-text p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 14px;
}

.story-quote {
  margin-top: 22px;
  background-color: var(--bg-surface-soft);
  border-left: 4px solid var(--primary-ruby);
  padding: 18px 22px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.quote-mark {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  line-height: 0.8;
  color: var(--primary-ruby);
  opacity: 0.3;
}

.story-quote p {
  font-style: italic;
  color: var(--text-main);
  font-size: 1rem;
  margin-bottom: 4px;
}

.quote-author {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary-ruby-dark);
}

.story-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.story-stat-box {
  background: var(--bg-cream);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 22px 18px;
  text-align: center;
  transition: transform var(--transition-fast);
}

.story-stat-box:hover {
  transform: translateY(-4px);
  border-color: var(--primary-ruby);
}

.story-stat-box .stat-icon {
  font-size: 2rem;
  margin-bottom: 8px;
  display: inline-block;
}

.story-stat-box h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 4px;
}

.story-stat-box p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ==========================================================================
   Instagram Feed Showcase
   ========================================================================== */
.instagram-section {
  padding: 76px 0;
}

.insta-header-box {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 20px;
}

.insta-profile-meta {
  display: flex;
  align-items: center;
  gap: 18px;
}

.insta-avatar img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #E11D48;
  padding: 2px;
}

.insta-handle {
  display: flex;
  align-items: center;
  gap: 8px;
}

.insta-handle h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-main);
}

.verified-badge {
  background-color: #3897F0;
  color: #FFFFFF;
  font-size: 0.7rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.insta-bio {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 3px 0;
}

.insta-counter-row {
  display: flex;
  gap: 16px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.insta-counter-row strong {
  color: var(--text-main);
}

.btn-insta-follow {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #FFFFFF;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(220, 39, 67, 0.3);
  transition: transform var(--transition-smooth);
}

.btn-insta-follow:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(220, 39, 67, 0.4);
}

.insta-gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.insta-card {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.insta-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--transition-smooth);
}

.insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 14px;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s var(--transition-smooth);
}

.insta-card:hover .insta-overlay {
  opacity: 1;
}

.insta-card:hover img {
  transform: scale(1.1);
}

.insta-icon {
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 4px;
}

.insta-overlay p {
  font-size: 0.72rem;
  line-height: 1.3;
}

/* ==========================================================================
   Customer Reviews
   ========================================================================== */
.reviews-section {
  padding: 76px 0;
  background-color: #FFFFFF;
}

.rating-badge-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 12px;
}

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

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 44px;
}

.review-card {
  background: var(--bg-cream);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-fast);
}

.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(225, 29, 72, 0.3);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.reviewer-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary-ruby-light);
  color: var(--primary-ruby-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.92rem;
}

.reviewer-city {
  font-size: 0.76rem;
  color: var(--text-light);
}

.review-stars {
  margin-left: auto;
  color: #F59E0B;
  font-size: 0.85rem;
}

.review-body {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
  flex-grow: 1;
}

.verified-purchase {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--emerald-leaf);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-section {
  padding: 76px 0;
}

.faq-container {
  max-width: 820px;
}

.faq-accordion {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq-item.active {
  border-color: var(--primary-ruby);
}

.faq-question {
  width: 100%;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-main);
  text-align: left;
}

.faq-question:hover {
  color: var(--primary-ruby);
}

.faq-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--bg-surface-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform var(--transition-smooth);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: var(--primary-ruby-light);
  color: var(--primary-ruby);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out;
  padding: 0 22px;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 20px;
}

.faq-answer p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   Bottom CTA Banner
   ========================================================================== */
.cta-banner-section {
  padding: 64px 0;
  background: linear-gradient(135deg, #1C1917 0%, #292524 100%);
  color: #FFFFFF;
}

.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  flex-wrap: wrap;
}

.cta-tag {
  color: #F87171;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  display: inline-block;
}

.cta-banner-content h2 {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.cta-banner-content p {
  color: #D6D3D1;
  font-size: 1rem;
}

.cta-banner-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background-color: #181514;
  color: #A8A29E;
  padding-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1fr;
  gap: 36px;
  padding-bottom: 44px;
}

.footer-logo .brand-name {
  color: #FFFFFF;
}

.footer-desc {
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 16px 0;
}

.footer-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.cert-badge {
  background: rgba(255, 255, 255, 0.06);
  color: #E7E5E4;
  font-size: 0.74rem;
  padding: 5px 10px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 18px;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a:hover {
  color: #FFFFFF;
  padding-left: 4px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.86rem;
}

.footer-social-desc {
  font-size: 0.86rem;
  margin-bottom: 14px;
}

.btn-insta-card {
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  padding: 9px 16px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-insta-card:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #FFFFFF;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  font-size: 0.8rem;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-safe-shopping {
  display: flex;
  gap: 16px;
}

.footer-safe-shopping a:hover {
  color: #FFFFFF;
  text-decoration: underline;
}

/* ==========================================================================
   Slide-Over Cart Drawer
   ========================================================================== */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-smooth);
}

.cart-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 440px;
  height: 100%;
  height: 100dvh;
  background-color: #FFFFFF;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
  z-index: 101;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s;
}

.cart-drawer.active {
  transform: translateX(0);
  visibility: visible;
}

.cart-header {
  padding: 18px 22px;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-title-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-title-wrap h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-main);
}

.cart-count-badge {
  background: var(--bg-surface-soft);
  color: var(--text-muted);
  font-size: 0.74rem;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  font-weight: 700;
}

.btn-close-cart {
  font-size: 1.8rem;
  line-height: 1;
  color: var(--text-muted);
  padding: 4px;
}

.btn-close-cart:hover {
  color: var(--primary-ruby);
}

.shipping-meter-wrap {
  background: var(--bg-surface-tint);
  padding: 12px 22px;
  border-bottom: 1px solid rgba(225, 29, 72, 0.1);
}

.shipping-meter-text {
  font-size: 0.8rem;
  color: var(--primary-ruby-dark);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.meter-bar {
  height: 6px;
  background: #E2E8F0;
  border-radius: var(--radius-full);
  overflow: hidden;
}

.meter-progress {
  height: 100%;
  background: linear-gradient(90deg, #10B981 0%, #059669 100%);
  border-radius: var(--radius-full);
  transition: width 0.4s ease;
}

.cart-items {
  flex-grow: 1;
  overflow-y: auto;
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cart-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  color: var(--text-muted);
}

.cart-empty-state .empty-icon {
  font-size: 3.2rem;
  margin-bottom: 10px;
}

.cart-empty-state h4 {
  font-size: 1.1rem;
  color: var(--text-main);
  margin-bottom: 6px;
}

.cart-empty-state p {
  font-size: 0.86rem;
  margin-bottom: 18px;
}

.cart-item {
  display: grid;
  grid-template-columns: 68px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 10px;
  background: var(--bg-surface-soft);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
}

.cart-item-img {
  width: 68px;
  height: 68px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

.cart-item-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.3;
}

.cart-item-variant {
  font-size: 0.74rem;
  color: var(--primary-ruby);
  font-weight: 600;
  margin-top: 2px;
}

.cart-item-price {
  font-size: 0.86rem;
  font-weight: 800;
  color: var(--text-main);
  margin-top: 4px;
}

.cart-item-stepper {
  display: flex;
  align-items: center;
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  margin-top: 5px;
  width: max-content;
}

.step-btn {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-muted);
}

.step-btn:hover {
  color: var(--primary-ruby);
}

.step-qty {
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0 6px;
}

.btn-remove-item {
  color: #9CA3AF;
  font-size: 1.1rem;
  padding: 6px;
}

.btn-remove-item:hover {
  color: var(--primary-ruby);
}

.cart-footer {
  padding: 18px 22px;
  border-top: 1px solid var(--border-subtle);
  background: #FFFFFF;
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.86rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.cart-summary-divider {
  height: 1px;
  background-color: var(--border-subtle);
  margin: 8px 0;
}

.cart-summary-row.total-row {
  font-size: 1.1rem;
  color: var(--text-main);
  margin-bottom: 16px;
}

.cart-grand-total {
  color: var(--primary-ruby-dark);
  font-family: var(--font-heading);
}

.cart-cta-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.btn-whatsapp-order {
  background-color: var(--wa-green);
  color: #FFFFFF;
  width: 100%;
  padding: 12px 18px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
  transition: all var(--transition-smooth);
}

.btn-whatsapp-order:hover {
  background-color: var(--wa-green-hover);
  transform: translateY(-1px);
}

.btn-web-checkout {
  background-color: #FFFFFF;
  color: var(--text-main);
  border: 1px solid var(--border-subtle);
  width: 100%;
  padding: 11px 18px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.88rem;
}

.btn-web-checkout:hover {
  background-color: var(--bg-surface-soft);
  border-color: var(--text-muted);
}

.cart-safe-note {
  text-align: center;
  font-size: 0.74rem;
  color: var(--text-light);
  margin-top: 10px;
}

/* ==========================================================================
   Checkout Modal
   ========================================================================== */
.checkout-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  z-index: 110;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-smooth);
}

.checkout-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.checkout-modal {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
  transform: scale(0.95);
  transition: transform var(--transition-smooth);
}

.checkout-modal-overlay.active .checkout-modal {
  transform: scale(1);
}

.checkout-modal-header {
  padding: 18px 22px;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.checkout-modal-header h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-main);
}

.btn-close-modal {
  font-size: 1.8rem;
  line-height: 1;
  color: var(--text-muted);
}

.checkout-form {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-main);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  background-color: var(--bg-surface-soft);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary-ruby);
  background-color: #FFFFFF;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.payment-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.payment-option-card {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 10px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  cursor: pointer;
}

.payment-option-card:has(input:checked) {
  border-color: var(--primary-ruby);
  background-color: var(--bg-surface-tint);
}

.option-content strong {
  display: block;
  font-size: 0.84rem;
  color: var(--text-main);
}

.option-content span {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.checkout-order-summary-box {
  background: var(--bg-surface-soft);
  border-radius: var(--radius-sm);
  padding: 12px;
}

.modal-summary-line {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  font-weight: 700;
}

.btn-submit-order {
  width: 100%;
  padding: 13px;
  margin-top: 4px;
}

/* ==========================================================================
   Floating WhatsApp Button
   ========================================================================== */
.floating-wa-btn {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 56px;
  height: 56px;
  background-color: var(--wa-green);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
  z-index: 80;
  transition: all var(--transition-smooth);
}

.floating-wa-btn svg {
  width: 32px;
  height: 32px;
  position: relative;
  z-index: 2;
}

.floating-wa-btn:hover {
  transform: scale(1.1);
  background-color: var(--wa-green-hover);
}

.wa-pulse {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.4);
  z-index: 1;
  animation: wa-ripple 2s infinite ease-out;
}

@keyframes wa-ripple {
  0% { transform: scale(0.9); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}

.wa-tooltip {
  position: absolute;
  right: 70px;
  background: #1C1917;
  color: #FFFFFF;
  padding: 7px 12px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(10px);
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-md);
}

.floating-wa-btn:hover .wa-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ==========================================================================
   Toast Notification
   ========================================================================== */
.toast-container {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 150;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  background: #1C1917;
  color: #FFFFFF;
  padding: 12px 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  border-left: 4px solid var(--primary-ruby);
  animation: toast-in 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.toast.toast-out {
  animation: toast-out 0.3s ease-in forwards;
}

@keyframes toast-in {
  from { opacity: 0; transform: translateY(-16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes toast-out {
  from { opacity: 1; transform: translateY(0); }
  to { opacity: 0; transform: translateY(-16px); }
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hero-visual {
    order: -1;
  }
  .hero-img {
    height: 360px;
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .story-card-wrapper {
    grid-template-columns: 1fr;
  }
  .insta-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Below 992px: Cleanly collapse header navigation to avoid any shifts */
@media (max-width: 992px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    background: #FFFFFF;
    border-bottom: 1px solid var(--border-subtle);
    padding: 18px 24px;
    box-shadow: var(--shadow-lg);
  }

  .main-nav.active {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

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

  .btn-admin-header span {
    display: none;
  }
  .btn-whatsapp-header span {
    display: none;
  }
  .cart-label {
    display: none;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 14px;
    max-width: 100%;
    width: 100%;
    overflow: hidden;
  }

  /* Announcement Bar */
  .announcement-bar {
    font-size: 0.72rem;
    padding: 6px 10px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .announcement-content {
    display: block;
    white-space: normal;
    line-height: 1.35;
    text-align: center;
    width: 100%;
    max-width: 100%;
  }

  .announcement-content p {
    white-space: normal;
    display: inline;
    font-size: 0.72rem;
  }

  /* Header */
  .site-header {
    height: 58px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .header-inner {
    gap: 6px;
    width: 100%;
    max-width: 100%;
  }

  .brand-logo {
    gap: 6px;
    min-width: 0;
    flex-shrink: 1;
    overflow: hidden;
  }

  .logo-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
  }

  .logo-text {
    min-width: 0;
    overflow: hidden;
  }

  .brand-name {
    font-size: 0.88rem;
    letter-spacing: -0.02em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .brand-tagline {
    display: none !important;
  }

  .header-actions {
    gap: 6px;
    flex-shrink: 0;
  }

  .btn-admin-header {
    display: none !important;
  }

  .btn-whatsapp-header {
    width: 35px;
    height: 35px;
    padding: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .btn-whatsapp-header span {
    display: none !important;
  }

  .btn-whatsapp-header svg {
    width: 18px;
    height: 18px;
  }

  .cart-trigger-btn {
    padding: 6px 10px;
    gap: 4px;
    flex-shrink: 0;
  }

  .cart-label {
    display: none !important;
  }

  .cart-badge {
    width: 18px;
    height: 18px;
    font-size: 0.68rem;
  }

  .mobile-menu-toggle {
    width: 28px;
    padding: 2px;
    flex-shrink: 0;
  }

  /* Hero Section */
  .hero-section {
    padding: 16px 0 32px;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    width: 100%;
    max-width: 100%;
  }

  .hero-visual {
    order: -1;
    width: 100%;
    max-width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
  }

  .hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
  }

  .hero-img {
    width: 100%;
    max-width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: var(--radius-lg);
  }

  .hero-floating-card {
    display: none !important;
  }

  .hero-badge {
    font-size: 0.74rem;
    padding: 4px 10px;
    margin-bottom: 10px;
    white-space: normal;
    line-height: 1.3;
    max-width: 100%;
  }

  .hero-title {
    font-size: 1.7rem;
    line-height: 1.2;
    margin-bottom: 12px;
    word-break: normal;
    overflow-wrap: break-word;
  }

  .highlight-text {
    display: inline;
  }

  .hero-description {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 18px;
    max-width: 100%;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
    gap: 10px;
    margin-bottom: 20px;
  }

  .hero-cta-group .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    padding-top: 16px;
    text-align: center;
    border-top: 1px solid var(--border-subtle);
  }

  .stat-divider {
    display: none;
  }

  .stat-number {
    font-size: 1.15rem;
  }

  .stat-label {
    font-size: 0.68rem;
  }

  /* Trust Features */
  .trust-features-section {
    padding: 24px 0;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Products */
  .products-section {
    padding: 50px 0;
  }

  .section-title {
    font-size: 1.8rem;
    line-height: 1.2;
  }

  .section-subtitle {
    font-size: 0.92rem;
  }

  .product-filters {
    gap: 8px;
    margin: 20px 0 30px;
  }

  .filter-btn {
    padding: 7px 15px;
    font-size: 0.82rem;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .product-content {
    padding: 18px 16px;
  }

  .product-title {
    font-size: 1.15rem;
  }

  .product-footer-row {
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
  }

  .product-actions-btn-group {
    display: flex;
    align-items: center;
    gap: 6px;
  }

  /* Why Hüyük Section */
  .why-huyuk-section {
    padding: 50px 0;
  }

  .why-grid {
    gap: 28px;
  }

  .why-img {
    height: 250px;
  }

  .why-badge {
    bottom: 14px;
    right: 14px;
    padding: 10px 14px;
  }

  .why-badge-num {
    font-size: 1.35rem;
  }

  /* Story Section */
  .story-section {
    padding: 50px 0;
  }

  .story-card-wrapper {
    padding: 22px 16px;
    border-radius: var(--radius-lg);
    gap: 24px;
  }

  .story-stats-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .story-stat-box {
    padding: 16px 14px;
  }

  /* Instagram Showcase */
  .instagram-section {
    padding: 50px 0;
  }

  .insta-header-box {
    padding: 18px 16px;
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .insta-profile-meta {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .insta-handle {
    justify-content: center;
  }

  .insta-counter-row {
    justify-content: center;
    gap: 14px;
    font-size: 0.8rem;
  }

  .btn-insta-follow {
    width: 100%;
    justify-content: center;
  }

  .insta-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  /* Reviews */
  .reviews-section {
    padding: 50px 0;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 26px;
  }

  .review-card {
    padding: 20px 16px;
  }

  /* FAQ */
  .faq-section {
    padding: 50px 0;
  }

  .faq-question {
    padding: 14px 16px;
    font-size: 0.92rem;
  }

  /* CTA Banner */
  .cta-banner {
    padding: 44px 0;
  }

  .cta-banner-inner {
    flex-direction: column;
    text-align: center;
    gap: 22px;
  }

  .cta-banner-content h2 {
    font-size: 1.65rem;
  }

  .cta-banner-actions {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .cta-banner-actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* Footer */
  .site-footer {
    padding-top: 46px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 28px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 14px;
  }

  .footer-safe-shopping {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 12px;
    font-size: 0.76rem;
  }

  /* Drawers & Modals */
  .cart-drawer {
    max-width: 100%;
  }

  .checkout-modal {
    width: 95%;
    max-width: 95%;
    margin: 10px;
    max-height: 94vh;
    border-radius: var(--radius-md);
  }

  .checkout-form {
    padding: 16px;
    gap: 12px;
  }

  .form-row, .payment-options {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  /* Floating WhatsApp */
  .floating-wa-btn {
    bottom: 18px;
    right: 18px;
    width: 50px;
    height: 50px;
  }

  .floating-wa-btn svg {
    width: 28px;
    height: 28px;
  }

  .wa-tooltip {
    display: none !important;
  }
}

/* Extra small mobile screens (<= 480px: iPhone SE, Galaxy, Pixel) */
@media (max-width: 480px) {
  .container {
    padding: 0 12px;
  }

  .brand-name {
    font-size: 0.84rem;
  }

  .logo-icon {
    font-size: 1.35rem;
  }

  .header-inner {
    gap: 6px;
  }

  .header-actions {
    gap: 4px;
  }

  .hero-title {
    font-size: 1.55rem;
  }

  .hero-description {
    font-size: 0.88rem;
  }

  .hero-floating-card {
    display: none !important;
  }

  .section-title {
    font-size: 1.45rem;
  }

  .hero-stats {
    gap: 4px;
  }

  .stat-number {
    font-size: 1.05rem;
  }

  .stat-label {
    font-size: 0.64rem;
  }

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

  .btn-add-cart {
    padding: 8px 10px;
    font-size: 0.78rem;
    gap: 4px;
  }

  .btn-quick-wa {
    width: 32px;
    height: 32px;
  }
}
