@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --gold: #C6962E;
  --gold-light: #D4A84A;
  --gold-dark: #A67B1E;
  --pink: #E91E8C;
  --pink-light: #F472B6;
  --pink-soft: #FDF2F8;
  --cream: #FFF8F0;
  --cream-dark: #F5E6D3;
  --dark: #1A1A2E;
  --dark-soft: #2D2D44;
  --text: #3D3D5C;
  --text-light: #6B7280;
  --white: #FFFFFF;
  --shadow: 0 4px 30px rgba(198, 150, 46, 0.15);
  --shadow-lg: 0 20px 60px rgba(198, 150, 46, 0.2);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
  line-height: 1.7;
}

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; color: var(--dark); line-height: 1.3; }

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

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

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

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 15px 0;
  background: rgba(255, 248, 240, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: var(--transition);
  border-bottom: 1px solid rgba(198, 150, 46, 0.1);
}

.navbar.scrolled {
  padding: 10px 0;
  box-shadow: var(--shadow);
}

.navbar .container {
  display: flex; align-items: center; justify-content: space-between;
}

.nav-logo img { height: 50px; transition: var(--transition); }
.navbar.scrolled .nav-logo img { height: 40px; }

.nav-links { display: flex; gap: 30px; list-style: none; }

.nav-links a {
  font-size: 0.9rem; font-weight: 500; color: var(--text);
  position: relative; padding: 5px 0; transition: var(--transition);
}

.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--pink));
  transition: var(--transition);
}

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white) !important; padding: 10px 24px !important;
  border-radius: 50px; font-weight: 600 !important;
  box-shadow: 0 4px 15px rgba(198, 150, 46, 0.3);
}

.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(198, 150, 46, 0.4); }
.nav-cta::after { display: none !important; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 5px;
}

.hamburger span {
  width: 25px; height: 2px; background: var(--dark);
  transition: var(--transition); border-radius: 2px;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden; padding-top: 80px;
}

.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}

.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
}

.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,248,240,0.92) 0%, rgba(255,248,240,0.75) 50%, rgba(253,242,248,0.8) 100%);
}

.hero .container {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}

.hero-content { animation: fadeInUp 1s ease; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, rgba(198,150,46,0.1), rgba(233,30,140,0.1));
  padding: 8px 20px; border-radius: 50px;
  font-size: 0.8rem; font-weight: 600; color: var(--gold);
  margin-bottom: 20px; letter-spacing: 2px; text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--gold) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.1rem; color: var(--text-light);
  margin-bottom: 35px; max-width: 500px;
}

.hero-buttons { display: flex; gap: 15px; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white); padding: 16px 36px; border-radius: 50px;
  font-weight: 600; font-size: 1rem; border: none; cursor: pointer;
  box-shadow: 0 8px 30px rgba(198, 150, 46, 0.35);
  transition: var(--transition);
}

.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(198, 150, 46, 0.45); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--white); color: var(--gold);
  padding: 16px 36px; border-radius: 50px;
  font-weight: 600; font-size: 1rem; border: 2px solid var(--gold);
  cursor: pointer; transition: var(--transition);
}

.btn-secondary:hover { background: var(--gold); color: var(--white); transform: translateY(-3px); }

.hero-visual {
  position: relative; display: flex; justify-content: center;
  animation: fadeInRight 1s ease 0.3s both;
}

