/* ===== CSS VARIABLES ===== */
:root {
  /* Colors */
  --primary: #d63384;
  --primary-dark: #b02a5b;
  --secondary: #764ba2;
  --pink-mode: #d63384;
  --pink-light: #fff5f8;
  --pink-hot: #ff1744;
  
  --text-primary: #101010;
  --text-secondary: #666;
  
  --dark-mode: #101010;
  --bg-white: #ffffff;
  --bg-light: #f7fafc;
  --bg-pink-light: #fff5f8;
  --border-color: #e2e8f0;
  --white: #fff;
  
  /* Layout */
  --header-height: 80px;
   
  /* Spacing */
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
  --shadow-light: 0 5px 15px rgba(0,0,0,0.05);
  --shadow-medium: 0 8px 25px rgba(0,0,0,0.1);
  --shadow-strong: 0 15px 35px rgba(0,0,0,0.15);
  
  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  
  /* Typography - Perbaikan ukuran font */
  @import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

  --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body:'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --heading-weight: 700;
  --body-weight: 400;
  --heading-line-height: 1.2;
  
  /* Ukuran font yang lebih responsif */
  --h1-size: clamp(1.75rem, 4.5vw, 2.5rem); /* Diperkecil untuk mobile */
  --h2-size: clamp(1.5rem, 4vw, 2rem);
  --h3-size: clamp(1.25rem, 3vw, 1.5rem);
  --h4-size: clamp(1.1rem, 2.5vw, 1.25rem);
  --font-body-size: clamp(0.9rem, 2vw, 1rem);
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  
  /* Animation timings */
  --animation-fast: 0.2s;
  --animation-normal: 0.3s;
  --animation-slow: 0.5s;
}

/* ===== RESET ===== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: var(--body-weight);
  line-height: 1.6;
  color: var(--text-secondary);
  background: var(--bg-light);
  overflow-x: hidden;
  font-size: var(--font-body-size);
}


/* Perbaikan heading dengan ukuran yang lebih konsisten */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: var(--heading-weight);
  margin-bottom: 1rem;
  transition: color var(--transition);
  line-height: var(--heading-line-height);
  animation: fadeInUp 0.8s ease-out 0.4s both;
  letter-spacing: -1px;
  color: var(--text-primary);
}

h1 { font-size: var(--h1-size); }
h2 { font-size: var(--h2-size); }
h3 { font-size: var(--h3-size); }
h4 { font-size: var(--h4-size); }

p {
  margin-bottom: 1rem;
  transition: color var(--transition);
}

a {
  color:var(--text-primary);
  text-decoration: none;
  transition: var(--transition);
  position: relative;
}

a:hover {
  color: var(--primary);
  text-decoration:none;
}

ul, li {
    list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* ===== LAYOUT ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Heading Components */
.heading-section {
  position: relative;
  padding-bottom: 0.5rem;
  margin-bottom: 2rem;
  animation: fadeInUp var(--animation-normal) ease-out;
}

.heading-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: currentColor;
  animation: expandWidth var(--animation-slow) ease-out;
}

.center-text {
    text-align: center;
    padding: 3rem;
    margin-bottom:2rem;
    background: #edf2f7;
}


/* ===== HERO SECTION ===== */
.hero {
  display: flex;
  position: relative;
  padding:1rem 0 3rem;
  align-items: center;
  background: linear-gradient(135deg, var(--pink-light) 0%, var(--white) 100%);
  min-height: 50vh;
}

.hero-content2 {
	display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.hero-text {
  flex: 1;
}

.hero-text h1 {
  line-height: 1.1;
  margin: 1.5rem auto;
  max-width: 700px;
  animation: fadeInUp 0.8s ease-out 0.4s both;
  color: var(--pink-mode);
}

.hero-text p {
  font-size: 1.1rem;
  margin: 2rem auto;
  max-width: 700px;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}
.trust-indicators {
  display: flex;
  gap: 1rem 2rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.6s both;
  justify-content: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.trust-item i {
  color: var(--primary);
}

/* ===== SECTIONS ===== */
.hero, .hero-simple, .features, .pricing, .process, .testimonials, .faq, .gallery {
    padding: 5rem 0;
  }

.section-header {
  text-align: center;
  margin-bottom: 40px; /* Diperkecil untuk mobile */
  animation: fadeInUp var(--animation-normal) ease-out;
}

.section-header h2 {
  margin-bottom: 15px;
}

/* Features Section */
.features {

}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px; /* Diperkecil untuk mobile */
}

.feature-card {
  text-align: center;
  padding: 25px; /* Diperkecil untuk mobile */
  border-radius: var(--radius-lg);
  background-color: var(--white);
  box-shadow: var(--shadow-light);
  transition: var(--transition-smooth);
  animation: fadeInUp var(--animation-normal) ease-out;
  animation-fill-mode: both;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-medium);
}

.feature-icon {
  width: 60px; /* Diperkecil untuk mobile */
  height: 60px; /* Diperkecil untuk mobile */
  background: linear-gradient(135deg, var(--pink-mode) 0%, #ff6b9d 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px; /* Diperkecil untuk mobile */
  color: var(--white);
  font-size: 24px; /* Diperkecil untuk mobile */
  transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
  color: var(--pink-mode);
  margin-bottom: 15px;
  font-size: var(--h3-size); /* Menggunakan variabel */
}

/* Gallery Section */
.gallery {
  padding: 4rem 0; /* Diperkecil untuk mobile */
  background-color: var(--bg-pink-light);
}

/* Pricing Section */
.pricing {
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Diperkecil untuk mobile */
  gap: 25px; /* Diperkecil untuk mobile */
}

.pricing-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px; /* Diperkecil untuk mobile */
  box-shadow: var(--shadow-light);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  animation: fadeInUp var(--animation-normal) ease-out;
}

.pricing-card:nth-child(1) { animation-delay: 0.1s; }
.pricing-card:nth-child(2) { animation-delay: 0.2s; }
.pricing-card:nth-child(3) { animation-delay: 0.3s; }

.pricing-card:hover {
  transform: translateY(10px);
  box-shadow: var(--shadow-medium);
}

