/* ==========================================
   CSS DIRECTORY & ROOT VARIABLES
   ========================================== */
:root {
  /* Color Palette */
  --bg-dark-emerald: #032B26;
  --primary-green: #0A8F5A;
  --light-green: #18C27A;
  --soft-white: #F5F5F5;
  --cream-white: #FAFAFA;
  --deep-shadow: #021E1A;
  --text-white: #FFFFFF;
  --text-muted: #A3B8B5;
  --text-dark: #1F3B36;

  /* Fonts */
  --font-primary: 'Poppins', sans-serif;
  --font-secondary: 'Montserrat', sans-serif;

  /* Transitions & Shadows */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-premium: 0 20px 40px rgba(2, 30, 26, 0.15);
  --shadow-light: 0 10px 30px rgba(0, 0, 0, 0.05);
  --shadow-glow: 0 0 30px rgba(24, 194, 122, 0.3);
}

/* ==========================================
   BASE & RESET STYLES
   ========================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-primary);
  background-color: var(--bg-dark-emerald);
  color: var(--text-white);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-primary);
  transition: var(--transition-smooth);
}

ul {
  list-style: none;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-dark-emerald);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-green);
  border-radius: 10px;
  border: 2px solid var(--bg-dark-emerald);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--light-green);
}

/* ==========================================
   HEADER & NAVIGATION BAR
   ========================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 5%;
  transition: var(--transition-smooth);
}

.header.scrolled {
  padding: 12px 5%;
  background: rgba(3, 43, 38, 0.85);
  backdrop-filter: blur(20px);
  box-shadow: 0 10px 30px rgba(2, 30, 26, 0.3);
}

.navbar {
  max-width: 1200px;
  margin: 0 auto;
  background: var(--cream-white);
  border-radius: 50px;
  padding: 8px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: var(--shadow-premium);
  transition: var(--transition-smooth);
}

.header.scrolled .navbar {
  background: rgba(250, 250, 250, 0.95);
  transform: translateY(0);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.logo-text {
  font-family: var(--font-secondary);
  font-weight: 800;
  color: var(--bg-dark-emerald);
  font-size: 1.25rem;
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark);
  padding: 8px 16px;
  border-radius: 30px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-white);
  background-color: var(--primary-green);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  background: transparent;
  position: relative;
}

.nav-btn:hover {
  background: rgba(10, 143, 90, 0.1);
  color: var(--primary-green);
}

.cart-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  background: var(--primary-green);
  color: var(--text-white);
  font-size: 0.7rem;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--bg-dark-emerald);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
  min-height: 100vh;
  padding: 140px 5% 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-dark-emerald) 0%, var(--deep-shadow) 100%);
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 10;
}

/* Background elements */
.bean {
  position: absolute;
  font-size: 2.5rem;
  opacity: 0.2;
  filter: blur(1px);
  user-select: none;
  pointer-events: none;
  animation: floatBean 12s infinite ease-in-out;
}

.bean-1 {
  top: 15%;
  left: 8%;
  animation-delay: 0s;
}

.bean-2 {
  top: 75%;
  left: 5%;
  animation-delay: 2s;
}

.bean-3 {
  top: 25%;
  right: 45%;
  animation-delay: 4s;
}

.bean-4 {
  top: 80%;
  right: 40%;
  animation-delay: 1s;
}

.bean-5 {
  top: 40%;
  right: 10%;
  animation-delay: 3s;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(150px);
  z-index: 1;
  pointer-events: none;
  opacity: 0.35;
}

.glow-1 {
  width: 400px;
  height: 400px;
  background: var(--light-green);
  top: 10%;
  right: -5%;
}

.glow-2 {
  width: 300px;
  height: 300px;
  background: var(--primary-green);
  bottom: -5%;
  left: -5%;
}

/* Hero Left Content */
.hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 5;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
  backdrop-filter: blur(5px);
  animation: fadeInUp 0.8s ease-out;
}

.badge-star {
  color: #FFD700;
}

.hero-title {
  font-family: var(--font-secondary);
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 20px;
  animation: fadeInUp 0.9s ease-out;
}