.hero-image-wrapper {
  position: relative; width: 400px; height: 500px;
  border-radius: 30px; overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-image-wrapper img { width: 100%; height: 100%; object-fit: cover; }

.hero-float-card {
  position: absolute; background: rgba(255,255,255,0.9);
  backdrop-filter: blur(15px); border-radius: var(--radius-sm);
  padding: 15px 20px; box-shadow: var(--shadow);
  animation: float 3s ease-in-out infinite;
}

.hero-float-card.card-1 { top: 10%; right: -30px; }
.hero-float-card.card-2 { bottom: 15%; left: -30px; animation-delay: 1.5s; }

.hero-float-card .card-icon { font-size: 1.5rem; margin-bottom: 5px; }
.hero-float-card .card-text { font-size: 0.8rem; font-weight: 600; color: var(--dark); }
.hero-float-card .card-sub { font-size: 0.7rem; color: var(--text-light); }

/* ===== SECTION STYLES ===== */
.section { padding: 100px 0; }
.section-dark { background: var(--dark); color: var(--white); }
.section-alt { background: var(--white); }

.section-header {
  text-align: center; margin-bottom: 60px;
  animation: fadeInUp 0.6s ease;
}

.section-header .tag {
  display: inline-block; font-size: 0.8rem; font-weight: 600;
  color: var(--gold); letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: 15px;
}

.section-header h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 15px; }
.section-dark .section-header h2 { color: var(--white); }

.section-header p { color: var(--text-light); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }
.section-dark .section-header p { color: rgba(255,255,255,0.7); }

/* ===== BENEFITS ===== */
.benefits-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.benefit-card {
  background: var(--white); border-radius: var(--radius);
  padding: 40px 30px; text-align: center;
  border: 1px solid rgba(198, 150, 46, 0.1);
  transition: var(--transition); position: relative; overflow: hidden;
}

.benefit-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--pink));
  transform: scaleX(0); transition: var(--transition);
}

.benefit-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.benefit-card:hover::before { transform: scaleX(1); }

.benefit-icon {
  width: 70px; height: 70px; margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(198,150,46,0.1), rgba(233,30,140,0.08));
  border-radius: 20px; display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}

.benefit-icon i, .benefit-icon svg { width: 32px; height: 32px; stroke-width: 1.8; }

.benefit-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.benefit-card p { font-size: 0.9rem; color: var(--text-light); }

/* ===== PRODUCTS CATALOG ===== */
.products-filter {
  display: flex; justify-content: center; gap: 12px;
  margin-bottom: 40px; flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 24px; border-radius: 50px;
  border: 2px solid rgba(198, 150, 46, 0.2);
  background: transparent; color: var(--text);
  font-family: 'Poppins', sans-serif; font-weight: 500;
  font-size: 0.85rem; cursor: pointer; transition: var(--transition);
}

.filter-btn.active, .filter-btn:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white); border-color: var(--gold);
}

.products-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.product-card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; border: 1px solid rgba(198, 150, 46, 0.08);
  transition: var(--transition); position: relative;
  display: flex; flex-direction: column;
}

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

.product-badge {
  position: absolute; top: 15px; left: 15px; z-index: 2;
  background: linear-gradient(135deg, var(--pink), var(--pink-light));
  color: var(--white); padding: 5px 14px; border-radius: 50px;
  font-size: 0.75rem; font-weight: 600;
}

.product-img {
  height: 280px; overflow: hidden; position: relative;
}

.product-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}

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

.product-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,26,46,0.3), transparent);
  opacity: 0; transition: var(--transition);
}

.product-card:hover .product-img-overlay { opacity: 1; }

.product-info { padding: 25px; display: flex; flex-direction: column; flex-grow: 1; }

.product-category {
  font-size: 0.75rem; font-weight: 600; color: var(--gold);
  text-transform: uppercase; letter-spacing: 2px; margin-bottom: 8px;
}

.product-info h3 { font-size: 1.3rem; margin-bottom: 8px; }

.product-desc {
  font-size: 0.85rem; color: var(--text-light);
  margin-bottom: 10px; line-height: 1.6;
}

.product-ingredients {
  font-size: 0.75rem; color: var(--text-light);
  margin-bottom: 15px; padding: 10px;
  background: var(--bg-light); border-radius: var(--radius-sm);
  border-left: 2px solid var(--gold);
}

.product-details { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 15px; }

.product-tag {
  background: var(--pink-soft); color: var(--pink);
  padding: 4px 12px; border-radius: 50px;
  font-size: 0.7rem; font-weight: 500;
}

.product-sizes {
  display: flex; gap: 8px; flex-wrap: wrap;
}

.product-sizes-group {
  margin-bottom: 18px;
  display: flex; flex-direction: column; gap: 10px;
}

