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

body {
  font-family: 'Montserrat', system-ui, sans-serif;
  background: #fff;
  color: #000;
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 500;
}

/* === Language Nav === */
.lang-nav {
  display: flex;
  gap: 6px;
  justify-content: center;
  padding: 16px 20px;
  background: #fafafa;
  flex-wrap: wrap;
  border-bottom: 1px solid #eee;
}

.lang-nav button {
  background: #fff;
  border: 1px solid #ddd;
  color: #333;
  padding: 6px 12px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 0.8rem;
  transition: all 0.2s;
}

.lang-nav button:hover {
  border-color: #999;
}

.lang-nav button.active {
  background: #000;
  border-color: #000;
  color: #fff;
}

/* === Header === */
.header {
  text-align: center;
  padding: 20px;
}

.flags {
  display: flex;
  gap: 12px;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 12px;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  letter-spacing: 4px;
}

/* === Hero === */
.hero {
  text-align: center;
  padding: 30px 20px 50px;
}

.hero-tag {
  display: inline-block;
  background: #000;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  padding: 6px 16px;
  margin-bottom: 20px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.hero-image {
  width: 100%;
  max-width: 700px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.hero-desc {
  font-size: 0.95rem;
  color: #666;
  max-width: 500px;
  margin: 0 auto 30px;
  line-height: 1.7;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 500px;
  margin: 0 auto 40px;
}

.logo-item {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: #888;
  padding: 12px 8px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

/* === Discount Section === */
.discount-section {
  text-align: center;
  padding: 20px 20px 50px;
  background: #fff;
}

.btn-discount {
  background: #000;
  color: #fff;
  border: none;
  padding: 16px 50px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 2px;
  cursor: pointer;
}

/* === Process === */
.process {
  padding: 50px 20px;
  background: #fafafa;
  text-align: center;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  margin-bottom: 30px;
  color: #1a1a1a;
}

.process-list {
  max-width: 500px;
  margin: 0 auto;
  text-align: left;
}

.process-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid #eee;
}

.process-item:last-child {
  border-bottom: none;
}

.process-num {
  min-width: 28px;
  height: 28px;
  background: #000;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
}

.process-item p {
  font-size: 0.95rem;
  color: #333;
  padding-top: 3px;
}

.product-img img {
  width: 100%;
  max-width: 400px;
  border-radius: 8px;
}

/* === Category Carousel === */
.category {
  padding: 0px 0px;
  text-align: center;
  background: #fff;
}

.category-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.live-dot {
  width: 8px;
  height: 8px;
  background: #25D366;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.carousel {
  position: relative;
  max-width: 400px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 8px;
}

.carousel-track {
  display: flex;
  transition: transform 0.4s ease;
}

.carousel-slide {
  min-width: 100%;
}

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

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.9);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s;
}

.carousel-btn:hover {
  background: #fff;
}

.carousel-btn-prev {
  left: 12px;
}

.carousel-btn-next {
  right: 12px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.dot {
  width: 8px;
  height: 8px;
  background: #ddd;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s;
}

.dot.active {
  background: #000;
}

/* === Reviews === */
.reviews {
  padding: 50px 20px;
  background: #fafafa;
  text-align: center;
}

.reviews-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 30px;
}

.verified-badge {
  background: #FFD700;
  color: #000;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
}

.reviews h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 500;
}

.reviews .carousel {
  max-width: 320px;
  margin: 0 auto;
}

.reviews .carousel-slide img {
  width: 100%;
  max-height: 550px;
  object-fit: cover;
  border-radius: 12px;
}

/* === Quality === */
.quality {
  padding: 60px 20px;
  text-align: center;
  background: #fff;
}

.quality-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.quality h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.quality-desc {
  font-size: 0.85rem;
  color: #666;
  max-width: 400px;
  margin: 0 auto;
  line-height: 1.7;
}

/* === Footer === */
.footer {
  text-align: center;
  padding: 40px 20px;
  background: #fafafa;
}

.catalog-link {
  color: #000;
  font-size: 0.95rem;
  text-decoration: none;
  font-weight: 500;
}

/* === Floating WhatsApp Button === */
.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  background: #000;
  border-radius: 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  z-index: 999;
  text-decoration: none;
  overflow: hidden;
  animation: breathe 2s ease-in-out infinite;
}

@keyframes breathe {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  }
  50% {
    box-shadow: 0 4px 30px rgba(37,211,102,0.5);
  }
}

.floating-wa-text {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 14px 20px 14px 18px;
  white-space: nowrap;
}

.floating-wa-icon {
  width: 50px;
  height: 50px;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.floating-wa-icon svg {
  color: #fff;
}

/* === Responsive === */
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.6rem;
  }

  .logo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .logo-item {
    font-size: 0.55rem;
    padding: 10px 6px;
  }

  .btn-whatsapp {
    padding: 12px 24px;
    font-size: 0.9rem;
  }

  .review-card {
    flex-direction: column;
    text-align: center;
  }

  .carousel-btn {
    width: 34px;
    height: 34px;
    font-size: 1.2rem;
  }
  .keyframes breathe {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  }
  50% {
    box-shadow: 0 4px 30px rgba(37,211,102,0.5);
  }
}
