
:root {
  /* 🔴 PRIMARY - Red (Kuat & Energi) */
  --primary: #C40C0C;
  --primary-dark: #8F0909;
  --primary-light: #E42A2A;
  
  /* 🟠 SECONDARY - Deep Orange (Semangat & CTA) */
  --secondary: #FF6500;
  --secondary-dark: #CC5200;
  --secondary-light: #FF8A08;
  
  /* 🟡 ACCENT - Gold (Hangat & Premium) */
  --accent: #FFC100;
  --accent-light: #FFD84D;
  --accent-dark: #E6A700;
  
  /* ⚫ NEUTRALS - Clean & Modern */
  --dark: #1A1A1A;
  --gray-dark: #333333;
  --gray: #777777;
  --gray-light: #DDDDDD;
  --light: #FFF8F2;
  --white: #FFFFFF;
  --cream: #FFF4D2;
  
  /* ✅ STATUS COLORS */
  --success: #22C55E;
  --info: #3B82F6;
  --warning: #FACC15;
  --error: #EF4444;
  
  /* ☁️ SHADOWS */
  --shadow-sm: 0 1px 3px rgba(255, 101, 0, 0.08);
  --shadow: 0 4px 16px rgba(255, 101, 0, 0.12);
  --shadow-lg: 0 12px 28px rgba(255, 101, 0, 0.15);
  --shadow-xl: 0 20px 40px rgba(255, 101, 0, 0.18);
  
  /* 🌈 GRADIENTS */
  --gradient-primary: linear-gradient(135deg, #C40C0C 0%, #FF6500 100%);
  --gradient-warm: linear-gradient(135deg, #FF6500 0%, #FF8A08 100%);
  --gradient-premium: linear-gradient(135deg, #FF8A08 0%, #FFC100 100%);
  --gradient-hero: linear-gradient(135deg, #C40C0C 0%, #FF6500 50%, #FFC100 100%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  line-height: 1.6;
  font-size: 15px;
}

/* 🔹 Container Full Width */
.container,
.container-modern,
.site-header .container,
.profile-content-section,
.products-section,
.section-modern,
.faq-section,
.reviews-section,
.catalog-hero,
.filter-section,
.hero-carousel-section {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding-left: 0;
  padding-right: 0;
  border-radius: 0;
}



/* =========================================
   HERO CAROUSEL - Fresh Gradient (Responsive)
   ========================================= */
.hero-carousel-section {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  height: 75vh;
  position: relative;
  overflow: hidden;
}

.hero-carousel-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.4) 0%, 
    rgba(0, 0, 0, 0.6) 50%, 
    rgba(0, 0, 0, 0.75) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 8%;
  color: #fff;
  z-index: 3;
}

.hero-text {
  max-width: 800px;
  animation: fadeInUp 1s ease both;
  text-align: center;
  margin: 0 auto;
}

.hero-text h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease 0.1s backwards;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
  letter-spacing: -0.5px;
}

.hero-text p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 25px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.2);
  animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 35px;
}

.btn-modern {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* 🔥 CTA Button - Coral */
.btn-primary-modern {
  background: var(--gradient-warm);
  color: #fff;
  box-shadow: 0 8px 25px rgba(255, 101, 0, 0.4);
  border: 2px solid rgba(255,255,255,0.3);
  transition: all 0.4s ease;
}

.btn-primary-modern:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 138, 8, 0.6);
  background: var(--gradient-premium);
}

/* ✨ Shimmer Effect */
.btn-primary-modern::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.5),
    transparent
  );
  transform: skewX(-20deg);
  transition: all 0.5s ease;
}

.btn-primary-modern:hover::after {
  left: 125%;
}

/* 🔹 Outline Button */
.btn-outline-modern {
  border: 2px solid rgba(255,255,255,0.8);
  color: #fff;
  background: transparent;
  box-shadow: inset 0 0 15px rgba(255,255,255,0.15);
  transition: all 0.3s ease;
}

.btn-outline-modern:hover {
  background: rgba(255,255,255,0.2);
  border-color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(255,255,255,0.4);
  backdrop-filter: blur(10px);
}

