:root {
  --white: #ffffff;
  --black: #1e1e1e;
  --deep-red: #8B0000;
  --red: #c0152a;
  --red-mid: #a01020;
  --gold: #D4A055;
  --gold-light: #f0c070;
  --pink: #e8607a;
  --gradient: linear-gradient(135deg, #c0152a, #e8607a);
  --gold-gradient: linear-gradient(135deg, #D4A055, #f0c070);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  --transition: 0.4s ease;
  --header-height: 90px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: "Poppins", sans-serif;
  color: var(--white);
  background: var(--deep-red);
  overflow-x: hidden;
}
img { width: 100%; display: block; }
a { text-decoration: none; }

.container { width: 90%; max-width: 1200px; margin: auto; }
.section { padding: 100px 0; }

/* Section Titles */
.section-title { text-align: center; margin-bottom: 60px; }
.section-title span {
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 13px;
}
.section-title h2 {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  margin-top: 10px;
  color: var(--white);
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; border: none; cursor: pointer; transition: var(--transition); font-weight: 600;
}
.primary-btn {
  background: var(--gradient);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 50px;
  box-shadow: 0 8px 25px rgba(192, 21, 42, 0.5);
}
.primary-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(192,21,42,0.6); }
.secondary-btn {
  border: 2px solid rgba(255,255,255,0.4);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 50px;
  background: transparent;
}
.secondary-btn:hover { background: var(--gradient); border-color: transparent; }
.small-btn {
  padding: 10px 18px; border-radius: 30px;
  background: var(--gradient); color: var(--white); font-size: 13px;
}
.full-btn { width: 100%; padding: 16px; font-size: 16px; }
.full-width { grid-column: 1 / -1; }

/* ─── HEADER ─── */
header {
  position: fixed; width: 100%; top: 0; z-index: 1000;
  transition: var(--transition);
  background: transparent;
}
header.scrolled {
  background: rgba(100, 5, 15, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

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

.logo img { height: 60px; width: auto; object-fit: contain; }

.nav-menu { display: flex; gap: 30px; }
.nav-menu a { color: rgba(255,255,255,0.85); font-weight: 500; transition: var(--transition); }
.nav-menu a:hover { color: var(--gold); }

.navbar-right { display: flex; align-items: center; gap: 16px; }

/* CART ICON */
.cart-icon-btn {
  position: relative; background: rgba(255,255,255,0.1); border: none; cursor: pointer;
  font-size: 20px; color: var(--white); transition: var(--transition);
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.cart-icon-btn:hover { background: rgba(255,255,255,0.2); }
.cart-badge {
  position: absolute; top: -4px; right: -4px;
  background: #ff3860; color: white;
  font-size: 11px; font-weight: 700;
  width: 20px; height: 20px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--deep-red);
}

.menu-toggle {
  display: none; font-size: 26px; cursor: pointer; color: var(--white);
  width: 44px; height: 44px; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.1); border-radius: 8px;
}

/* CART SIDEBAR */
.cart-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.6); z-index: 1100;
}
.cart-overlay.active { display: block; }
.cart-sidebar {
  position: fixed; top: 0; right: -420px; width: 400px; height: 100vh;
  background: #1a0005; z-index: 1200; box-shadow: -10px 0 40px rgba(0,0,0,0.5);
  transition: right 0.4s ease; display: flex; flex-direction: column;
  border-left: 1px solid rgba(212,160,85,0.2);
}
.cart-sidebar.active { right: 0; }
.cart-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 28px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.cart-header h3 {
  font-family: "Playfair Display", serif; font-size: 20px;
  display: flex; gap: 10px; align-items: center; color: var(--gold);
}
.cart-close { background: none; border: none; font-size: 22px; cursor: pointer; color: #888; transition: var(--transition); }
.cart-close:hover { color: var(--gold); }
.cart-items { flex: 1; overflow-y: auto; padding: 20px 28px; }
.cart-empty { color: rgba(255,255,255,0.4); text-align: center; margin-top: 40px; }
.cart-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.06); gap: 10px;
}
.cart-item-info { flex: 1; }
.cart-item-info strong { display: block; font-size: 14px; margin-bottom: 4px; color: var(--white); }
.cart-item-info span { font-size: 13px; color: var(--gold); font-weight: 600; }
.cart-item-controls { display: flex; align-items: center; gap: 8px; }
.cart-item-controls button {
  width: 28px; height: 28px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05); cursor: pointer; font-size: 14px; font-weight: 700; color: white;
  display: flex; align-items: center; justify-content: center; transition: var(--transition);
}
.cart-item-controls button:hover { background: var(--gradient); border-color: transparent; }
.cart-item-controls span { font-weight: 600; min-width: 20px; text-align: center; color: white; }
.cart-item-remove { background: none; border: none; color: #555; cursor: pointer; font-size: 16px; transition: var(--transition); }
.cart-item-remove:hover { color: var(--gold); }
.cart-footer { padding: 20px 28px; border-top: 1px solid rgba(255,255,255,0.08); }
.cart-total {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 16px; font-size: 18px; color: var(--white);
}
.cart-total strong { font-size: 22px; color: var(--gold); }

/* ORDER CART SUMMARY */
.order-cart-summary {
  background: rgba(0,0,0,0.25);
  border-radius: 20px; padding: 30px;
  box-shadow: var(--shadow); margin-bottom: 30px;
  border-left: 4px solid var(--gold);
}
.order-cart-summary h4 {
  font-size: 18px; margin-bottom: 16px;
  display: flex; gap: 8px; align-items: center; color: var(--gold);
}
.order-cart-total { margin-top: 16px; font-size: 16px; font-weight: 600; text-align: right; color: var(--white); }
.order-cart-total strong { color: var(--gold); font-size: 20px; }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    url("images/papap.png")
    center center / cover no-repeat;
}