.pricing-card.featured {
  border: 2px solid var(--pink-mode);
  transform: scale(1.02);
}
.pricing-card.featured:hover  {
  border: 2px solid var(--pink-mode);
  transform: scale(1.04);
}

.pricing-card.featured::before {
  content: 'Paling Populer';
  position: absolute;
  top: 25px;
  right: -35px;
  background-color: var(--pink-mode);
  color: var(--white);
  padding: 5px 40px;
  font-size: 12px;
  transform: rotate(45deg);
}

.pricing-card h3 {
  color: var(--pink-mode);
  margin-bottom: 20px;
  font-size: var(--h3-size); /* Menggunakan variabel */
}

.price {
  font-weight: 700;
  display: inline-block;
  position: relative;
}

.price::before {
  content: 'Rp.';
  font-size: 1em;
  vertical-align: super;
  margin: 5px 2px;
  position: absolute;
}

.harga {
  font-size: 2.2em; /* Diperkecil untuk mobile */
  margin-left: 0.75em;
  line-height: 1;
}

.pricing-features {
  list-style: none;
  margin: 20px 0; /* Diperkecil untuk mobile */
}

.pricing-features li {
  padding: 8px 0; /* Diperkecil untuk mobile */
  border-bottom: 1px solid #f0f0f0;
  color: #6c757d;
  transition: var(--transition);
  font-size: 0.95rem; /* Ukuran font yang konsisten */
}

.pricing-features li:hover {
  padding-left: 5px;
  color: var(--pink-mode);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li i {
  color: var(--pink-mode);
  margin-right: 10px;
}

.pricing-footer {
  text-align: center;
  margin: 1rem auto;
}

/* Process Section */
.process {
  background-color: var(--bg-white);
}

.process-steps {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px; /* Diperkecil untuk mobile */
}

.step {
  flex: 1;
  min-width: 200px;
  text-align: center;
  position: relative;
  animation: fadeInUp var(--animation-normal) ease-out;
  animation-fill-mode: both;
}

.step:nth-child(1) { animation-delay: 0.1s; }
.step:nth-child(2) { animation-delay: 0.2s; }
.step:nth-child(3) { animation-delay: 0.3s; }
.step:nth-child(4) { animation-delay: 0.4s; }

.step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 35px;
  right: -15%;
  width: 30%;
  height: 2px;
  background-color: var(--pink-mode);
}

.step-number {
  width: 60px; /* Diperkecil untuk mobile */
  height: 60px; /* Diperkecil untuk mobile */
  background: linear-gradient(135deg, var(--pink-mode) 0%, #ff6b9d 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px; /* Diperkecil untuk mobile */
  color: var(--white);
  font-size: 24px; /* Diperkecil untuk mobile */
  font-weight: 700;
  transition: transform var(--transition);
}

.step:hover .step-number {
  transform: scale(1.1) rotate(5deg);
  transition: var(--transition-smooth);
}

.step h3 {
  margin-bottom: 10px;
  font-size: var(--h3-size); /* Menggunakan variabel */
}

/* Testimonials Section */
.testimonials {
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Diperkecil untuk mobile */
  gap: 25px; /* Diperkecil untuk mobile */
}

.testimonial-card {
  background-color: var(--white);
  padding: 25px; /* Diperkecil untuk mobile */
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-light);
  transition: var(--transition-smooth);
  animation: fadeInUp var(--animation-normal) ease-out;
  animation-fill-mode: both;
}

.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card:nth-child(3) { animation-delay: 0.3s; }

.testimonial-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-medium);
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px; /* Diperkecil untuk mobile */
}

.testimonial-avatar {
  width: 50px; /* Diperkecil untuk mobile */
  height: 50px; /* Diperkecil untuk mobile */
  border-radius: 50%;
  margin-right: 15px;
  object-fit: cover;
  transition: transform var(--transition);
}

.testimonial-card:hover .testimonial-avatar {
  transform: scale(1.1);
}

.testimonial-info {
  padding: 10px 0 0; /* Diperkecil untuk mobile */
  line-height: 1.2;
}

.testimonial-info h4 {
  color: var(--pink-mode);
  margin-bottom: 5px;
  font-size: 1rem; /* Ukuran font yang konsisten */
}

.testimonial-info p {
  color: #6c757d;
  font-size: 0.85rem; /* Ukuran font yang konsisten */
}

.testimonial-text {
  color: #6c757d;
  font-style: italic;
  line-height: 1.5;
  font-size: 0.95rem; /* Ukuran font yang konsisten */
}

.testimonial-rating {
  color: #ffc107;
  margin-top: 10px; /* Diperkecil untuk mobile */
}

/* FAQ Section */
.faq {
  background-color: var(--bg-pink-light);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 0;
  overflow: hidden;
  border-bottom: 1px solid #ffe2e2;
  transition: var(--transition);
}

.faq-item:hover {
  background-color: rgba(255, 255, 255, 0.5);
}

.faq-question {
  padding: 15px; /* Diperkecil untuk mobile */
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--pink-mode);
  font-weight: 600;
  transition: var(--transition);
  font-size: 0.95rem; /* Ukuran font yang konsisten */
}

.faq-question:hover {
  padding-left: 20px;
}

.faq-question i {
  transition: var(--transition);
}