.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.hero-stat {
  text-align: center;
}

.hero-stat-number {
  display: block;
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--cream);
  text-shadow: 0 4px 25px rgba(0,0,0,0.4);
}

.hero-stat-label {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.3px;
}

.hero-dots {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}

.hero-dot {
  width: 10px;
  height: 10px;
  background: rgba(255,255,255,0.4);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-dot.active {
  width: 28px;
  border-radius: 4px;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent-light);
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =========================================
   📱 RESPONSIVE ADJUSTMENTS
   ========================================= */

/* Tablet (≤ 992px) */
@media (max-width: 992px) {
  .hero-carousel-section {
    height: 65vh;
  }

  .hero-text h1 {
    font-size: 2.3rem;
  }

  .hero-text p {
    font-size: 1.05rem;
  }

  .hero-buttons {
    gap: 12px;
  }

  .btn-modern {
    padding: 12px 26px;
    font-size: 0.95rem;
  }

  .hero-stat-number {
    font-size: 1.8rem;
  }

  .hero-stat-label {
    font-size: 0.9rem;
  }
}

/* Mobile (≤ 600px) */
@media (max-width: 600px) {
  .hero-carousel-section {
    height: 90vh;
  }

  .hero-overlay {
    padding: 40px 5%;
  }

  .hero-text h1 {
    font-size: 1.7rem;
    line-height: 1.25;
    margin-bottom: 15px;
  }

  .hero-text p {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
  }

  .btn-modern {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  .hero-stats {
    gap: 25px;
  }

  .hero-stat-number {
    font-size: 1.5rem;
  }

  .hero-stat-label {
    font-size: 0.85rem;
  }

  .hero-dots {
    bottom: 15px;
    gap: 8px;
  }

  .hero-dot {
    width: 8px;
    height: 8px;
  }

  .hero-dot.active {
    width: 20px;
  }
}
/* ========================================
   WHY CHOOSE US - Premium Look
   ======================================== */
.why-section-elegant {
  background: var(--light); 
  padding: 100px 8%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.why-container-elegant {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  max-width: 1300px;
  width: 100%;
}

.why-text-elegant {
  flex: 1;
  color: var(--dark);
  animation: fadeInUp 0.8s ease;
  text-align: left;
}

.why-title {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--dark);
  margin-bottom: 25px;
  line-height: 1.25;
}

.why-title span {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;  
}

.why-description {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--gray-dark);
  max-width: 520px;
}

.why-image-elegant {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.why-image-elegant img {
  width: 100%;
  max-width: 520px;
  border-radius: 0 60px 0 60px;
  box-shadow: 0 15px 40px rgba(255, 94, 58, 0.25);
  object-fit: cover;
  transition: all 0.5s ease;
  border: 4px solid var(--primary-light);
}

.why-image-elegant img:hover {
  transform: scale(1.03);
  box-shadow: 0 20px 50px rgba(255, 94, 58, 0.25);
}

.why-section-elegant::before {
  content: "✶";
  position: absolute;
  left: 8%;
  top: 20%;
  font-size: 38px;
  color: var(--primary-light);
  opacity: 0.2;
  transform: rotate(10deg);
}

.why-section-elegant::after {
  content: "✷";
  position: absolute;
  right: 10%;
  bottom: 18%;
  font-size: 40px;
  color: var(--accent-light);
  opacity: 0.2;
  transform: rotate(-10deg);
}

@media (max-width: 992px) {
  .why-container-elegant {
    flex-direction: column;
    text-align: center;
  }
  .why-text-elegant {
    order: 2;
  }
  .why-image-elegant {
    order: 1;
    justify-content: center;
  }
  .why-description {
    margin: 0 auto;
  }
}

/* ========================================
   TAHAPAN PEMBELIAN - Clean & Modern
   ======================================== */
/* ========================================
    SECTION STYLES
   ======================================== */
.section-modern {
  padding: 80px 20px;
  background: var(--light);
}

.container-modern {
  margin-left: calc(-50vw + 50%);
  border-radius: 0;
  min-height: 90vh;
  max-width: 1140px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-tag {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 5px 14px;
  border-radius: 18px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  box-shadow: 0 3px 10px rgba(99, 102, 241, 0.25);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 14px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.65;
}

.steps-section {
  padding: 100px 8%;
  position: relative;
  overflow: hidden;
  background: #ffffff;
}

.steps-container {
  max-width: 1300px;
  margin: 0 auto;
}

.section-header.center {
  text-align: center;
  margin-bottom: 70px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 35px;
  margin-top: 60px;
}

.step-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(20, 184, 166, 0.12);
  padding: 40px 25px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  border: 2px solid transparent;
}

.step-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(20, 184, 166, 0.2);
  border-color: var(--primary-light);
}

.step-card:hover::before {
  opacity: 0.05;
}

.step-icon {
  font-size: 2.4rem;
  color: var(--primary);
  background: linear-gradient(135deg, rgba(20,184,166,0.15), rgba(94,234,212,0.1));
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-light);
}