/* Dark red overlay to match the image's deep crimson tone */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(100, 5, 10, 0.88) 0%,
    rgba(140, 10, 25, 0.80) 50%,
    rgba(100, 5, 10, 0.75) 100%
  );
  z-index: 0;
}

/* Decorative golden leaves (right side) */
.hero-leaves {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 280px;
  height: 500px;
}

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

.hero-content h1 {
  font-family: "Playfair Display", serif;
  font-size: 72px;
  line-height: 1.05;
  margin-bottom: 16px;
  font-weight: 700;
  color: var(--white);
}

/* "Natural" and "Beauty" in gold/warm tone like image */
.hero-gold {
  color: var(--gold);
  font-style: italic;
}
.hero-white {
  color: var(--white);
}

/* Divider with gold star */
.hero-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0;
}
.hero-divider::before,
.hero-divider::after {
  content: "";
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.hero-star {
  color: var(--gold);
  font-size: 18px;
}

.hero-desc {
  font-size: 17px;
  line-height: 1.9;
  color: rgba(255,255,255,0.88);
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-gold-text {
  color: var(--gold);
  font-weight: 600;
}

/* Hero Buttons — matching image */
.hero-buttons { display: flex; flex-direction: column; gap: 16px; max-width: 340px; }

.hero-btn-primary {
  background: linear-gradient(135deg, #a01020, #c0152a);
  color: var(--white);
  padding: 18px 32px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), 0 8px 25px rgba(0,0,0,0.3);
  justify-content: space-between;
  width: 100%;
}
.hero-btn-primary:hover {
  background: linear-gradient(135deg, #b5172b, #d62839);
  transform: translateY(-2px);
}
.btn-arrow {
  width: 36px; height: 36px; background: rgba(255,255,255,0.2);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 14px;
}

.hero-btn-secondary {
  background: transparent;
  color: var(--gold);
  padding: 17px 32px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  border: 1.5px solid var(--gold);
  width: 100%;
  justify-content: center;
}
.hero-btn-secondary:hover {
  background: rgba(212,160,85,0.15);
  transform: translateY(-2px);
}

.hero-image img {
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  object-fit: cover;
  max-height: 75vh;
}

/* ─── PRODUCTS ─── */
.products { background: linear-gradient(180deg, var(--deep-red) 0%, #6b0010 100%); }
.products-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 28px; }
.product-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px; overflow: hidden;
  box-shadow: var(--shadow); transition: var(--transition);
  backdrop-filter: blur(10px);
}
.product-card:hover { transform: translateY(-8px); border-color: rgba(212,160,85,0.3); }
.product-card img { height: 280px; object-fit: cover; transition: var(--transition); }
.product-card:hover img { transform: scale(1.05); }
.product-info { padding: 22px; }
.product-info h3 { margin-bottom: 8px; color: var(--white); font-size: 16px; font-weight: 600; }
.product-info p { margin-bottom: 18px; color: rgba(255,255,255,0.6); font-size: 14px; }
.product-bottom { display: flex; justify-content: space-between; align-items: center; }
.product-bottom > span { font-size: 20px; font-weight: 700; color: var(--gold); }

/* ─── ABOUT / CAROUSEL ─── */
.about { background: linear-gradient(180deg, #6b0010 0%, #4a0008 100%); padding: 80px 0; }
.about-content { text-align: center; margin-top: 50px; }
.about-content span { color: var(--gold); font-weight: 600; text-transform: uppercase; letter-spacing: 2px; font-size: 13px; }
.about-content h2 { font-family: "Playfair Display", serif; font-size: 40px; margin: 16px 0; color: var(--white); }
.about-content p { margin-bottom: 14px; line-height: 1.8; color: rgba(255,255,255,0.75); max-width: 600px; margin-left: auto; margin-right: auto; }

/* ─── WIG CAROUSEL ─── */
.wig-carousel-wrapper {
  position: relative; width: 100%; overflow: hidden;
  border-radius: 24px; min-width: 0;
}
.wig-carousel-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.wig-card {
  min-width: 280px; flex: 0 0 280px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px; overflow: hidden;
  box-shadow: var(--shadow); margin-right: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.wig-card:hover { transform: translateY(-8px); border-color: rgba(212,160,85,0.3); }
.wig-img-wrap { position: relative; overflow: hidden; }
.wig-img-wrap img { width: 100%; height: 320px; object-fit: cover; display: block; transition: transform 0.5s ease; }
.wig-card:hover .wig-img-wrap img { transform: scale(1.07); }
.wig-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--gradient); color: white;
  font-size: 11px; font-weight: 700; padding: 5px 14px;
  border-radius: 30px; letter-spacing: 0.5px; text-transform: uppercase;
}
.wig-badge.new { background: linear-gradient(135deg, #7b2ff7, #f107a3); }
.wig-info { padding: 18px; }
.wig-info h3 { font-family: "Playfair Display", serif; font-size: 16px; margin-bottom: 8px; color: var(--white); }
.wig-info p { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.6; margin-bottom: 14px; }
.wig-bottom { display: flex; justify-content: space-between; align-items: center; gap: 10px; flex-wrap: wrap; }
.wig-price { font-size: 19px; font-weight: 700; color: var(--gold); }

.wig-controls { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 24px; }
.wig-arrow {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid var(--gold); background: rgba(212,160,85,0.1);
  color: var(--gold); font-size: 14px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); flex-shrink: 0;
}
.wig-arrow:hover { background: var(--gold-gradient); color: var(--deep-red); border-color: transparent; transform: scale(1.1); }
.wig-dots { display: flex; gap: 8px; align-items: center; }
.wig-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.2); cursor: pointer;
  transition: var(--transition); border: none;
}
.wig-dot.active { background: var(--gold); width: 26px; border-radius: 10px; }

/* ─── BEFORE AFTER ─── */
.before-after { background: #3a0008; }
.comparison-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.comparison-card { position: relative; }
.comparison-card img { border-radius: 20px; height: 420px; object-fit: cover; }
.comparison-card span {
  position: absolute; bottom: 20px; left: 20px;
  background: rgba(0,0,0,0.5); padding: 10px 20px;
  border-radius: 30px; backdrop-filter: blur(10px);
  color: var(--gold); font-weight: 600; border: 1px solid rgba(212,160,85,0.3);
}

/* ─── TESTIMONIALS ─── */
.testimonials { background: linear-gradient(180deg, #3a0008 0%, var(--deep-red) 100%); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 28px; }
.testimonial-card {
  padding: 36px; border-radius: 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px); box-shadow: var(--shadow);
}
.testimonial-card p { margin-bottom: 16px; line-height: 1.8; color: rgba(255,255,255,0.8); }
.testimonial-card h4 { color: var(--gold); font-weight: 600; }

/* ─── ORDER FORM ─── */
.order { background: var(--deep-red); }
.order-form {
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow); border-radius: 24px;
  padding: 44px; display: grid; grid-template-columns: repeat(2,1fr); gap: 18px;
}
.form-group input, .form-group textarea {
  width: 100%; padding: 15px 18px; border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12); outline: none; font-family: inherit;
  background: rgba(255,255,255,0.07); color: var(--white); font-size: 14px;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.4); }
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--gold); background: rgba(255,255,255,0.1);
}
#formMessage { grid-column: 1 / -1; margin-top: 10px; font-weight: 600; }