.faq-answer {
  padding: 0 15px; /* Diperkecil untuk mobile */
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s, padding 0.3s;
  color: #6c757d;
  font-size: 0.9rem; /* Ukuran font yang konsisten */
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 15px 15px; /* Diperkecil untuk mobile */
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

/* CTA Section */
.cta {
  padding: 4rem 0; /* Diperkecil untuk mobile */
  background: linear-gradient(135deg, var(--pink-mode) 0%, #ff6b9d 100%);
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta h2 {
  margin-bottom: 15px; /* Diperkecil untuk mobile */
  position: relative;
  z-index: 1;
  font-size: var(--h2-size); /* Menggunakan variabel */
  color:var(--white);
}

.cta p {
  margin: 20px auto; /* Diperkecil untuk mobile */
  max-width: 600px;
  position: relative;
  z-index: 1;
  font-size: 1rem;
  color:var(--white);
}

/* ===== FOOTER ===== */
footer {
  background-color: var(--white);
  padding: 40px 0 0; /* Diperkecil untuk mobile */
  font-size: 14px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px; /* Diperkecil untuk mobile */
  border-bottom: 1px solid #ddd;
  padding-bottom: 30px; /* Diperkecil untuk mobile */
}

.footer-column {
  display: flex;
  flex-wrap: wrap !important;
  justify-content: center;
  gap: 15px; /* Diperkecil untuk mobile */
}

.footer-bottom {
  text-align: center;
  padding-top: 15px; /* Diperkecil untuk mobile */
  max-width: 700px;
  margin: 10px auto;
}

.footer-bottom p {
  padding: 0 2rem;
}

/* ===== BLOG ===== */
.container-blog {
  max-width: 920px;
  margin: auto;
  padding: 20px;
}

.two-column-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px; /* Diperkecil untuk mobile */
  align-items: center;
  background: white;
  border-radius: var(--radius-xl);
  padding: 3rem 2rem; /* Diperkecil untuk mobile */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin: 2em 0;
  animation: fadeIn var(--animation-normal) ease-out;
}

.two-column-layout:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.image-column {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.image-column img {
  width: 100%;
  height: 100%;
  display: block;
  transition: transform 0.5s ease;
  aspect-ratio: 1/1;
  background-size: cover;
  object-fit: cover;
  object-position: center;
}

.image-column:hover img {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, #d63384de, rgb(16 16 16 / 60%));
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-column:hover .image-overlay {
  opacity: 1;
}

.overlay-text {
  color: white;
  font-size: 1.5rem; /* Diperkecil untuk mobile */
  font-weight: bold;
  text-align: center;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.image-column:hover .overlay-text {
  transform: translateY(0);
}

.content-column {
  padding: 15px; /* Diperkecil untuk mobile */
}

.content-column h1 {
  margin: 15px; /* Diperkecil untuk mobile */
  position: relative;
  padding-bottom: 10px; /* Diperkecil untuk mobile */
  font-size: var(--h1-size); /* Menggunakan variabel */
}

.content-column h1::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #4a90e2, #50e3c2);
  border-radius: 2px;
  animation: expandWidth var(--animation-slow) ease-out;
}

.content-column p {
  margin-bottom: 15px; /* Diperkecil untuk mobile */
  font-size: 0.95rem; /* Ukuran font yang konsisten */
}

p.post-meta {
  color: #999;
  font-size: .9em; /* Diperkecil untuk mobile */
  font-style: italic;
}

.feature-list {
  list-style: none;
  margin: 20px 0; /* Diperkecil untuk mobile */
}

.feature-list li {
  padding: 8px 0; /* Diperkecil untuk mobile */
  padding-left: 25px; /* Diperkecil untuk mobile */
  position: relative;
  color: #555;
  transition: var(--transition);
  font-size: 0.95rem; /* Ukuran font yang konsisten */
}

.feature-list li:hover {
  padding-left: 30px;
  color: var(--pink-mode);
}

.feature-list li::before {
  content: 'Ã¢Å“â€œ';
  position: absolute;
  left: 0;
  color: #4a90e2;
  font-weight: bold;
  font-size: 1rem; /* Diperkecil untuk mobile */
  transition: transform var(--transition);
}

.feature-list li:hover::before {
  transform: scale(1.2);
}

img.article-featured-image {
  width: 100%;
  height: auto;
  margin-bottom: 1em;
  border-radius: var(--radius-lg);
  transition: transform var(--transition);
}

img.article-featured-image:hover {
  transform: scale(1.02);
}

.layout-reverse {
  direction: rtl;
}

.layout-reverse .content-column,
.layout-reverse .image-column {
  direction: ltr;
}

.section {
  margin-bottom: 40px; /* Diperkecil untuk mobile */
}

.section-title {
  text-align: center;
  margin: 30px; /* Diperkecil untuk mobile */
  position: relative;
}

.breadcrumb {
  margin-bottom: 10px;
}

.meta-item {
  font-style: italic;
  color: #999;
  font-size: .9em; /* Diperkecil untuk mobile */
}

.article {
  background: white;
  border-radius: var(--radius-xl);
  padding: 3rem 2rem; /* Diperkecil untuk mobile */
  margin-bottom: 30px; /* Diperkecil untuk mobile */
  animation: slideIn var(--animation-normal) ease-out;
}

.article h1 {
  color: var(--dark-mode);
  font-size: var(--h1-size); /* Menggunakan variabel */
}

.article h2 {
  position: relative;
  font-size: var(--h2-size); /* Menggunakan variabel */
}

.article h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 3px;
  background: var(--pink-mode);
  border-radius: 2px;
  animation: expandWidth var(--animation-slow) ease-out;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 15px; /* Diperkecil untuk mobile */
  margin-bottom: 20px; /* Diperkecil untuk mobile */
  color: #666;
  font-size: 0.85rem; /* Ukuran font yang konsisten */
}

.author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.author-avatar {
  width: 35px; /* Diperkecil untuk mobile */
  height: 35px; /* Diperkecil untuk mobile */
  border-radius: 50%;
  object-fit: cover;
  transition: transform var(--transition);
}

.author-avatar:hover {
  transform: scale(1.1);
}

.article-content p {
  margin-bottom: 15px; /* Diperkecil untuk mobile */
  font-size: 0.95rem; /* Ukuran font yang konsisten */
}

.comment-section {
  background: white;
  border-radius: var(--radius-xl);
  margin-bottom: 20px;
  padding: 3rem 2rem; /* Diperkecil untuk mobile */
  animation: slideIn var(--animation-normal) ease-out;
  animation-delay: 0.2s;
}

.article ul {
  list-style-type: none; 
  padding-left: 0;
  margin: 1.5rem 0;
}

.article ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 15px;
  line-height: 1.5;
}

/* Custom bullet untuk list item */
.article ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
}

/* Hover effect untuk list item */
.article ul li:hover {
  background-color: #ecf0f1;
  padding-left: 1.8rem;
  transition: all 0.3s ease;
}

/* Style untuk link di dalam list item */
.article ul li a {
  color: #2980b9;
  text-decoration: none;
  font-weight: 500;
}

.article ul li a:hover {
  text-decoration: underline;
}

.comment-section h3 {
  margin-bottom: 1.5rem; /* Diperkecil untuk mobile */
  font-weight: 600;
  font-size: 1.1em; /* Diperkecil untuk mobile */
}

.comment-form {
  margin-bottom: 30px; /* Diperkecil untuk mobile */
  padding: 20px; /* Diperkecil untuk mobile */
  background: #f8f9fa;
  border-radius: var(--radius-lg);
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.comment-form:focus-within {
  border-color: var(--pink-mode);
  background: white;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1);
}

.comments-list {
  margin-top: 30px; /* Diperkecil untuk mobile */
}

.comment-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px 0; /* Diperkecil untuk mobile */
  border-bottom: 1px solid #eee;
  animation: fadeIn var(--animation-normal) ease-out;
}

