/* kkaicup rebuild styles.css */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  /* Color Palette - Premium Espresso & Crema & Brand Yellow */
  --bg-coffee: #0c0908;
  --bg-coffee-light: #16110f;
  --bg-card: rgba(32, 24, 21, 0.65);
  
  /* Brand Yellow Theme (Secondary Accent) */
  --accent-yellow: #fedc38;
  --accent-yellow-dark: #cca000;
  
  --accent-gold: var(--accent-yellow);
  --accent-gold-dark: var(--accent-yellow-dark);
  --color-primary: var(--accent-yellow);
  
  --border-color: rgba(254, 220, 56, 0.15);
  --border-glow: rgba(254, 220, 56, 0.3);
  --accent-cream: #f6eee5;
  --text-light: #f7f4f2;
  --text-muted: #b3a59e;
  
  /* Fonts */
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-heading: 'Outfit', sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  
  /* Layout */
  --header-height: 80px;
  --container-width: 1200px;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base resets & animations */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scrollbar-width: thin;
  scrollbar-color: var(--accent-gold) var(--bg-coffee);
}

body { overflow-x: hidden; /* Prevent horizontal scroll */
  font-family: var(--font-sans);
  background-color: var(--bg-coffee);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Backlighting Radial Glows */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: 
    radial-gradient(circle at 10% 20%, rgba(254, 220, 56, 0.05), transparent 45%),
    radial-gradient(circle at 90% 80%, rgba(182, 135, 76, 0.04), transparent 45%);
  z-index: -1;
  pointer-events: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

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

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

/* Glassmorphic Navigation Bar */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: rgba(12, 9, 8, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: var(--transition-smooth);
}

header.scrolled {
  height: 70px;
  background: rgba(12, 9, 8, 0.9);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: none !important;
}

.logo img {
  height: 48px;
  width: auto;
  border-radius: 50%;
  border: 1px solid var(--accent-gold);
  object-fit: cover;
}

.logo-text {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-light);
}

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

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

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  align-items: center;
}

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

.nav-links a {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  color: var(--text-muted);
  text-transform: uppercase;
  padding: 0.55rem 0.75rem;
  position: relative;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              text-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
}

/* Glassmorphic Capsule Backdrop */
.nav-links a::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 8px;
  background: rgba(254, 220, 56, 0);
  border: 1px solid rgba(254, 220, 56, 0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  transform: scale(0.9);
  opacity: 0;
  z-index: -1;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Glowing center-out underline */
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 10%;
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-gold) 20%, var(--accent-gold) 80%, transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 8px var(--accent-gold);
}

.nav-links a:hover {
  color: #fff;
  transform: translateY(-1px) scale(1.02);
  text-shadow: 0 0 8px rgba(254, 220, 56, 0.3);
}

.nav-links a:hover::before {
  background: rgba(254, 220, 56, 0.05);
  border: 1px solid rgba(254, 220, 56, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transform: scale(1);
  opacity: 1;
}

.nav-links a.active {
  color: var(--accent-gold);
  text-shadow: 0 0 10px rgba(254, 220, 56, 0.2);
}

.nav-links a.active::before {
  background: rgba(254, 220, 56, 0.04);
  border: 1px solid rgba(254, 220, 56, 0.08);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transform: scale(1);
  opacity: 1;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.cta-button {
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
  color: #0c0908;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(254, 220, 56, 0.25);
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(254, 220, 56, 0.45);
  filter: brightness(1.1);
}

/* Hamburger button */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1010;
}

.hamburger span {
  width: 100%;
  height: 2px;
  background-color: var(--text-light);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

/* Apple-Style Scroll Animation Hero Section */
.hero-scroll-wrapper {
  position: relative;
  height: 110vh; /* Scroll path — tightened to remove vacant gap */
  background-color: var(--bg-coffee);
  overflow-x: hidden;
}

.hero-sticky-container {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(254, 220, 56, 0.15) 0%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
  z-index: 1;
}

/* Animating typography */
.hero-title-container {
  position: absolute;
  top: 12vh;
  z-index: 5;
  text-align: center;
  padding: 0 1rem;
  max-width: 900px;
  pointer-events: none;
  transform: translate3d(0, 0, 0);
}

.badge-premium {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: rgba(254, 220, 56, 0.08);
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 15px rgba(254, 220, 56, 0.1);
}

.hero-title-container h1 {
  font-size: clamp(2.5rem, 6vw, 4.8rem);
  line-height: 1.1;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.hero-title-container h1 span {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--accent-yellow);
}

.hero-title-container p {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* 3D Canvas and Volumetric Atmosphere */
#hero-3d-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  mix-blend-mode: lighten;
}

.hero-smoke-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 60%, rgba(12, 9, 8, 0.95) 100%);
  z-index: 1;
  pointer-events: none;
}

/* Premium Storytelling Callouts */
.hero-callout {
  position: absolute;
  z-index: 6;
  pointer-events: none;
  opacity: 0;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s ease;
  width: 300px;
}

.left-callout {
  left: 5%;
  transform: translateX(-50px) translateY(-50%);
  top: 55%;
}

.right-callout {
  right: 5%;
  transform: translateX(50px) translateY(-50%);
  top: 55%;
}

.callout-inner {
  background: rgba(18, 14, 13, 0.75);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2.2rem 2rem;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  position: relative;
}

