:root {
  --color-background: #fdfcf8;
  --color-surface: #ffffff;
  --color-primary: #ff7f50;
  --color-primary-dark: #ff6230;
  --color-secondary: #5cc97b;
  --color-text: #212121;
  --color-muted: #5f6368;
  --color-border: rgba(0, 0, 0, 0.08);
  --container-width: min(1100px, 92vw);
  --shadow-soft: 0 20px 45px rgba(255, 127, 80, 0.15);
  --shadow-medium: 0 18px 32px rgba(33, 33, 33, 0.12);

  /* Material 3 Expressive Motion System */
  /* Expressive Spatial (Movement/Layout) */
  --m3e-spatial-fast: cubic-bezier(0.42, 1.85, 0.21, 0.90);
  --m3e-spatial-default: cubic-bezier(0.38, 1.21, 0.22, 1.00);
  --m3e-spatial-slow: cubic-bezier(0.39, 1.29, 0.35, 0.98);
  --m3e-duration-spatial-fast: 350ms;
  --m3e-duration-spatial-default: 500ms;
  --m3e-duration-spatial-slow: 650ms;

  /* Expressive Effects (Micro-interactions) */
  --m3e-effects-fast: cubic-bezier(0.31, 0.94, 0.34, 1.00);
  --m3e-effects-default: cubic-bezier(0.34, 0.80, 0.34, 1.00);
  --m3e-effects-slow: cubic-bezier(0.34, 0.88, 0.34, 1.00);
  --m3e-duration-effects-fast: 150ms;
  --m3e-duration-effects-default: 200ms;
  --m3e-duration-effects-slow: 300ms;

  /* Material 3 Expressive Shape Scale */
  --m3e-shape-none: 0px;
  --m3e-shape-extra-small: 4px;
  --m3e-shape-small: 8px;
  --m3e-shape-small-plus: 12px;
  --m3e-shape-medium: 16px;
  --m3e-shape-large: 20px;
  --m3e-shape-large-plus: 24px;
  --m3e-shape-extra-large: 28px;
  --m3e-shape-full: 9999px;

  font-family: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--color-text);
  background-color: var(--color-background);
  line-height: 1.6;
}

* {
  box-sizing: border-box;
  min-width: 0;
  /* Prevent flex/grid items from overflowing */
}

html {
  overflow-x: clip;
  /* Use 'clip' instead of 'hidden' to preserve sticky positioning */
  width: 100%;
  position: relative;
}

body {
  margin: 0;
  background-color: var(--color-background);
  overflow-x: clip;
  /* Use 'clip' instead of 'hidden' to preserve sticky positioning */
  width: 100%;
  max-width: 100vw;
  position: relative;
}

/* Page Load Progress Bar */
.page-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 9100;
  overflow: hidden;
  opacity: 1;
  transition: opacity 0.5s ease;
}

.page-progress-bar.complete {
  opacity: 0;
  pointer-events: none;
}

.page-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg,
      var(--color-primary) 0%,
      var(--color-secondary) 50%,
      var(--color-primary) 100%);
  background-size: 200% 100%;
  animation: shimmer 2s ease-in-out infinite;
  transition: width 0.3s ease;
  box-shadow: 0 0 10px var(--color-primary);
}

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

  100% {
    background-position: -200% 0;
  }
}

/* Decorative fruit emojis scattered along edges */
.fruit-decor {
  position: absolute;
  /* Absolute to scroll with page */
  pointer-events: auto;
  /* Always clickable - safe due to z-index layering */
  cursor: pointer;
  font-size: 45px;
  opacity: 0.22;
  z-index: 100;
  /* Above content but below navigation */
  transition: transform 0.1s ease-out, filter 0.2s ease-out;
  will-change: transform;
  /* Remove tap highlight backgrounds */
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}

/* Left edge fruit clusters - TIGHT clustering with gaps between groups */
/* Hero section - Cluster 1 (3 fruits close together) */
.fruit-decor-1 {
  left: 12px;
  top: 180px;
  --base-rotation: -12deg;
  animation: float1 14s ease-in-out infinite;
}

.fruit-decor-2 {
  left: 38px;
  top: 220px;
  --base-rotation: 18deg;
  animation: float2 16s ease-in-out infinite 0.5s;
}

.fruit-decor-3 {
  left: 68px;
  top: 250px;
  --base-rotation: -8deg;
  animation: float3 15s ease-in-out infinite 1s;
}

/* Hero section - Cluster 2 (2 fruits) */
.fruit-decor-4 {
  left: 22px;
  top: 480px;
  --base-rotation: 22deg;
  animation: float1 13s ease-in-out infinite 1.5s;
}

.fruit-decor-5 {
  left: 55px;
  top: 515px;
  --base-rotation: -15deg;
  animation: float2 17s ease-in-out infinite 2s;
}

/* Instagram - Cluster 3 (4 fruits) */
.fruit-decor-6 {
  left: 8px;
  top: 820px;
  --base-rotation: 15deg;
  animation: float3 14s ease-in-out infinite 0.8s;
}

.fruit-decor-7 {
  left: 42px;
  top: 855px;
  --base-rotation: -20deg;
  animation: float1 16s ease-in-out infinite 1.2s;
}

.fruit-decor-8 {
  left: 72px;
  top: 885px;
  --base-rotation: 10deg;
  animation: float2 15s ease-in-out infinite 2.5s;
}

.fruit-decor-9 {
  left: 28px;
  top: 920px;
  --base-rotation: -18deg;
  animation: float3 18s ease-in-out infinite 3s;
}

/* Instagram - Cluster 4 (2 fruits) */
.fruit-decor-10 {
  left: 18px;
  top: 1180px;
  --base-rotation: 25deg;
  animation: float1 14s ease-in-out infinite 0.5s;
}

.fruit-decor-11 {
  left: 58px;
  top: 1210px;
  --base-rotation: -12deg;
  animation: float2 13s ease-in-out infinite 1.8s;
}

/* Instagram - Cluster 5 (3 fruits) */
.fruit-decor-12 {
  left: 32px;
  top: 1480px;
  --base-rotation: 14deg;
  animation: float3 17s ease-in-out infinite 2.2s;
}

.fruit-decor-13 {
  left: 5px;
  top: 1515px;
  --base-rotation: -22deg;
  animation: float1 15s ease-in-out infinite 3.5s;
}

.fruit-decor-14 {
  left: 65px;
  top: 1545px;
  --base-rotation: 18deg;
  animation: float2 16s ease-in-out infinite 1s;
}

/* Collections - Cluster 6 (2 fruits) */
.fruit-decor-15 {
  left: 25px;
  top: 1880px;
  --base-rotation: -16deg;
  animation: float3 14s ease-in-out infinite 1.5s;
}

.fruit-decor-16 {
  left: 52px;
  top: 1915px;
  --base-rotation: 20deg;
  animation: float1 18s ease-in-out infinite 2.8s;
}

/* Collections - Cluster 7 (4 fruits) */
.fruit-decor-17 {
  left: 10px;
  top: 2240px;
  --base-rotation: -10deg;
  animation: float2 13s ease-in-out infinite 0.8s;
}

.fruit-decor-18 {
  left: 40px;
  top: 2275px;
  --base-rotation: 16deg;
  animation: float3 15s ease-in-out infinite 2s;
}

.fruit-decor-19 {
  left: 75px;
  top: 2305px;
  --base-rotation: -24deg;
  animation: float1 17s ease-in-out infinite 3.2s;
}

.fruit-decor-20 {
  left: 28px;
  top: 2340px;
  --base-rotation: 12deg;
  animation: float2 14s ease-in-out infinite 1.2s;
}

/* Collections - Cluster 8 (3 fruits) */
.fruit-decor-21 {
  left: 15px;
  top: 2680px;
  --base-rotation: -14deg;
  animation: float3 16s ease-in-out infinite 2.5s;
}

.fruit-decor-22 {
  left: 48px;
  top: 2715px;
  --base-rotation: 22deg;
  animation: float1 15s ease-in-out infinite 0.5s;
}

.fruit-decor-23 {
  left: 80px;
  top: 2745px;
  --base-rotation: -18deg;
  animation: float2 13s ease-in-out infinite 3s;
}

/* Process - Cluster 9 (2 fruits) */
.fruit-decor-24 {
  left: 35px;
  top: 3080px;
  --base-rotation: 18deg;
  animation: float3 18s ease-in-out infinite 1.8s;
}

.fruit-decor-25 {
  left: 62px;
  top: 3115px;
  --base-rotation: -20deg;
  animation: float1 14s ease-in-out infinite 2.2s;
}

/* Testimonials - Cluster 10 (4 fruits) */
.fruit-decor-26 {
  left: 8px;
  top: 3520px;
  --base-rotation: 15deg;
  animation: float2 17s ease-in-out infinite 1s;
}

.fruit-decor-27 {
  left: 38px;
  top: 3555px;
  --base-rotation: -12deg;
  animation: float3 15s ease-in-out infinite 2.8s;
}

.fruit-decor-28 {
  left: 70px;
  top: 3585px;
  --base-rotation: 24deg;
  animation: float1 16s ease-in-out infinite 0.8s;
}

.fruit-decor-29 {
  left: 22px;
  top: 3620px;
  --base-rotation: -16deg;
  animation: float2 14s ease-in-out infinite 3.5s;
}

/* FAQ - Cluster 11 (3 fruits) */
.fruit-decor-30 {
  left: 28px;
  top: 4120px;
  --base-rotation: 20deg;
  animation: float3 13s ease-in-out infinite 1.5s;
}

.fruit-decor-31 {
  left: 58px;
  top: 4155px;
  --base-rotation: -14deg;
  animation: float1 18s ease-in-out infinite 2s;
}

.fruit-decor-32 {
  left: 12px;
  top: 4190px;
  --base-rotation: 18deg;
  animation: float2 15s ease-in-out infinite 3.2s;
}

/* FAQ - Cluster 12 (2 fruits) */
.fruit-decor-33 {
  left: 35px;
  top: 4580px;
  --base-rotation: -22deg;
  animation: float3 17s ease-in-out infinite 0.5s;
}

.fruit-decor-34 {
  left: 65px;
  top: 4615px;
  --base-rotation: 12deg;
  animation: float1 14s ease-in-out infinite 2.5s;
}

/* FAQ - Cluster 13 (3 fruits) */
.fruit-decor-35 {
  left: 18px;
  top: 4980px;
  --base-rotation: -18deg;
  animation: float2 16s ease-in-out infinite 1.2s;
}

.fruit-decor-36 {
  left: 48px;
  top: 5015px;
  --base-rotation: 25deg;
  animation: float3 15s ease-in-out infinite 2.8s;
}

.fruit-decor-37 {
  left: 78px;
  top: 5045px;
  --base-rotation: -10deg;
  animation: float1 13s ease-in-out infinite 1.8s;
}

/* Services - Cluster 14 (4 fruits) */
.fruit-decor-38 {
  left: 25px;
  top: 5420px;
  --base-rotation: 16deg;
  animation: float2 18s ease-in-out infinite 3s;
}

.fruit-decor-39 {
  left: 52px;
  top: 5455px;
  --base-rotation: -20deg;
  animation: float3 14s ease-in-out infinite 0.8s;
}

.fruit-decor-40 {
  left: 8px;
  top: 5490px;
  --base-rotation: 14deg;
  animation: float1 17s ease-in-out infinite 2.2s;
}

.fruit-decor-41 {
  left: 68px;
  top: 5520px;
  --base-rotation: -24deg;
  animation: float2 15s ease-in-out infinite 1.5s;
}

/* Footer - Cluster 15 (2 fruits) */
.fruit-decor-42 {
  left: 32px;
  top: 5980px;
  --base-rotation: 22deg;
  animation: float3 16s ease-in-out infinite 3.5s;
}

.fruit-decor-43 {
  left: 60px;
  top: 6015px;
  --base-rotation: -16deg;
  animation: float1 14s ease-in-out infinite 1s;
}