.comment-item:last-child {
  border-bottom: none;
}

.comment-avatar {
  flex-shrink: 0;
}

.comment-avatar img {
  width: 40px; /* Diperkecil untuk mobile */
  height: 40px; /* Diperkecil untuk mobile */
  border-radius: 50%;
  display: block;
  transition: transform var(--transition);
}

.comment-avatar img:hover {
  transform: scale(1.1);
}

.comment-content {
  flex-grow: 1;
  word-wrap: break-word;
  overflow: hidden;
}

.comment-header {
  margin-bottom: 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.comment-author {
  font-weight: bold;
  color: #333;
  display: flex;
  align-items: center;
  gap: 10px; /* Diperkecil untuk mobile */
  font-size: 0.95rem; /* Ukuran font yang konsisten */
}

.comment-date {
  font-size: 0.8rem; /* Ukuran font yang konsisten */
  color: #888;
}

.comment-body p {
  margin: 0;
  line-height: 1.5;
  color: #555;
  font-size: 0.9rem; /* Ukuran font yang konsisten */
}

.empty-comments {
  text-align: center;
  padding: 40px 15px; /* Diperkecil untuk mobile */
  background-color: #f8f9fa;
  border-radius: var(--radius-md);
  color: #6c757d;
  animation: fadeIn var(--animation-normal) ease-out;
}

.empty-comments svg {
  width: 60px; /* Diperkecil untuk mobile */
  height: 60px; /* Diperkecil untuk mobile */
  margin-bottom: 15px; /* Diperkecil untuk mobile */
  opacity: 0.3;
}

.submit-btn {
  background: var(--dark-mode);
  color: white;
  border: none;
  padding: 12px 24px; /* Diperkecil untuk mobile */
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  font-size: 0.95rem; /* Ukuran font yang konsisten */
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.submit-btn:active {
  transform: translateY(0);
}

.comment {
  background: #f8f9fa;
  border-radius: var(--radius-lg);
  padding: 20px; /* Diperkecil untuk mobile */
  margin-bottom: 15px; /* Diperkecil untuk mobile */
  transition: all 0.3s ease;
  animation: fadeIn var(--animation-normal) ease-out;
}

.comment:hover {
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.comment-info h4 {
  font-size: 1rem; /* Ukuran font yang konsisten */
  margin-bottom: 2px;
}

.comment-text {
  color: #555;
  line-height: 1.6;
  font-size: 0.95rem; /* Ukuran font yang konsisten */
}

.success-message {
  background: linear-gradient(135deg, #4ade80, #22c55e);
  color: white;
  padding: 12px 20px; /* Diperkecil untuk mobile */
  border-radius: 10px;
  margin-bottom: 15px; /* Diperkecil untuk mobile */
  display: none;
  align-items: center;
  gap: 10px;
  animation: slideDown var(--animation-normal) ease-out;
  font-size: 0.95rem; /* Ukuran font yang konsisten */
}

.success-message.show {
  display: flex;
}

/* ===== BUTTON STYLES ===== */
/* Base Button Styles */

  /* CTA Buttons */
.cta-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.8s both;
  }

.btn {
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
  }

.btn-primary {
  background: linear-gradient(135deg, #ff9ff3, #ffb6c1);
  color: white;
  }

.btn-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
  }

.btn-primary:hover::before {
  width: 300px;
  height: 300px;
  }

.btn-primary:hover {
  transform: translateY(-3px);
  color: white;
  }

.btn-secondary {
  background: white;
  color: #d63384;
  border:1px solid #ffbdcc
  }

.btn-secondary:hover {
  background: #fff4f5;
  transform: translateY(-3px);
  }

/* Back Button */
.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 8px; /* Diperkecil untuk mobile */
  padding: 10px 20px; /* Diperkecil untuk mobile */
  background: rgba(255, 255, 255, 0.2);
  color: white;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 0.9rem; /* Ukuran font yang konsisten */
}

.btn-back:hover {
  background: rgba(255, 255, 255, 0.3);
  color: white;
}

/* Filter & Detail Buttons */
.filter-btn,
.btn-detail {
  padding: 8px 20px; /* Diperkecil untuk mobile */
  border: 1px solid #dee2e6;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.85rem; /* Ukuran font yang konsisten */

}

.filter-btn:hover,
.btn-detail:hover {
  background: rgba(214, 51, 132, 0.1);
  border-color: rgba(214, 51, 132, 0.5);
}

.filter-btn.active {
  background: rgba(214, 51, 132, 0.1);
  border-color: rgba(214, 51, 132, 1);
}

/* Action Buttons */
.btn-view {
  background: #f8f9fa;
  border: 2px solid #dee2e6;
  border-radius: 10px;
  width: 100%;
  font-size: 0.9rem;
  display: flex;
  justify-content: center;
}

.btn-view:hover {
  background: #e9ecef;
  transform: translateY(-3px);
}

.btn-use {
  background: linear-gradient(135deg, #ff9ff3, #ffb6c1);
  color: white;
  border-radius: 10px;
  width: 100%;
  font-size: 0.9rem;
  display: flex;
  justify-content: center;
}

.btn-use:hover {
  background: linear-gradient(130deg, #ff9ff3, #ffb6c1);
  transform: translateY(-3px);
}

/* Button Containers */
.filter-buttons {
  display: flex;
  justify-content: center;
  gap: 10px; /* Diperkecil untuk mobile */
  margin-bottom: 25px; /* Diperkecil untuk mobile */
  flex-wrap: wrap;
}

.action-buttons {
  display: flex;
  gap: 8px; /* Diperkecil untuk mobile */
}

/* Disabled State */
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

.btn-detail {
  display: inline-block;
  background-color: var(--text-secondary);
  color: white;
  padding: 6px 14px; /* Diperkecil untuk mobile */
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.85rem; /* Ukuran font yang konsisten */
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-detail:hover {
  color: white;
  background-color: var(--pink-mode);
  transform: translateY(-2px);
}

.hero-buttons, .cta-button {
  display: flex;
  justify-content: center;
  gap: 15px;
}


/* Form Row */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px; /* Diperkecil untuk mobile */
}

/* ===== GALLERY - TEMPLATES - PRODUCT ===== */
.gallery-grid,
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); /* Diperkecil untuk mobile */
  gap: 20px; /* Diperkecil untuk mobile */
  margin-bottom: 30px; /* Diperkecil untuk mobile */
}

.gallery-item {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  transition: var(--animation-slow);
  animation: fadeInUp var(--animation-normal);
}

.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.2s; }
.gallery-item:nth-child(3) { animation-delay: 0.3s; }
.gallery-item:nth-child(4) { animation-delay: 0.4s; }
.gallery-item:nth-child(5) { animation-delay: 0.5s; }
.gallery-item:nth-child(6) { animation-delay: 0.6s; }

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(214, 51, 132, 0.8), transparent);
  color: var(--white);
  padding: 15px; /* Diperkecil untuk mobile */
  transform: translateY(100%);
  transition: all 0.3s ease;
}