.step-card:hover .step-icon {
  background: var(--gradient-warm);
  color: #fff;
  transform: rotate(10deg) scale(1.05);
  border-color: var(--secondary);
}

.step-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}

.step-card p {
  font-size: 0.95rem;
  color: var(--gray-dark);
  line-height: 1.6;
}

.steps-section::before {
  content: "❄️";
  position: absolute;
  top: 15%;
  left: 8%;
  font-size: 40px;
  opacity: 0.1;
}

.steps-section::after {
  content: "✨";
  position: absolute;
  right: 8%;
  bottom: 10%;
  font-size: 38px;
  opacity: 0.1;
}

@media (max-width: 768px) {
  .steps-section {
    padding: 80px 6%;
  }
  .section-title {
    font-size: 1.9rem;
  }
  .step-card {
    padding: 30px 20px;
  }
}

/* ========================================
   PRODUCTS SECTION - Eye-Catching
   ======================================== */
.products-section {
  padding: 80px 20px;
  background: white;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 20px;
  margin-bottom: 36px;
}

.product-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: all 0.35s ease;
  border: 1px solid #e5e9f2;
  position: relative;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.18);
}

.product-image {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--light) 0%, #e2e8f0 100%);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.08) rotate(1deg);
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent);
  color: white;
  padding: 5px 12px;
  border-radius: 18px;
  font-size: 11px;
  font-weight: 700;
  z-index: 2;
  box-shadow: 0 3px 10px rgba(245, 158, 11, 0.35);
  animation: pulse 2s infinite;
  letter-spacing: 0.3px;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.04);
  }
}

.product-info {
  padding: 20px;
}

.product-category {
  font-size: 11px;
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 7px;
}

.product-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 10px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 56px;
  letter-spacing: -0.2px;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid #f1f5f9;
}

.product-price {
  font-size: 1.4rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
}

.product-sold {
  font-size: 13px;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 3px;
}

.product-sold::before {
  content: '🔥';
  font-size: 14px;
}

.product-actions {
  display: flex;
  gap: 8px;
}

.btn-product {
  flex: 1;
  padding: 10px;
  border-radius: 9px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
}

.btn-detail {
  border-radius: 8px;
  font-weight: 600;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  box-shadow: 0 3px 10px rgba(99, 102, 241, 0.25);
}

.btn-detail:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 14px rgba(99, 102, 241, 0.35);
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq-section,
.reviews-section {
  width: 100%;
  padding: 80px 5%;
}

.faq-section {
  padding: 80px 20px;
  background: var(--light);
}

.faq-container {
  max-width: 750px;
  margin: 0 auto;
}

