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

body{
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, #f8f6f2, #efeae2);
  color:#111;
}

/* NAVBAR */
.nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:25px 60px;
  backdrop-filter: blur(10px);
}

.nav a{
  text-decoration:none;
  color:#333;
  margin-left:25px;
  font-size:14px;
  transition:0.3s;
}

.nav a:hover{
  color:#000;
}

/* HERO */
.hero{
  text-align:center;
  padding:120px 20px 80px;
}

.brand{
  font-size:130px;
  font-family: "Playfair Display", serif;
  margin-bottom:20px;
}

.hero h2{
  font-size:32px;
  margin-bottom:10px;
}

.hero p{
  color:#666;
  margin-bottom:25px;
  margin-top: 10px;
}

/* BUTTON */
.btn{
  background:black;
  color:white;
  padding:14px 28px;
  border-radius:30px;
  text-decoration:none;
  transition:0.3s;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.btn:hover{
  transform:scale(1.05);
  box-shadow:0 12px 30px rgba(0,0,0,0.15);
}



/* DIVIDER */
.divider{
  width:80px;
  height:2px;
  background:#d4af37;
  margin:50px auto;
}

/* PRODUCTS */
.products{
  max-width:1200px;
  margin:0 auto;
  display:flex;
  justify-content:center;
  gap:40px;
  padding:80px 20px;
  flex-wrap:wrap;
}

/* PREMIUM CARD */
.card{
  width:320px;
  padding: 30px 25px;
  border-radius:25px;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(20px);
  box-shadow:0 20px 50px rgba(0,0,0,0.08);
  transition:0.4s;
  text-align:center;
  position: relative;
}

.card:hover{
  transform:translateY(-12px) scale(1.02);
  box-shadow:0 30px 80px rgba(0,0,0,0.12);
}

.card:hover .badge{
  transform: translateY(-12px) scale(1.02);
}

.card img{
  width:100%;
  border-radius:15px;
  margin-bottom:15px;
}

.card h3{
  margin-bottom:8px;
  font-size:20px;
  font-weight: 600;
}

.card p{
  color:#666;
  font-size:14px;
  line-height: 1.5;
}

/* SECTIONS */
.section{
  max-width:900px;
  margin:100px auto;
  padding:60px;
  border-radius:25px;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(20px);
  box-shadow:0 20px 60px rgba(0,0,0,0.08);
  text-align:center;
}

.section h2{
  margin-bottom:15px;
  font-size:24px;
}

.section p{
  color:#555;
}

/* FOOTER */
.footer{
  text-align:center;
  padding:40px 0;
  color:#777;
  font-size:14px;
}

/* WHATSAPP */
.whatsapp{
  position:fixed;
  right:20px;
  bottom:20px;
  background:#25D366;
  color:white;
  padding:14px 20px;
  border-radius:30px;
  text-decoration:none;
  font-size:14px;
  box-shadow:0 10px 25px rgba(0,0,0,0.2);
}

/* RESPONSIVE */
@media(max-width:768px){
  .brand{
    font-size:60px;
  }

  .nav{
    padding:20px;
  }

  .products{
    flex-direction:column;
    align-items:center;
  }
}

/* SCROLL ANIMATION */
.fade-in{
  opacity:1;
  transform:translateY(0);
  transition:all 0.8s ease;
}

.fade-in.show{
  opacity:1;
  transform:translateY(0);
}

/* HERO FADE */
.hero{
  animation:fadeHero 1.2s ease;
}

@keyframes fadeHero{
  from{
    opacity:0;
    transform:translateY(20px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* PRODUCT IMAGE HOVER */
.card img{
  transition:0.5s;
}

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

/* BUTTON MICRO INTERACTION */
.btn{
  transition:all 0.3s ease;
}

.btn:hover{
  transform:translateY(-2px) scale(1.03);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

/* SMOOTH SCROLL */
html{
  scroll-behavior:smooth;
}

/* STORY SECTION */
.story-section{
  text-align:center;
  padding:60px 20px;
}

.story-section h2{
  font-size:32px;
  margin-bottom:10px;
}

.story-section p{
  color:#666;
  max-width:600px;
  margin:auto;
}

/* ZOOM SECTION */
.zoom-section{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:50px;
  padding:100px 20px;
}

.zoom-img{
  width:300px;
  transition:0.5s;
}

.zoom-section:hover .zoom-img{
  transform:scale(1.1);
}

.zoom-text{
  max-width:400px;
}

/* TRUST SECTION */
.trust-section{
  padding:100px 20px;
  text-align:center;
}

.trust-grid{
  display:flex;
  justify-content:center;
  gap:30px;
  flex-wrap:wrap;
  margin-top:30px;
}

.trust-item{
  background:white;
  padding:15px 25px;
  border-radius:50px;
  box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

/* CTA */
.cta-section{
  text-align:center;
  padding: 80px 20px;
}

.cta-section h2{
  margin-bottom:20px;
}

.story-section {
  position: relative;
  min-height: auto;
  padding: 60px 20px;
}

.story-content {
  position: sticky;
  top: 30%;
  text-align: center;
  width: 100%;
}

.story-text {
  font-size: 28px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.story-text.active {
  opacity: 1;
  transform: translateY(0);
}

.product-zoom {
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-img {
  width: 250px;
  transition: transform 0.4s ease;
}

.trust-badge {
  padding: 10px 20px;
  border-radius: 50px;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(10px);
  font-size: 14px;
  margin: 10px;
  display: inline-block;
}

.buy-fixed {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background: black;
  color: white;
  padding: 12px 20px;
  border-radius: 30px;
}

section {
  min-height: auto !important;
  padding: 60px 20px !important;
}

/* HERO SECTION FIX */
.hero-section {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;   /* THIS FIXES SIDE SHIFT */
  text-align: center;    /* ensures all text stays centered */
}
.story-section {
  display: flex;
  flex-direction: column;   /* 🔥 THIS IS THE KEY */
  align-items: center;
  justify-content: center;
  gap: 40px;               /* spacing between blocks */
}

.btn {
  display: inline-block;
  margin-top: 15px;
  width: auto;
}

.story-section {
  text-align: center;
  padding: 80px 20px;
}

.story-block {
  margin-bottom: 30px;
}

.story-block h2 {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.2px;
  margin-bottom: 10px;
}

.story-block p {
  color: #666;
  font-size: 15px;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.hero-logo{
  width: 100px;          /* adjust if needed */
  margin-bottom: 10px;   /* space between logo & Chocky */
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.hero-logo {
  width: 180px;   /* or whatever size you want */
  margin-bottom: 15px;
}

.hero-text {
  max-width: 600px;
  text-align: center;
}

.btn {
  cursor: pointer;
}

.btn:hover {
  transform: scale(1.05);
  transition: 0.2s;
}

.buy-btn {
  margin-top: 15px;
  padding: 12px 20px;
  border-radius: 25px;
  border: none;
  background: black;
  color: white;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.buy-btn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.product-page {
  max-width: 700px;
  margin: 80px auto;
  text-align: center;
  padding: 20px;
}

.product-page h1 {
  margin: 20px 0;
}

.product-page p {
  color: #555;
  line-height: 1.6;
}

.price {
  margin: 20px 0;
  font-size: 20px;
}

.sticky-buy {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: white;
  padding: 12px;
  box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
  text-align: center;
  z-index: 999;
}

.sticky-buy button {
  background: black;
  color: white;
  border: none;
  padding: 14px 25px;
  border-radius: 30px;
  font-size: 16px;
  cursor: pointer;
  width: 90%;
  max-width: 400px;
}

.sticky-buy {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: white;
  box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
  padding: 10px 15px;
  z-index: 999;
}

.sticky-inner {
  max-width: 500px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sticky-price {
  font-size: 18px;
  font-weight: 600;
}

.sticky-buy button {
  background: black;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 25px;
  font-size: 16px;
  cursor: pointer;
}

.sticky-buy {
  display: none;
}

.qty-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 10px;
}

.qty-box button {
  padding: 5px 12px;
  font-size: 18px;
  border-radius: 8px;
  border: none;
  background: black;
  color: white;
  cursor: pointer;
}

.combo-section {
  margin-top: 15px;
}

.combo-section h3 {
  margin-bottom: 10px;
}

.combo-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.combo-card {
  width: 140px;
  padding: 15px;
  border-radius: 20px;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  text-align: center;
  cursor: pointer;
  transition: 0.3s;
  position: relative;
}

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

.combo-card h4 {
  margin-bottom: 5px;
}

.combo-card p {
  font-size: 18px;
  font-weight: 600;
}

.combo-card span {
  font-size: 12px;
  color: #666;
}

.combo-card.best {
   background: rgba(255,255,255,0.9);
}

.tag {
  position: absolute;
  top: -10px;
  right: 10px;
  background: black;
  color: white;
  font-size: 10px;
  padding: 3px 8px;
  border-radius: 10px;
}

.combo-card.active {
  border: 2px solid black;
  transform: scale(1.05);
}

.tag {
  animation: pulse 1.5s infinite;
}

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

.combo-card:active {
  transform: scale(0.97);
}

.sticky-buy {
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.sticky-buy {
  transition: all 0.3s ease;
}

/* 📱 MOBILE FONT OPTIMIZATION */
@media (max-width: 768px){

  body{
    font-size:16px;
  }

  .hero h2{
    font-size:26px;
  }

  .hero p{
    font-size:15px;
  }

  .brand{
    font-size:48px;
  }

  .product-page h1{
    font-size:24px;
  }

  .product-page p{
    font-size:15px;
  }

  .price{
    font-size:18px;
  }

  .combo-card h4{
    font-size:16px;
  }

  .combo-card p{
    font-size:18px;
  }

  .btn{
    font-size:15px;
    padding:12px 22px;
  }

}

.social-proof{
  margin-top: 22px;   /* increase gap */
  font-size: 13px;
  color: #777;
  letter-spacing: 0.4px;
}

.hero-logo {
  width: 180px;
  margin-bottom: 15px;

  animation: logoBreath 3.5s ease-in-out infinite;
}

@keyframes logoBreath {
  0%   { transform: scale(1); opacity: 1; }
  50%  { transform: scale(1.03); opacity: 0.95; }
  100% { transform: scale(1); opacity: 1; }
}

.review-name {
  display: block;
  font-size: 12px;
  color: #888;
  margin-top: 5px;
  margin-bottom: 15px;
}

.contact a {
  color: #111;
  text-decoration: none;
}

.contact a:hover {
  text-decoration: underline;
}

.contact-box p {
  margin-bottom: 20px;
}

.story-line{
  width: 40px;
  height: 2px;
  background: #d4af37;
  margin: 12px auto 18px;
  border-radius: 2px;
}

.story-block{
  padding: 25px 20px;
  border-radius: 20px;
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(10px);
  transition: 0.3s;
}

.story-block:hover{
  transform: translateY(-5px);
}

.badge{
  position: absolute;
  top: 15px;
  left: 15px;
  background: black;
  color: white;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

.cta-trust{
  margin-top: 10px;
  font-size: 14px;
  color: #666;
}

.cta-urgency{
  margin-top: 12px;
  font-size: 13px;
  color: #888;
}

.cta-section .btn{
  margin-top: 15px;
  display: inline-block;
}

.section-divider{
  width: 60px;
  height: 1px;
  background: #e0e0e0;
  margin: 60px auto;
}

body{
  -webkit-font-smoothing: antialiased;
}