.callout-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background: radial-gradient(circle at 50% 0%, rgba(254, 220, 56, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.callout-num {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--accent-gold);
  letter-spacing: 3px;
  display: block;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.callout-inner h3 {
  color: var(--text-light);
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.callout-inner p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.7;
  margin: 0;
}

.hero-callout.active {
  opacity: 1;
  transform: translateX(0) translateY(-50%);
}

@media (max-width: 1024px) {
  .left-callout {
    left: 4%;
    width: 280px;
  }
  .right-callout {
    right: 4%;
    width: 280px;
  }
}

@media (max-width: 768px) {
  /* Hero section mobile: vertical flow layout with proper spacing */
  .hero-scroll-wrapper {
    height: auto !important;
    background-color: var(--bg-coffee);
    overflow-x: hidden;
  }
  
  .hero-sticky-container {
    position: relative;
    height: auto !important;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 90px 1.25rem 1rem;
  }

  .hero-bg-glow {
    display: none;
  }
  
  .hero-smoke-overlay {
    display: none;
  }
  
  .hero-title-container {
    position: relative;
    z-index: 2;
    pointer-events: auto;
    opacity: 1 !important;
    transform: none !important;
    text-align: center;
    padding: 0 0.5rem;
    margin-bottom: 1rem;
    width: 100%;
    order: 1;
  }

  .hero-title-container h1 {
    font-size: 2rem;
    line-height: 1.2;
  }

  .hero-title-container p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-top: 0.75rem;
  }

  .hero-title-container .cta-button {
    margin-top: 1.25rem !important;
    font-size: 0.9rem;
  }

  #hero-3d-canvas {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: 100% !important;
    height: 80vw !important; /* Shorter aspect ratio to delete vacant mobile space */
    max-height: 320px !important;
    z-index: 1;
    display: block;
    margin: 0.5rem auto 1rem;
    mix-blend-mode: lighten;
    order: 2;
  }
  
  .hero-callout {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    transform: none !important;
    opacity: 1 !important;
    width: 100% !important;
    max-width: 100%;
    margin: 0.5rem 0;
    pointer-events: auto;
    z-index: 2;
    order: 3;
  }

  .hero-callout .callout-inner {
    padding: 1rem 1.25rem;
  }

  .hero-callout h3 {
    font-size: 1rem;
  }

  .hero-callout p {
    font-size: 0.85rem;
  }
  
  .hero-split-products {
    position: relative !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding: 0;
    width: 100%;
    pointer-events: auto !important;
    z-index: 2;
    margin-top: 1.5rem;
    opacity: 1 !important;
    transform: none !important;
    order: 4;
  }
  
  .mini-product-card {
    width: 100% !important;
    max-width: none !important;
    background: rgba(32, 24, 21, 0.4);
    border: 1px solid rgba(254, 220, 56, 0.15);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(4px);
    transition: transform 0.3s ease, border-color 0.3s ease;
  }

  .mini-product-card:active,
  .mini-product-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
    box-shadow: 0 10px 20px rgba(254, 220, 56, 0.1);
  }
}

/* Secondary product elements emerging (Apple style) */
.hero-split-products {
  position: absolute;
  bottom: 8%;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 3rem;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 100px, 0);
  max-width: 1000px;
  padding: 0 2rem;
}

.mini-product-card {
  flex: 1;
  max-width: 180px;
  text-align: center;
  transition: transform 0.4s ease;
  cursor: pointer;
}

.mini-product-card:hover {
  transform: none; /* Handled on the packet image inside */
}

@keyframes floatPacket {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.split-packet-img {
  width: 100%;
  max-width: 160px;
  height: auto;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.6));
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), filter 0.45s ease;
  animation: floatPacket 4s ease-in-out infinite;
  will-change: transform;
}

.mini-product-card:nth-child(1) .split-packet-img { animation-delay: 0s; }
.mini-product-card:nth-child(2) .split-packet-img { animation-delay: 0.7s; }
.mini-product-card:nth-child(3) .split-packet-img { animation-delay: 1.4s; }
.mini-product-card:nth-child(4) .split-packet-img { animation-delay: 2.1s; }

.mini-product-card:hover .split-packet-img {
  transform: translateY(-15px) scale(1.08) rotate(3deg) !important;
  filter: drop-shadow(0 25px 45px rgba(0, 0, 0, 0.8)) !important;
  animation-play-state: paused;
}


/* Sections Global Styling */
section {
  padding: 8rem 0;
  position: relative;
}

.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 5rem auto;
}

.section-subtitle {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent-gold);
  font-weight: 700;
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  font-size: 2.8rem;
  color: var(--text-light);
  line-height: 1.2;
}

.section-title span {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--accent-gold);
}

/* Stats Section */
.stats-section {
  background: var(--bg-coffee-light);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 5rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  text-align: center;
}

.stat-item {
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -1.5rem;
  top: 15%;
  height: 70%;
  width: 1px;
  background-color: var(--border-color);
}

.stat-num {
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 800;
  color: var(--accent-gold);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-label {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.stat-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  max-width: 250px;
  margin: 0 auto;
}

/* Split-layout Sections (About / Story previews) */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.split-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(254, 220, 56, 0.2);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.split-image {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.split-image-wrapper:hover {
  transform: translateY(-8px);
  box-shadow: 0 35px 70px rgba(254, 220, 56, 0.25);
  border-color: rgba(254, 220, 56, 0.5);
}

.split-image-wrapper:hover .split-image {
  transform: scale(1.05);
}

.split-content h2 {
  font-size: 2.4rem;
  margin-bottom: 1.5rem;
}

.split-content h2 span {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--accent-gold);
}

.split-content p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.split-content blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--accent-gold);
  padding-left: 1.5rem;
  border-left: 3px solid var(--accent-gold);
  margin: 2rem 0;
}

.split-features {
  list-style: none;
  margin: 2rem 0;
}

.split-features li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.85rem;
  color: var(--text-light);
  font-weight: 500;
}

.split-features li svg {
  color: var(--accent-gold);
  flex-shrink: 0;
}

/* Feature Cards / Grid (Discover more) */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  transition: var(--transition-smooth);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-gold);
  box-shadow: 0 15px 30px rgba(254, 220, 56, 0.1);
}

.feature-icon-box {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(254, 220, 56, 0.08);
  border: 1px solid var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem auto;
  color: var(--accent-gold);
  transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon-box {
  background: var(--accent-gold);
  color: #0c0908;
}

.feature-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Why Choose Us Grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2.5rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: var(--transition-smooth);
}

.why-card:hover {
  border-color: var(--accent-gold);
  transform: translateY(-3px);
}

.why-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(254, 220, 56, 0.08);
  border: 1px solid var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  flex-shrink: 0;
}

.why-info h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.why-info p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Products Section & Main Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: var(--transition-smooth);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-gold);
  box-shadow: 0 20px 45px rgba(254, 220, 56, 0.12);
}

.product-image-container {
  position: relative;
  width: 100%;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.product-image {
  max-width: 100%;
  max-height: 180px;
  object-fit: contain;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.5));
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
}

.product-card:hover .product-image {
  transform: scale(1.08) translateY(-5px) rotate(2deg);
  filter: drop-shadow(0 20px 35px rgba(254, 220, 56, 0.25));
}

/* High-end visual fallback for product image */
.product-visual-bag {
  width: 110px;
  height: 180px;
  background: linear-gradient(135deg, #1a1412, #0d0a09);
  border: 1px solid rgba(254, 220, 56, 0.4);
  border-radius: 8px 8px 16px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
  position: relative;
  transition: var(--transition-smooth);
}

.product-card:hover .product-visual-bag {
  transform: scale(1.05) rotate(2deg);
  border-color: var(--accent-gold);
  box-shadow: 0 20px 35px rgba(254, 220, 56, 0.2);
}

.product-visual-bag::after {
  content: '';
  position: absolute;
  top: 0;
  width: 100%;
  height: 25px;
  background: rgba(254, 220, 56, 0.1);
  border-bottom: 1px dashed rgba(254, 220, 56, 0.3);
}

.product-visual-logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--accent-gold);
  margin-bottom: 0.5rem;
}

