/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

/* HEADER */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 240, 245, 0.9);
  backdrop-filter: blur(10px);
}

/* NAVBAR */
.navbar {
  max-width: 1200px;
  margin: auto;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 50%;
}

.logo span {
  font-size: 1.3rem;
  font-weight: 600;
  color: #c48b9f;
}

/* LINKS */
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: #444;
  font-size: 0.95rem;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #f4b6c2;
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: #c48b9f;
}

.nav-links a:hover::after {
  width: 100%;
}

/* CTA BUTTON */
.nav-cta {
  background: linear-gradient(135deg, #f4b6c2, #c48b9f);
  color: white !important;
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  font-weight: 500;
  box-shadow: 0 8px 20px rgba(196, 139, 159, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(196, 139, 159, 0.6);
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #c48b9f;
  border-radius: 5px;
  transition: all 0.3s ease;
}

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

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff0f5;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem 0;
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease;
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
}
/* NAVBAR END */

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, #fff0f5, #ffeef3);
  padding: 6rem 1.5rem 4rem;
  overflow: hidden;
}

.hero-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
}

/* TEXT */
.hero-text {
  animation: fadeSlideLeft 1s ease forwards;
}

.hero-badge {
  display: inline-block;
  background: rgba(196, 139, 159, 0.15);
  color: #c48b9f;
  padding: 0.4rem 0.9rem;
  border-radius: 20px;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.hero-text h1 {
  font-size: 3rem;
  line-height: 1.15;
  margin-bottom: 1rem;
  color: #333;
}

.hero-text h1 span {
  color: #c48b9f;
}

.hero-text p {
  color: #666;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  max-width: 480px;
}

/* PRICE */
.hero-price {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-price .current {
  font-size: 1.8rem;
  font-weight: 700;
  color: #c48b9f;
}

.hero-price .old {
  font-size: 0.9rem;
  color: #999;
  text-decoration: line-through;
}

/* CTA */
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, #25d366, #1ebe5d);
  color: white;
  padding: 0.9rem 1.8rem;
  border-radius: 40px;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.6);
}

/* IMAGE */
.hero-image {
  text-align: center;
  animation: fadeSlideRight 1s ease forwards;
}

.hero-image img {
  width: 100%;
  max-width: 420px;
  border-radius: 30px;
  box-shadow: 0 25px 60px rgba(196, 139, 159, 0.35);
  animation: float 4s ease-in-out infinite;
}

/* ANIMATIONS */
@keyframes fadeSlideLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

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

/* MOBILE */
@media (max-width: 900px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 2.4rem;
  }

  .hero-price {
    justify-content: center;
  }

  .hero-text p {
    margin-left: auto;
    margin-right: auto;
  }
}

/* HERO SECTION END */

.featured-products {
  background: #fff;
  padding: 6rem 1.5rem;
}

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

.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 4rem;
}

.mini-title {
  display: inline-block;
  color: #c48b9f;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.section-header h2 {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

.section-header p {
  color: #666;
  font-size: 1rem;
}

/* GRID */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
}

/* CARD */
.product-card {
  background: #fff0f5;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(196, 139, 159, 0.18);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.product-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(196, 139, 159, 0.35);
}

/* IMAGE */
.product-image {
  position: relative;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

/* BADGE */
.product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #c48b9f;
  color: #fff;
  padding: 0.35rem 0.9rem;
  border-radius: 20px;
  font-size: 0.75rem;
}

.product-badge.soft {
  background: #f4b6c2;
}

/* INFO */
.product-info {
  padding: 1.8rem;
  text-align: center;
}

.product-info h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.product-info p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
}

/* PRICE */
.product-price {
  margin-bottom: 1.3rem;
}

.product-price .price {
  font-size: 1.2rem;
  font-weight: 700;
  color: #c48b9f;
}

.product-price .old-price {
  display: block;
  font-size: 0.8rem;
  color: #999;
  text-decoration: line-through;
}

/* BUTTON */
.order-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #25d366;
  color: white;
  padding: 0.65rem 1.4rem;
  border-radius: 30px;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.order-btn:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
}

/* MOBILE */
@media (max-width: 768px) {
  .section-header h2 {
    font-size: 2rem;
  }
}
/* FEATURED PRODUCTS END */