/* Footer bottom - Cluster 16 (3 fruits) */
.fruit-decor-44 {
  left: 15px;
  top: 6520px;
  --base-rotation: 18deg;
  animation: float2 13s ease-in-out infinite 2.5s;
}

.fruit-decor-45 {
  left: 45px;
  top: 6555px;
  --base-rotation: -14deg;
  animation: float3 18s ease-in-out infinite 0.8s;
}

.fruit-decor-46 {
  left: 75px;
  top: 6585px;
  --base-rotation: 20deg;
  animation: float1 15s ease-in-out infinite 3.2s;
}

/* Very bottom - Cluster 17 (4 fruits) */
.fruit-decor-47 {
  left: 28px;
  top: 6980px;
  --base-rotation: -18deg;
  animation: float2 17s ease-in-out infinite 1.8s;
}

.fruit-decor-48 {
  left: 8px;
  top: 7015px;
  --base-rotation: 15deg;
  animation: float3 14s ease-in-out infinite 2.2s;
}

.fruit-decor-49 {
  left: 58px;
  top: 7045px;
  --base-rotation: -22deg;
  animation: float1 16s ease-in-out infinite 1.2s;
}

.fruit-decor-50 {
  left: 80px;
  top: 7075px;
  --base-rotation: 12deg;
  animation: float2 15s ease-in-out infinite 3s;
}

/* Final cluster - Cluster 18 (2 fruits) */
.fruit-decor-51 {
  left: 22px;
  top: 7350px;
  --base-rotation: -12deg;
  animation: float3 13s ease-in-out infinite 0.5s;
}

.fruit-decor-52 {
  left: 52px;
  top: 7385px;
  --base-rotation: 24deg;
  animation: float1 14s ease-in-out infinite 2.8s;
}

/* Right edge fruit clusters - TIGHT clustering with gaps */
/* Hero - Cluster 1 (3 fruits) */
.fruit-decor-53 {
  right: 15px;
  top: 280px;
  --base-rotation: 15deg;
  animation: float2 15s ease-in-out infinite 1s;
}

.fruit-decor-54 {
  right: 45px;
  top: 315px;
  --base-rotation: -18deg;
  animation: float3 17s ease-in-out infinite 2.5s;
}

.fruit-decor-55 {
  right: 75px;
  top: 345px;
  --base-rotation: 22deg;
  animation: float1 14s ease-in-out infinite 0.5s;
}

/* Hero - Cluster 2 (2 fruits) */
.fruit-decor-56 {
  right: 28px;
  top: 580px;
  --base-rotation: -12deg;
  animation: float2 13s ease-in-out infinite 1.8s;
}

.fruit-decor-57 {
  right: 58px;
  top: 615px;
  --base-rotation: 20deg;
  animation: float3 16s ease-in-out infinite 3s;
}

/* Instagram - Cluster 3 (4 fruits) */
.fruit-decor-58 {
  right: 10px;
  top: 920px;
  --base-rotation: -20deg;
  animation: float1 18s ease-in-out infinite 1.2s;
}

.fruit-decor-59 {
  right: 48px;
  top: 955px;
  --base-rotation: 14deg;
  animation: float2 14s ease-in-out infinite 2.8s;
}

.fruit-decor-60 {
  right: 78px;
  top: 985px;
  --base-rotation: -16deg;
  animation: float3 15s ease-in-out infinite 0.8s;
}

.fruit-decor-61 {
  right: 32px;
  top: 1020px;
  --base-rotation: 18deg;
  animation: float1 17s ease-in-out infinite 3.5s;
}

/* Instagram - Cluster 4 (3 fruits) */
.fruit-decor-62 {
  right: 22px;
  top: 1280px;
  --base-rotation: -24deg;
  animation: float2 16s ease-in-out infinite 1.5s;
}

.fruit-decor-63 {
  right: 52px;
  top: 1315px;
  --base-rotation: 12deg;
  animation: float3 13s ease-in-out infinite 2.2s;
}

.fruit-decor-64 {
  right: 8px;
  top: 1350px;
  --base-rotation: -10deg;
  animation: float1 15s ease-in-out infinite 3.2s;
}

/* Instagram - Cluster 5 (2 fruits) */
.fruit-decor-65 {
  right: 65px;
  top: 1580px;
  --base-rotation: 25deg;
  animation: float2 18s ease-in-out infinite 0.8s;
}

.fruit-decor-66 {
  right: 35px;
  top: 1615px;
  --base-rotation: -14deg;
  animation: float3 14s ease-in-out infinite 2.5s;
}

/* Collections - Cluster 6 (4 fruits) */
.fruit-decor-67 {
  right: 12px;
  top: 1980px;
  --base-rotation: 18deg;
  animation: float1 16s ease-in-out infinite 1.8s;
}

.fruit-decor-68 {
  right: 42px;
  top: 2015px;
  --base-rotation: -22deg;
  animation: float2 15s ease-in-out infinite 3s;
}

.fruit-decor-69 {
  right: 72px;
  top: 2045px;
  --base-rotation: 15deg;
  animation: float3 17s ease-in-out infinite 1.2s;
}

.fruit-decor-70 {
  right: 28px;
  top: 2080px;
  --base-rotation: -18deg;
  animation: float1 13s ease-in-out infinite 2.8s;
}

/* Collections - Cluster 7 (3 fruits) */
.fruit-decor-71 {
  right: 18px;
  top: 2420px;
  --base-rotation: 20deg;
  animation: float2 14s ease-in-out infinite 0.5s;
}

.fruit-decor-72 {
  right: 48px;
  top: 2455px;
  --base-rotation: -12deg;
  animation: float3 18s ease-in-out infinite 2.2s;
}

.fruit-decor-73 {
  right: 80px;
  top: 2485px;
  --base-rotation: 16deg;
  animation: float1 15s ease-in-out infinite 1.5s;
}

/* Collections - Cluster 8 (2 fruits) */
.fruit-decor-74 {
  right: 32px;
  top: 2780px;
  --base-rotation: -20deg;
  animation: float2 17s ease-in-out infinite 3.2s;
}

.fruit-decor-75 {
  right: 62px;
  top: 2815px;
  --base-rotation: 14deg;
  animation: float3 16s ease-in-out infinite 0.8s;
}

/* Process - Cluster 9 (4 fruits) */
.fruit-decor-76 {
  right: 25px;
  top: 3180px;
  --base-rotation: -16deg;
  animation: float1 14s ease-in-out infinite 2.5s;
}

.fruit-decor-77 {
  right: 52px;
  top: 3215px;
  --base-rotation: 22deg;
  animation: float2 13s ease-in-out infinite 1.8s;
}

.fruit-decor-78 {
  right: 8px;
  top: 3250px;
  --base-rotation: -14deg;
  animation: float3 15s ease-in-out infinite 3.5s;
}

.fruit-decor-79 {
  right: 68px;
  top: 3280px;
  --base-rotation: 18deg;
  animation: float1 18s ease-in-out infinite 1s;
}

/* Testimonials - Cluster 10 (3 fruits) */
.fruit-decor-80 {
  right: 28px;
  top: 3620px;
  --base-rotation: -22deg;
  animation: float2 16s ease-in-out infinite 2.8s;
}

.fruit-decor-81 {
  right: 58px;
  top: 3655px;
  --base-rotation: 12deg;
  animation: float3 14s ease-in-out infinite 0.5s;
}

.fruit-decor-82 {
  right: 12px;
  top: 3690px;
  --base-rotation: -18deg;
  animation: float1 17s ease-in-out infinite 3.2s;
}

/* FAQ - Cluster 11 (4 fruits) */
.fruit-decor-83 {
  right: 15px;
  top: 4220px;
  --base-rotation: 20deg;
  animation: float2 15s ease-in-out infinite 1.5s;
}

.fruit-decor-84 {
  right: 45px;
  top: 4255px;
  --base-rotation: -15deg;
  animation: float3 13s ease-in-out infinite 2.2s;
}

.fruit-decor-85 {
  right: 75px;
  top: 4285px;
  --base-rotation: 24deg;
  animation: float1 16s ease-in-out infinite 1.2s;
}

.fruit-decor-86 {
  right: 32px;
  top: 4320px;
  --base-rotation: -10deg;
  animation: float2 18s ease-in-out infinite 3s;
}

/* FAQ - Cluster 12 (2 fruits) */
.fruit-decor-87 {
  right: 22px;
  top: 4680px;
  --base-rotation: 16deg;
  animation: float3 14s ease-in-out infinite 0.8s;
}

.fruit-decor-88 {
  right: 52px;
  top: 4715px;
  --base-rotation: -20deg;
  animation: float1 15s ease-in-out infinite 2.5s;
}

/* FAQ - Cluster 13 (3 fruits) */
.fruit-decor-89 {
  right: 10px;
  top: 5080px;
  --base-rotation: 18deg;
  animation: float2 17s ease-in-out infinite 1.8s;
}

.fruit-decor-90 {
  right: 42px;
  top: 5115px;
  --base-rotation: -14deg;
  animation: float3 16s ease-in-out infinite 3.5s;
}

.fruit-decor-91 {
  right: 70px;
  top: 5145px;
  --base-rotation: 22deg;
  animation: float1 14s ease-in-out infinite 1.2s;
}

/* Services - Cluster 14 (4 fruits) */
.fruit-decor-92 {
  right: 28px;
  top: 5520px;
  --base-rotation: -18deg;
  animation: float2 13s ease-in-out infinite 2.8s;
}

.fruit-decor-93 {
  right: 58px;
  top: 5555px;
  --base-rotation: 15deg;
  animation: float3 18s ease-in-out infinite 0.5s;
}

.fruit-decor-94 {
  right: 12px;
  top: 5590px;
  --base-rotation: -22deg;
  animation: float1 15s ease-in-out infinite 2.2s;
}

.fruit-decor-95 {
  right: 78px;
  top: 5620px;
  --base-rotation: 12deg;
  animation: float2 17s ease-in-out infinite 1.5s;
}

/* Footer - Cluster 15 (3 fruits) */
.fruit-decor-96 {
  right: 25px;
  top: 6080px;
  --base-rotation: -16deg;
  animation: float3 16s ease-in-out infinite 3.2s;
}

.fruit-decor-97 {
  right: 52px;
  top: 6115px;
  --base-rotation: 20deg;
  animation: float1 14s ease-in-out infinite 1s;
}

.fruit-decor-98 {
  right: 75px;
  top: 6145px;
  --base-rotation: -12deg;
  animation: float2 15s ease-in-out infinite 2.8s;
}

/* Footer bottom - Cluster 16 (2 fruits) */
.fruit-decor-99 {
  right: 32px;
  top: 6620px;
  --base-rotation: 18deg;
  animation: float3 13s ease-in-out infinite 0.8s;
}

.fruit-decor-100 {
  right: 62px;
  top: 6655px;
  --base-rotation: -24deg;
  animation: float1 18s ease-in-out infinite 3s;
}

/* Very bottom - Cluster 17 (4 fruits) */
.fruit-decor-101 {
  right: 15px;
  top: 7080px;
  --base-rotation: 14deg;
  animation: float2 17s ease-in-out infinite 1.8s;
}

.fruit-decor-102 {
  right: 48px;
  top: 7115px;
  --base-rotation: -18deg;
  animation: float3 14s ease-in-out infinite 2.5s;
}

.fruit-decor-103 {
  right: 8px;
  top: 7150px;
  --base-rotation: 22deg;
  animation: float1 16s ease-in-out infinite 1.2s;
}

.fruit-decor-104 {
  right: 68px;
  top: 7180px;
  --base-rotation: -14deg;
  animation: float2 15s ease-in-out infinite 3.5s;
}

/* Final cluster - Cluster 18 (3 fruits) */
.fruit-decor-105 {
  right: 28px;
  top: 7320px;
  --base-rotation: 16deg;
  animation: float3 14s ease-in-out infinite 2.2s;
}