.image-container {
  position: relative;
  height: 220px; /* Diperkecil untuk mobile */
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  aspect-ratio: 1 / 1;
}

.item-content {
  padding: 15px; /* Diperkecil untuk mobile */
}

.item-title {
  font-size: 0.95rem; /* Ukuran font yang konsisten */
  margin-bottom: 8px;
}

.item-description {
  color: #666;
  font-size: 0.9rem; /* Ukuran font yang konsisten */
  line-height: 1.5;
  margin-bottom: 12px; /* Diperkecil untuk mobile */
}

.item-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px; /* Diperkecil untuk mobile */
  font-size: 0.85rem; /* Ukuran font yang konsisten */
  color: #888;
}

.badge {
  position: absolute;
  top: 12px; /* Diperkecil untuk mobile */
  right: 12px; /* Diperkecil untuk mobile */
  padding: 6px 12px; /* Diperkecil untuk mobile */
  border-radius: 20px;
  font-size: 0.75rem; /* Ukuran font yang konsisten */
  font-weight: bold;
  text-transform: uppercase;
  z-index: 2;
  color: white;
  animation: pulse 2s infinite;
}

.badge.free {
  background: var(--dark-mode);
}

.badge.premium {
  background: var(--pink-mode);
}

.rating {
  display: flex;
  align-items: center;
  gap: 3px; /* Diperkecil untuk mobile */
}

.stars {
  color: #ffc107;
}

/* ===== MODAL STYLES ===== */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  animation: fadeIn var(--animation-fast) ease-out;
}

.modal-content {
  background-color: white;
  margin: 5% auto;
  padding: 25px; /* Diperkecil untuk mobile */
  border-radius: var(--radius-lg);
  width: 90%;
  max-width: 600px;
  position: relative;
  animation: modalSlideIn var(--animation-normal) ease-out;
}

.close {
  position: absolute;
  right: 15px; /* Diperkecil untuk mobile */
  top: 15px; /* Diperkecil untuk mobile */
  font-size: 24px; /* Diperkecil untuk mobile */
  font-weight: bold;
  cursor: pointer;
  color: #aaa;
  transition: color 0.3s ease;
}

.close:hover {
  color: #000;
  transform: rotate(90deg);
}

.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 12px 20px; /* Diperkecil untuk mobile */
  background: #4CAF50;
  color: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transform: translateX(400px);
  transition: transform 0.3s ease;
  z-index: 1001;
  font-size: 0.9rem; /* Ukuran font yang konsisten */
}

.notification.show {
  transform: translateX(0);
}

/* ===== PRODUCT STYLE ===== */
.product-card {
  background-color: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  animation: fadeInUp var(--animation-normal) ease-out;
  animation-fill-mode: both;
}

.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.3s; }
.product-card:nth-child(4) { animation-delay: 0.4s; }

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-medium);
}

.product-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-image-container {
  position: relative;
  overflow: hidden;
  height: 200px; /* Diperkecil untuk mobile */
  background-color: #f5f5f5;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image {
  transform: scale(1.05);
}

.product-info {
  padding: 12px; /* Diperkecil untuk mobile */
  flex-grow: 1;
}

.product-title {
  font-size: 1rem; /* Ukuran font yang konsisten */
  font-weight: 600;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 48px;
  transition: color var(--transition);
}

.product-card:hover .product-title {
  color: var(--pink-mode);
}

.product-actions {
  padding: 0 12px 12px; /* Diperkecil untuk mobile */
}

.p-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-price {
  font-weight: 600;
  margin: 0;
  transition: transform var(--transition);
}

.product-card:hover .product-price {
  transform: scale(1.05);
}

/* ===== PAYMENT STYLE ===== */
.payment-container {
  max-width: 800px;
  margin: 40px auto; /* Diperkecil untuk mobile */
  padding: 0 15px; /* Diperkecil untuk mobile */
}

.payment-header h1 {
  font-size: 1.8rem; /* Diperkecil untuk mobile */
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.payment-header h1::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px; /* Diperkecil untuk mobile */
  height: 3px;
  background-color: #4CAF50;
  animation: expandWidth var(--animation-slow) ease-out;
}

.payment-header p {
  max-width: 600px; /* Diperkecil untuk mobile */
  margin: 0 auto;
  font-size: 0.95rem; /* Ukuran font yang konsisten */
}