.hero-title-accent {
  background: linear-gradient(90deg, var(--light-green), var(--primary-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 500px;
  margin-bottom: 32px;
  font-weight: 300;
  animation: fadeInUp 1s ease-out;
}

.hero-price-row {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
  animation: fadeInUp 1.1s ease-out;
}

.hero-price {
  display: flex;
  flex-direction: column;
}

.price-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.price-value {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--light-green);
  font-family: var(--font-secondary);
}

.hero-rating {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

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

.hero-rating span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.hero-btns {
  display: flex;
  align-items: center;
  gap: 20px;
  animation: fadeInUp 1.2s ease-out;
}

/* Button styles matching exactly */
.btn-primary {
  background: var(--cream-white);
  color: var(--bg-dark-emerald);
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 1px;
  box-shadow: 0 10px 25px rgba(2, 30, 26, 0.4);
  border: 2px solid var(--cream-white);
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(24, 194, 122, 0.4);
  background: var(--primary-green);
  color: var(--text-white);
  border-color: var(--primary-green);
}

.btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--text-white);
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 1px;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--text-white);
  transform: translateY(-2px);
}

/* Hero Right Showcase */
.hero-right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 480px;
  z-index: 5;
}

.vertical-text {
  position: absolute;
  left: -20px;
  font-family: var(--font-secondary);
  font-size: 6.5rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.03);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  letter-spacing: 5px;
  user-select: none;
  pointer-events: none;
}

.cup-glow {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--light-green) 0%, transparent 70%);
  filter: blur(20px);
  opacity: 0.4;
  z-index: 1;
}

.hero-cup-wrapper {
  position: relative;
  z-index: 2;
  animation: floatCup 6s ease-in-out infinite;
}

.hero-cup {
  width: 320px;
  filter: drop-shadow(0 20px 40px rgba(2, 30, 26, 0.6));
  transition: transform 0.5s ease;
}

.hero-cup:hover {
  transform: scale(1.05) rotate(2deg);
}

.cup-shadow {
  position: absolute;
  bottom: -20px;
  left: 10%;
  width: 80%;
  height: 20px;
  background: rgba(2, 30, 26, 0.8);
  border-radius: 50%;
  filter: blur(10px);
  z-index: 1;
  animation: shadowScale 6s ease-in-out infinite;
}

/* Floating elements around showcase */
.float-bean {
  position: absolute;
  font-size: 1.8rem;
  z-index: 3;
  animation: floatAround 8s infinite ease-in-out;
}

.fb-1 {
  top: 20%;
  right: 15%;
  animation-delay: 0s;
}

.fb-2 {
  bottom: 25%;
  left: 10%;
  animation-delay: 2s;
}

.fb-3 {
  top: 60%;
  right: 20%;
  animation-delay: 4.5s;
}

/* Mini Product Selector - Section 2 */
.product-selector {
  margin: 40px auto 0;
  background: rgba(10, 143, 90, 0.2);
  border: 1px solid rgba(24, 194, 122, 0.3);
  padding: 12px 24px;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  z-index: 15;
  width: max-content;
  box-shadow: var(--shadow-premium);
  animation: fadeInUp 1.3s ease-out;
}

.selector-track {
  display: flex;
  align-items: center;
  gap: 16px;
}

.selector-item {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.sel-thumb {
  font-size: 1.4rem;
}

.selector-item.active {
  background: var(--cream-white);
  transform: scale(1.15);
  box-shadow: var(--shadow-light);
}

/* ==========================================
   CATEGORY TABS - SECTION 3
   ========================================== */
.categories {
  padding: 40px 5%;
  position: relative;
  z-index: 20;
}

.cat-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.cat-tabs {
  background: var(--bg-dark-emerald);
  border: 2px solid rgba(24, 194, 122, 0.25);
  padding: 8px;
  border-radius: 50px;
  display: flex;
  gap: 8px;
  box-shadow: var(--shadow-premium);
}

.cat-tab {
  padding: 14px 36px;
  border-radius: 40px;
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1px;
  color: var(--light-green);
  transition: var(--transition-smooth);
}

.cat-tab.active {
  background: var(--cream-white);
  color: var(--bg-dark-emerald);
  box-shadow: var(--shadow-light);
}

.cat-tab:hover:not(.active) {
  background: rgba(24, 194, 122, 0.1);
  color: var(--text-white);
}

/* ==========================================
   PRODUCT CARDS - SECTION 4
   ========================================== */
.products {
  padding: 80px 5%;
  position: relative;
  background: linear-gradient(180deg, var(--bg-dark-emerald) 0%, var(--deep-shadow) 100%);
}

.section-heading {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--light-green);
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 8px;
}