.product-visual-badge {
  font-size: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  background: rgba(254, 220, 56, 0.15);
  color: var(--accent-gold);
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
}

.product-card h3 {
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

.product-tagline {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-gold);
  font-weight: 700;
  margin-bottom: 1rem;
}

.product-weight {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-light);
  background: rgba(254, 220, 56, 0.1);
  border: 1px solid rgba(254, 220, 56, 0.2);
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.product-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1.5rem;
  height: 65px;
  overflow: hidden;
}

.product-footer {
  margin-top: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.product-price-row {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1.25rem;
}

.product-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-light);
}

.product-order-btn {
  background: transparent;
  color: var(--color-primary);
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.7rem 1.4rem;
  border-radius: 30px;
  border: 1.5px solid var(--color-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: auto;
  height: auto;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.product-order-btn:hover {
  transform: translateY(-3px);
  background: var(--color-primary);
  color: #0c0908;
  box-shadow: 0 8px 25px rgba(254, 220, 56, 0.3);
}

.product-buy-now-btn {
  background: linear-gradient(135deg, var(--accent-yellow) 0%, #ff8c00 100%);
  color: #0c0908;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 15px rgba(254, 220, 56, 0.25);
  border: none;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.product-buy-now-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.35) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  transition: 0.75s;
  opacity: 0;
  pointer-events: none;
}

.product-buy-now-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(254, 220, 56, 0.45), 0 4px 12px rgba(255, 140, 0, 0.35);
  filter: brightness(1.05);
}

.product-buy-now-btn:hover::after {
  left: 125%;
  opacity: 1;
}

.product-buy-now-btn:active {
  transform: translateY(-1px);
}

/* Inner Page Hero (Standard banner) */
.inner-page-hero {
  padding-top: calc(var(--header-height) + 4rem);
  padding-bottom: 5rem;
  background: linear-gradient(180deg, var(--bg-coffee-light) 0%, var(--bg-coffee) 100%);
  border-bottom: 1px solid var(--border-color);
  text-align: center;
}

.inner-page-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.inner-page-hero h1 span {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--accent-gold);
}

.breadcrumbs {
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 0.5rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
}

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

.breadcrumbs li:not(:last-child)::after {
  content: '/';
  margin-left: 0.5rem;
  color: var(--border-color);
}

.breadcrumbs li.active {
  color: var(--accent-gold);
}

/* Crew section */
.crew-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.crew-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 3rem 2rem;
  text-align: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: var(--transition-smooth);
}

.crew-card:hover {
  border-color: var(--accent-gold);
  transform: translateY(-5px);
}

.crew-avatar-wrapper {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 2px solid var(--accent-gold);
  margin: 0 auto 2rem auto;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.crew-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.crew-card:hover .crew-avatar {
  transform: scale(1.1);
}

.crew-role {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-gold);
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: block;
}

.crew-card h3 {
  font-size: 1.5rem;
  color: var(--text-light);
}

/* Brewing Guide Page / Section */
.brew-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

.brew-step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  text-align: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.brew-step-num {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--accent-gold);
  color: #0c0908;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  margin: 0 auto 1.5rem auto;
}

.brew-step-card h4 {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
  color: var(--text-light);
}

.brew-step-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* FAQ / Accordion Styling (Products Page) */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  margin-bottom: 1.25rem;
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: var(--transition-smooth);
}

.faq-question {
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text-light);
}

.faq-toggle-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  transition: transform 0.3s ease;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0 2rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-item.active {
  border-color: var(--accent-gold);
}

.faq-item.active .faq-answer {
  padding-bottom: 1.5rem;
}

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

/* Contact Us Section / Form */
.contact-section-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 4rem;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(254, 220, 56, 0.08);
  border: 1px solid var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  flex-shrink: 0;
}

.contact-info-details h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-gold);
  margin-bottom: 0.25rem;
}

.contact-info-details p,
.contact-info-details a {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-light);
}

.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 3rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-control-group {
  margin-bottom: 1.5rem;
}

.form-control-group label {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.form-input, .form-textarea {
  width: 100%;
  background: rgba(12, 9, 8, 0.6);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1rem;
  color: var(--text-light);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 15px rgba(254, 220, 56, 0.1);
}

.submit-btn {
  width: 100%;
  padding: 1.1rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
}

/* Instagram & Footer Styling */
.insta-feed-section {
  padding: 5rem 0;
  background: var(--bg-coffee-light);
  border-top: 1px solid var(--border-color);
}
.insta-feed-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

.insta-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(12, 9, 8, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  color: var(--accent-gold);
  z-index: 3;
}

.insta-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(6, 4, 4, 0.95) 0%, rgba(6, 4, 4, 0.6) 70%, transparent 100%);
  padding: 1.5rem 1rem 1rem 1rem;
  z-index: 2;
  transition: transform 0.4s ease, opacity 0.4s ease;
  pointer-events: none;
}

.insta-caption h4 {
  font-family: 'Outfit', sans-serif;
  color: var(--color-primary);
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0 0 2px 0;
  line-height: 1.2;
}

.insta-caption p {
  color: #fff;
  font-size: 0.75rem;
  margin: 0;
  opacity: 0.85;
  line-height: 1.2;
}

.insta-item:hover .insta-caption {
  transform: translateY(5px);
  opacity: 0.5;
}
.insta-item:hover img {
  transform: scale(1.08);
}

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

footer {
  background: #060404;
  border-top: 1px solid var(--border-color);
  padding: 6rem 0 2rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand p {
  color: var(--text-muted);
  margin-top: 1.5rem;
  max-width: 320px;
  font-size: 0.95rem;
}

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

.social-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition-smooth);
}

.social-icon-btn:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  background: rgba(254, 220, 56, 0.05);
}

.footer-col h5 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-gold);
  margin-bottom: 1.75rem;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-links-list a {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.footer-links-list a:hover {
  color: var(--accent-gold);
  padding-left: 5px;
}

.footer-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.footer-info-list li {
  display: flex;
  gap: 0.75rem;
  line-height: 1.4;
}

.footer-info-list svg {
  color: var(--accent-gold);
  flex-shrink: 0;
  margin-top: 3px;
}

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

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

.footer-bottom-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  font-size: 0.9rem;
  color: var(--text-muted);
}

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

/* Floating Contact Widget for Mobile Devices */
.floating-contact-widget {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  right: 25px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
}

.floating-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  transition: var(--transition-smooth);
}

.floating-btn:hover {
  transform: scale(1.1) translateY(-3px);
}