.faq-item-modern {
  background: white;
  border-radius: 14px;
  margin-bottom: 14px;
  overflow: hidden;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.faq-item-modern:hover {
  box-shadow: var(--shadow);
  border-color: var(--primary-light);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: white;
  border: none;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: var(--primary);
  background: #fafafa;
}

.faq-question-text {
  flex: 1;
  padding-right: 18px;
  line-height: 1.5;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.3s ease;
  flex-shrink: 0;
  color: var(--gray);
}

.faq-answer-modern {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 24px;
  background: #fafafa;
}

.faq-answer-modern.show {
  max-height: 400px;
  padding: 20px 24px;
  border-top: 2px solid var(--primary-light);
}

.faq-answer-modern.show + .faq-question .faq-icon {
  background: var(--gradient-primary);
  color: white;
  transform: rotate(45deg);
}

.faq-answer-modern p {
  color: var(--gray-dark);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* =========================
   REVIEW SLIDER
========================= */
.reviews-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #fff, #f9fafb);
}

.reviews-slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reviews-grid-wrapper {
  overflow: hidden;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.reviews-grid {
  display: flex;
  gap: 22px;
  transition: transform 0.5s ease;
  will-change: transform;
  padding: 10px 0; /* beri ruang atas-bawah */
  box-sizing: border-box;
}

.review-card {
  background: #fff;
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  border: 2px solid var(--primary-light);
  transition: all 0.3s ease;
  flex: 0 0 calc(33.333% - 22px); /* default 3 per row */
  position: relative;
  overflow: hidden;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: 18px;
  right: 26px;
  font-size: 100px;
  color: rgba(20, 184, 166, 0.05);
  font-family: Georgia, serif;
  line-height: 0;
  pointer-events: none;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  border-color: var(--primary);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 17px;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(20, 184, 166, 0.3);
}

.review-name {
  font-weight: 700;
  color: var(--dark);
  font-size: 1rem;
  margin-bottom: 2px;
}

.review-product {
  font-size: 13px;
  color: var(--gray);
}

.review-rating {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}

.star {
  color: var(--accent);
  font-size: 16px;
}

.review-text {
  color: var(--gray-dark);
  line-height: 1.65;
  font-size: 0.95rem;
}

/* Tombol navigasi */
.review-nav {
  background: var(--primary);
  color: white;
  border: none;
  font-size: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
  margin: 0 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-nav:hover {
  background: var(--primary-dark);
  transform: scale(1.1);
}

/* =========================
   RESPONSIVE STYLES
========================= */
@media (max-width: 992px) {
  .review-card {
    flex: 0 0 calc(50% - 22px); /* 2 per row di tablet */
  }
}

@media (max-width: 600px) {
  .reviews-section {
    padding: 60px 12px;
  }

  .review-card {
    padding: 10px;
    border-radius: 14px;
    width: 100%; /* full width */
    margin-right: 0; /* gap tidak perlu */
  }
  .review-avatar {
    width: 40px;
    height: 40px;
    font-size: 15px;
  }

  .review-name {
    font-size: 0.95rem;
  }

  .review-text {
    font-size: 0.9rem;
    text-align: justify;
  }

  .review-nav {
    display: flex; /* tetap muncul di HP */
  }
}

/* ========================================
   CTA & BUTTONS
   ======================================== */
.cta-section {
  text-align: center;
  margin-top: 36px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 12px 26px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 3px 10px rgba(20, 184, 166, 0.3);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 14px rgba(20, 184, 166, 0.4);
}

/* ========================================
   CATALOG PAGE
   ======================================== */
.catalog-hero {
  background: var(--gradient-hero);
  padding: 70px 20px 55px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.catalog-hero::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 40px 40px;
  top: 0;
  left: 0;
}

.catalog-hero-content {
  position: relative;
  z-index: 1;
  max-width: 750px;
  margin: 0 auto;
}

.catalog-hero h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 14px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.2);
  letter-spacing: -0.5px;
}

.catalog-hero p {
  font-size: 1.15rem;
  opacity: 0.95;
}

.filter-section {
  background: white;
  padding: 26px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  margin: -35px auto 36px;
  max-width: 1140px;
  position: relative;
  z-index: 2;
  border: 2px solid var(--primary-light);
}

.filter-form {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.filter-input,
.filter-select {
  flex: 1;
  min-width: 180px;
  padding: 12px 16px;
  border-radius: 10px;
  border: 2px solid var(--gray-light);
  font-size: 0.95rem;
  transition: all 0.3s ease;
  background: white;
}

.filter-input:focus,
.filter-select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
}

.filter-input::placeholder {
  color: var(--gray);
}

.qty-input {
  width: 75px;
  padding: 9px;
  border-radius: 9px;
  border: 2px solid var(--gray-light);
  text-align: center;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.3s ease;
  margin: 9px 0;
}

.qty-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
}