.fruit-decor-106 {
  right: 58px;
  top: 7355px;
  --base-rotation: -20deg;
  animation: float1 13s ease-in-out infinite 0.5s;
}

.fruit-decor-107 {
  right: 38px;
  top: 7385px;
  --base-rotation: 12deg;
  animation: float2 18s ease-in-out infinite 2.8s;
}

/* Varied floating animations for organic movement - FASTER & MORE DYNAMIC */
@keyframes float1 {

  0%,
  100% {
    transform: translateY(0) translateX(0) rotate(var(--base-rotation, 0deg));
  }

  25% {
    transform: translateY(-18px) translateX(8px) rotate(calc(var(--base-rotation, 0deg) + 5deg));
  }

  50% {
    transform: translateY(-28px) translateX(-6px) rotate(calc(var(--base-rotation, 0deg) - 4deg));
  }

  75% {
    transform: translateY(-12px) translateX(7px) rotate(calc(var(--base-rotation, 0deg) + 3deg));
  }
}

@keyframes float2 {

  0%,
  100% {
    transform: translateY(0) translateX(0) rotate(var(--base-rotation, 0deg));
  }

  30% {
    transform: translateY(-22px) translateX(-9px) rotate(calc(var(--base-rotation, 0deg) - 5deg));
  }

  60% {
    transform: translateY(-32px) translateX(7px) rotate(calc(var(--base-rotation, 0deg) + 4deg));
  }

  80% {
    transform: translateY(-15px) translateX(-5px) rotate(calc(var(--base-rotation, 0deg) - 2deg));
  }
}

@keyframes float3 {

  0%,
  100% {
    transform: translateY(0) translateX(0) rotate(var(--base-rotation, 0deg));
  }

  20% {
    transform: translateY(-16px) translateX(10px) rotate(calc(var(--base-rotation, 0deg) + 4deg));
  }

  55% {
    transform: translateY(-30px) translateX(-8px) rotate(calc(var(--base-rotation, 0deg) - 5deg));
  }

  85% {
    transform: translateY(-20px) translateX(6px) rotate(calc(var(--base-rotation, 0deg) + 3deg));
  }
}

/* Fruit gamification - interactive splash on hover/tap */
.fruit-decor.fruit-splash {
  animation: fruitSplash 2.5s ease-in-out;
}

/* Accessibility: respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .fruit-decor.fruit-splash {
    animation: none !important;
    transform: scale(1.1);
  }
}

/* Brownian motion splash - 40 keyframes for ultra-smooth motion */
@keyframes fruitSplash {
  0% {
    transform: translate(0, 0) rotate(var(--base-rotation, 0deg)) scale(1);
    filter: brightness(1) saturate(1);
  }

  2.5% {
    transform: translate(calc(var(--scatter-x, 0) * 1.5px), calc(var(--scatter-y, 0) * 1.5px)) rotate(calc(var(--base-rotation, 0deg) + var(--scatter-rotation, 0deg) * 0.06)) scale(1.015);
    filter: brightness(1.04) saturate(1.04);
  }

  5% {
    transform: translate(calc(var(--scatter-x, 0) * 3px), calc(var(--scatter-y, 0) * 3px)) rotate(calc(var(--base-rotation, 0deg) + var(--scatter-rotation, 0deg) * 0.12)) scale(1.03);
    filter: brightness(1.08) saturate(1.08);
  }

  7.5% {
    transform: translate(calc(var(--scatter-x, 0) * 5px), calc(var(--scatter-y, 0) * 5px)) rotate(calc(var(--base-rotation, 0deg) + var(--scatter-rotation, 0deg) * 0.18)) scale(1.05);
    filter: brightness(1.13) saturate(1.13);
  }

  10% {
    transform: translate(calc(var(--scatter-x, 0) * 8px), calc(var(--scatter-y, 0) * 8px)) rotate(calc(var(--base-rotation, 0deg) + var(--scatter-rotation, 0deg) * 0.25)) scale(1.08);
    filter: brightness(1.18) saturate(1.18);
  }

  12.5% {
    transform: translate(calc(var(--scatter-x, 0) * 11px), calc(var(--scatter-y, 0) * 11px)) rotate(calc(var(--base-rotation, 0deg) + var(--scatter-rotation, 0deg) * 0.32)) scale(1.105);
    filter: brightness(1.23) saturate(1.23);
  }

  15% {
    transform: translate(calc(var(--scatter-x, 0) * 14px), calc(var(--scatter-y, 0) * 14px)) rotate(calc(var(--base-rotation, 0deg) + var(--scatter-rotation, 0deg) * 0.4)) scale(1.13);
    filter: brightness(1.28) saturate(1.28);
  }

  17.5% {
    transform: translate(calc(var(--scatter-x, 0) * 17px), calc(var(--scatter-y, 0) * 17px)) rotate(calc(var(--base-rotation, 0deg) + var(--scatter-rotation, 0deg) * 0.47)) scale(1.15);
    filter: brightness(1.32) saturate(1.32);
  }

  20% {
    transform: translate(calc(var(--scatter-x, 0) * 20px), calc(var(--scatter-y, 0) * 20px)) rotate(calc(var(--base-rotation, 0deg) + var(--scatter-rotation, 0deg) * 0.55)) scale(1.17);
    filter: brightness(1.37) saturate(1.37);
  }

  22.5% {
    transform: translate(calc(var(--scatter-x, 0) * 22.5px), calc(var(--scatter-y, 0) * 22.5px)) rotate(calc(var(--base-rotation, 0deg) + var(--scatter-rotation, 0deg) * 0.62)) scale(1.185);
    filter: brightness(1.40) saturate(1.40);
  }

  25% {
    transform: translate(calc(var(--scatter-x, 0) * 25px), calc(var(--scatter-y, 0) * 25px)) rotate(calc(var(--base-rotation, 0deg) + var(--scatter-rotation, 0deg) * 0.7)) scale(1.2);
    filter: brightness(1.43) saturate(1.43);
  }

  27.5% {
    transform: translate(calc(var(--scatter-x, 0) * 27px), calc(var(--scatter-y, 0) * 27px)) rotate(calc(var(--base-rotation, 0deg) + var(--scatter-rotation, 0deg) * 0.76)) scale(1.215);
    filter: brightness(1.45) saturate(1.45);
  }

  30% {
    transform: translate(calc(var(--scatter-x, 0) * 29px), calc(var(--scatter-y, 0) * 29px)) rotate(calc(var(--base-rotation, 0deg) + var(--scatter-rotation, 0deg) * 0.83)) scale(1.23);
    filter: brightness(1.47) saturate(1.47);
  }

  32.5% {
    transform: translate(calc(var(--scatter-x, 0) * 30.5px), calc(var(--scatter-y, 0) * 30.5px)) rotate(calc(var(--base-rotation, 0deg) + var(--scatter-rotation, 0deg) * 0.88)) scale(1.235);
    filter: brightness(1.48) saturate(1.48);
  }

  35% {
    transform: translate(calc(var(--scatter-x, 0) * 32px), calc(var(--scatter-y, 0) * 32px)) rotate(calc(var(--base-rotation, 0deg) + var(--scatter-rotation, 0deg) * 0.93)) scale(1.24);
    filter: brightness(1.49) saturate(1.49);
  }

  37.5% {
    transform: translate(calc(var(--scatter-x, 0) * 32.5px), calc(var(--scatter-y, 0) * 32.5px)) rotate(calc(var(--base-rotation, 0deg) + var(--scatter-rotation, 0deg) * 0.96)) scale(1.245);
    filter: brightness(1.495) saturate(1.495);
  }

  40% {
    transform: translate(calc(var(--scatter-x, 0) * 33px), calc(var(--scatter-y, 0) * 33px)) rotate(calc(var(--base-rotation, 0deg) + var(--scatter-rotation, 0deg))) scale(1.25);
    filter: brightness(1.5) saturate(1.5);
    opacity: 1;
  }

  42.5% {
    transform: translate(calc(var(--scatter-x, 0) * 32.5px), calc(var(--scatter-y, 0) * 32.5px)) rotate(calc(var(--base-rotation, 0deg) + var(--scatter-rotation, 0deg) * 0.96)) scale(1.24);
    filter: brightness(1.49) saturate(1.49);
  }

  45% {
    transform: translate(calc(var(--scatter-x, 0) * 31px), calc(var(--scatter-y, 0) * 31px)) rotate(calc(var(--base-rotation, 0deg) + var(--scatter-rotation, 0deg) * 0.92)) scale(1.23);
    filter: brightness(1.48) saturate(1.48);
  }

  47.5% {
    transform: translate(calc(var(--scatter-x, 0) * 29px), calc(var(--scatter-y, 0) * 29px)) rotate(calc(var(--base-rotation, 0deg) + var(--scatter-rotation, 0deg) * 0.86)) scale(1.215);
    filter: brightness(1.465) saturate(1.465);
  }

  50% {
    transform: translate(calc(var(--scatter-x, 0) * 27px), calc(var(--scatter-y, 0) * 27px)) rotate(calc(var(--base-rotation, 0deg) + var(--scatter-rotation, 0deg) * 0.8)) scale(1.2);
    filter: brightness(1.45) saturate(1.45);
  }

  52.5% {
    transform: translate(calc(var(--scatter-x, 0) * 24.5px), calc(var(--scatter-y, 0) * 24.5px)) rotate(calc(var(--base-rotation, 0deg) + var(--scatter-rotation, 0deg) * 0.72)) scale(1.18);
    filter: brightness(1.43) saturate(1.43);
  }

  55% {
    transform: translate(calc(var(--scatter-x, 0) * 22px), calc(var(--scatter-y, 0) * 22px)) rotate(calc(var(--base-rotation, 0deg) + var(--scatter-rotation, 0deg) * 0.65)) scale(1.16);
    filter: brightness(1.42) saturate(1.42);
  }

  57.5% {
    transform: translate(calc(var(--scatter-x, 0) * 19px), calc(var(--scatter-y, 0) * 19px)) rotate(calc(var(--base-rotation, 0deg) + var(--scatter-rotation, 0deg) * 0.56)) scale(1.14);
    filter: brightness(1.40) saturate(1.40);
  }

  60% {
    transform: translate(calc(var(--scatter-x, 0) * 16px), calc(var(--scatter-y, 0) * 16px)) rotate(calc(var(--base-rotation, 0deg) + var(--scatter-rotation, 0deg) * 0.48)) scale(1.12);
    filter: brightness(1.38) saturate(1.38);
  }

  62.5% {
    transform: translate(calc(var(--scatter-x, 0) * 13px), calc(var(--scatter-y, 0) * 13px)) rotate(calc(var(--base-rotation, 0deg) + var(--scatter-rotation, 0deg) * 0.40)) scale(1.10);
    filter: brightness(1.355) saturate(1.355);
  }

  65% {
    transform: translate(calc(var(--scatter-x, 0) * 10px), calc(var(--scatter-y, 0) * 10px)) rotate(calc(var(--base-rotation, 0deg) + var(--scatter-rotation, 0deg) * 0.32)) scale(1.08);
    filter: brightness(1.33) saturate(1.33);
  }

  67.5% {
    transform: translate(calc(var(--scatter-x, 0) * 7.5px), calc(var(--scatter-y, 0) * 7.5px)) rotate(calc(var(--base-rotation, 0deg) + var(--scatter-rotation, 0deg) * 0.25)) scale(1.06);
    filter: brightness(1.30) saturate(1.30);
  }

  70% {
    transform: translate(calc(var(--scatter-x, 0) * 5px), calc(var(--scatter-y, 0) * 5px)) rotate(calc(var(--base-rotation, 0deg) + var(--scatter-rotation, 0deg) * 0.18)) scale(1.05);
    filter: brightness(1.27) saturate(1.27);
  }

  72.5% {
    transform: translate(calc(var(--scatter-x, 0) * 3px), calc(var(--scatter-y, 0) * 3px)) rotate(calc(var(--base-rotation, 0deg) + var(--scatter-rotation, 0deg) * 0.12)) scale(1.03);
    filter: brightness(1.23) saturate(1.23);
  }

  75% {
    transform: translate(calc(var(--scatter-x, 0) * 1px), calc(var(--scatter-y, 0) * 1px)) rotate(calc(var(--base-rotation, 0deg) + var(--scatter-rotation, 0deg) * 0.07)) scale(1.02);
    filter: brightness(1.2) saturate(1.2);
  }

  77.5% {
    transform: translate(calc(var(--scatter-x, 0) * -0.2px), calc(var(--scatter-y, 0) * -0.2px)) rotate(calc(var(--base-rotation, 0deg) + var(--scatter-rotation, 0deg) * 0.02)) scale(1.01);
    filter: brightness(1.16) saturate(1.16);
  }

  80% {
    transform: translate(calc(var(--scatter-x, 0) * -1px), calc(var(--scatter-y, 0) * -1px)) rotate(calc(var(--base-rotation, 0deg) + var(--scatter-rotation, 0deg) * -0.02)) scale(1.01);
    filter: brightness(1.13) saturate(1.13);
  }

  82.5% {
    transform: translate(calc(var(--scatter-x, 0) * -0.8px), calc(var(--scatter-y, 0) * -0.8px)) rotate(calc(var(--base-rotation, 0deg) + var(--scatter-rotation, 0deg) * -0.015)) scale(1.007);
    filter: brightness(1.10) saturate(1.10);
  }

  85% {
    transform: translate(calc(var(--scatter-x, 0) * -0.5px), calc(var(--scatter-y, 0) * -0.5px)) rotate(calc(var(--base-rotation, 0deg) + var(--scatter-rotation, 0deg) * -0.01)) scale(1.005);
    filter: brightness(1.07) saturate(1.07);
  }

  87.5% {
    transform: translate(calc(var(--scatter-x, 0) * -0.1px), calc(var(--scatter-y, 0) * -0.1px)) rotate(calc(var(--base-rotation, 0deg) + var(--scatter-rotation, 0deg) * -0.003)) scale(1.003);
    filter: brightness(1.055) saturate(1.055);
  }

  90% {
    transform: translate(calc(var(--scatter-x, 0) * 0.3px), calc(var(--scatter-y, 0) * 0.3px)) rotate(calc(var(--base-rotation, 0deg) + var(--scatter-rotation, 0deg) * 0.005)) scale(1.002);
    filter: brightness(1.04) saturate(1.04);
  }

  92.5% {
    transform: translate(calc(var(--scatter-x, 0) * 0.2px), calc(var(--scatter-y, 0) * 0.2px)) rotate(calc(var(--base-rotation, 0deg) + var(--scatter-rotation, 0deg) * 0.003)) scale(1.0015);
    filter: brightness(1.03) saturate(1.03);
  }

  95% {
    transform: translate(calc(var(--scatter-x, 0) * 0.1px), calc(var(--scatter-y, 0) * 0.1px)) rotate(var(--base-rotation, 0deg)) scale(1.001);
    filter: brightness(1.02) saturate(1.02);
  }

  97.5% {
    transform: translate(calc(var(--scatter-x, 0) * 0.05px), calc(var(--scatter-y, 0) * 0.05px)) rotate(var(--base-rotation, 0deg)) scale(1.0005);
    filter: brightness(1.01) saturate(1.01);
  }

  100% {
    transform: translate(0, 0) rotate(var(--base-rotation, 0deg)) scale(1);
    filter: brightness(1) saturate(1);
    opacity: 0.22;
  }
}