.floating-btn-whatsapp {
  background-color: #25d366;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.floating-btn-phone {
  background-color: var(--accent-gold);
  color: #0c0908;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Product Details Grid */
.product-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}

.detail-card {
  background: rgba(18, 14, 12, 0.4);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  backdrop-filter: blur(10px);
}

.detail-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-primary);
  box-shadow: 0 15px 40px rgba(254, 220, 56, 0.15);
}
.detail-image-box {
  width: 100%;
  height: 300px;
  overflow: hidden;
  position: relative;
  background: rgba(12, 9, 8, 0.25);
  border-bottom: 1px solid var(--border-color);
}

.detail-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.detail-card:hover .detail-image-box img {
  transform: scale(1.06);
}

.detail-info {
  padding: 2rem;
}

.detail-info h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.detail-info p {
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 0.95rem;
  margin: 0;
}

/* Brewing Split Layout */
.brew-split-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3.5rem;
}

.brew-image-side {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border-color);
  transition: transform 0.5s ease, box-shadow 0.5s ease, border-color 0.5s ease;
}

.brew-image-side:hover {
  transform: translateY(-5px);
  border-color: var(--color-primary);
  box-shadow: 0 25px 60px rgba(254, 220, 56, 0.2);
}

.brew-infographic {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.brew-image-side:hover .brew-infographic {
  transform: scale(1.03);
}

.brew-steps-side {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.brew-step-item {
  display: flex;
  gap: 1.5rem;
  background: rgba(18, 14, 12, 0.3);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 1.5rem;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.brew-step-item:hover {
  transform: translateX(10px);
  border-color: var(--color-primary);
  background: rgba(254, 220, 56, 0.05);
}

.brew-step-num {
  width: 44px;
  height: 44px;
  background: var(--color-primary);
  color: var(--bg-coffee);
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(254, 220, 56, 0.3);
}

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

.brew-step-content h4 {
  font-family: 'Outfit', sans-serif;
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.brew-step-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Media Queries */
@media (max-width: 1200px) {
  .product-grid {
    gap: 1.25rem;
  }
  .product-card {
    padding: 1.5rem 1.1rem !important;
  }
  .product-order-btn {
    padding: 0.6rem 1rem !important;
    font-size: 0.8rem !important;
  }
  /* Navbar adjustments for smaller laptop screens */
  .nav-menu {
    gap: 1.5rem;
  }
  .nav-links {
    gap: 1rem;
  }
  .nav-links a {
    padding: 0.5rem 0.6rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .crew-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .brew-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  /* Header mobile adjustments */
  .hamburger {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: 100%;
    width: 100vw;
    height: calc(100vh - var(--header-height));
    background: #0c0908; /* fully opaque to prevent background bleed-through */
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    flex-direction: column;
    padding: 2rem 1.5rem;   /* reduced padding for tighter mobile layout */
    gap: 1.5rem;           /* smaller gap between items */
    transition: var(--transition-smooth);
    overflow-y: auto;
    border-top: 1px solid var(--border-color);
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-links {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;   /* tighter spacing between navigation links */
    width: 100%;
  }
  
  .nav-links a {
    font-size: 1.25rem;
  }
  
  .nav-menu .cta-button {
    width: 100%;
    max-width: 250px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  /* Hero scroll presentation — desktop-style on mobile */
  .hero-scroll-wrapper {
    height: 250vh;
    background-color: var(--bg-coffee);
  }
  
  /* Hero styles are handled in the first mobile media query block */
  
  /* Grid layouts to single column */
  .split-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  /* Mobile padding adjustments to prevent text touching borders */
  .product-card,
  .feature-card,
  .guide-card,
  .guide-footer-box,
  .stat-item,
  .why-card {
    padding: 1.5rem 1.2rem !important;
  }

  .why-card {
    flex-direction: column !important;
    gap: 1rem !important;
    text-align: center !important;
    align-items: center !important;
  }
  
  .split-image-wrapper {
    order: -1; /* image always on top in mobile */
  }
  
  .split-image {
    height: 300px;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .stat-item::after {
    display: none;
  }
  
  .why-grid {
    grid-template-columns: 1fr;
  }
  
  .brew-split-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .product-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 0 auto;
  }
  
  .contact-section-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .contact-info-panel {
    gap: 1rem;
  }

  .contact-info-card {
    padding: 1.25rem 1rem;
    gap: 1rem;
    border-radius: 14px;
  }

  .contact-info-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
  }

  .contact-info-details h4 {
    font-size: 0.75rem;
    margin-bottom: 0.15rem;
  }

  .contact-info-details p,
  .contact-info-details a {
    font-size: 0.95rem;
  }
  
  .contact-form-card {
    padding: 1.75rem 1.25rem;
    border-radius: 18px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 0;
  }

  .form-control-group {
    margin-bottom: 1.1rem;
  }

  .form-input, .form-textarea {
    padding: 0.85rem 0.9rem;
    font-size: 0.9rem;
  }

  .submit-btn {
    padding: 1rem;
    font-size: 0.95rem;
  }
  
  .insta-feed-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-bottom-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
  }

  /* Move floating widget to left on tablets/phones to avoid overlapping form */
  .floating-contact-widget {
    top: auto;
    bottom: 80px;
    right: auto;
    left: 15px;
    transform: none;
  }

  /* Inner page banners (contact, about, crew, etc.) */
  .inner-page-hero {
    padding-top: calc(var(--header-height) + 2rem);
    padding-bottom: 3rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .inner-page-hero h1 {
    font-size: 2.2rem;
  }

  /* Section spacing on mobile */
  section {
    padding: 4rem 0;
  }

  .section-head {
    margin-bottom: 3rem;
  }

  .section-title {
    font-size: 1.8rem !important;
  }

  /* Contact heading on mobile */
  .contact-info-panel .section-head h2 {
    font-size: 1.6rem !important;
  }

  .contact-info-panel .section-head p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .logo-text {
    font-size: 1.1rem;
  }
  
  .logo img {
    height: 38px;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .insta-feed-grid {
    grid-template-columns: 1fr;
  }
  
  .floating-contact-widget {
    /* Move widget to left side on mobile to avoid overlapping form inputs */
    top: auto;
    bottom: 80px;
    right: auto;
    left: 15px;
    transform: none;
    gap: 10px;
  }
  
  .floating-btn {
    width: 48px;
    height: 48px;
  }

  .floating-cart-btn {
    bottom: 15px;
    right: 15px;
    width: 48px;
    height: 48px;
  }
}

/* ==========================================================================
   Premium Apple & E-Commerce Visual Extensions
   ========================================================================== */

/* 1. Sleek Scroll Progress Bar */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(to right, var(--color-primary, #fedc38) 0%, #fff4c2 50%, var(--color-primary, #fedc38) 100%);
  background-size: 200% auto;
  width: 0%;
  z-index: 99999;
  transition: width 0.1s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 12px rgba(254, 220, 56, 0.45);
  animation: glowShimmer 4s linear infinite;
}

@keyframes glowShimmer {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* 2. Apple-style Springy Scroll Reveals */
.scroll-reveal {
  opacity: 0;
  transform: translateY(40px) scale(0.96);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.scroll-reveal.revealed {
  opacity: 1 !important;
  transform: translateY(0) scale(1) !important;
}

/* 3. Transactional WhatsApp Checkout Loading / Checkmark Animations */
.product-order-btn, 
.cta-button {
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Loading state */
.product-order-btn.btn-loading, 
.cta-button.btn-loading {
  background: #181210 !important;
  border-color: var(--accent-gold, #fedc38) !important;
  color: transparent !important;
  box-shadow: none !important;
  cursor: wait;
}

.product-order-btn.btn-loading::after, 
.cta-button.btn-loading::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  top: calc(50% - 10px);
  left: calc(50% - 10px);
  border: 2.5px solid transparent;
  border-top-color: var(--accent-gold, #fedc38);
  border-radius: 50%;
  animation: loadingSpinner 0.6s linear infinite;
  z-index: 10;
}

/* Success state */
.product-order-btn.btn-success, 
.cta-button.btn-success {
  background: var(--accent-gold, #fedc38) !important;
  border-color: var(--accent-gold, #fedc38) !important;
  color: #0c0908 !important;
  font-weight: 700 !important;
  box-shadow: 0 0 25px rgba(254, 220, 56, 0.4) !important;
}

.product-order-btn.btn-success::after, 
.cta-button.btn-success::after {
  content: '✓';
  position: absolute;
  font-family: inherit;
  font-weight: 900;
  font-size: 1.25rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.1);
  color: #0c0908;
  animation: popCheckmark 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
  z-index: 10;
}

/* If in success, hide text */
.product-order-btn.btn-success span, 
.cta-button.btn-success span,
.product-order-btn.btn-success svg, 
.cta-button.btn-success svg {
  opacity: 0 !important;
  visibility: hidden !important;
}

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

@keyframes popCheckmark {
  from { transform: translate(-50%, -50%) scale(0.5); opacity: 0; }
  to { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
}

/* 4. Luxury Button Hover Glows */
.product-order-btn:hover, 
.cta-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(254, 220, 56, 0.25);
  border-color: var(--accent-gold, #fedc38);
}

/* 5. Sleek Stats Dynamic Counters styling */
.stat-num {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-block;
  will-change: transform;
}

.stat-item:hover .stat-num {
  transform: scale(1.08) translateY(-3px);
  color: #fff;
  text-shadow: 0 0 15px rgba(254, 220, 56, 0.35);
}

/* 6. Express Checkout Modal ("Buy Now" Flow) */
.checkout-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(8, 6, 5, 0.7);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 3000;
  display: grid;
  place-items: center;
  overflow-y: auto;
  padding: 2rem 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.checkout-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.checkout-modal-card {
  background: linear-gradient(135deg, rgba(22, 17, 15, 0.96), rgba(12, 9, 8, 0.99));
  border: 1px solid rgba(254, 220, 56, 0.2);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.85), 0 0 35px rgba(254, 220, 56, 0.05);
  width: 100%;
  max-width: 500px;
  border-radius: 24px;
  padding: 2.5rem;
  position: relative;
  margin: auto;
  transform: scale(0.9) translateY(40px);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.checkout-modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-light);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
  z-index: 10;
}

.checkout-modal-close:hover {
  background: rgba(254, 220, 56, 0.15);
  border-color: var(--accent-gold);
  color: #fff;
  transform: rotate(90deg);
}

.checkout-product-summary {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(254, 220, 56, 0.1);
  padding-bottom: 1.2rem;
}

.checkout-product-img {
  width: 60px;
  height: 75px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.01);
  border-radius: 8px;
  border: 1px solid rgba(254, 220, 56, 0.1);
  padding: 0.2rem;
}

.checkout-product-details {
  flex: 1;
}

.checkout-product-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0.15rem;
}

.checkout-product-tagline {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: block;
  margin-bottom: 0.25rem;
}

.checkout-product-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-gold);
}

.checkout-qty-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.4rem;
  background: rgba(255, 255, 255, 0.02);
  padding: 0.7rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.checkout-qty-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light);
}

.checkout-qty-controls {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.qty-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(254, 220, 56, 0.3);
  background: rgba(254, 220, 56, 0.04);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  transition: var(--transition-smooth);
  user-select: none;
}

.qty-btn:hover {
  background: var(--accent-gold);
  color: #0c0908;
}

.qty-val {
  font-size: 1.05rem;
  font-weight: 700;
  min-width: 22px;
  text-align: center;
  color: #fff;
}

.checkout-subtotal {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--accent-gold);
}

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

.checkout-field {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.checkout-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.6);
}

.checkout-input, 
.checkout-textarea {
  background: rgba(12, 9, 8, 0.6);
  border: 1px solid rgba(254, 220, 56, 0.2);
  border-radius: 12px;
  padding: 0.85rem 1.1rem;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
  outline: none;
}

.checkout-input::placeholder,
.checkout-textarea::placeholder {
  color: rgba(179, 165, 158, 0.45);
}

.checkout-input:focus, 
.checkout-textarea:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 10px rgba(254, 220, 56, 0.12);
  background: rgba(12, 9, 8, 0.75);
}

.checkout-textarea {
  resize: none;
  height: 75px;
}

.checkout-submit-btn {
  margin-top: 1rem;
  background: var(--accent-gold);
  color: #0c0908;
  border: 2px solid var(--accent-gold);
  padding: 1.1rem 1.5rem;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 6px 20px rgba(254, 220, 56, 0.25);
  position: relative;
  overflow: hidden;
}

.checkout-submit-btn:hover {
  background: transparent;
  color: var(--accent-gold);
  box-shadow: 0 8px 25px rgba(254, 220, 56, 0.35);
  transform: translateY(-2px);
}

.checkout-submit-btn.btn-loading {
  background: #181210 !important;
  border-color: var(--accent-gold) !important;
  color: transparent !important;
  box-shadow: none !important;
  cursor: wait;
}

.checkout-submit-btn.btn-loading::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  top: calc(50% - 10px);
  left: calc(50% - 10px);
  border: 2.5px solid transparent;
  border-top-color: var(--accent-gold);
  border-radius: 50%;
  animation: loadingSpinner 0.6s linear infinite;
  z-index: 10;
}

.checkout-submit-btn.btn-success {
  background: var(--accent-gold) !important;
  border-color: var(--accent-gold) !important;
  color: #0c0908 !important;
  font-weight: 700 !important;
  box-shadow: 0 0 25px rgba(254, 220, 56, 0.4) !important;
}

.checkout-submit-btn.btn-success::after {
  content: '✓';
  position: absolute;
  font-family: inherit;
  font-weight: 900;
  font-size: 1.25rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.1);
  color: #0c0908;
  animation: popCheckmark 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
  z-index: 10;
}

.checkout-submit-btn.btn-success span,
.checkout-submit-btn.btn-success svg {
  opacity: 0 !important;
  visibility: hidden !important;
}

/* ── Floating Cart Button ── */
.floating-cart-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5), 0 0 15px rgba(254, 220, 56, 0.15);
  cursor: pointer;
  z-index: 1000;
  transition: var(--transition-smooth);
}

