/*
Theme Name: Drink Agape Theme
Theme URI: https://drinkagape.com/
Author: Liam Lo
Author URI: https://drinkagape.com/
Description: Custom WordPress theme for Drink Agape one-page sales site.
Version: 1.0
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.0
Text Domain: drink-agape
*/

/* Reset and Variables */
:root {
  --primary-green: #82C341;
  --dark-green: #2d4a15;
  --text-dark: #1a1a1a;
  --text-light: #f4f4f4;
  --bg-light: #fdfdfd;
  --bg-gray: #f5f7f9;
  
  --color-tropical: #a8cc4c;
  --color-bliss: #6225a6;
  --color-thunder: #f0952d;
  --color-hibiscus: #e64e4e;

  --shadow-sm: 0 4px 6px rgba(0,0,0,0.05);
  --shadow-md: 0 10px 25px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 40px rgba(0,0,0,0.12);
  
  --border-radius: 16px;
  --border-radius-lg: 24px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4 {
  font-weight: 800;
  line-height: 1.2;
}

h2.section-title {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.text-center { text-align: center; }
.section-subtitle {
  font-size: 1.25rem;
  color: #666;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary-green), #b5e34d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
}

.logo {
  font-size: 2rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-logo {
  height: 40px !important;
  width: auto !important;
  mix-blend-mode: multiply;
}

.logo-drink {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: #f7b731; /* Golden yellow */
}

.logo-agape {
  color: var(--text-dark);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 600;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--primary-green);
}

/* Buttons */
.btn-primary {
  background: var(--primary-green);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  display: inline-block;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(130, 195, 65, 0.3);
}

.btn-primary.lg {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

.btn-secondary {
  background: transparent;
  color: var(--primary-green);
  border: 2px solid var(--primary-green);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  cursor: pointer;
  display: inline-block;
}

.btn-secondary:hover {
  background: rgba(130, 195, 65, 0.1);
  transform: translateY(-2px);
}

.w-full {
  width: 100%;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10rem 5% 4rem 10%;
  background: radial-gradient(circle at top right, rgba(130, 195, 65, 0.1) 0%, rgba(255,255,255,0) 50%);
  position: relative;
}

.hero-content {
  flex: 1;
  max-width: 600px;
  z-index: 2;
}

.badge {
  display: inline-block;
  background: rgba(130, 195, 65, 0.15);
  color: var(--dark-green);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 5rem;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #555;
  margin-bottom: 2rem;
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.verse {
  font-weight: 800;
  color: #f7b731;
  letter-spacing: 2px;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}

/* Glass Mockups */
.glass-mockup {
  position: relative;
  width: 400px;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mockup-drink {
  position: absolute;
  width: 120px;
  height: 350px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  transition: all 0.5s ease;
  box-shadow: var(--shadow-lg);
}

.mockup-drink::before {
  content: '';
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  top: 40%;
  border-radius: 0 0 15px 15px;
  opacity: 0.8;
}

.mockup-drink.tropical { transform: rotate(-15deg) translateX(-100px); z-index: 1; }
.mockup-drink.bliss { transform: rotate(-5deg) translateX(-40px) translateY(-20px); z-index: 2; }
.mockup-drink.thunder { transform: rotate(5deg) translateX(40px) translateY(-20px); z-index: 3; }
.mockup-drink.hibiscus { transform: rotate(15deg) translateX(100px); z-index: 4; }

.mockup-drink.tropical::before { background: var(--color-tropical); }
.mockup-drink.bliss::before { background: var(--color-bliss); }
.mockup-drink.thunder::before { background: var(--color-thunder); }
.mockup-drink.hibiscus::before { background: var(--color-hibiscus); }

.glass-mockup:hover .mockup-drink.tropical { transform: rotate(-20deg) translateX(-140px) translateY(-10px); }
.glass-mockup:hover .mockup-drink.bliss { transform: rotate(-8deg) translateX(-60px) translateY(-40px); }
.glass-mockup:hover .mockup-drink.thunder { transform: rotate(8deg) translateX(60px) translateY(-40px); }
.glass-mockup:hover .mockup-drink.hibiscus { transform: rotate(20deg) translateX(140px) translateY(-10px); }

/* New Product Lineup Section Styles */
.lineup-section {
  padding: 4rem 0;
  background: var(--bg-gray);
  text-align: center;
}

.lineup-container {
  max-width: 1000px;
  margin: 0 auto;
}

.lineup-frame {
  width: 100%;
  max-width: 700px;
  aspect-ratio: 16 / 9;
  margin: 2rem auto 0;
  background: white;
  border-radius: var(--border-radius-lg);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,0.05);
}

.lineup-img {
  height: 90%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 5px 15px rgba(0,0,0,0.05));
  transition: transform 0.3s ease;
}

.lineup-frame:hover .lineup-img {
  transform: scale(1.05);
}

.mockup-drink.tropical { transform: rotate(-15deg) translate(-100px, 20px); z-index: 1; }
.mockup-drink.tropical::after { background: var(--color-tropical); }

.mockup-drink.bliss { transform: rotate(-5deg) translate(-40px, 0px); z-index: 2; }
.mockup-drink.bliss::after { background: var(--color-bliss); }

.mockup-drink.thunder { transform: rotate(5deg) translate(40px, 0px); z-index: 3; }
.mockup-drink.thunder::after { background: var(--color-thunder); }

.mockup-drink.hibiscus { transform: rotate(15deg) translate(100px, 20px); z-index: 4; }
.mockup-drink.hibiscus::after { background: var(--color-hibiscus); }

.glass-mockup:hover .mockup-drink {
  transform: rotate(0deg) translate(0,0) scale(1.05);
}
.glass-mockup:hover .mockup-drink.tropical { margin-left: -200px; }
.glass-mockup:hover .mockup-drink.bliss { margin-left: -60px; }
.glass-mockup:hover .mockup-drink.thunder { margin-left: 60px; }
.glass-mockup:hover .mockup-drink.hibiscus { margin-left: 200px; }

/* The Problem Section */
.problem {
  background: var(--bg-gray);
}

.problem-statement {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 4rem;
}

strike {
  color: #cc4141;
  text-decoration-thickness: 3px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.stat-card {
  background: white;
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  border-top: 5px solid;
  transition: transform 0.3s;
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-card.danger { border-top-color: #ff4757; }
.stat-card h3 {
  font-size: 3.5rem;
  color: #ff4757;
  margin-bottom: 1rem;
}
.span-full { grid-column: span 3; text-align: center; }

.quote-box {
  background: white;
  padding: 3rem;
  border-radius: var(--border-radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  margin-bottom: 2rem;
  position: relative;
}

.quote-box blockquote {
  font-size: 1.5rem;
  font-style: italic;
  margin-bottom: 1rem;
  color: #555;
}

.quote-box cite {
  font-weight: 800;
  color: var(--primary-green);
}

.green-quote {
  background: var(--primary-green);
  color: white;
}
.green-quote blockquote { color: white; }
.green-quote cite { color: #2d4a15; }

.myth-box {
  text-align: center;
  font-size: 1.2rem;
  background: #f7b731;
  color: #1a1a1a;
  padding: 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 600;
}

/* The Solution Section */
.solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.solution-card {
  background: white;
  padding: 3rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

.solution-card.positive {
  border: 2px solid var(--primary-green);
}

.solution-card.negative {
  border: 2px solid #ff4757;
}

.solution-card h3 {
  font-size: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #eee;
}

.solution-card.positive h3 { color: var(--primary-green); }
.solution-card.negative h3 { color: #ff4757; }

.benefit-list {
  list-style: none;
}

.benefit-list li {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.benefit-list .icon {
  background: var(--primary-green);
  color: white;
  width: 28px;
  height: 28px;
  min-width: 28px;
  min-height: 28px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1;
}

.no-list .icon {
  background: #ff4757;
  font-size: 0.75rem;
  letter-spacing: -0.5px;
}

/* About & History Section */
.about {
  background: var(--bg-gray);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.about-text h3 {
  font-size: 1.8rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--primary-green);
}

.about-text p {
  font-size: 1.1rem;
  color: #555;
}

.signature {
  font-family: 'Dancing Script', cursive;
  font-size: 2.5rem;
  color: var(--primary-green);
  margin-top: 1rem;
}

.history-timeline h3 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.timeline {
  position: relative;
  border-left: 3px solid #ddd;
  padding-left: 2rem;
}

.timeline-item {
  position: relative;
  margin-bottom: 2rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.6rem;
  top: 0;
  width: 20px;
  height: 20px;
  background: white;
  border: 4px solid #ddd;
  border-radius: 50%;
  transition: border-color 0.3s;
}

.timeline-item:hover::before, .timeline-item.highlight::before {
  border-color: var(--primary-green);
}

.timeline-item .year {
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.timeline-item.highlight .year {
  color: var(--primary-green);
  font-size: 1.5rem;
}

.timeline-item .event {
  color: #555;
}

/* Flavors Section */
.flavor-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.flavor-card {
  background: white;
  border-radius: var(--border-radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s;
  display: flex;
  align-items: center;
  gap: 3rem;
}

.flavor-image-wrapper {
  flex-shrink: 0;
  width: 150px;
  display: flex;
  justify-content: center;
}

.flavor-bottle-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: var(--border-radius);
  filter: drop-shadow(0 10px 15px rgba(0,0,0,0.1));
  transition: transform 0.3s;
}

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

.flavor-content {
  flex-grow: 1;
}

.flavor-card:hover {
  transform: translateY(-5px);
}

.flavor-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 10px;
  height: 100%;
}

.theme-green::before { background: var(--color-tropical); }
.theme-purple::before { background: var(--color-bliss); }
.theme-orange::before { background: var(--color-thunder); }
.theme-red::before { background: var(--color-hibiscus); }

.flavor-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.flavor-header h3 {
  font-size: 2.5rem;
}

.theme-green h3 { color: var(--color-tropical); }
.theme-purple h3 { color: var(--color-bliss); }
.theme-orange h3 { color: var(--color-thunder); }
.theme-red h3 { color: var(--color-hibiscus); }

.caffeine {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: #666;
}

.dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 2px solid #ccc;
}

.theme-green .dot.filled { background: var(--color-tropical); border-color: var(--color-tropical); }
.theme-purple .dot.filled { background: var(--color-bliss); border-color: var(--color-bliss); }
.theme-orange .dot.filled { background: var(--color-thunder); border-color: var(--color-thunder); }
.theme-red .dot.filled { background: var(--color-hibiscus); border-color: var(--color-hibiscus); }

.flavor-desc {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--bg-gray);
  border-radius: var(--border-radius);
}

.flavor-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.feature h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.feature ul {
  list-style-type: none;
}

.feature ul li {
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
  color: #555;
}

.feature ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-green);
  font-weight: bold;
}

/* Order Section */
.order {
  background: var(--bg-gray);
  padding: 4rem 0 2rem;
}

.order .container {
  padding-top: 0;
  padding-bottom: 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  margin-bottom: 2rem;
}

.pricing-card {
  background: white;
  padding: 3rem 2rem;
  border-radius: var(--border-radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
  background: var(--primary-green);
  color: white;
  transform: scale(1.05);
  box-shadow: var(--shadow-md);
}

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

.pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.price {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.price span {
  font-size: 1rem;
  font-weight: 400;
}

.bulk-deal {
  color: #666;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.pricing-card.featured .bulk-deal {
  color: rgba(255,255,255,0.9);
}

.pricing-card.featured .btn-primary {
  background: white;
  color: var(--primary-green);
}

.price-tiers {
  width: 100%;
  text-align: left;
  margin-bottom: 2rem;
}

.tier {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
}

.tier:last-child {
  border-bottom: none;
}

.tier-name {
  color: #666;
  font-weight: 500;
}

.tier-price {
  font-weight: 800;
  color: var(--primary-green);
}

.delivery-info {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.info-box {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  text-align: center;
  flex: 1;
  max-width: 400px;
}

.info-box h4 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--primary-green);
}

.guarantee-text {
  font-size: 1.1rem;
  color: #555;
  max-width: 800px;
  margin: 0 auto;
}



/* Footer */
footer {
  background: var(--dark-green);
  color: white;
  padding: 4rem 0 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  padding-bottom: 3rem;
}

.footer-brand h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.footer-logo {
  height: 60px !important;
  width: auto !important;
  margin-bottom: 1rem;
  background-color: white;
  padding: 10px 20px;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.footer-brand .logo-agape {
  color: white;
}

.footer-brand p {
  max-width: 400px;
  color: #ccc;
}

.footer-links, .footer-social {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-links h3, .footer-social h3 {
  margin-bottom: 1rem;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--primary-green);
}

.footer-social .social-icons {
  display: flex;
  gap: 1rem;
}

.footer-social .social-icons a {
  color: #ccc;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-social .social-icons a:hover {
  color: var(--primary-green);
  transform: translateY(-3px);
}

.social-promo {
  padding: 2rem 0 4rem;
  background: linear-gradient(135deg, #f8fbf8 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.social-promo .container {
  padding-top: 0;
  padding-bottom: 0;
}

.social-promo::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(76, 175, 80, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.social-card-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 900px;
  margin: 3rem auto 0;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .social-card-container {
    grid-template-columns: 1fr 1fr;
  }
}

.social-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 3rem;
  border-radius: var(--border-radius-lg);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
  color: var(--text-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow-sm);
}

.social-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-green);
}

.social-card .icon-wrapper {
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
  color: var(--primary-green);
  transition: all 0.3s ease;
}

.social-card:hover .icon-wrapper {
  background: var(--primary-green);
  color: white;
}

.social-card h4 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.social-card p {
  color: #666;
  font-size: 1rem;
}

.footer-bottom {
  text-align: center;
  padding: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: #888;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.slide-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.slide-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.fade-in.visible, .slide-left.visible, .slide-right.visible, .scale-in.visible {
  opacity: 1;
  transform: translate(0) scale(1);
}

/* Delay classes for staggered animations */
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }

/* Continuous floating animation */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}
.floating {
  animation: float 4s ease-in-out infinite;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding-top: 8rem;
  }
  .hero-cta, .hero-features {
    justify-content: center;
  }
  .hero-image {
    margin-top: 4rem;
  }
  .glass-mockup:hover .mockup-drink {
    transform: none;
    margin: 0 !important;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .span-full { grid-column: span 1; }
  .solution-grid, .about-grid, .pricing-grid {
    grid-template-columns: 1fr;
  }
  .pricing-card.featured {
    transform: none;
  }
  .pricing-card.featured:hover {
    transform: translateY(-10px);
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 3.5rem;
  }
  .flavor-card {
    flex-direction: column;
    text-align: center;
  }
  .flavor-header {
    flex-direction: column;
    gap: 1rem;
  }
  .flavor-features {
    grid-template-columns: 1fr;
  }
  .nav-links {
    display: none; /* simple mobile menu hiding for now */
  }
}

/* ==========================================================================
   WooCommerce Integration Styles
   ========================================================================== */

/* Main WooCommerce Wrapper */
.woocommerce, .woocommerce-page {
  font-family: 'Outfit', sans-serif;
  color: var(--text-dark);
}

/* WooCommerce Buttons */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  background-color: var(--primary-green) !important;
  color: white !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  padding: 0.75rem 1.5rem !important;
  transition: all 0.3s ease !important;
  border: none !important;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
  background-color: var(--dark-green) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(130, 195, 65, 0.3);
}

.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
.woocommerce #respond input#submit.alt {
  background-color: var(--primary-green) !important;
}

.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover,
.woocommerce #respond input#submit.alt:hover {
  background-color: var(--dark-green) !important;
}

/* Product Titles */
.woocommerce ul.products li.product h2,
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce div.product .product_title {
  color: var(--primary-green);
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
}

/* Price */
.woocommerce div.product p.price,
.woocommerce div.product span.price,
.woocommerce ul.products li.product .price {
  color: var(--text-dark) !important;
  font-weight: 800 !important;
}

/* Sale Badge */
.woocommerce span.onsale {
  background-color: var(--color-hibiscus) !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
}

/* Messages */
.woocommerce-message,
.woocommerce-info {
  border-top-color: var(--primary-green) !important;
  background-color: var(--bg-gray) !important;
  border-radius: var(--border-radius);
}

.woocommerce-message::before,
.woocommerce-info::before {
  color: var(--primary-green) !important;
}

/* Cart & Checkout Layout */
.woocommerce-cart .woocommerce,
.woocommerce-checkout .woocommerce {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  background: white;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  margin-top: 6rem; /* Space for fixed navbar */
  margin-bottom: 4rem;
}

/* Form Inputs */
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
  border-radius: var(--border-radius);
  border: 1px solid #ddd;
  padding: 0.75rem 1rem;
  transition: border-color 0.3s;
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus {
  border-color: var(--primary-green);
  outline: none;
}

/* ==========================================================================
   Bulk Order Form Styles
   ========================================================================== */
.bulk-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.bulk-form .form-row {
  display: flex;
  gap: 1.5rem;
}

.bulk-form .form-row .form-group {
  flex: 1;
}

.bulk-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: left;
}

.bulk-form label {
  font-weight: 600;
  color: var(--text-dark);
}

.bulk-form input,
.bulk-form select,
.bulk-form textarea {
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  transition: all 0.3s;
  background: var(--bg-gray);
  width: 100%;
  box-sizing: border-box;
}

.bulk-form input:focus,
.bulk-form select:focus,
.bulk-form textarea:focus {
  outline: none;
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(130, 195, 65, 0.2);
  background: white;
}

@media (max-width: 768px) {
  .bulk-form .form-row {
    flex-direction: column;
    gap: 1.5rem;
  }
}

.delivery-disclaimer {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  background: rgba(247, 183, 49, 0.1);
  border: 1px solid var(--color-thunder);
  color: #856404;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.02); opacity: 0.8; }
  100% { transform: scale(1); opacity: 1; }
}

.contact-info {
  margin-top: 1rem;
}

.contact-link {
  color: var(--primary-green);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: var(--color-tropical);
}

.map-container {
  margin-top: 2rem;
  margin-bottom: 4rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 4px solid white;
}

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

.map-caption {
  background: white;
  padding: 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  border-top: 1px solid rgba(0,0,0,0.05);
}

.freshness-section {
  padding: 4rem 0;
  background: white;
  text-align: center;
}

.freshness-card {
  max-width: 800px;
  margin: 0 auto;
  padding: 2.5rem;
  background: var(--bg-gray);
  border-radius: var(--border-radius-lg);
  display: flex;
  align-items: center;
  gap: 2rem;
  text-align: left;
  border: 1px solid rgba(0,0,0,0.05);
}

.freshness-icon {
  font-size: 3rem;
  flex-shrink: 0;
}

.freshness-content h3 {
  color: var(--primary-green);
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.freshness-content p {
  line-height: 1.6;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .freshness-card {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
  }
}