/* Payment Card */
.payment-card {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  animation: fadeInUp var(--animation-normal) ease-out;
}

.payment-card:hover {
  box-shadow: var(--shadow-lg);
}

.payment-card-header {
  background-color: var(--pink-mode);
  color: var(--pink-light);
  padding: 20px 15px; /* Diperkecil untuk mobile */
  text-align: center;
  position: relative;
  font-size: 1.5rem; /* Diperkecil untuk mobile */
}

.payment-header-icon {
  margin-bottom: 10px; /* Diperkecil untuk mobile */
}

.payment-header-icon i {
  font-size: 28px; /* Diperkecil untuk mobile */
  color: rgba(255, 255, 255, 0.9);
  animation: pulse 2s infinite;
}

.payment-card-header h3 {
  margin: 0;
  font-weight: 600;
  font-size: 1.2rem; /* Ukuran font yang konsisten */
}

.payment-card-body {
  padding: 20px; /* Diperkecil untuk mobile */
}

/* Payment Instruction */
.payment-instruction, .payment-bank-info-title {
  text-align: center;
  margin-bottom: 12px; /* Diperkecil untuk mobile */
  font-weight: 600;
  font-size: 0.95rem; /* Ukuran font yang konsisten */
}

/* Payment Amount */
.payment-amount {
  text-align: center;
  margin: 15px 0; /* Diperkecil untuk mobile */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.payment-amount-icon {
  margin-bottom: 8px; /* Diperkecil untuk mobile */
}

.payment-amount-icon i {
  font-size: 24px; /* Diperkecil untuk mobile */
  color: var(--pink-hot);
  animation: pulse 2s infinite;
}

.payment-amount h1 {
  margin: 0;
  padding: 8px 15px; /* Diperkecil untuk mobile */
  border: 2px dashed var(--dark-mode);
  border-radius: 8px;
  transition: var(--transition);
  font-size: 1.5rem; /* Diperkecil untuk mobile */
}

.payment-amount h1:hover {
  transform: scale(1.02);
  border-color: var(--pink-mode);
}

/* Divider */
.payment-divider {
  height: 1px;
  background-color: #eee;
  margin: 20px 0; /* Diperkecil untuk mobile */
}

.payment-bank-details {
  text-align: center;
  margin-bottom: 8px; /* Diperkecil untuk mobile */
}

.payment-bank-logo {
  margin-bottom: 12px; /* Diperkecil untuk mobile */
}

.payment-bank-logo img {
  max-height: 35px; /* Diperkecil untuk mobile */
  transition: transform var(--transition);
}

.payment-bank-logo img:hover {
  transform: scale(1.1);
}

.payment-bank-name {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px; /* Diperkecil untuk mobile */
}

.payment-bank-name i {
  font-size: 20px; /* Diperkecil untuk mobile */
  color: var(--pink-mode);
  margin-right: 8px; /* Diperkecil untuk mobile */
}

.payment-bank-name h4 {
  margin: 0;
  font-size: 1rem; /* Ukuran font yang konsisten */
}

.payment-account-number,
.payment-account-name {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px; /* Diperkecil untuk mobile */
}

.payment-account-number p,
.payment-account-name p {
  color: #555;
  margin: 0;
  font-size: 0.9rem; /* Ukuran font yang konsisten */
}

.payment-account-number strong,
.payment-account-name strong {
  color: var(--dark-mode);
  font-size: 1rem; /* Ukuran font yang konsisten */
}

/* Payment Notice */
.payment-notice {
  background-color: #fff8e1;
  border-left: 4px solid #ffc107;
  padding: 15px; /* Diperkecil untuk mobile */
  border-radius: 6px;
  margin: 20px 0; /* Diperkecil untuk mobile */
  animation: fadeIn var(--animation-normal) ease-out;
}

.payment-notice-header {
  align-items: center;
  margin-bottom: 12px; /* Diperkecil untuk mobile */
}

.payment-notice-icon {
  margin-right: 8px; /* Diperkecil untuk mobile */
}

.payment-notice-icon i {
  font-size: 20px; /* Diperkecil untuk mobile */
  color: #e67e22;
  animation: pulse 2s infinite;
}

.payment-notice p {
  margin-bottom: 12px; /* Diperkecil untuk mobile */
  color: #555;
  font-size: 0.9rem; /* Ukuran font yang konsisten */
}

/* WhatsApp Contact */
.payment-whatsapp-number {
  margin: 12px 0; /* Diperkecil untuk mobile */
  display: flex;
  justify-content: center;
}

.payment-whatsapp-link {
  display: inline-flex;
  align-items: center;
  background-color: #25D366;
  color: white;
  padding: 10px 16px; /* Diperkecil untuk mobile */
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem; /* Ukuran font yang konsisten */
  transition: all 0.3s ease;
}

.payment-whatsapp-link:hover {
  background-color: #128C7E;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
  color: white;
}

.payment-whatsapp-link i {
  margin-right: 8px; /* Diperkecil untuk mobile */
  font-size: 18px; /* Diperkecil untuk mobile */
  animation: pulse 2s infinite;
}

/* Message Format */
.payment-format-instruction {
  margin-bottom: 8px; /* Diperkecil untuk mobile */
  color: #555;
  font-size: 0.9rem; /* Ukuran font yang konsisten */
}

.payment-message-format {
  background-color: var(--white);
  padding: 12px; /* Diperkecil untuk mobile */
  border-radius: 6px;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  transition: var(--transition);
}

.payment-message-format:hover {
  background-color: #f8f9fa;
  transform: translateY(-2px);
}

.payment-format-icon {
  margin-right: 8px; /* Diperkecil untuk mobile */
}

.payment-format-icon i {
  font-size: 16px; /* Diperkecil untuk mobile */
  color: #e74c3c;
}

.payment-message-format code {
  font-family: 'Courier New', monospace;
  font-size: 0.9rem; /* Ukuran font yang konsisten */
  background-color: transparent;
  padding: 0;
}

/* Processing Info */
.payment-processing-info {
  margin-top: 20px; /* Diperkecil untuk mobile */
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.payment-processing-info p {
  color: #777;
  font-style: italic;
  margin: 0;
  max-width: 500px; /* Diperkecil untuk mobile */
  font-size: 0.85rem; /* Ukuran font yang konsisten */
  line-height: var(--heading-line-height);
}

/* Alert Info */
.payment-alert-info {
  background-color: #f1f1f1;
  color: #555;
  padding: 15px; /* Diperkecil untuk mobile */
  border-radius: 8px;
  text-align: center;
  margin: 20px 0; /* Diperkecil untuk mobile */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  animation: fadeIn var(--animation-normal) ease-out;
  font-size: 0.9rem; /* Ukuran font yang konsisten */
}

/* Product Grid */
.payment-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); /* Diperkecil untuk mobile */
  gap: 20px; /* Diperkecil untuk mobile */
  margin-top: 15px; /* Diperkecil untuk mobile */
}