/* Ensure all direct children respect viewport width */
body>* {
  max-width: 100vw;
  overflow-x: clip;
  /* Use 'clip' to preserve sticky positioning */
}

/* Ensure main content sits above decorative background */
main {
  position: relative;
  z-index: 1;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1100;
  background-color: rgba(253, 252, 248, 0.75);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255, 127, 80, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 74px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 1.1rem;
}

.brand-mark {
  font-size: 1.6rem;
}

.brand-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.main-nav {
  position: fixed;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1200;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 127, 80, 0.2);
  border-radius: var(--m3e-shape-full);
  box-shadow: 0 4px 16px rgba(255, 127, 80, 0.15);
}

.nav-list a {
  font-weight: 500;
  color: var(--color-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  border-radius: var(--m3e-shape-full);
  transition: all var(--m3e-duration-effects-default) var(--m3e-effects-default);
  text-decoration: none;
  background: rgba(255, 127, 80, 0.08);
  border: 1px solid transparent;
}

.nav-list a:hover,
.nav-list a:focus {
  color: var(--color-primary);
  background: rgba(255, 127, 80, 0.15);
  border-color: rgba(255, 127, 80, 0.3);
  transform: translateY(-2px);
  text-decoration: none;
}

.nav-list a.active {
  background: linear-gradient(135deg, rgba(255, 127, 80, 0.9), rgba(92, 201, 123, 0.9));
  color: white;
  border-color: transparent;
}

.nav-icon {
  font-size: 1.2rem;
  display: inline-flex;
  transition: transform var(--m3e-duration-effects-default) var(--m3e-effects-default);
}

.nav-list a:hover .nav-icon {
  transform: scale(1.2) rotate(-10deg);
}

.nav-text {
  font-size: 0.95rem;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.2rem;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background-color: var(--color-text);
  transition: transform 0.3s ease, opacity 0.3s ease;
  border-radius: 2px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  position: relative;
  /* M3 Expressive: Shape morphing on interaction */
  border-radius: var(--m3e-shape-large-plus) var(--m3e-shape-small) var(--m3e-shape-large-plus) var(--m3e-shape-small);
  transition: transform var(--m3e-duration-effects-default) var(--m3e-effects-default),
    box-shadow var(--m3e-duration-effects-default) var(--m3e-effects-default),
    border-radius var(--m3e-duration-effects-slow) var(--m3e-effects-slow);
}

.btn:focus {
  outline: 3px solid rgba(255, 127, 80, 0.3);
  outline-offset: 3px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 40px rgba(255, 127, 80, 0.25);
  /* M3 Expressive: Shape morphs to more rounded on hover */
  border-radius: var(--m3e-shape-extra-large) var(--m3e-shape-small-plus) var(--m3e-shape-extra-large) var(--m3e-shape-small-plus);
}

.btn-outline {
  border: 1px solid rgba(255, 127, 80, 0.4);
  color: var(--color-primary-dark);
  background-color: transparent;
}

.btn-outline:hover {
  border-color: var(--color-primary-dark);
  background-color: rgba(255, 127, 80, 0.05);
  /* M3 Expressive: Shape morphs to more rounded on hover */
  border-radius: var(--m3e-shape-extra-large) var(--m3e-shape-small-plus) var(--m3e-shape-extra-large) var(--m3e-shape-small-plus);
}

.btn-small {
  padding: 0.55rem 1.2rem;
}

.section {
  padding: 3.5rem 0;
}

.section-header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--color-secondary);
  font-size: 0.9rem;
  /* Increased from 0.75rem for better readability */
  text-align: center;
  /* Consistent alignment across all sections */
}

h1,
h2,
h3 {
  margin: 0 0 0.8rem;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.9rem, 4vw, 2.7rem);
}

h3 {
  font-size: 1.3rem;
}

.hero {
  padding: 9rem 0 5rem;
  background: radial-gradient(circle at top right, rgba(255, 127, 80, 0.25), transparent 55%);
  overflow-x: hidden;
}

.hero-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3rem;
  align-items: center;
}

.hero-copy p {
  color: var(--color-muted);
  max-width: 32rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 2.5rem;
}

.highlight {
  background-color: var(--color-surface);
  padding: 1.1rem 1.2rem;
  border: 1px solid rgba(255, 127, 80, 0.2);
  box-shadow: var(--shadow-soft);
  /* M3 Expressive: medium rounded with transition */
  border-radius: var(--m3e-shape-medium) var(--m3e-shape-medium) var(--m3e-shape-extra-small) var(--m3e-shape-medium);
  transition: transform var(--m3e-duration-effects-default) var(--m3e-effects-default),
    border-radius var(--m3e-duration-effects-slow) var(--m3e-effects-slow);
}

.highlight:hover {
  transform: translateY(-2px);
  border-radius: var(--m3e-shape-large) var(--m3e-shape-large) var(--m3e-shape-small) var(--m3e-shape-large);
}

.highlight strong {
  display: block;
  margin-bottom: 0.3rem;
}

.hero-media {
  display: grid;
  gap: 1.5rem;
  position: relative;
  max-width: 100%;
  overflow: hidden;
}

.hero-card {
  padding: 2.4rem;
  color: #fff;
  position: relative;
  overflow: hidden;
  /* M3 Expressive: extra-large expressive corners with morphing */
  border-radius: var(--m3e-shape-extra-large) var(--m3e-shape-small) var(--m3e-shape-extra-large) var(--m3e-shape-small);
  transition: transform var(--m3e-duration-effects-default) var(--m3e-effects-default),
    border-radius var(--m3e-duration-effects-slow) var(--m3e-effects-slow);
}

.hero-card--primary {
  background: linear-gradient(145deg, #ff9966, #ff5e62);
  box-shadow: var(--shadow-medium);
}

.hero-card--secondary {
  background: linear-gradient(145deg, #5cc97b, #2fb964);
  /* M3 Expressive: alternating pattern */
  border-radius: var(--m3e-shape-small) var(--m3e-shape-extra-large) var(--m3e-shape-small) var(--m3e-shape-extra-large);
}

.hero-card--secondary .badge {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.3rem 0.9rem;
  background-color: rgba(255, 255, 255, 0.2);
  font-size: 0.85rem;
  /* Material 3 Expressive: small with one sharp corner */
  border-radius: 12px 12px 4px 12px;
}

.hero-card .rating {
  letter-spacing: 0.25em;
  margin-bottom: 1rem;
}

/* Hero Gallery - Beautiful image carousel */
.hero-gallery {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  border-radius: var(--m3e-shape-extra-large) var(--m3e-shape-small) var(--m3e-shape-extra-large) var(--m3e-shape-small);
  box-shadow: var(--shadow-medium);
  background: linear-gradient(145deg, rgba(255, 127, 80, 0.1), rgba(92, 201, 123, 0.1));
}

.hero-gallery-track {
  display: flex;
  transition: transform var(--m3e-duration-effects-slow) var(--m3e-effects-slow);
  min-height: 600px;
}

.hero-gallery-item {
  min-width: 100%;
  position: relative;
  overflow: hidden;
}

.hero-gallery-item img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform var(--m3e-duration-effects-slow) var(--m3e-effects-slow);
}

.hero-gallery-item:hover img {
  transform: scale(1.05);
}

.hero-gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: white;
  font-size: 0.95rem;
  line-height: 1.4;
  transform: translateY(0);
  transition: transform var(--m3e-duration-effects-default) var(--m3e-effects-default);
}

.hero-gallery-item:hover .hero-gallery-caption {
  transform: translateY(0);
}

.hero-gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: none;
  background: rgba(255, 255, 255, 0.95);
  color: var(--color-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  border-radius: var(--m3e-shape-medium);
  box-shadow: var(--shadow-soft);
  transition: all var(--m3e-duration-effects-fast) var(--m3e-effects-fast),
    border-radius var(--m3e-duration-effects-slow) var(--m3e-effects-slow);
}

.hero-gallery-nav:hover {
  background: var(--color-primary);
  color: white;
  transform: translateY(-50%) scale(1.1);
  border-radius: var(--m3e-shape-large);
  box-shadow: var(--shadow-medium);
}

/* Removed :disabled state for infinite scroll */

.hero-gallery-nav--prev {
  left: 1rem;
}

.hero-gallery-nav--next {
  right: 1rem;
}

.hero-gallery-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.hero-gallery-dot {
  width: 8px;
  height: 8px;
  border: none;
  border-radius: 50%;
  background: rgba(92, 201, 123, 0.4);
  cursor: pointer;
  padding: 0;
  transition: all var(--m3e-duration-effects-fast) var(--m3e-effects-fast);
  pointer-events: auto;
}