.floating-cart-btn:hover {
  transform: translateY(-5px);
  background: var(--accent-gold);
  color: #0c0908;
}

.cart-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #ff4757;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.5);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* ── Cart Modal Layout Adjustments ── */
.cart-items-container {
  max-height: 38vh;
  overflow-y: auto;
  margin-bottom: 2rem;
  padding-right: 0.75rem;
  padding-bottom: 1rem;
}

/* Custom Scrollbar for Cart */
.cart-items-container::-webkit-scrollbar {
  width: 8px;
}
.cart-items-container::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 10px;
}
.cart-items-container::-webkit-scrollbar-thumb {
  background: rgba(254, 220, 56, 0.4);
  border-radius: 10px;
}

.cart-item {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  margin-bottom: 1.6rem;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid rgba(254, 220, 56, 0.12);
}

.cart-item:last-child {
  border-bottom: none;
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
}

.cart-item-info {
  flex: 1;
}

.cart-item-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.25rem;
}

.cart-item-price {
  font-size: 0.9rem;
  color: var(--accent-gold);
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.02);
  padding: 0.3rem 0.5rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.cart-qty-btn {
  background: transparent;
  border: none;
  color: var(--accent-gold);
  cursor: pointer;
  font-size: 1.2rem;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-qty-val {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  min-width: 16px;
  text-align: center;
}

.cart-remove-btn {
  background: transparent;
  border: none;
  color: rgba(255, 71, 87, 0.8);
  cursor: pointer;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.3rem;
  transition: color 0.3s;
}

.cart-remove-btn:hover {
  color: #ff4757;
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2.2rem;
  padding-top: 1.25rem;
  padding-bottom: 0.5rem;
  border-top: 1px dashed rgba(254, 220, 56, 0.2);
}

.cart-total-val {
  color: var(--accent-gold);
}

@media (max-width: 480px) {
  .checkout-modal-card {
    padding: 1.5rem;
    border-radius: 20px;
  }
  .checkout-product-summary {
    gap: 0.9rem;
    margin-bottom: 1.2rem;
    padding-bottom: 1rem;
  }
  .checkout-product-img {
    width: 50px;
    height: 62px;
  }
  .checkout-product-title {
    font-size: 1.1rem;
  }
}

/* Hero Image Sequence Preloader */
.hero-preloader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-coffee);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 100;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s ease;
  pointer-events: none;
}