.why-us {
  padding: 6rem 1.5rem;
  background: linear-gradient(135deg, #fff5f8, #ffffff);
}

.why-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* LEFT */
.why-badge {
  display: inline-block;
  background: #f6c1d1;
  color: #7a2e4d;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.why-text h2 {
  font-size: 2.6rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.why-text h2 span {
  color: #c46a8a;
}

.why-text p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 2rem;
}

.why-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #25d366;
  color: #fff;
  padding: 0.9rem 1.6rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.why-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

/* CARDS */
.why-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.why-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 18px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.why-card i {
  font-size: 2rem;
  color: #c46a8a;
  margin-bottom: 1rem;
}

.why-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.why-card p {
  font-size: 0.9rem;
  color: #666;
}

.why-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 60px rgba(196, 106, 138, 0.3);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .why-container {
    grid-template-columns: 1fr;
  }

  .why-text h2 {
    font-size: 2.2rem;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* WHY CHOOSE US END */

.testimonials {
  padding: 6rem 1.5rem;
  background: linear-gradient(135deg, #ffffff, #fff0f5);
  overflow: hidden;
}

.testimonials-container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

/* Header */
.test-badge {
  display: inline-block;
  background: #f6c1d1;
  color: #7a2e4d;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.testimonials h2 {
  font-size: 2.5rem;
  margin-bottom: 0.8rem;
}

.testimonials h2 span {
  color: #c46a8a;
}

.testimonials p {
  color: #666;
  margin-bottom: 3rem;
}

/* Slider */
.testimonial-slider {
  position: relative;
  display: flex;
  align-items: center;
}

.testimonial-track {
  display: flex;
  gap: 2rem;
  transition: transform 0.6s ease;
}

/* Card */
.testimonial-card {
  min-width: 320px;
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  opacity: 0.5;
  transform: scale(0.9);
  transition: all 0.5s ease;
}

.testimonial-card.active {
  opacity: 1;
  transform: scale(1);
}

.testimonial-card img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

.testimonial-card p {
  font-size: 0.95rem;
  font-style: italic;
  margin-bottom: 1rem;
}

.testimonial-card h4 {
  margin: 0;
}

.testimonial-card span {
  font-size: 0.85rem;
  color: #999;
}

/* Buttons */
.slide-btn {
  background: #ffffff;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: 0.3s;
}

.slide-btn:hover {
  transform: scale(1.1);
}

.prev {
  margin-right: 1rem;
}

.next {
  margin-left: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .testimonial-card {
    min-width: 260px;
  }

  .testimonials h2 {
    font-size: 2rem;
  }
}

/* TESTIMONIALS END */

.ordering {
  padding: 6rem 1.5rem;
  background: linear-gradient(135deg, #fff0f5, #ffffff);
}

.ordering-container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

/* Header */
.ordering-badge {
  display: inline-block;
  background: #f6c1d1;
  color: #7a2e4d;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.ordering-header h2 {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

.ordering-header p {
  color: #666;
  margin-bottom: 3rem;
}

/* Steps Grid */
.ordering-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

/* Step Card */
.order-step {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(196, 106, 138, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  opacity: 0;
  transform: translateY(40px);
  text-align: center;
}

.order-step.active {
  opacity: 1;
  transform: translateY(0);
}

.order-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(196, 106, 138, 0.25);
}

.step-icon {
  font-size: 2.5rem;
  color: #c46a8a;
  margin-bottom: 1rem;
}

.order-step h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.order-step p {
  color: #555;
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
  .ordering-header h2 {
    font-size: 2rem;
  }
}
/* ORDER PROCESS END */

.contact {
  padding: 6rem 1.5rem;
  background: linear-gradient(135deg, #fff5f8, #ffffff);
}

.contact-container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

/* Header */
.contact-badge {
  display: inline-block;
  background: #f6c1d1;
  color: #7a2e4d;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.contact-header h2 {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

.contact-header p {
  color: #555;
  margin-bottom: 3rem;
}

/* Contact Cards Grid */
.contact-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.contact-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(196, 106, 138, 0.1);
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(40px);
  text-align: center;
}

.contact-card.active {
  opacity: 1;
  transform: translateY(0);
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(196, 106, 138, 0.25);
}

.contact-card i {
  font-size: 2.5rem;
  color: #c46a8a;
  margin-bottom: 1rem;
}

.contact-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.contact-card p a {
  color: #555;
  text-decoration: none;
  font-weight: 500;
}

.contact-card p a:hover {
  color: #c46a8a;
}

/* CTA Button */
.contact-cta a {
  background: #25d366;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.3s ease;
}

.contact-cta a:hover {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  .contact-header h2 {
    font-size: 2rem;
  }
}
/* CONTACT END */

.footer {
  background: #fdf0f5;
  padding: 4rem 1.5rem;
  text-align: center;
}

.footer-container {
  max-width: 1100px;
  margin: auto;
}

/* Brand */
.footer-brand h2 {
  font-size: 2rem;
  color: #c46a8a;
  margin-bottom: 0.5rem;
}

.footer-brand p {
  color: #555;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

/* Socials */
.footer-socials {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.footer-socials a {
  color: #c46a8a;
  font-size: 1.5rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer-socials a:hover {
  color: #7a2e4d;
  transform: scale(1.2);
}

/* Location */
.footer-location {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.footer-location i {
  color: #c46a8a;
  font-size: 1.2rem;
}

/* CTA */
.footer-cta a {
  background: #25d366;
  color: #fff;
  padding: 0.9rem 2rem;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.3s ease;
  margin-bottom: 2rem;
}

.footer-cta a:hover {
  transform: scale(1.05);
}

/* Copyright */
.footer-copy p {
  color: #777;
  font-size: 0.85rem;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .footer-brand h2 {
    font-size: 1.8rem;
  }

  .footer-socials {
    gap: 1rem;
  }
}
/* FOOTER END */