.section-heading h2 {
  font-family: var(--font-secondary);
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: -1px;
}

.cards-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: center;
}

/* Custom Card Design - White Rounded Cards */
.product-card {
  background: var(--cream-white);
  border-radius: 30px;
  padding: 30px;
  box-shadow: var(--shadow-premium);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition-smooth);
  color: var(--text-dark);
}

.product-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 30px 60px rgba(2, 30, 26, 0.25);
}

/* Center Featured Card Highlighted */
.product-card.featured {
  background: #FFFFFF;
  transform: scale(1.05);
  border: 2px solid var(--light-green);
  z-index: 5;
}

.product-card.featured:hover {
  transform: scale(1.08) translateY(-10px);
}

.featured-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--light-green);
  color: var(--text-white);
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  box-shadow: var(--shadow-glow);
}

.card-img-wrap {
  width: 100%;
  height: 220px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-bottom: 24px;
}

.card-img {
  max-height: 100%;
  object-fit: contain;
  transition: var(--transition-smooth);
  filter: drop-shadow(0 15px 25px rgba(2, 30, 26, 0.2));
  z-index: 2;
}

.product-card:hover .card-img {
  transform: scale(1.1) rotate(3deg);
}

.card-img-glow {
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10, 143, 90, 0.15) 0%, transparent 70%);
  z-index: 1;
}

.card-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-title {
  font-family: var(--font-secondary);
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--bg-dark-emerald);
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.card-tags .tag {
  background: rgba(10, 143, 90, 0.08);
  color: var(--primary-green);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 15px;
}

.card-prices {
  border-top: 1px dashed rgba(2, 30, 26, 0.1);
  border-bottom: 1px dashed rgba(2, 30, 26, 0.1);
  padding: 12px 0;
  margin-bottom: 24px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  font-weight: 500;
  color: #55706C;
  margin-bottom: 6px;
}

.price-row:last-child {
  margin-bottom: 0;
}

.price-row span:last-child {
  font-weight: 700;
  color: var(--bg-dark-emerald);
}

.card-btn {
  background: var(--primary-green);
  color: var(--text-white);
  width: 100%;
  padding: 14px;
  border-radius: 15px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 20px rgba(10, 143, 90, 0.2);
}

.card-btn:hover {
  background: var(--light-green);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(24, 194, 122, 0.3);
}

/* ==========================================
   UNMATCHED QUALITY - SECTION 5
   ========================================== */
.quality {
  padding: 120px 5%;
  position: relative;
  overflow: hidden;
  background-color: var(--bg-dark-emerald);
}

.quality-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-secondary);
  font-size: 15rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.02);
  user-select: none;
  pointer-events: none;
  z-index: 1;
}

/* Repeating Diagonal Ribbon */
.quality-ribbon {
  position: absolute;
  top: 15%;
  left: -10%;
  width: 120%;
  background: linear-gradient(90deg, var(--primary-green), var(--light-green));
  padding: 12px 0;
  transform: rotate(-3deg);
  z-index: 2;
  box-shadow: var(--shadow-premium);
  overflow: hidden;
}

.ribbon-inner {
  display: flex;
  white-space: nowrap;
  gap: 50px;
  animation: marquee 25s linear infinite;
}

.ribbon-inner span {
  font-family: var(--font-secondary);
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: 2px;
  color: var(--text-white);
}

.quality-container {
  max-width: 1200px;
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 3;
}

.quality-left,
.quality-right {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.quality-right {
  text-align: right;
  align-items: flex-end;
}

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

.stat-num {
  font-family: var(--font-secondary);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--light-green);
  line-height: 1;
}

.stat-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-white);
  margin-top: 4px;
}