/* ===== PRODUCT DETAIL ===== */
.product-detail-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 20px; /* Diperkecil untuk mobile */
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 20px; /* Diperkecil untuk mobile */
  animation: fadeIn var(--animation-normal) ease-out;
}

.product-gallery-container {
  flex: 1 1 45%;
  min-width: 300px;
}

.product-slider {
  position: relative;
  margin-bottom: 12px; /* Diperkecil untuk mobile */
  border-radius: 8px;
  overflow: hidden;
}

.slider-main-image {
  width: 100%;
  height: 350px; /* Diperkecil untuk mobile */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.slider-main-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  border-radius: 50%;
  width: 35px; /* Diperkecil untuk mobile */
  height: 35px; /* Diperkecil untuk mobile */
  font-size: 16px; /* Diperkecil untuk mobile */
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 2;
}

.slider-btn:hover {
  background-color: rgba(0, 0, 0, 0.8);
  transform: translateY(-50%) scale(1.1);
}

.prev-btn {
  left: 8px; /* Diperkecil untuk mobile */
}

.next-btn {
  right: 8px; /* Diperkecil untuk mobile */
}

.slider-thumbnails {
  display: flex;
  gap: 8px; /* Diperkecil untuk mobile */
  overflow-x: auto;
  padding: 5px 0;
  scrollbar-width: thin;
  scrollbar-color: #888 #f1f1f1;
}

.slider-thumbnails::-webkit-scrollbar {
  height: 6px;
}

.slider-thumbnails::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

.slider-thumbnails::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 3px;
  transition: background 0.3s ease;
}

.slider-thumbnails::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.slider-thumbnails .thumb {
  width: 70px; /* Diperkecil untuk mobile */
  height: 70px; /* Diperkecil untuk mobile */
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  opacity: 0.7;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  flex-shrink: 0;
}

.slider-thumbnails .thumb:hover {
  opacity: 1;
  transform: scale(1.05);
  border-color: #ddd;
}

.slider-thumbnails .thumb.active {
  opacity: 1;
  border-color: #4CAF50;
  box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.3);
}

.product-info-container {
  flex: 1 1 45%;
  min-width: 300px;
}

.product-title-detail {
  font-size: 1.5rem; /* Diperkecil untuk mobile */
  margin-bottom: 12px; /* Diperkecil untuk mobile */
  transition: color 0.3s ease;
}

.product-price-detail {
  font-size: 1.3rem; /* Diperkecil untuk mobile */
  font-weight: bold;
  color: var(--pink-mode);
  margin-bottom: 12px; /* Diperkecil untuk mobile */
  transition: transform 0.3s ease;
}

.product-price-detail:hover {
  transform: translateY(-2px);
}

.product-spec {
  margin-bottom: 15px; /* Diperkecil untuk mobile */
  font-size: 0.95rem; /* Ukuran font yang konsisten */
}

.product-divider {
  border: none;
  height: 1px;
  background-color: #eee;
  margin: 15px 0; /* Diperkecil untuk mobile */
  transition: background-color 0.3s ease;
}

.product-description {
  margin-bottom: 20px; /* Diperkecil untuk mobile */
  transition: opacity 0.3s ease;
  font-size: 0.95rem; /* Ukuran font yang konsisten */
}

.description-title {
  font-size: 0.95rem; /* Ukuran font yang konsisten */
  margin-bottom: 8px; /* Diperkecil untuk mobile */
  font-family: var(--font-body);
  font-weight: 600;
}

.cta-button-whatsapp {
  display: inline-flex;
  align-items: center;
  background-color: #25D366;
  color: white;
  padding: 10px 16px; /* Diperkecil untuk mobile */
  border-radius: 4px;
  text-decoration: none;
  margin-bottom: 12px; /* Diperkecil untuk mobile */
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  font-size: 0.95rem; /* Ukuran font yang konsisten */
}

.cta-button-whatsapp:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transform: translateY(-3px);
  color: white;
}