.sizes-market {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}

.market-label {
  font-size: 0.7rem; font-weight: 700; color: var(--text-light);
  min-width: 50px; white-space: nowrap;
}

.size-option {
  padding: 6px 14px; border: 1.5px solid rgba(198,150,46,0.2);
  border-radius: 8px; font-size: 0.75rem; font-weight: 500;
  cursor: pointer; transition: var(--transition);
  background: transparent; font-family: 'Poppins', sans-serif;
}

.size-option.active, .size-option:hover {
  border-color: var(--gold); background: rgba(198,150,46,0.08);
  color: var(--gold);
}

.product-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 15px; border-top: 1px solid rgba(198, 150, 46, 0.08);
  margin-top: auto; flex-wrap: wrap; gap: 15px;
}

.product-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 700; color: var(--gold);
}

.product-price .currency { font-size: 0.85rem; font-weight: 400; }

.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 8px;
  background: #25D366; color: var(--white);
  padding: 12px 24px; border-radius: 50px;
  font-weight: 600; font-size: 0.85rem; border: none;
  cursor: pointer; transition: var(--transition);
  font-family: 'Poppins', sans-serif;
}

.btn-whatsapp:hover { background: #1DA851; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35); }

.btn-whatsapp svg { width: 18px; height: 18px; }

/* ===== ABOUT / VALUES ===== */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}

.about-image { position: relative; border-radius: var(--radius); }

.about-image img { border-radius: var(--radius); box-shadow: var(--shadow-lg); }

.about-images-group {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 15px;
  position: relative;
  align-items: stretch;
}

.about-img-1 {
  grid-row: 1 / 3;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3/4;
}

.about-img-2, .about-img-3 {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1/1;
}

.about-content h2 { font-size: 2.5rem; margin-bottom: 20px; }

.about-content > p { color: var(--text-light); margin-bottom: 30px; font-size: 1.05rem; }

.values-list { display: flex; flex-direction: column; gap: 15px; }

.value-item {
  display: flex; align-items: center; gap: 15px;
  padding: 15px 20px; background: var(--cream);
  border-radius: var(--radius-sm); transition: var(--transition);
}

.value-item:hover { transform: translateX(8px); box-shadow: var(--shadow); }

.value-icon {
  width: 45px; height: 45px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}

.value-item h4 { font-size: 1rem; margin-bottom: 2px; }
.value-item p { font-size: 0.8rem; color: var(--text-light); }

/* ===== LOCATIONS ===== */
.locations-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 30px;
}

.location-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); padding: 40px; text-align: center;
  transition: var(--transition);
}

.location-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-5px); }

.location-flag { font-size: 3rem; margin-bottom: 15px; }
.location-card h3 { color: var(--white); font-size: 1.5rem; margin-bottom: 8px; }
.location-card .location-address { color: rgba(255,255,255,0.6); margin-bottom: 20px; font-size: 0.9rem; }

.location-phone {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white); padding: 12px 28px; border-radius: 50px;
  font-weight: 600; font-size: 0.9rem; transition: var(--transition);
}

.location-phone:hover { transform: scale(1.05); }

/* ===== SOCIAL PROOF ===== */
.social-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px; text-align: center;
}

.social-card {
  background: var(--white); border-radius: var(--radius);
  padding: 35px 25px; border: 1px solid rgba(198,150,46,0.08);
  transition: var(--transition);
}

.social-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }

.social-card .social-icon { font-size: 2.5rem; margin-bottom: 12px; }
.social-card h3 { font-size: 2rem; color: var(--gold); margin-bottom: 5px; }
.social-card p { font-size: 0.85rem; color: var(--text-light); }

.social-card a {
  display: inline-block; margin-top: 12px;
  color: var(--pink); font-weight: 600; font-size: 0.85rem;
  transition: var(--transition);
}

.social-card a:hover { color: var(--gold); }

/* ===== FOOTER ===== */
.footer {
  background: var(--dark); color: rgba(255,255,255,0.7);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 40px;
}