.quality-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 300;
}

/* Center floating cup & title */
.quality-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.quality-glow-ring {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 1px dashed rgba(24, 194, 122, 0.4);
  animation: rotateDashed 20s linear infinite;
}

.quality-cup-wrap {
  position: relative;
  z-index: 5;
  margin-bottom: 20px;
  animation: floatCup 5s ease-in-out infinite alternate;
}

.quality-cup {
  width: 260px;
  filter: drop-shadow(0 20px 30px rgba(2, 30, 26, 0.5));
}

.quality-title {
  font-family: var(--font-secondary);
  font-size: 3.2rem;
  font-weight: 900;
  text-align: center;
  line-height: 1.1;
  letter-spacing: -1px;
}

.quality-title span {
  color: var(--light-green);
}

.q-bean {
  position: absolute;
  font-size: 1.5rem;
  opacity: 0.4;
  animation: floatAround 6s infinite ease-in-out;
}

.qb1 {
  top: 10%;
  left: 10%;
}

.qb2 {
  bottom: 20%;
  right: 10%;
  animation-delay: 2s;
}

.qb3 {
  top: 60%;
  left: 15%;
  animation-delay: 4s;
}


/* ==========================================
   SIGNATURE GALLERY - SECTION 5.5
   ========================================== */
.gallery {
  padding: 100px 5%;
  background: linear-gradient(180deg, var(--bg-dark-emerald) 0%, var(--deep-shadow) 100%);
  position: relative;
}

.gallery-container {
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 40px;
}

.gallery-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  transition: var(--transition-smooth);
}

.gallery-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--light-green);
  box-shadow: 0 30px 60px rgba(2, 30, 26, 0.4);
}

.gallery-img-wrap {
  position: relative;
  height: 350px;
  overflow: hidden;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

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

.gallery-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--primary-green);
  color: var(--text-white);
  padding: 8px 18px;
  border-radius: 30px;
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1px;
  box-shadow: var(--shadow-glow);
  z-index: 10;
}

.gallery-content {
  padding: 30px;
}

.gallery-content h3 {
  font-family: var(--font-secondary);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 12px;
}

.gallery-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
  font-weight: 300;
}

.gallery-link {
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--light-green);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-smooth);
}

.gallery-link:hover {
  color: var(--text-white);
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .gallery-img-wrap {
    height: 250px;
  }
}

/* ==========================================
   POPULAR PRODUCTS - SECTION 6
   ========================================== */
.popular {
  padding: 100px 5%;
  background: var(--deep-shadow);
  position: relative;
}

.section-heading.light h2 {
  color: var(--text-white);
}

.popular-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: center;
}

.pop-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.pop-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(24, 194, 122, 0.3);
}

.pop-card.featured-pop {
  background: rgba(10, 143, 90, 0.1);
  border: 1px solid var(--primary-green);
  transform: scale(1.05);
}

.pop-card.featured-pop:hover {
  transform: scale(1.08) translateY(-5px);
}

.pop-img-wrap {
  height: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.pop-img {
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
  transition: var(--transition-smooth);
}

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

.pop-info h3 {
  font-family: var(--font-secondary);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.pop-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  height: 40px;
  overflow: hidden;
}

.pop-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 16px;
}

.pop-price {
  font-family: var(--font-secondary);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--light-green);
}

.pop-btn {
  background: var(--primary-green);
  color: var(--text-white);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
}

.pop-btn:hover {
  background: var(--light-green);
  box-shadow: var(--shadow-glow);
}


/* ==========================================
   CRAFT SHOWCASE - SECTION 6.5
   ========================================== */
.craft-showcase {
  padding: 120px 5%;
  background: var(--deep-shadow);
  position: relative;
  overflow: hidden;
}

.craft-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  gap: 60px;
}

.craft-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section-heading.left-align {
  text-align: left;
  margin-bottom: 0;
}

.craft-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
}

.craft-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 10px;
}

.c-feat {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.c-icon {
  font-size: 1.8rem;
  background: rgba(10, 143, 90, 0.15);
  color: var(--light-green);
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.c-feat h4 {
  font-family: var(--font-secondary);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 4px;
}

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

.craft-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: rgba(3, 43, 38, 0.3);
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-premium);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition-smooth);
}