.hero-gallery-dot:hover {
  background: rgba(92, 201, 123, 0.7);
  transform: scale(1.2);
}

.hero-gallery-dot.active {
  background: var(--color-secondary);
  width: 24px;
  border-radius: 4px;
}

/* Tablet/Medium screens: Navbar below header */
@media (min-width: 769px) and (max-width: 1279px) {
  .site-header {
    z-index: 1100;
  }

  .main-nav {
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1200;
  }

  .nav-list {
    background: #ffffff;
    border: 2px solid rgba(255, 127, 80, 0.3);
    padding: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 50px;
  }

  .menu-toggle {
    display: none;
  }

  .hero {
    padding-top: 10rem;
    /* Extra space for fixed header + navbar below */
  }

  /* Sticky filter bar for tablet */
  .instagram-filters-wrapper {
    top: 140px;
    /* Below header (80px) + navbar (~60px) */
  }
}

/* Large Desktop: Visually merge navbar with header */
@media (min-width: 1280px) {
  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1100;
    border-bottom: none;
  }

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

  /* Navbar positions in middle of header visually */
  .main-nav {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1200;
    display: flex;
    align-items: center;
    height: 80px;
  }

  .nav-list {
    background: transparent;
    border: none;
    padding: 0;
    box-shadow: none;
  }

  .menu-toggle {
    display: none;
  }
}

@media (max-width: 768px) {

  .hero-gallery-track,
  .hero-gallery-item img {
    min-height: 350px;
    height: 350px;
  }

  .hero-gallery-nav {
    width: 36px;
    height: 36px;
  }

  .hero-gallery-caption {
    font-size: 0.8rem;
    padding: 0.8rem 1rem;
  }
}

.controls {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.filter-btn {
  padding: 0.6rem 1.2rem;
  border: 1px solid rgba(33, 33, 33, 0.1);
  background-color: #fff;
  color: var(--color-muted);
  font-weight: 600;
  cursor: pointer;
  /* M3 Expressive: medium rounded with morphing */
  border-radius: var(--m3e-shape-medium);
  transition: all var(--m3e-duration-effects-default) var(--m3e-effects-default),
    border-radius var(--m3e-duration-effects-slow) var(--m3e-effects-slow),
    transform var(--m3e-duration-effects-fast) var(--m3e-effects-fast);
}

.filter-btn:hover,
.filter-btn:focus {
  border-color: rgba(255, 127, 80, 0.4);
  color: var(--color-primary-dark);
  transform: translateY(-2px) scale(1.05);
  /* M3 Expressive: Morph to full rounded on hover */
  border-radius: var(--m3e-shape-full);
}

.filter-btn.active {
  background-color: rgba(255, 127, 80, 0.12);
  border-color: rgba(255, 127, 80, 0.5);
  color: var(--color-primary-dark);
  /* M3 Expressive: Active state has full rounded shape */
  border-radius: var(--m3e-shape-full);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.8rem;
}

.product-card {
  background-color: var(--color-surface);
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border: 1px solid rgba(33, 33, 33, 0.06);
  box-shadow: 0 18px 36px rgba(33, 33, 33, 0.08);
  /* M3 Expressive: large expressive corners */
  border-radius: var(--m3e-shape-large-plus) var(--m3e-shape-small) var(--m3e-shape-large-plus) var(--m3e-shape-small);
  /* M3 Expressive: Spatial motion for layout shifts */
  transition: transform var(--m3e-duration-spatial-fast) var(--m3e-spatial-fast),
    box-shadow var(--m3e-duration-spatial-fast) var(--m3e-spatial-fast),
    border-radius var(--m3e-duration-effects-slow) var(--m3e-effects-slow);
}

.product-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 24px 50px rgba(255, 127, 80, 0.25);
  /* M3 Expressive: Shape morphs to more rounded on hover */
  border-radius: var(--m3e-shape-extra-large) var(--m3e-shape-small-plus) var(--m3e-shape-extra-large) var(--m3e-shape-small-plus);
}

.product-card__media {
  padding: 2.6rem 1.4rem;
  position: relative;
  overflow: hidden;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  /* M3 Expressive: large rounded with morphing */
  border-radius: var(--m3e-shape-large);
  transition: border-radius var(--m3e-duration-effects-slow) var(--m3e-effects-slow),
    transform var(--m3e-duration-effects-default) var(--m3e-effects-default);
}

.product-card:hover .product-card__media {
  border-radius: var(--m3e-shape-large-plus);
  transform: scale(1.02);
}

.product-card__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.45));
  mix-blend-mode: multiply;
}

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

.product-card__info h3 {
  margin-bottom: 0.4rem;
}

.product-card__info p {
  margin: 0;
  color: var(--color-muted);
}

.product-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--color-muted);
}

.product-card__meta {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
}

.product-card__cta {
  background-color: transparent;
  color: var(--color-primary);
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.product-note {
  margin-top: 2.5rem;
  text-align: center;
  color: var(--color-muted);
}

/* Portfolio Section Enhancements */
.portfolio-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2rem;
}

.portfolio-description {
  font-size: 1.1rem;
  /* Increased from 1.05rem for better readability */
  color: var(--color-muted);
  line-height: 1.7;
  margin-top: 1rem;
}

.product-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 3rem auto;
  justify-content: center;
  max-width: 100%;
  padding: 0 1rem;
}

.category-card {
  background: rgba(255, 255, 255, 0.8);
  padding: 1.5rem 1.25rem;
  border-radius: var(--m3e-shape-large-plus);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-medium);
  transition: transform var(--m3e-duration-spatial-fast) var(--m3e-spatial-fast),
    box-shadow var(--m3e-duration-spatial-fast) var(--m3e-spatial-fast),
    border-radius var(--m3e-duration-effects-slow) var(--m3e-effects-slow);
  flex: 1 1 100%;
  min-width: 280px;
  max-width: 100%;
}

.category-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 24px 50px rgba(255, 127, 80, 0.2);
  border-radius: var(--m3e-shape-extra-large);
}

.category-icon {
  font-size: 1.75rem;
  margin-bottom: 0.6rem;
  display: block;
  line-height: 1;
}

.category-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  color: var(--color-text);
}

.category-card>p {
  color: var(--color-muted);
  line-height: 1.4;
  margin-bottom: 0.85rem;
  font-size: 0.85rem;
}

.category-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.category-features li {
  padding-left: 1.25rem;
  position: relative;
  font-size: 0.8rem;
  color: var(--color-muted);
  line-height: 1.3;
}

.category-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-secondary);
  font-weight: 700;
}

.category-note {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 0.85rem;
  color: var(--color-primary);
  font-weight: 600;
  font-style: italic;
}

.process {
  background: radial-gradient(circle at bottom left, rgba(92, 201, 123, 0.1), transparent 55%);
  padding-top: 3rem;
  text-align: center;
}

.process h2 {
  margin-bottom: 3rem;
}

.process-steps {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.step {
  background-color: var(--color-surface);
  padding: 2.2rem 1.6rem;
  border: 1px solid rgba(33, 33, 33, 0.08);
  box-shadow: 0 18px 30px rgba(33, 33, 33, 0.07);
  /* M3 Expressive: medium expressive with morphing */
  border-radius: var(--m3e-shape-large) var(--m3e-shape-small) var(--m3e-shape-large) var(--m3e-shape-small);
  transition: transform var(--m3e-duration-spatial-default) var(--m3e-spatial-default),
    box-shadow var(--m3e-duration-spatial-default) var(--m3e-spatial-default),
    border-radius var(--m3e-duration-effects-slow) var(--m3e-effects-slow);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.step .btn {
  margin-top: auto;
}

.step:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 24px 40px rgba(33, 33, 33, 0.12);
  border-radius: var(--m3e-shape-large-plus) var(--m3e-shape-small-plus) var(--m3e-shape-large-plus) var(--m3e-shape-small-plus);
}

.step-number {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: #fff;
  font-weight: 700;
  margin-bottom: 1.2rem;
  /* Material 3 Expressive: circular */
  border-radius: 50%;
}

.process-cta {
  margin-top: 3rem;
  padding: 2.5rem;
  background: linear-gradient(135deg, rgba(255, 127, 80, 0.08), rgba(92, 201, 123, 0.08));
  border-radius: var(--m3e-shape-extra-large);
  text-align: center;
}

.process-cta h3 {
  margin-bottom: 1.5rem;
  color: var(--color-text);
}

.process-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.highlight {
  background: linear-gradient(135deg, rgba(255, 127, 80, 0.2), rgba(92, 201, 123, 0.25));
  border: none;
}

.highlight-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.6);
  padding: 3rem;
  box-shadow: var(--shadow-soft);
  /* M3 Expressive: extra-large expressive with morphing */
  border-radius: var(--m3e-shape-extra-large) var(--m3e-shape-small) var(--m3e-shape-extra-large) var(--m3e-shape-small);
  transition: transform var(--m3e-duration-spatial-default) var(--m3e-spatial-default),
    border-radius var(--m3e-duration-effects-slow) var(--m3e-effects-slow);
}

.highlight-inner:hover {
  transform: scale(1.01);
  border-radius: var(--m3e-shape-extra-large) var(--m3e-shape-small-plus) var(--m3e-shape-extra-large) var(--m3e-shape-small-plus);
}

.testimonials {
  background-color: #fff8f5;
  overflow: visible;
  /* Allow testimonials to show fully */
  text-align: center;
  /* Consistent header alignment */
  padding-left: 0;
  padding-right: 0;
}

.testimonials .container {
  padding-left: 0;
  padding-right: 0;
  max-width: 100%;
}

.testimonials h2,
.testimonials .eyebrow {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.testimonial-grid {
  display: flex;
  gap: 1.2rem;
  overflow-x: auto;
  overflow-y: visible;
  /* Allow hover effects to show */
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  /* Firefox */
  padding: 2rem 1.5rem;
  /* Add horizontal padding to prevent edge clipping */
  scroll-padding-inline: 50%;
}

.testimonial-grid::before,
.testimonial-grid::after {
  content: '';
  flex-shrink: 0;
  width: calc(50% - 160px);
  /* Adjusted for better centering */
}

.testimonial-grid::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Edge */
}

.testimonial {
  background-color: #fff;
  padding: 1.8rem 2rem;
  border: 1px solid rgba(255, 127, 80, 0.15);
  box-shadow: 0 8px 20px rgba(255, 127, 80, 0.12);
  border-radius: 100px;
  /* Bubbly pill shape */
  transition: transform var(--m3e-duration-spatial-default) var(--m3e-spatial-default),
    box-shadow var(--m3e-duration-spatial-default) var(--m3e-spatial-default);
  min-width: 280px;
  max-width: 320px;
  flex-shrink: 0;
  scroll-snap-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testimonial:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 28px rgba(255, 127, 80, 0.2);
  border-color: var(--color-primary);
}

.testimonial blockquote {
  margin: 0;
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-text);
  text-align: center;
}

.testimonial-wrapper {
  position: relative;
  margin-top: 2rem;
}

.testimonial-scroll-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: var(--color-primary);
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: white;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(255, 127, 80, 0.3);
}

.testimonial-scroll-arrow::before {
  content: '';
  position: absolute;
  inset: -8px;
}

.testimonial-scroll-arrow.left {
  left: 10px;
}

.testimonial-scroll-arrow.right {
  right: 10px;
}

.testimonial-scroll-arrow:hover {
  background: var(--color-primary-dark);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(255, 127, 80, 0.4);
}

.testimonial-scroll-arrow:active {
  transform: translateY(-50%) scale(0.95);
}

/* Removed .at-limit styles for infinite scroll */

.testimonial-scroll-arrow svg {
  width: 20px;
  height: 20px;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.testimonials-note {
  text-align: center;
  font-size: 0.875rem;
  color: rgba(0, 0, 0, 0.5);
  margin-top: 1.5rem;
  font-style: italic;
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 127, 80, 0.3);
  transition: all 0.3s ease;
  cursor: pointer;
}