.footer-brand img { height: 50px; margin-bottom: 15px; filter: brightness(2); }
.footer-brand p { font-size: 0.85rem; line-height: 1.8; }

.footer-col h4 {
  color: var(--white); font-family: 'Poppins', sans-serif;
  font-size: 0.9rem; font-weight: 600; margin-bottom: 20px;
  text-transform: uppercase; letter-spacing: 1px;
}

.footer-col ul { list-style: none; }

.footer-col li { margin-bottom: 10px; }

.footer-col a {
  color: rgba(255,255,255,0.6); font-size: 0.85rem;
  transition: var(--transition);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 25px; text-align: center;
  font-size: 0.8rem;
}

.footer-bottom span { color: var(--gold); }

/* ===== WHATSAPP FLOATING ===== */
.whatsapp-float-wrapper {
  position: fixed; bottom: 25px; right: 25px; z-index: 999;
  display: flex; flex-direction: column; align-items: flex-end;
}

.whatsapp-menu {
  background: var(--white); border-radius: var(--radius-sm);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  margin-bottom: 12px; overflow: hidden;
  opacity: 0; transform: translateY(10px) scale(0.95);
  pointer-events: none; transition: var(--transition);
}

.whatsapp-menu.open {
  opacity: 1; transform: translateY(0) scale(1);
  pointer-events: all;
}

.wa-option {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 22px; font-size: 0.9rem; font-weight: 500;
  color: var(--text); white-space: nowrap;
  transition: var(--transition); border-bottom: 1px solid rgba(0,0,0,0.05);
}

.wa-option:last-child { border-bottom: none; }

.wa-option:hover {
  background: linear-gradient(135deg, rgba(37,211,102,0.08), rgba(37,211,102,0.15));
  color: #1DA851;
}

.wa-option span { font-size: 1.3rem; }

.whatsapp-float {
  width: 60px; height: 60px; background: #25D366;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition); animation: pulse 2s ease infinite;
  border: none; cursor: pointer;
}

.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float svg { width: 32px; height: 32px; fill: white; }

/* ===== ORDER MODAL ===== */
.order-modal-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(26,26,46,0.5); backdrop-filter: blur(5px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: var(--transition);
}

.order-modal-overlay.open {
  opacity: 1; pointer-events: all;
}

.order-modal {
  background: var(--white); border-radius: var(--radius);
  padding: 35px 30px; text-align: center; max-width: 380px; width: 90%;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px) scale(0.95); transition: var(--transition);
}

.order-modal-overlay.open .order-modal {
  transform: translateY(0) scale(1);
}

.order-modal h3 { margin-bottom: 5px; font-size: 1.3rem; }

.order-option {
  border-radius: var(--radius-sm); margin-top: 10px;
  border: 1.5px solid rgba(198,150,46,0.15);
  justify-content: center; font-weight: 600;
}

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

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

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

@keyframes pulse {
  0%, 100% { box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6); }
}

.fade-in {
  opacity: 0; transform: translateY(25px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero p { margin: 0 auto 35px; }
  .hero-buttons { justify-content: center; }
  .hero-visual { order: -1; }
  .hero-image-wrapper { width: 300px; height: 380px; }
  .hero-float-card.card-1 { right: -10px; }
  .hero-float-card.card-2 { left: -10px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-images-group { margin-top: 20px; margin-bottom: 20px; gap: 15px; grid-template-columns: 1fr 1fr; }
  .about-img-1 { grid-row: auto; grid-column: 1 / -1; aspect-ratio: 16/9; }
  .about-img-2, .about-img-3 { aspect-ratio: 1/1; transform: translateY(0); }
  .locations-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255,248,240,0.98); backdrop-filter: blur(20px);
    flex-direction: column; align-items: center; justify-content: center;
    gap: 25px; z-index: 998;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.2rem; }
  .hamburger { display: flex; z-index: 999; }
  .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
  .products-grid { grid-template-columns: 1fr; }
  .hero-image-wrapper { width: 260px; height: 330px; }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 70px 0; }
}