.craft-img-wrap:hover {
  transform: translateY(-8px);
  border-color: var(--light-green);
  box-shadow: 0 30px 60px rgba(2, 30, 26, 0.5);
}

.craft-img,
.craft-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.craft-img-wrap:hover .craft-img,
.craft-img-wrap:hover .craft-video {
  transform: scale(1.03);
}

.craft-img-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(24, 194, 122, 0.15) 0%, transparent 70%);
  filter: blur(30px);
  z-index: 1;
  pointer-events: none;
}

@media (max-width: 1024px) {
  .craft-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .section-heading.left-align {
    text-align: center;
  }

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

  .craft-features {
    align-items: center;
  }
}

/* ==========================================
   OUR BRANCHES - SECTION 7
   ========================================== */
.branches {
  padding: 100px 5%;
  background: var(--bg-dark-emerald);
}

.branches-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.branches-title-block {
  position: sticky;
  top: 120px;
}

.branches-vertical-title {
  font-family: var(--font-secondary);
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.1;
  color: var(--text-white);
  letter-spacing: -2px;
  margin-bottom: 20px;
}

.branches-sub {
  font-size: 1.1rem;
  color: var(--light-green);
  font-weight: 600;
}

.branches-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Horizontal branch cards exactly like reference */
.branch-card {
  background: var(--cream-white);
  border-radius: 20px;
  padding: 24px 30px;
  display: flex;
  align-items: center;
  gap: 24px;
  box-shadow: var(--shadow-premium);
  color: var(--text-dark);
  transition: var(--transition-smooth);
}

.branch-card:hover {
  transform: translateX(15px);
  background: #FFFFFF;
  box-shadow: 0 15px 35px rgba(2, 30, 26, 0.25);
}

.branch-map {
  font-size: 2.2rem;
  background: rgba(10, 143, 90, 0.1);
  width: 60px;
  height: 60px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.branch-info {
  flex-grow: 1;
}

.branch-info h4 {
  font-family: var(--font-secondary);
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 4px;
  color: var(--bg-dark-emerald);
}

.branch-info p {
  font-size: 0.85rem;
  color: #55706C;
  margin-bottom: 8px;
}

.branch-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary-green);
  background: rgba(10, 143, 90, 0.08);
  padding: 4px 10px;
  border-radius: 10px;
}

.branch-arrow {
  font-size: 1.5rem;
  color: var(--primary-green);
  font-weight: 700;
  transition: var(--transition-smooth);
}

.branch-card:hover .branch-arrow {
  transform: translateX(5px);
}

/* ==========================================
   CONTACT SECTION - SECTION 8
   ========================================== */
.contact {
  padding: 100px 5%;
  background: linear-gradient(180deg, var(--bg-dark-emerald) 0%, var(--deep-shadow) 100%);
  position: relative;
}

.contact-container {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  position: relative;
  z-index: 5;
}

/* Form Card */
.contact-form-card {
  background: var(--cream-white);
  border-radius: 30px;
  padding: 40px;
  box-shadow: var(--shadow-premium);
  color: var(--text-dark);
}

.contact-form {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--bg-dark-emerald);
  text-transform: uppercase;
}

.form-group input,
.form-group textarea {
  border: 1px solid rgba(2, 30, 26, 0.1);
  background: #F0F4F3;
  padding: 14px 20px;
  border-radius: 12px;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary-green);
  background: #FFFFFF;
  box-shadow: 0 0 0 4px rgba(10, 143, 90, 0.1);
}

.btn-primary.full-width {
  width: 100%;
  padding: 16px;
  text-align: center;
}

/* Thank You Card */
.contact-thanks-card {
  background: var(--primary-green);
  border-radius: 30px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--text-white);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-premium);
}

.thanks-icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
  animation: floatCup 4s infinite ease-in-out;
}

.contact-thanks-card h3 {
  font-family: var(--font-secondary);
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 12px;
}

.contact-thanks-card p {
  font-size: 0.95rem;
  opacity: 0.9;
  line-height: 1.6;
  margin-bottom: 30px;
}