.hero-preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.preloader-spinner {
  width: 60px;
  height: 60px;
  border: 3px solid rgba(254, 220, 56, 0.1);
  border-top: 3px solid var(--accent-gold);
  border-radius: 50%;
  animation: preloaderSpin 1s linear infinite;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 15px rgba(254, 220, 56, 0.1);
}

.preloader-text {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.preloader-bar-bg {
  width: 200px;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  margin-top: 1rem;
  overflow: hidden;
}

.preloader-bar-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(to right, var(--accent-gold), #fff4c2);
  transition: width 0.1s ease;
  box-shadow: 0 0 10px rgba(254, 220, 56, 0.5);
}

@keyframes preloaderSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Guide Card Hover Animations */
.guide-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}


/* ============================================================
   KKAI CUP — ULTRA-PREMIUM APPLE-STYLE ANIMATION SYSTEM v3.0
   GPU-accelerated: transform + opacity only for buttery 60fps
   Cinematic hero reveals, spring physics, glassmorphic depth
   ============================================================ */

/* ── Will-change hints for animated elements ── */
.product-card,
.split-image-wrapper,
.mini-product-card,
.cta-button,
.product-order-btn,
.product-buy-now-btn,
.floating-btn,
.feature-card,
.insta-item,
header {
  will-change: transform;
}

/* ── Header: ultra-transparent glassmorphism, deepens on scroll ── */
header {
  background: rgba(12, 9, 8, 0.5) !important;
  backdrop-filter: blur(18px) saturate(165%) !important;
  -webkit-backdrop-filter: blur(18px) saturate(165%) !important;
  border-bottom: 1px solid rgba(254, 220, 56, 0.06) !important;
  transition: background 0.55s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.55s cubic-bezier(0.16,1,0.3,1),
              border-color 0.55s cubic-bezier(0.16,1,0.3,1),
              height 0.4s cubic-bezier(0.16,1,0.3,1) !important;
}

/* ── Badge Premium — soft glow pulse animation ── */
.badge-premium {
  animation: badgeGlowPulse 3s ease-in-out infinite;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.4s ease !important;
}

.badge-premium:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 0 25px rgba(254, 220, 56, 0.2);
}

@keyframes badgeGlowPulse {
  0%, 100% { box-shadow: 0 0 15px rgba(254, 220, 56, 0.08); }
  50%      { box-shadow: 0 0 25px rgba(254, 220, 56, 0.18), 0 0 50px rgba(254, 220, 56, 0.06); }
}

/* ── Hero Title Container — smooth entrance support ── */
.hero-title-container h1 {
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

.hero-title-container p {
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

/* ── Product Card — enhanced 3D tilt base ── */
.product-card {
  transform-style: preserve-3d;
  transition: box-shadow 0.55s cubic-bezier(0.16,1,0.3,1),
              border-color 0.45s ease !important;
  cursor: pointer;
}

.product-card:hover {
  border-color: rgba(254, 220, 56, 0.35) !important;
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.45),
    0 0 35px rgba(254, 220, 56, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.03) !important;
}

/* ── Product image — smooth scale on card hover ── */
.product-image {
  transition: transform 0.65s cubic-bezier(0.16,1,0.3,1),
              filter 0.65s cubic-bezier(0.16,1,0.3,1) !important;
  backface-visibility: hidden;
}

.product-card:hover .product-image {
  transform: scale(1.06) translateY(-5px) !important;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.45)) !important;
}