/* ─── FOOTER ─── */
.footer { background: #0d0003; color: white; padding-top: 80px; border-top: 1px solid rgba(212,160,85,0.15); }
.footer-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 40px; }
.footer h3, .footer h4 { margin-bottom: 18px; color: var(--gold); }
.footer p, .footer a { color: rgba(255,255,255,0.6); margin-bottom: 10px; display: block; transition: var(--transition); }
.footer a:hover { color: var(--gold); }
.social-icons { display: flex; gap: 12px; margin-top: 16px; }
.social-icons a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(212,160,85,0.15); border: 1px solid rgba(212,160,85,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); transition: var(--transition);
}
.social-icons a:hover { background: var(--gold-gradient); color: var(--deep-red); }
.footer-bottom {
  text-align: center; padding: 28px 0; margin-top: 50px;
  border-top: 1px solid rgba(255,255,255,0.06); color: rgba(255,255,255,0.35); font-size: 14px;
}

/* WhatsApp */
.whatsapp-btn {
  position: fixed; right: 20px; bottom: 20px;
  width: 58px; height: 58px; background: #25d366;
  border-radius: 50%; display: flex; justify-content: center;
  align-items: center; color: white; font-size: 28px;
  z-index: 1000; box-shadow: 0 8px 25px rgba(37,211,102,0.4);
  transition: var(--transition);
}
.whatsapp-btn:hover { transform: scale(1.1); }