.btn-success {
  background: var(--gradient-warm);
  color: white;
  padding: 9px 18px;
  border-radius: 9px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(255, 107, 107, 0.3);
  font-size: 0.9rem;
}

.btn-success:hover {
  background: var(--secondary-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 14px rgba(255, 107, 107, 0.4);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1024px) {
  .hero-modern {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  
  .hero-content {
    padding: 50px 35px;
    text-align: center;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-content p {
    margin: 0 auto 28px;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .hero-visual {
    padding: 35px 35px 70px;
  }
  
  .hero-slider-container {
    height: 400px;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 14px;
  }

  .hero-content {
    padding: 45px 25px;
  }
  
  .hero-content h1 {
    font-size: 2.2rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .hero-slider-container {
    height: 320px;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  
  .hero-stat {
    text-align: center;
  }
  
  .section-modern,
  .products-section,
  .faq-section,
  .reviews-section {
    padding: 60px 20px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .grid-modern {
    grid-template-columns: 1fr;
  }
  
  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }
  
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  
  .catalog-hero h1 {
    font-size: 2.5rem;
  }
  
  .catalog-hero p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.9rem;
  }
  
  .hero-content p {
    font-size: 0.95rem;
  }
  
  .btn-modern {
    padding: 11px 22px;
    font-size: 0.9rem;
  }
  
  .hero-slider-container {
    height: 280px;
  }
  
  .section-modern,
  .products-section,
  .faq-section,
  .reviews-section {
    padding: 50px 15px;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .card-modern {
    padding: 24px;
  }
  
  .product-grid {
    grid-template-columns: 1fr;
  }
  
  .product-name {
    font-size: 1.05rem;
  }
  
  .product-price {
    font-size: 1.35rem;
  }
  
  .filter-form {
    flex-direction: column;
  }
  
  .filter-input,
  .filter-select {
    width: 100%;
  }
}

/* ========================================
   PROFILE PAGE STYLES
   ======================================== */
.profile-content-section,
.marketplace-section,
.profile-contact-section {
  width: 100%;
  margin: 0 auto;
  padding: 100px 5%;
  background-color: #FFF8F2; /* tetap untuk konten utama */
}

.profile-hero {
  position: relative;
  height: 380px;
  overflow: hidden;
  margin-bottom: -80px;
}

.profile-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(40%);
}

.profile-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 35px;
}

.profile-hero-content h1 {
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 14px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
  animation: fadeInUp 0.8s ease;
  letter-spacing: -0.5px;
}

.profile-hero-content p {
  font-size: 1.2rem;
  opacity: 0.95;
  max-width: 650px;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease 0.2s backwards;
}

.profile-content-section {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background: linear-gradient(to bottom, #f8fafc 0%, #ffffff 100%);
  padding: 130px 40px 80px;
}

.profile-main-content {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
  align-items: start;
}

.profile-map-container {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--primary-light);
  background: white;
  padding: 4px;
}

.profile-map-container iframe {
  border-radius: 14px;
  width: 100%;
  height: 380px;
}

.profile-info-card {
  background: white;
  border-radius: 18px;
  padding: 30px;
  box-shadow: var(--shadow);
  border: 2px solid var(--primary-light);
  transition: all 0.3s ease;
}

.profile-info-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--primary);
}

.profile-section-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 14px;
  padding-left: 14px;
  border-left: 4px solid var(--primary);
  letter-spacing: -0.3px;
}

.profile-section-text {
  color: var(--gray-dark);
  line-height: 1.7;
  font-size: 0.96rem;
  margin-bottom: 20px;
}

.profile-address {
  display: flex;
  align-items: start;
  gap: 10px;
  padding: 16px;
  background: white;
  border-radius: 12px;
  margin-top: 14px;
}

.profile-address::before {
  content: '📍';
  font-size: 20px;
  flex-shrink: 0;
}

.profile-contact-section {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px 30px;
  background: #FFF8F2;
}

.profile-contact-card {
  background: white;
  border-radius: 18px;
  padding: 30px;
  box-shadow: var(--shadow);
  border: 2px solid var(--primary-light);
  text-align: center;
  margin-top: 50px;
}

.whatsapp-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #25D366 0%, #20BA5A 100%);
  color: white;
  padding: 14px 30px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
  margin-top: 14px;
}