.thanks-btn {
  background: var(--cream-white);
  color: var(--primary-green);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-light);
}

.thanks-btn:hover {
  transform: scale(1.1);
  background: var(--text-white);
}

.thanks-decor {
  position: absolute;
  bottom: -20px;
  font-family: var(--font-secondary);
  font-size: 5rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.03);
  letter-spacing: 5px;
  pointer-events: none;
}

/* ==========================================
   FOOTER - SECTION 9
   ========================================== */
.footer {
  padding: 100px 5% 40px;
  background: var(--bg-dark-emerald);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Background transparent footer typography */
.footer-bg-text {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-secondary);
  font-size: 16rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.015);
  line-height: 0.8;
  pointer-events: none;
  user-select: none;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 60px;
  position: relative;
  z-index: 5;
  margin-bottom: 60px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-logo .logo-icon {
  font-size: 1.8rem;
}

.footer-logo .logo-text {
  font-family: var(--font-secondary);
  font-weight: 800;
  color: var(--text-white);
  font-size: 1.5rem;
}

.footer-tagline {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 320px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  transition: var(--transition-smooth);
}

.social-btn:hover {
  background: var(--light-green);
  color: var(--bg-dark-emerald);
  transform: translateY(-3px);
}

.footer-links h4,
.footer-subscribe h4 {
  font-family: var(--font-secondary);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text-white);
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.footer-links ul a:hover {
  color: var(--light-green);
  padding-left: 5px;
}

.footer-subscribe {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.subscribe-form {
  display: flex;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 30px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.subscribe-form input {
  flex-grow: 1;
  background: transparent;
  border: none;
  padding: 10px 18px;
  color: var(--text-white);
  font-family: var(--font-primary);
  font-size: 0.9rem;
}

.subscribe-btn {
  background: var(--light-green);
  color: var(--bg-dark-emerald);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.subscribe-btn:hover {
  background: var(--text-white);
  transform: scale(1.05);
}

/* Decorative Circular Badge Graphic */
.footer-badge {
  margin-top: 20px;
  display: flex;
}

.badge-ring {
  border: 1px dashed rgba(24, 194, 122, 0.4);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--light-green);
  display: flex;
  align-items: center;
  gap: 8px;
}

.badge-dot {
  font-size: 0.9rem;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ==========================================
   ANIMATIONS
   ========================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatCup {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes shadowScale {
  0% {
    transform: scale(1);
    opacity: 0.8;
    filter: blur(10px);
  }

  50% {
    transform: scale(0.85);
    opacity: 0.5;
    filter: blur(15px);
  }

  100% {
    transform: scale(1);
    opacity: 0.8;
    filter: blur(10px);
  }
}

@keyframes floatBean {
  0% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(180deg);
  }

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

@keyframes floatAround {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }

  33% {
    transform: translate(10px, -15px) rotate(120deg);
  }

  66% {
    transform: translate(-8px, 10px) rotate(240deg);
  }

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

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes rotateDashed {
  0% {
    transform: rotate(0deg);
  }

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

/* ==========================================
   RESPONSIVE DESIGN (Desktop/Tablet/Mobile)
   ========================================== */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3.5rem;
  }

  .cards-grid,
  .popular-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .product-card.featured {
    transform: scale(1);
    order: -1;
    /* Display featured first or align uniformly */
  }

  .product-card.featured:hover {
    transform: translateY(-10px);
  }

  .quality-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .quality-left,
  .quality-right {
    text-align: center;
    align-items: center;
  }

  .branches-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .branches-title-block {
    position: relative;
    top: 0;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 5%;
    width: 90%;
    background: var(--cream-white);
    border-radius: 20px;
    flex-direction: column;
    padding: 30px;
    gap: 20px;
    box-shadow: var(--shadow-premium);
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
  }

  .nav-links.active {
    transform: translateY(10px);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-link {
    width: 100%;
    text-align: center;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-left {
    align-items: center;
  }

  .hero-right {
    height: 380px;
  }

  .hero-cup {
    width: 250px;
  }

  .vertical-text {
    display: none;
  }

  .cards-grid,
  .popular-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bg-text {
    font-size: 10rem;
  }
}