/* Animation */
.fade-in { opacity: 0; transform: translateY(30px); transition: 1s ease; }
.fade-in.active { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─── */
@media (max-width: 991px) {
  .hero-container { grid-template-columns: 1fr; text-align: left; padding-top: 120px; }
  .hero-image { display: none; }
  .hero-content h1 { font-size: 52px; }
  .hero-buttons { max-width: 100%; }
  .comparison-grid { grid-template-columns: 1fr; }
  .order-form { grid-template-columns: 1fr; }
  .cart-sidebar { width: 100%; right: -100%; }
}

@media (max-width: 768px) {
  .nav-menu {
    position: absolute; top: 90px; right: -100%; width: 260px;
    background: #1a0005; flex-direction: column; padding: 28px;
    box-shadow: var(--shadow); transition: var(--transition);
    border: 1px solid rgba(212,160,85,0.15); border-radius: 0 0 0 20px;
  }
  .nav-menu.active { right: 0; }
  .menu-toggle { display: flex; }
  .hero-content h1 { font-size: 44px; }
  .section-title h2 { font-size: 32px; }

  /* Carousel Mobile */
  .wig-carousel-wrapper { border-radius: 18px; }
  .wig-card { flex: 0 0 calc(100%); min-width: calc(100%); margin-right: 0; }
  .wig-img-wrap img { height: 240px; }
}

@media (min-width: 1025px) {
  .wig-card { flex: 0 0 calc(33.333% - 14px); min-width: calc(33.333% - 14px); }
}
@media (max-width: 1024px) and (min-width: 769px) {
  .wig-card { flex: 0 0 calc(50% - 10px); min-width: calc(50% - 10px); }
}