/* ── CTA Button — premium sweep light + glow lift ── */
.cta-button {
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.4s cubic-bezier(0.16,1,0.3,1),
              filter 0.4s ease !important;
}

/* Sweeping light effect */
.cta-button::after {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.25) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  transition: left 0.6s cubic-bezier(0.16,1,0.3,1);
  border-radius: inherit;
  pointer-events: none;
}

.cta-button:hover {
  transform: translateY(-3px) scale(1.02) !important;
  box-shadow:
    0 8px 30px rgba(254, 220, 56, 0.45),
    0 2px 8px rgba(0, 0, 0, 0.25),
    0 0 50px rgba(254, 220, 56, 0.12) !important;
  filter: brightness(1.08);
}

.cta-button:hover::after {
  left: 125%;
}

.cta-button:active {
  transform: translateY(-1px) scale(1.0) !important;
}

/* ── Order Button — enhanced hover with glow ── */
.product-order-btn {
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.4s cubic-bezier(0.16,1,0.3,1),
              background 0.35s ease,
              color 0.35s ease !important;
}

.product-order-btn:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 25px rgba(254, 220, 56, 0.3), 0 0 20px rgba(254, 220, 56, 0.08) !important;
}

.product-buy-now-btn {
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.4s cubic-bezier(0.16,1,0.3,1),
              filter 0.35s ease !important;
}

.product-buy-now-btn:hover {
  transform: translateY(-3px) !important;
  box-shadow:
    0 8px 25px rgba(254, 220, 56, 0.4),
    0 4px 12px rgba(255, 140, 0, 0.3),
    0 0 40px rgba(254, 220, 56, 0.08) !important;
}

/* ── Split Image Wrapper — cinema-grade hover glow ── */
.split-image-wrapper {
  transition: transform 0.7s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.7s cubic-bezier(0.16,1,0.3,1),
              border-color 0.5s ease !important;
}

.split-image-wrapper:hover {
  transform: translateY(-6px) !important;
  box-shadow:
    0 35px 70px rgba(0, 0, 0, 0.55),
    0 0 45px rgba(254, 220, 56, 0.06) !important;
  border-color: rgba(254, 220, 56, 0.35) !important;
}

.split-image {
  transition: transform 0.8s cubic-bezier(0.16,1,0.3,1) !important;
}

.split-image-wrapper:hover .split-image {
  transform: scale(1.04) !important;
}

/* ── Feature Cards — smooth lift + border glow ── */
.feature-card {
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1),
              border-color 0.45s ease,
              box-shadow 0.5s ease !important;
}

.feature-card:hover {
  transform: translateY(-10px) !important;
  border-color: rgba(254, 220, 56, 0.3) !important;
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.35),
    0 0 30px rgba(254, 220, 56, 0.05) !important;
}

.feature-icon-box {
  transition: background 0.45s cubic-bezier(0.16,1,0.3,1),
              color 0.45s ease,
              transform 0.45s cubic-bezier(0.34,1.56,0.64,1) !important;
}

.feature-card:hover .feature-icon-box {
  transform: scale(1.08) rotate(5deg);
}

/* ── Instagram grid items — zoom + depth ── */
.insta-item {
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.5s ease !important;
  overflow: hidden;
}

.insta-item:hover {
  transform: scale(1.04) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5) !important;
  z-index: 1;
}

.insta-item img {
  transition: transform 0.7s cubic-bezier(0.16,1,0.3,1) !important;
}

.insta-item:hover img {
  transform: scale(1.08) !important;
}

/* ── Floating contact buttons — soft breathing pulse ── */
.floating-btn {
  animation: floatingPulse 3s ease-in-out infinite;
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.35s ease !important;
}

.floating-btn:nth-child(2) {
  animation-delay: 1.5s;
}

@keyframes floatingPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(0,0,0,0.3), 0 0 0 0 rgba(254,220,56,0.2); }
  50%      { box-shadow: 0 8px 30px rgba(0,0,0,0.4), 0 0 0 12px rgba(254,220,56,0); }
}

/* ── Mini product cards in hero — hover lift ── */
.mini-product-card {
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1),
              filter 0.5s ease !important;
  cursor: pointer;
}

.mini-product-card:hover {
  filter: drop-shadow(0 20px 35px rgba(254,220,56,0.2)) !important;
}

.split-packet-img {
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1),
              filter 0.5s ease !important;
}

.mini-product-card:hover .split-packet-img {
  transform: translateY(-12px) scale(1.06) rotate(2deg) !important;
}

/* ── Nav links — silk-smooth underline + color shift ── */
.nav-links a {
  transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              text-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.nav-links a::after {
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* ── Stat items — hover lift ── */
.stat-item {
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1) !important;
}

.stat-item:hover {
  transform: translateY(-5px) !important;
}

/* ── Stat number — animated glow on counter complete ── */
.stat-num {
  transition: text-shadow 0.6s ease !important;
}

.stat-item:hover .stat-num {
  text-shadow: 0 0 20px rgba(254, 220, 56, 0.3);
}

/* ── Section blur entrance (JS-driven, CSS fallback) ── */
.section-blur-ready {
  opacity: 0;
  filter: blur(6px);
  transition: opacity 1.2s cubic-bezier(0.16,1,0.3,1),
              filter 1.2s cubic-bezier(0.16,1,0.3,1);
}

.section-blur-ready.blur-revealed {
  opacity: 1;
  filter: blur(0px);
}

/* ── Logo — subtle hover interaction ── */
.logo img {
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.4s ease !important;
}

.logo:hover img {
  transform: rotate(6deg) scale(1.05) !important;
  box-shadow: 0 0 18px rgba(254,220,56,0.35) !important;
}

/* ── Scroll progress bar — premium yellow glow ── */
.scroll-progress-bar {
  box-shadow: 0 0 12px rgba(254, 220, 56, 0.55) !important;
}

/* ── Page entrance overlay ── */
#page-entrance-overlay {
  transform-origin: top;
  will-change: opacity;
}

/* ── Why-card icon — playful spin on hover ── */
.why-icon {
  transition: transform 0.5s cubic-bezier(0.34,1.56,0.64,1),
              background 0.4s ease !important;
}

.why-card:hover .why-icon {
  transform: rotate(10deg) scale(1.1) !important;
  background: rgba(254, 220, 56, 0.15) !important;
}

/* ── Why-card — smooth lift ── */
.why-card {
  transition: transform 0.45s cubic-bezier(0.16,1,0.3,1),
              border-color 0.4s ease,
              box-shadow 0.45s ease !important;
}

.why-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 15px 40px rgba(0,0,0,0.3) !important;
}