.testimonial-dot.active {
  background: var(--color-primary);
  transform: scale(1.3);
}

.testimonial-dot:hover {
  background: rgba(255, 127, 80, 0.6);
}

.instagram {
  background: radial-gradient(circle at top, rgba(255, 206, 86, 0.2), transparent 60%);
}

.instagram-inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3rem;
  align-items: center;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.3rem;
  position: relative;
}

.instagram-item {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1;
  background-color: rgba(255, 255, 255, 0.4);
  box-shadow: var(--shadow-medium);
  /* Always-visible glow ring to indicate clickability */
  outline: 2px solid rgba(255, 127, 80, 0.5);
  outline-offset: 4px;
  /* M3 Expressive: varied asymmetric corners for visual interest */
  border-radius: var(--m3e-shape-large-plus) var(--m3e-shape-small) var(--m3e-shape-large-plus) var(--m3e-shape-small);
  /* M3 Expressive: Effects timing for micro-interactions */
  transition: transform var(--m3e-duration-effects-default) var(--m3e-effects-default),
    box-shadow var(--m3e-duration-effects-default) var(--m3e-effects-default),
    outline-color var(--m3e-duration-effects-default) var(--m3e-effects-default),
    border-radius var(--m3e-duration-effects-slow) var(--m3e-effects-slow);
  /* Remove button default styles */
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  width: 100%;
}

/* M3 Expressive: create rhythm with alternating patterns */
.instagram-item:nth-child(2n) {
  border-radius: var(--m3e-shape-small) var(--m3e-shape-large-plus) var(--m3e-shape-small) var(--m3e-shape-large-plus);
}

/* Instagram Item Loader - Bubbly Shimmer Animation */
.instagram-item-loader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0.3) 0%,
      rgba(255, 255, 255, 0.5) 50%,
      rgba(255, 255, 255, 0.3) 100%);
  background-size: 200% 100%;
  animation: shimmer 1.5s ease-in-out infinite;
  z-index: 1;
  pointer-events: none;
}

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

  100% {
    background-position: 200% 0;
  }
}

/* Bubbly circles inside the loader */
.instagram-item-loader::before,
.instagram-item-loader::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(92, 201, 123, 0.2);
  animation: bubble 2s ease-in-out infinite;
}

.instagram-item-loader::before {
  width: 60px;
  height: 60px;
  top: 30%;
  left: 30%;
  animation-delay: 0s;
}

.instagram-item-loader::after {
  width: 40px;
  height: 40px;
  bottom: 30%;
  right: 30%;
  animation-delay: 0.7s;
}

@keyframes bubble {

  0%,
  100% {
    transform: scale(1) translateY(0);
    opacity: 0.3;
  }

  50% {
    transform: scale(1.2) translateY(-10px);
    opacity: 0.6;
  }
}

/* Loading icon in center */
.instagram-item-loader-icon {
  width: 48px;
  height: 48px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top-color: var(--color-secondary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  z-index: 2;
}

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

/* Hide loader when content is loaded */
.instagram-item.loaded .instagram-item-loader {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.instagram-item.loaded img,
.instagram-item.loaded video {
  opacity: 1;
  transition: opacity 0.3s ease;
}

/* Initially hide media until loaded */
.instagram-item:not(.loaded) img,
.instagram-item:not(.loaded) video {
  opacity: 0;
}

.instagram-item:nth-child(3n) {
  border-radius: var(--m3e-shape-extra-large) var(--m3e-shape-small) var(--m3e-shape-small) var(--m3e-shape-small);
}

.instagram-item:nth-child(4n) {
  border-radius: var(--m3e-shape-small) var(--m3e-shape-extra-large) var(--m3e-shape-small) var(--m3e-shape-small);
}

.instagram-item:nth-child(5n) {
  border-radius: var(--m3e-shape-small) var(--m3e-shape-small) var(--m3e-shape-extra-large) var(--m3e-shape-small);
}

.instagram-item:nth-child(6n) {
  border-radius: var(--m3e-shape-small) var(--m3e-shape-small) var(--m3e-shape-small) var(--m3e-shape-extra-large);
}

.instagram-item img,
.instagram-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.instagram-item:hover img,
.instagram-item:hover video {
  transform: scale(1.1);
}

.instagram-item__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: linear-gradient(180deg, transparent 40%, rgba(14, 14, 16, 0.78));
  color: #fff;
  font-size: 0.9rem;
  line-height: 1.3;
  opacity: 0;
  transition: opacity 0.2s ease;
}

/* Zoom icon - centered, appears on hover */
.instagram-item__overlay::before {
  content: '🔍';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  font-size: 3rem;
  opacity: 0.9;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
  transition: transform 0.2s ease;
  z-index: 1;
}

.instagram-item__overlay span {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  position: relative;
  z-index: 2;
  margin-top: auto;
}

.instagram-item:focus,
.instagram-item:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: var(--shadow-large);
  /* Stronger glow ring on hover */
  outline-color: rgba(255, 127, 80, 0.9);
  outline-width: 3px;
  /* M3 Expressive: All corners become more rounded on hover */
  border-radius: var(--m3e-shape-extra-large);
}

.instagram-item:focus-visible {
  outline: 3px solid rgba(255, 127, 80, 0.7);
  outline-offset: 3px;
}

.instagram-item:focus .instagram-item__overlay,
.instagram-item:hover .instagram-item__overlay {
  opacity: 1;
}

.instagram-item:hover .instagram-item__overlay::before {
  transform: translate(-50%, -50%) scale(1);
}

/* Video indicator - play icon on video thumbnails */
.video-indicator {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  pointer-events: none;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

.instagram-item:hover .video-indicator {
  opacity: 1;
}

.instagram-placeholder,
.instagram-status {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2.4rem 1.6rem;
  background: rgba(255, 255, 255, 0.7);
  color: var(--color-muted);
  box-shadow: var(--shadow-medium);
  /* Material 3 Expressive: large rounded */
  border-radius: 24px;
}

.instagram-status.is-error {
  background: rgba(255, 247, 240, 0.9);
  color: #c5591a;
}

.instagram-placeholder p,
.instagram-status p {
  margin: 0.8rem 0 0;
  font-weight: 600;
}

.instagram-spinner {
  width: 36px;
  height: 36px;
  border: 3px solid rgba(255, 127, 80, 0.25);
  border-top-color: rgba(255, 127, 80, 0.9);
  /* Material 3 Expressive: circular for spinner */
  border-radius: 50%;
  animation: instagram-spin 1s linear infinite;
}

@keyframes instagram-spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Instagram Highlights Grid */
/* Instagram Section Redesign */
.instagram-header {
  text-align: center;
  margin-bottom: 3rem;
}

.instagram-header-content {
  max-width: 700px;
  margin: 0 auto 2.5rem;
}

.instagram-subtitle {
  font-size: 1.1rem;
  /* Increased from 1.05rem for better readability */
  color: var(--color-muted);
  margin-top: 0.5rem;
}

.instagram-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin: 2rem 0 2.5rem;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}

.stat-item strong {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

.stat-item span {
  font-size: 0.9rem;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

/* Desktop - sticky filter bar */
.instagram-filters-wrapper {
  position: -webkit-sticky;
  position: sticky;
  top: 80px;
  /* Below merged header/navbar on desktop */
  z-index: 500;
  margin-bottom: 1.5rem;
}

.instagram-filters-wrapper.released {
  position: relative;
  top: auto;
}

.filter-scroll-arrow {
  display: none;
  /* Hidden on desktop */
}

.instagram-filters {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  position: relative;
}

.filter-pill {
  padding: 0.7rem 1.5rem;
  border: 2px solid var(--color-border);
  background: #ffffff;
  border-radius: var(--m3e-shape-full);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--m3e-duration-effects-default) var(--m3e-effects-default);
  color: var(--color-text);
}

.filter-pill:hover {
  background: #ffffff;
  border-color: var(--color-secondary);
  transform: translateY(-2px);
}

.filter-pill.active {
  background: var(--color-secondary);
  border-color: var(--color-secondary);
  color: white;
  transform: translateY(-2px);
}

.instagram-grid-container {
  width: 100%;
  margin-top: 1.5rem;
  /* Space below filter bar */
}

.instagram-cta {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--color-border);
}

.instagram-cta p {
  font-size: 1.05rem;
  color: var(--color-muted);
  margin-bottom: 1.5rem;
}

.social-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

/* Instagram Lightbox */
.instagram-lightbox {
  position: fixed;
  top: 140px;
  /* Start well below header and navbar to avoid clipping close button */
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--m3e-duration-effects-default) var(--m3e-effects-default),
    visibility var(--m3e-duration-effects-default) var(--m3e-effects-default);
  padding: 20px;
  pointer-events: none;
}

.instagram-lightbox[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.instagram-lightbox__overlay {
  position: absolute;
  top: -140px;
  /* Extend up to cover header/navbar area */
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  cursor: pointer;
  pointer-events: auto;
}

.instagram-lightbox__content {
  position: relative;
  max-width: 90vw;
  max-height: calc(100vh - 180px);
  /* Account for top offset (140px) + bottom padding (40px) */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  z-index: 1;
  background: rgba(0, 0, 0, 0.85);
  padding: 3rem 1rem 1rem;
  border-radius: 12px;
  pointer-events: auto;
  overflow: hidden;
  /* Prevent content from spilling out */
}

.instagram-lightbox__close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: #ff4444;
  border: none;
  color: white;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 999999;
  font-size: 1.5rem;
  font-weight: 600;
  pointer-events: auto;
}

.instagram-lightbox__close:hover {
  background: #cc0000;
  transform: scale(1.1);
}

.instagram-lightbox__close:active {
  transform: scale(0.95);
}

.instagram-lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--m3e-duration-effects-fast) var(--m3e-effects-fast),
    transform var(--m3e-duration-effects-fast) var(--m3e-effects-fast),
    opacity var(--m3e-duration-effects-fast) var(--m3e-effects-fast);
  z-index: 3;
  pointer-events: auto;
}

.instagram-lightbox__nav:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%) scale(1.1);
}

.instagram-lightbox__nav:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.instagram-lightbox__nav:disabled:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-50%);
}

.instagram-lightbox__nav--prev {
  left: 20px;
}

.instagram-lightbox__nav--next {
  right: 20px;
}

.instagram-lightbox__media {
  max-width: 100%;
  max-height: calc(90vh - 8rem);
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 8px;
  overflow: hidden;
}

.instagram-lightbox__media img,
.instagram-lightbox__media video {
  max-width: 100%;
  max-height: calc(90vh - 8rem);
  object-fit: contain;
  display: block;
  border-radius: 8px;
}

.instagram-lightbox__media video {
  width: auto;
  height: auto;
}

/* Lightbox video wrapper for mute button */
.lightbox-video-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-mute-button {
  position: absolute;
  bottom: 80px;
  right: 20px;
  background: rgba(0, 0, 0, 0.7);
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  z-index: 10;
}

.lightbox-mute-button:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: scale(1.1);
}

.lightbox-mute-button:active {
  transform: scale(0.95);
}

.instagram-lightbox__caption {
  color: white;
  max-width: 600px;
  text-align: center;
  font-size: 1rem;
  line-height: 1.5;
  padding: 0 1rem;
}

.instagram-lightbox__link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--m3e-shape-full);
  transition: background var(--m3e-duration-effects-fast) var(--m3e-effects-fast),
    color var(--m3e-duration-effects-fast) var(--m3e-effects-fast);
}

.instagram-lightbox__link:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