.whatsapp-button:hover {
  background: linear-gradient(135deg, #20BA5A 0%, #1DA851 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.5);
  color: white;
}

.whatsapp-button::before {
  content: '💬';
  font-size: 20px;
}

.marketplace-section {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px 50px;
  background: var(--light);
}

.marketplace-card {
  background: white;
  border-radius: 18px;
  padding: 30px;
  box-shadow: var(--shadow);
  border: 2px solid var(--primary-light);
}

.marketplace-grid {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.marketplace-btn {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.marketplace-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.4s, height 0.4s;
}

.marketplace-btn:hover::before {
  width: 180px;
  height: 180px;
}

.marketplace-btn:hover {
  transform: translateY(-5px) scale(1.04);
  box-shadow: var(--shadow-lg);
}

.marketplace-btn img {
  width: 48%;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.marketplace-btn:hover img {
  transform: scale(1.12);
}

.marketplace-btn[style*="ee4d2d"] {
  background: linear-gradient(135deg, #ee4d2d 0%, #ff6347 100%) !important;
}

.marketplace-btn[style*="ff0000"] {
  background: linear-gradient(135deg, #ff0000 0%, #ff4444 100%) !important;
}

.marketplace-btn[style*="00b14f"] {
  background: linear-gradient(135deg, #00b14f 0%, #00d460 100%) !important;
}

@media (max-width: 900px) {
  .profile-hero {
    height: 300px;
    margin-bottom: -60px;
  }
  
  .profile-hero-content h1 {
    font-size: 2.5rem;
  }
  
  .profile-hero-content p {
    font-size: 1.05rem;
  }
  
  .profile-content-section {
    padding: 100px 20px 60px;
  }
  
  .profile-main-content {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  
  .profile-map-container iframe {
    height: 320px;
  }
}

@media (max-width: 600px) {
  .profile-hero {
    height: 260px;
  }
  
  .profile-hero-content h1 {
    font-size: 2rem;
  }
  
  .profile-hero-content p {
    font-size: 0.95rem;
  }
  
  .marketplace-btn {
    width: 70px;
    height: 70px;
  }
  
  .profile-info-card,
  .profile-contact-card,
  .marketplace-card {
    padding: 24px;
  }
}

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */
@keyframes slideInFromBottom {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-on-scroll {
  animation: slideInFromBottom 0.8s ease;
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.text-center {
  text-align: center;
}

.mt-20 {
  margin-top: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}

.p-20 {
  padding: 20px;
}

/* ========================================
   LOADING & TRANSITIONS
   ======================================== */
.smooth-transition {
  transition: all 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-4px);
}

.hover-scale:hover {
  transform: scale(1.03);
}

/* ========================================
   CUSTOM SCROLLBAR
   ======================================== */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--light);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-light);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* ========================================
   PURCHASE NOTE
   ======================================== */
.purchase-note {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border-left: 4px solid var(--accent);
  padding: 12px 16px;
  margin-top: 20px;
  border-radius: 8px;
  font-size: 0.95rem;
  color: #78350f;
  box-shadow: 0 2px 8px rgba(251, 146, 60, 0.2);
}

/* ========================================
   FADE IN ANIMATION
   ======================================== */
@keyframes fadeIn {
  from { 
    opacity: 0; 
    transform: translateY(20px); 
  }
  to { 
    opacity: 1; 
    transform: translateY(0); 
  }
}