/* ── Callout cards — entrance animation ── */
.callout-inner {
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1),
              background 0.4s ease !important;
}

.hero-callout.active .callout-inner {
  animation: calloutEntrance 0.9s cubic-bezier(0.16,1,0.3,1) forwards;
}

@keyframes calloutEntrance {
  from {
    opacity: 0;
    transform: translateY(25px) scale(0.94);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0px);
  }
}

/* ── Blockquote — left border glow ── */
blockquote {
  border-left: 3px solid var(--accent-gold);
  padding-left: 1.5rem;
  font-style: italic;
  color: var(--text-muted);
  transition: border-color 0.4s ease,
              color 0.4s ease,
              padding-left 0.4s ease !important;
}

blockquote:hover {
  border-color: var(--accent-gold);
  color: var(--text-light) !important;
  padding-left: 1.75rem;
}

/* ── Hero background glow — breathing animation ── */
.hero-bg-glow {
  animation: heroGlowBreathe 6s ease-in-out infinite;
}

@keyframes heroGlowBreathe {
  0%, 100% {
    opacity: 0.7;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.15);
  }
}

/* ── Hero smoke overlay — subtle drift ── */
.hero-smoke-overlay {
  animation: smokeDrift 8s ease-in-out infinite alternate;
}

@keyframes smokeDrift {
  0%   { opacity: 0.85; }
  100% { opacity: 1; }
}

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

  .hero-bg-glow,
  .hero-smoke-overlay,
  .badge-premium {
    animation: none !important;
  }
}

/* ── Mobile performance optimisations ── */
@media (max-width: 768px) {
  .product-card {
    transform-style: flat !important;
    perspective: none !important;
  }

  .split-image-wrapper {
    will-change: auto !important;
  }

  .floating-btn {
    animation-duration: 4s !important;
  }
}

/* ── Sleek Cart Toast Notification ── */
.cart-toast {
  position: fixed;
  bottom: 25px;
  left: 25px;
  background: rgba(22, 17, 15, 0.98);
  border: 1px solid var(--accent-gold);
  border-radius: 12px;
  padding: 0.9rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
  z-index: 9999;
  transform: translateY(100px) scale(0.9);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease;
  pointer-events: none;
}

.cart-toast.active {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}

.cart-toast-msg {
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
}

.cart-toast-btn {
  background: var(--accent-gold);
  color: #0c0908;
  border: none;
  border-radius: 6px;
  padding: 0.35rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.cart-toast-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(254, 220, 56, 0.25);
}

@media (max-width: 480px) {
  .cart-toast {
    left: 15px;
    right: 15px;
    bottom: 80px;
    padding: 0.8rem 1.1rem;
    justify-content: space-between;
  }
}

/* ── Checkout Success Screen ── */
.checkout-success-view {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem 0;
  animation: fadeInModal 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeInModal {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.success-icon-wrapper {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.1);
  border: 2px solid #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #25d366;
  margin-bottom: 1.5rem;
  animation: scaleUpIcon 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes scaleUpIcon {
  from { transform: scale(0); }
  to { transform: scale(1); }
}

.success-title {
  font-family: var(--font-heading);
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
}

.success-desc {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.5;
  margin-bottom: 1.8rem;
  max-width: 320px;
}

.success-redirect-btn {
  background: #25d366;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 0.9rem 1.8rem;
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.success-redirect-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.45);
}

.success-countdown {
  margin-top: 1.2rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Anti-Gravity Hero Effects */

/* Headline Levitation */
.hero-title-container h1 {
  animation: levitate 5s ease-in-out infinite;
}

@keyframes levitate {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* Floating Beans Container */
.floating-beans-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.float-bean {
  position: absolute;
  bottom: -50px;
  opacity: 0;
  animation-name: antiGravityBean;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  filter: drop-shadow(0 15px 25px rgba(0,0,0,0.8));
}

@keyframes antiGravityBean {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(-120vh) rotate(360deg);
    opacity: 0;
  }
}

/* Particle Steam Effect */
.particle-steam-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.steam-particle {
  position: absolute;
  bottom: -20px;
  width: 8px;
  height: 8px;
  background: radial-gradient(circle, rgba(254, 220, 56, 0.6) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  animation-name: steamRise;
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  animation-iteration-count: infinite;
  filter: blur(2px);
}

@keyframes steamRise {
  0% {
    transform: translateY(0) translateX(0) scale(1);
    opacity: 0;
  }
  20% {
    opacity: 0.4;
    transform: translateY(-20vh) translateX(20px) scale(1.5);
  }
  50% {
    opacity: 0.2;
    transform: translateY(-50vh) translateX(-20px) scale(2.5);
  }
  100% {
    transform: translateY(-100vh) translateX(30px) scale(4);
    opacity: 0;
  }
}

/* Desktop: remove vacant space between hero and stats */
@media (min-width: 769px) {
  .stats-section {
    padding-top: 2rem !important;
  }
}

/* ============================================
   MOBILE PADDING & ALIGNMENT FIXES (max-width: 768px)
   ============================================ */
@media (max-width: 768px) {

  /* Container horizontal padding — prevents text touching screen edges */
  .container {
    padding: 0 24px !important;
  }

  /* All sections: consistent 40px top/bottom on mobile */
  section,
  .stats-section,
  .about-preview,
  .story-preview,
  .features-section,
  .brewing-ritual-section,
  .why-section,
  .farmer-impact-section,
  .products-preview,
  .insta-feed-section {
    padding: 40px 0 !important;
  }

  /* Our Story section and other split sections */
  .split-content {
    padding: 0 !important;
  }

  /* Fix heading sizes on mobile so they don't overflow */
  .split-content h2 {
    font-size: 1.8rem !important;
    line-height: 1.3 !important;
  }
  
  .section-title {
    font-size: 1.8rem !important;
    line-height: 1.3 !important;
  }

  /* Section headings — consistent spacing */
  .section-head {
    margin-bottom: 2rem !important;
    padding: 0 !important;
  }

  /* Footer text centre-aligned on mobile */
  footer {
    text-align: center !important;
  }

  .footer-brand p {
    text-align: center !important;
    max-width: 100% !important;
  }

  .footer-socials {
    justify-content: center !important;
  }

  .footer-col {
    text-align: center !important;
  }

  .footer-col h5 {
    text-align: center !important;
  }

  .footer-links-list,
  .footer-info-list {
    align-items: center !important;
    text-align: center !important;
  }

  .footer-info-list li {
    justify-content: center !important;
  }

  .footer-bottom {
    text-align: center !important;
    align-items: center !important;
  }

  .footer-copy {
    text-align: center !important;
  }

  .footer-bottom-links {
    justify-content: center !important;
  }
}