@media (max-width: 768px) {
  .instagram-lightbox {
    padding: 10px;
  }

  .instagram-lightbox__nav {
    width: 48px;
    height: 48px;
  }

  .instagram-lightbox__nav--prev {
    left: 10px;
  }

  .instagram-lightbox__nav--next {
    right: 10px;
  }

  .instagram-lightbox__close {
    top: 10px;
    right: 10px;
    width: 48px;
    height: 48px;
  }

  .instagram-lightbox__media {
    max-height: 60vh;
    max-width: 95vw;
  }

  .instagram-lightbox__media img,
  .instagram-lightbox__media video {
    max-height: 60vh;
  }

  .instagram-lightbox__caption {
    font-size: 0.95rem;
    max-width: 100%;
    padding: 0 0.5rem;
  }

  .instagram-lightbox__link {
    font-size: 0.85rem;
    padding: 0.6rem 1.2rem;
  }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
  .instagram-lightbox {
    padding: 5px;
  }

  .instagram-lightbox__nav {
    width: 44px;
    height: 44px;
  }

  .instagram-lightbox__nav--prev {
    left: 5px;
  }

  .instagram-lightbox__nav--next {
    right: 5px;
  }

  .instagram-lightbox__close {
    top: 5px;
    right: 5px;
    width: 44px;
    height: 44px;
  }

  .instagram-lightbox__media {
    max-height: 55vh;
    max-width: 98vw;
  }

  .instagram-lightbox__media img,
  .instagram-lightbox__media video {
    max-height: 55vh;
  }

  .instagram-lightbox__caption {
    font-size: 0.9rem;
    line-height: 1.4;
  }
}

.insta-card {
  background: linear-gradient(135deg, rgba(255, 127, 80, 0.85), rgba(92, 201, 123, 0.85));
  border-radius: 1.4rem;
  padding: 2.2rem 1.6rem;
  color: #fff;
  font-weight: 700;
  text-align: center;
  box-shadow: var(--shadow-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 160px;
  line-height: 1.3;
}

.faq {
  text-align: center;
  /* Consistent header alignment */
}

.faq details {
  background-color: #fff;
  padding: 1.3rem 1.5rem;
  border-radius: 1.1rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
  margin-bottom: 1rem;
  box-shadow: 0 12px 20px rgba(33, 33, 33, 0.05);
  text-align: left;
  /* Details content should be left-aligned */
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--color-text);
}

/* Promereo Services Section */
.promereo-services {
  background: linear-gradient(135deg, rgba(255, 127, 80, 0.05), rgba(92, 201, 123, 0.05));
  border-top: 1px solid var(--color-border);
}

.promereo-services .container {
  position: relative;
}

.promereo-intro {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  color: var(--color-text);
}

.services-wrapper {
  position: relative;
}

.services-scroll-arrow {
  position: absolute;
  top: calc(50% + 1rem);
  transform: translateY(-50%);
  z-index: 2;
  background: var(--color-primary);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: white;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(255, 127, 80, 0.3);
}

.services-scroll-arrow::before {
  content: '';
  position: absolute;
  inset: -8px;
}

.services-scroll-arrow.left {
  left: -60px;
}

.services-scroll-arrow.right {
  right: -60px;
}

.services-scroll-arrow:hover {
  background: var(--color-primary-dark);
  transform: translateY(-50%) scale(1.15);
  box-shadow: 0 6px 20px rgba(255, 127, 80, 0.4);
}

.services-scroll-arrow:active {
  transform: translateY(-50%) scale(0.95);
}

.services-scroll-arrow.at-limit {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}

.services-scroll-arrow svg {
  width: 18px;
  height: 18px;
}

.services-grid {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 2rem 0 1rem;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}

.services-grid::-webkit-scrollbar {
  height: 8px;
}

.services-grid::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 4px;
}

.services-grid::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: 4px;
}

.service-card {
  background: var(--color-surface);
  padding: 0.875rem 0.75rem;
  border: 1px solid var(--color-border);
  border-radius: var(--m3e-shape-large);
  text-align: center;
  text-decoration: none;
  color: var(--color-text);
  transition: all var(--m3e-duration-spatial-default) var(--m3e-spatial-default);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  min-width: 130px;
  flex-shrink: 0;
  scroll-snap-align: start;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 127, 80, 0.1), rgba(92, 201, 123, 0.1));
  opacity: 0;
  transition: opacity var(--m3e-duration-effects-default) var(--m3e-effects-default);
}

.service-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 12px 28px rgba(255, 127, 80, 0.25);
  border-color: var(--color-primary);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:active {
  transform: translateY(-2px) scale(0.98);
}

.service-card--active {
  border-color: var(--color-primary);
  background: linear-gradient(135deg, rgba(255, 127, 80, 0.08), rgba(92, 201, 123, 0.08));
  animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {

  0%,
  100% {
    box-shadow: 0 2px 8px rgba(255, 127, 80, 0.2), 0 0 0 0 rgba(255, 127, 80, 0.4);
  }

  50% {
    box-shadow: 0 2px 8px rgba(255, 127, 80, 0.3), 0 0 0 6px rgba(255, 127, 80, 0);
  }
}

.service-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  transition: transform var(--m3e-duration-effects-default) var(--m3e-effects-default);
  display: inline-block;
}

.service-card:hover .service-icon {
  transform: scale(1.2) rotate(5deg);
  animation: iconBounce 0.6s ease;
}

@keyframes iconBounce {

  0%,
  100% {
    transform: scale(1.2) rotate(5deg) translateY(0);
  }

  25% {
    transform: scale(1.2) rotate(5deg) translateY(-8px);
  }

  50% {
    transform: scale(1.2) rotate(5deg) translateY(-4px);
  }

  75% {
    transform: scale(1.2) rotate(5deg) translateY(-6px);
  }
}

.service-card h3 {
  font-size: 0.85rem;
  margin-bottom: 0.25rem;
  color: var(--color-text);
  font-weight: 600;
}

.service-card p {
  font-size: 0.7rem;
  color: var(--color-muted);
  line-height: 1.3;
}

.site-footer {
  background-color: #1f1f1f;
  color: rgba(255, 255, 255, 0.84);
  padding: 4rem 0 2rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  align-items: start;
}

.footer-description {
  color: rgba(255, 255, 255, 0.74);
  margin-top: 0.75rem;
}

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

.footer-social-icons a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.84);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-social-icons a:hover {
  background: var(--color-primary);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(255, 127, 80, 0.4);
  border-color: var(--color-primary);
}

.footer-address {
  color: rgba(255, 255, 255, 0.74);
  margin-top: 1rem;
  font-size: 0.9rem;
  line-height: 1.5;
}

.footer-credit {
  color: rgba(255, 255, 255, 0.95);
  background: linear-gradient(135deg, rgba(255, 127, 80, 0.2), rgba(92, 201, 123, 0.2));
  text-decoration: none;
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 100px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 127, 80, 0.3);
  font-size: 0.9rem;
  font-weight: 500;
}

.footer-credit:hover {
  background: linear-gradient(135deg, rgba(255, 127, 80, 0.3), rgba(92, 201, 123, 0.3));
  border-color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 127, 80, 0.3);
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.footer-meta {
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 80px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  z-index: 9998;
  transition: all 0.3s ease;
  cursor: pointer;
  animation: pulse-whatsapp 2s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
}

.whatsapp-float:active {
  transform: scale(0.95);
}

@keyframes pulse-whatsapp {

  0%,
  100% {
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 6px 32px rgba(37, 211, 102, 0.6), 0 0 0 8px rgba(37, 211, 102, 0.1);
  }
}

/* Mobile Footer Optimizations */
@media (max-width: 768px) {
  .site-footer {
    padding: 3rem 0 1.5rem;
  }

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

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

  .footer-brand .brand {
    justify-content: center;
  }

  .footer-links,
  .footer-contact {
    text-align: center;
  }

  .footer-links ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem 1rem;
    max-width: 300px;
    margin: 0 auto;
  }

  .footer-links h3,
  .footer-contact h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
  }

  .footer-social-icons {
    justify-content: center;
  }

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

  .footer-meta {
    margin-top: 1.5rem;
    padding-top: 1rem;
  }

  .footer-credit {
    font-size: 0.8rem;
    padding: 0.6rem 1.2rem;
  }

  .whatsapp-float {
    width: 56px;
    height: 56px;
    bottom: 70px;
    right: 20px;
  }
}

@media (max-width: 480px) {
  .footer-social-icons a {
    width: 40px;
    height: 40px;
  }

  .footer-social-icons svg {
    width: 20px;
    height: 20px;
  }

  .whatsapp-float {
    width: 52px;
    height: 52px;
    bottom: 60px;
    right: 16px;
  }

  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}

.product-modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.product-modal[aria-hidden='false'] {
  visibility: visible;
  opacity: 1;
}

.product-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
}

.product-modal__content {
  position: relative;
  background: #fff;
  max-width: 540px;
  width: 100%;
  padding: 2rem;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.25);
  display: grid;
  gap: 1.4rem;
  /* Material 3 Expressive: extra-large expressive */
  border-radius: 28px 8px 28px 8px;
}

.modal-close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 40px;
  height: 40px;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  background-color: #ff4444;
  color: white;
  /* Material 3 Expressive: circular for close button */
  border-radius: 50%;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background-color: #cc0000;
  transform: scale(1.1);
}

.modal-close:active {
  transform: scale(0.95);
}

.modal-body h3 {
  margin-top: 0;
}

.modal-body ul {
  padding-left: 1.2rem;
  color: var(--color-muted);
}

@media (max-width: 960px) {

  .hero-content,
  .instagram-inner {
    grid-template-columns: 1fr;
  }

  .hero-media {
    order: -1;
  }

  .hero-highlights {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }
}