.cta-button-whatsapp:active {
  transform: translateY(-1px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.cta-button-whatsapp i {
  margin-right: 6px; /* Diperkecil untuk mobile */
  font-size: 16px; /* Diperkecil untuk mobile */
  transition: transform 0.3s ease;
  font-size: 2em;
}

.cta-button-whatsapp:hover i {
  transform: scale(1.2);
}

.back-link {
  display: inline-block;
  text-decoration: none;
  margin: 8px; /* Diperkecil untuk mobile */
  padding-bottom: 2px;
  transition: all 0.3s ease;
  font-size: 0.9rem; /* Ukuran font yang konsisten */
}

.back-link:hover {
  color: var(--pink-mode);
  padding-left: 5px;
}

.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  padding: 15px; /* Diperkecil untuk mobile */
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.lightbox-overlay.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-close {
  position: absolute;
  top: 15px; /* Diperkecil untuk mobile */
  right: 20px; /* Diperkecil untuk mobile */
  color: white;
  font-size: 30px; /* Diperkecil untuk mobile */
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 40px; /* Diperkecil untuk mobile */
  height: 40px; /* Diperkecil untuk mobile */
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  z-index: 1001;
}

.lightbox-close:hover {
  color: #ff4d4d;
  background-color: rgba(255, 255, 255, 0.1);
  transform: rotate(90deg);
}

.lightbox-main {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 800px; /* Diperkecil untuk mobile */
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.lightbox-overlay.active .lightbox-main {
  transform: scale(1);
}

.lightbox-image-container {
  width: 100%;
  height: 70vh; /* Diperkecil untuk mobile */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 4px;
}

.lightbox-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 24px; /* Diperkecil untuk mobile */
  font-weight: bold;
  padding: 8px 12px; /* Diperkecil untuk mobile */
  cursor: pointer;
  transition: all 0.3s ease;
  user-select: none;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  width: 40px; /* Diperkecil untuk mobile */
  height: 40px; /* Diperkecil untuk mobile */
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  color: #4CAF50;
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
  left: 15px; /* Diperkecil untuk mobile */
}

.lightbox-next {
  right: 15px; /* Diperkecil untuk mobile */
}

.lightbox-caption {
  color: white;
  margin-top: 12px; /* Diperkecil untuk mobile */
  text-align: center;
  font-size: 0.95rem; /* Ukuran font yang konsisten */
  max-width: 80%;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.lightbox-overlay.active .lightbox-caption {
  opacity: 1;
  transform: translateY(0);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes modalSlideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes expandWidth {
  from {
    width: 0;
  }
  to {
    width: 60px;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0.7;
  }
}


 
  .hero-simple {
  min-height: 100vh;
  background: linear-gradient(135deg, #ffeef8 0%, #fff5f5 50%, #f0f9ff 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  }

  .hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: left;
  }

  /* Sisi Kiri - Konten */
  .hero-content {
  position: relative;
  z-index: 2;
  }

  .badge-l {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 182, 193, 0.3);
  color: #d63384;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 25px;
  border: 1px solid rgba(255, 182, 193, 0.5);
  animation: fadeInDown 0.8s ease;
  }

  @keyframes fadeInDown {
  from {
  opacity: 0;
  transform: translateY(-20px);
  }
  to {
  opacity: 1;
  transform: translateY(0);
  }
  }

  .hero-title {
  line-height: 1.2;
  margin-bottom: 25px;
  animation: fadeInUp 0.8s ease 0.2s both;
  }

  .hero-title .highlight {
  position: relative;
  display: inline-block;
  }

  .hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 12px;
  background: linear-gradient(90deg, #ffb6c1, #ff9ff3);
  z-index: -1;
  border-radius: 6px;
  animation: expandWidth 1.5s ease 0.5s both;
  }

  @keyframes expandWidth {
  from {
  width: 0;
  }
  to {
  width: 100%;
  }
  }

  .hero-description {
  margin-bottom: 35px;
  animation: fadeInUp 0.8s ease 0.4s both;
  }

  /* Personal Touch Features */
  .personal-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease 0.6s both;
  }

  .feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .feature-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  }

  .feature-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #ff9ff3, #ffb6c1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
  }

  .feature-text {
  flex: 1;
  }

  .feature-title {
  font-weight: 600;
  margin-bottom: 3px;
  color: var(--text-primary);
  }

  .feature-desc {
  }


  /* Sisi Kanan - Visual Elements */
  .hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float 6s ease-in-out infinite;
  }

  @keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
  }

  /* Mockup Device */
  .device-mockup {
  position: relative;
  width: 320px;
  height: 640px;
  background: white;
  border-radius: 30px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  border: 8px solid #333;
  }

  .device-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #ffeef8, #fff5f5);
  position: relative;
  overflow: hidden;
  }

  /* Invitation Preview */
  .invitation-preview {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 85%;
  background: white;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  }

  .preview-header {
  margin-bottom: 15px;
  }

  .preview-icon {
  font-size: 2rem;
  color: #d63384;
  margin-bottom: 10px;
  }

  .preview-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: #2d3436;
  margin-bottom: 5px;
  }

.preview-subtitle {
  font-size: 0.8rem;
  color: #636e72;
  }

.preview-couple {
  margin: 20px 0;
  }

  .couple-names {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #2d3436;
  margin-bottom: 5px;
  }

.couple-date {
  font-size: 0.9rem;
  color: #636e72;
  }

.preview-footer {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
  }

  .preview-btn {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #636e72;
  transition: all 0.3s ease;
  }

.preview-btn:hover {
  background: #d63384;
  color: white;
  transform: scale(1.1);
  }

  /* Floating Elements */
  .floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  }

.floating-element {
  position: absolute;
  font-size: 1.5rem;
  opacity: 0.6;
  animation: floatAround 15s ease-in-out infinite;
  }

.element-1 {
  top: 15%;
  right: 10%;
  animation-delay: 0s;
  }

  .element-2 {
  bottom: 20%;
  left: 5%;
  animation-delay: 3s;
  }

.element-3 {
  top: 60%;
  right: 15%;
  animation-delay: 6s;
  }

@keyframes floatAround {
  0%, 100% {
  transform: translate(0, 0) rotate(0deg);
  }
  25% {
  transform: translate(15px, -15px) rotate(5deg);
  }
  50% {
  transform: translate(-10px, 10px) rotate(-5deg);
  }
  75% {
  transform: translate(12px, 12px) rotate(3deg);
  }
}

  /* Decorative Shapes */
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  }

.shape-1 {
  width: 200px;
  height: 200px;
  background: #ffb6c1;
  top: -50px;
  left: -50px;
  }

.shape-2 {
  width: 150px;
  height: 150px;
  background: #ff9ff3;
  bottom: -30px;
  right: 100px;
  }

.shape-3 {
  width: 100px;
  height: 100px;
  background: #ffb6c1;
  top: 50%;
  right: -30px;
  }

/* Responsive */
@media (max-width: 968px) {
  .hero-grid {
  grid-template-columns: 1fr;
  gap: 50px;
  text-align: left;
  }

.device-mockup {
  width: 280px;
  height: 560px;
  }

.personal-features {
  align-items: center;
  }

.feature-item {
  max-width: 400px;
  }
}

@media (max-width: 576px) {
.device-mockup {
  width: 240px;
  height: 480px;
  }

  /* Animasi tambahan */
@keyframes fadeInUp {
  from {
  opacity: 0;
  transform: translateY(20px);
  }
  to {
  opacity: 1;
  transform: translateY(0);
  }
}