@media (max-width: 768px) {

  /* Hide hamburger menu - nav is always visible */
  .menu-toggle {
    display: none !important;
  }

  /* Header adjustments - keep it simple */
  .header-inner {
    flex-wrap: nowrap;
    min-height: 60px;
    padding: 0.75rem 0;
    gap: 0.75rem;
  }

  .brand {
    font-size: 1rem;
  }

  .brand-logo {
    width: 36px;
    height: 36px;
  }

  .header-inner .btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    white-space: nowrap;
  }

  /* Header fixed at top on mobile */
  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    min-height: 60px;
    z-index: 1000;
  }

  /* Main nav wrapper - position below header */
  .main-nav {
    position: fixed;
    top: 62px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    max-width: calc(100vw - 2rem);
    z-index: 1001;
    display: block;
    /* Ensure it's visible */
  }

  /* Beautiful centered pill with sub-pills */
  .nav-list {
    position: relative;
    background: #ffffff;
    backdrop-filter: blur(12px);
    border: 2px solid rgba(255, 127, 80, 0.3);
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: auto;
    max-width: 100%;
    padding: 0.4rem;
    border-radius: var(--m3e-shape-full);
    box-shadow: 0 6px 20px rgba(255, 127, 80, 0.25), 0 2px 8px rgba(0, 0, 0, 0.1);
    gap: 0.3rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .nav-list::-webkit-scrollbar {
    display: none;
  }

  .nav-list li {
    margin: 0;
  }

  /* Individual sub-pill for each link */
  .nav-list a {
    padding: 0.5rem 0.6rem;
    border-radius: var(--m3e-shape-full);
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    background: rgba(255, 127, 80, 0.08);
    border: 1px solid transparent;
    transition: all var(--m3e-duration-effects-default) var(--m3e-effects-default);
    white-space: nowrap;
    min-width: 40px;
    min-height: 40px;
  }

  /* Hide text by default, show only icon */
  .nav-text {
    font-size: 0.8rem;
    font-weight: 600;
    max-width: 0;
    overflow: hidden;
    opacity: 0;
    transition: all var(--m3e-duration-effects-default) var(--m3e-effects-default);
  }

  /* Active section shows full pill with text, hides icon */
  .nav-list a.active {
    background: linear-gradient(135deg, var(--color-primary) 0%, #ff6b4a 100%);
    color: white;
    border-color: var(--color-primary);
    padding: 0.6rem 1rem;
    box-shadow: 0 4px 12px rgba(255, 127, 80, 0.4);
  }

  .nav-list a.active .nav-icon {
    display: none;
  }

  .nav-list a.active .nav-text {
    max-width: 140px;
    opacity: 1;
    margin-left: 0;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  }

  .nav-list a:hover,
  .nav-list a:focus {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 127, 80, 0.3);
  }

  .nav-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
  }

  .hero {
    padding: 8rem 0 3rem;
    /* Extra padding for fixed header + navbar */
  }

  /* Make hero heading smaller on mobile */
  .hero h1 {
    font-size: clamp(1.75rem, 5vw, 2.2rem);
    /* Reduced from 2.5rem-3.5rem */
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    margin: 1.5rem 0;
  }

  .hero-highlights {
    grid-template-columns: 1fr;
    gap: 0.8rem;
    margin-top: 1.5rem;
  }

  .highlight {
    padding: 0.9rem 1rem;
  }

  .hero-gallery-track,
  .hero-gallery-item img {
    min-height: 250px;
    height: 250px;
  }

  .hero-gallery-caption {
    font-size: 0.8rem;
    padding: 0.8rem 1rem;
  }

  .hero-gallery-dots {
    margin-top: 0.8rem;
  }

  .instagram-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    position: relative;
  }

  .instagram-item {
    /* Better touch targets on mobile */
    min-height: 140px;
  }

  /* Show overlay by default on mobile for better UX */
  .instagram-item__overlay {
    opacity: 0.9;
  }

  /* Active state for touch feedback */
  .instagram-item:active {
    transform: scale(0.98);
  }

  .instagram-stats {
    gap: 2rem;
  }

  /* Only make the filter bar sticky, not the whole header */
  .instagram-header {
    flex-direction: column;
    gap: 1.5rem;
  }

  .instagram-filters-wrapper {
    position: -webkit-sticky;
    /* Safari */
    position: sticky;
    top: 130px;
    /* Below header + navbar on mobile */
    z-index: 50;
    max-width: 100vw;
    margin-left: -1.25rem;
    margin-right: -1.25rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* Push arrows to edges */
    gap: 0.3rem;
    margin: 0 0 1rem 0;
    padding: 0 0.25rem;
    /* Padding instead of margin to stay at viewport edge */
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
    width: 100%;
    /* Full width */
    max-width: 100%;
    left: 0;
    right: 0;
  }

  .instagram-filters {
    gap: 0.6rem;
    overflow-x: auto;
    /* Allow horizontal scroll */
    overflow-y: hidden;
    /* Prevent vertical scroll */
    flex-wrap: nowrap;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    flex: 1;
    /* Take all available space between arrows */
    position: relative;
  }

  .instagram-filters::-webkit-scrollbar {
    display: none;
  }

  /* Scroll arrow button */
  .filter-scroll-arrow {
    background: var(--color-primary);
    border: none;
    border-radius: 100px;
    /* Bubbly pill shape */
    width: 36px;
    height: 36px;
    padding: 12px;
    /* Larger touch target */
    min-width: 48px;
    /* Minimum touch target size */
    min-height: 48px;
    /* Minimum touch target size */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    box-shadow: 0 4px 12px rgba(255, 127, 80, 0.3);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    /* Bouncy transition */
    flex-shrink: 0;
    position: relative;
    overflow: visible;
    /* Allow tap area to extend */
    isolation: isolate;
    /* Create new stacking context */
  }

  /* Larger invisible tap target */
  .filter-scroll-arrow::before {
    content: '';
    position: absolute;
    inset: -8px;
    /* Extend touch area by 8px in all directions */
    z-index: -1;
  }

  .filter-scroll-arrow svg {
    width: 18px;
    height: 18px;
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    /* Prevent SVG from intercepting clicks */
  }

  /* Shrink arrow to tiny dot when at limit */
  .filter-scroll-arrow.at-limit {
    width: 6px;
    /* Tiny dot */
    height: 6px;
    min-width: 6px;
    min-height: 6px;
    cursor: default;
    animation: none;
    background: rgba(255, 127, 80, 0.25);
    box-shadow: none;
    border: none;
    border-radius: 50%;
  }

  .filter-scroll-arrow.at-limit svg {
    opacity: 0;
    transform: scale(0);
  }

  /* Pulse animation for active arrows */
  .filter-scroll-arrow:not(.at-limit) {
    animation: scroll-pulse 1.5s ease-in-out infinite;
  }

  @keyframes scroll-pulse {

    0%,
    100% {
      transform: scale(1);
      box-shadow: 0 4px 12px rgba(255, 127, 80, 0.3);
    }

    50% {
      transform: scale(1.05);
      box-shadow: 0 6px 16px rgba(255, 127, 80, 0.5);
    }
  }

  .filter-scroll-arrow:not(.at-limit):hover {
    background: var(--color-primary-dark);
    transform: scale(1.1);
    animation: none;
  }

  .filter-scroll-arrow:not(.at-limit):active {
    transform: scale(0.95);
  }

  .filter-pill {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
    flex-shrink: 0;
    /* Prevent shrinking in horizontal scroll */
    white-space: nowrap;
  }

  /* Touch feedback for filter pills */
  .filter-pill:active {
    transform: scale(0.95);
  }
}

/* Small screens: 1 column, full width cards */
@media (max-width: 599px) {
  .category-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* Larger screens: 2 columns if space allows */
@media (min-width: 600px) {
  .product-categories {
    max-width: 800px;
  }

  .category-card {
    flex: 1 1 calc(50% - 1rem);
    max-width: calc(50% - 1rem);
  }
}

@media (max-width: 540px) {
  .container {
    padding: 0 1.25rem;
    max-width: 100%;
  }

  .section {
    padding: 1.5rem 0;
  }

  .hero {
    padding-top: 8rem;
    /* Add space for fixed header + navbar */
  }

  .hero .container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .controls {
    width: 100%;
  }

  .filter-btn {
    flex: 1 1 auto;
    text-align: center;
  }

  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .instagram-stats {
    gap: 1.5rem;
    flex-direction: column;
  }

  .stat-item strong {
    font-size: 1.5rem;
  }

  .instagram-filters {
    /* Keep horizontal scroll, don't stack vertically */
    overflow-x: auto;
    flex-wrap: nowrap;
  }

  .filter-pill {
    /* Slightly smaller on very small screens */
    padding: 0.7rem 1rem;
    font-size: 0.8rem;
    flex-shrink: 0;
    white-space: nowrap;
  }

  /* Additional mobile fixes for edge cases */
  .btn-small {
    padding: 0.5rem 0.85rem;
    font-size: 0.8rem;
  }

  .header-inner {
    min-height: 60px !important;
  }

  /* Ensure all wide elements respect mobile viewport */
  .hero-actions {
    width: 100%;
    max-width: 100%;
  }

  .hero-actions .btn {
    max-width: 100%;
    text-align: center;
  }

  .btn {
    max-width: 100%;
  }

  img,
  video,
  iframe {
    max-width: 100%;
    height: auto;
  }

  /* Prevent any element from causing horizontal scroll */
  * {
    max-width: 100%;
  }

  .section {
    width: 100%;
    max-width: 100vw;
    overflow-x: clip;
    /* Use 'clip' to preserve sticky positioning */
  }

  /* Hide decorative fruit shapes on mobile */
  body::before,
  body::after {
    display: none;
  }
}

/* Hide decorative fruit shapes on tablets and smaller laptops */
@media (max-width: 1279px) {

  body::before,
  /* Shrink arrow to tiny dot when at limit */
  .filter-scroll-arrow.at-limit {
    width: 6px;
    /* Tiny dot */
    height: 6px;
    min-width: 6px;
    min-height: 6px;
    cursor: default;
    animation: none;
    background: rgba(255, 127, 80, 0.25);
    box-shadow: none;
    border: none;
    border-radius: 50%;
  }

  .filter-scroll-arrow.at-limit svg {
    opacity: 0;
    transform: scale(0);
  }

  /* Pulse animation for active arrows */
  .filter-scroll-arrow:not(.at-limit) {
    animation: scroll-pulse 1.5s ease-in-out infinite;
  }

  @keyframes scroll-pulse {

    0%,
    100% {
      transform: scale(1);
      box-shadow: 0 4px 12px rgba(255, 127, 80, 0.3);
    }

    50% {
      transform: scale(1.05);
      box-shadow: 0 6px 16px rgba(255, 127, 80, 0.5);
    }
  }

  .filter-scroll-arrow:not(.at-limit):hover {
    background: var(--color-primary-dark);
    transform: scale(1.1);
    animation: none;
  }

  .filter-scroll-arrow:not(.at-limit):active {
    transform: scale(0.95);
  }

  .filter-pill {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
    flex-shrink: 0;
    /* Prevent shrinking in horizontal scroll */
    white-space: nowrap;
  }

  /* Touch feedback for filter pills */
  .filter-pill:active {
    transform: scale(0.95);
  }
}

/* Small screens: 1 column, full width cards */
@media (max-width: 599px) {
  .category-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* Larger screens: 2 columns if space allows */
@media (min-width: 600px) {
  .product-categories {
    max-width: 800px;
  }

  .category-card {
    flex: 1 1 calc(50% - 1rem);
    max-width: calc(50% - 1rem);
  }
}

@media (max-width: 540px) {
  .container {
    padding: 0 1.25rem;
    max-width: 100%;
  }

  .section {
    padding: 1.5rem 0;
  }

  .hero {
    padding-top: 8rem;
    /* Add space for fixed header + navbar */
  }

  .hero .container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .controls {
    width: 100%;
  }

  .filter-btn {
    flex: 1 1 auto;
    text-align: center;
  }

  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .instagram-stats {
    gap: 1.5rem;
    flex-direction: column;
  }

  .stat-item strong {
    font-size: 1.5rem;
  }

  .instagram-filters {
    /* Keep horizontal scroll, don't stack vertically */
    overflow-x: auto;
    flex-wrap: nowrap;
  }

  .filter-pill {
    /* Slightly smaller on very small screens */
    padding: 0.7rem 1rem;
    font-size: 0.8rem;
    flex-shrink: 0;
    white-space: nowrap;
  }

  /* Additional mobile fixes for edge cases */
  .btn-small {
    padding: 0.5rem 0.85rem;
    font-size: 0.8rem;
  }

  .header-inner {
    min-height: 60px !important;
  }

  /* Ensure all wide elements respect mobile viewport */
  .hero-actions {
    width: 100%;
    max-width: 100%;
  }

  .hero-actions .btn {
    max-width: 100%;
    text-align: center;
  }

  .btn {
    max-width: 100%;
  }

  img,
  video,
  iframe {
    max-width: 100%;
    height: auto;
  }

  /* Prevent any element from causing horizontal scroll */
  * {
    max-width: 100%;
  }

  .section {
    width: 100%;
    max-width: 100vw;
    overflow-x: clip;
    /* Use 'clip' to preserve sticky positioning */
  }

  /* Hide decorative fruit shapes on mobile */
  body::before,
  body::after {
    display: none;
  }
}

/* Hide decorative fruit shapes on tablets and smaller laptops */
@media (max-width: 1279px) {

  body::before,
  body::after {
    display: none;
  }
}

/* Mobile Layout Fix for Fruit Icons */
@media (max-width: 768px) {
  .fruit-decor {
    z-index: 0;
    /* Move behind content (main is z-index: 1) */
    opacity: 0.15;
    /* Slightly reduce opacity for better text contrast */
  }
}

/* Mobile Navbar Refinements */
@media (max-width: 768px) {
  .nav-list {
    gap: 0.3rem;
    /* Reduce gap between items */
    padding: 0.4rem;
    /* Reduce container padding */
  }

  .nav-list a {
    padding: 0.5rem;
    /* Reduce item padding (was 0.6rem 1rem) */
    min-width: 36px;
    /* Ensure touch target size */
    justify-content: center;
  }

  .nav-icon {
    font-size: 1.1rem;
    /* Slightly smaller icons */
  }

  .nav-list a.active {
    padding: 0.5rem 0.8rem;
    /* Compact active state */
  }

  .nav-list a.active .nav-text {
    font-size: 0.85rem;
    /* Slightly smaller text */
    max-width: 120px;
    /* Ensure it fits but is constrained */
  }
}