/* ==========================================================================
   AMORASUITE™ SKIN GLOW FORMULA - LUXURY BRANDING & DESIGN SYSTEM
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,600&family=Montserrat:wght@300;400;500;600;700;800&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --primary-pink: #d81b60;
  --primary-pink-light: #ff6090;
  --primary-rose: #e91e63;
  --gold-accent: #d4af37;
  --gold-accent-light: #f3e5ab;
  --gold-gradient: linear-gradient(135deg, #d4af37 0%, #f9d976 50%, #c59b27 100%);
  --rose-gradient: linear-gradient(135deg, #e91e63 0%, #ff4081 50%, #c2185b 100%);
  --blush-bg: #fff5f7;
  --pearl-bg: #fdfbf7;
  --card-bg: #ffffff;
  --text-dark: #2c222e;
  --text-muted: #6b5c6e;
  --border-light: rgba(216, 27, 96, 0.12);
  --shadow-soft: 0 10px 30px rgba(216, 27, 96, 0.08);
  --shadow-glow: 0 15px 35px rgba(233, 30, 99, 0.22);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 999px;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Outfit', 'Montserrat', -apple-system, sans-serif;
}

/* Reset & Core Base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: none;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--blush-bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

/* Top Announcement Bar */
.announcement-bar {
  background: var(--rose-gradient);
  color: #ffffff;
  text-align: center;
  padding: 10px 15px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 2px 10px rgba(216, 27, 96, 0.2);
}

.announcement-bar span {
  display: inline-block;
  animation: pulseGlow 2s infinite alternate;
}

@keyframes pulseGlow {
  0% { opacity: 0.85; transform: scale(0.99); }
  100% { opacity: 1; transform: scale(1.01); }
}

/* Container Utility */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 15px 0;
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-nav a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: color 0.25s ease;
}

.header-nav a:hover,
.header-nav a.active {
  color: var(--primary-rose);
}

.header-logo {
  max-height: 75px;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.08));
  transition: transform 0.3s ease;
}

.header-logo:hover {
  transform: scale(1.02);
}

.header-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(212, 175, 55, 0.4);
  box-shadow: var(--shadow-soft);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-pink);
}

.header-badge i {
  color: var(--gold-accent);
  font-size: 1.1rem;
}

/* Main Layout & Sections */
section {
  padding: 70px 0;
  position: relative;
}

.section-title-wrap {
  text-align: center;
  margin-bottom: 45px;
}

.section-tag {
  display: inline-block;
  background: rgba(233, 30, 99, 0.08);
  color: var(--primary-rose);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
  border: 1px solid rgba(233, 30, 99, 0.15);
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.25;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 12px auto 0;
}

/* Welcome / Hero Section */
.welcome {
  background: radial-gradient(circle at 10% 20%, #fff0f5 0%, #fff 70%);
  padding: 50px 0 70px;
}

.welcome-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.welcome-left {
  padding-right: 20px;
}

.brand-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #fff 0%, #fff0f5 100%);
  border: 1px solid var(--gold-accent);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-pink);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.15);
  margin-bottom: 20px;
}

.welcome-title {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  color: var(--text-dark);
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 15px;
}

.welcome-title span {
  background: var(--rose-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.welcome-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 25px;
}

.welcome-bullets {
  list-style: none;
  margin-bottom: 30px;
}

.welcome-bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.welcome-bullets li i {
  color: var(--primary-rose);
  font-size: 1.1rem;
  background: rgba(233, 30, 99, 0.1);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.welcome-products-showcase {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #ffffff;
  padding: 20px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-light);
  margin-top: 25px;
}

.product-img-wrapper {
  position: relative;
  width: 50%;
}

.product-img-wrapper img {
  border-radius: var(--radius-md);
  object-fit: cover;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.product-img-wrapper img:hover {
  transform: translateY(-5px);
}

.showcase-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: var(--gold-gradient);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* Order Form Container */
.welcome-right {
  position: relative;
}

.form-container {
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(216, 27, 96, 0.12);
  border: 2px solid rgba(233, 30, 99, 0.15);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.time-block {
  background: var(--rose-gradient);
  color: #ffffff;
  padding: 18px 20px;
  text-align: center;
}

.time-title {
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.time-remain {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.time-remain-items {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  text-align: center;
  min-width: 54px;
}

.time-remain-items span.hour,
.time-remain-items span.minutes,
.time-remain-items span.seconds {
  font-size: 1.4rem;
  font-weight: 800;
  display: block;
  line-height: 1;
}

.time-remain-items span:not([class]) {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.9;
}

.time-dots {
  font-size: 1.3rem;
  font-weight: 700;
}

.form-block {
  padding: 25px 25px 30px;
}

.form-title-price {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: var(--blush-bg);
  padding: 15px;
  border-radius: var(--radius-md);
  margin-bottom: 22px;
  border: 1px dashed var(--primary-pink);
}

.prize-title {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  display: block;
  margin-bottom: 2px;
}

.old-price p {
  font-size: 1.2rem;
  color: #999;
  text-decoration: line-through;
  font-weight: 600;
}

.new-price p {
  font-size: 1.8rem;
  color: var(--primary-pink);
  font-weight: 800;
}

.form-input-block {
  position: relative;
  margin-bottom: 15px;
}

.form-input-img {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  opacity: 0.6;
}

.form-input {
  width: 100%;
  height: 52px;
  padding: 0 20px 0 48px;
  border: 1px solid #e2d8e4;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-family: var(--font-body);
  transition: all 0.3s ease;
  background: #faf8fb;
}

.form-input:focus {
  border-color: var(--primary-rose);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.12);
}

.form-select {
  width: 100%;
  height: 52px;
  padding: 0 20px 0 48px;
  border: 1px solid #e2d8e4;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-family: var(--font-body);
  background: #faf8fb;
  color: var(--text-dark);
  font-weight: 600;
  appearance: none;
  cursor: pointer;
}

.btn-form-buy {
  width: 100%;
  height: 58px;
  background: var(--rose-gradient);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-full);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: var(--shadow-glow);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.btn-form-buy:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(233, 30, 99, 0.35);
}

.form-card-pay {
  margin-top: 20px;
  text-align: center;
}

.form-card-pay-txt1 {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.form-card-pay-txt2 {
  font-size: 0.85rem;
  font-weight: 800;
  color: #2e7d32;
  margin-bottom: 8px;
}

.form-card-pay-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;

}

.form-card-pay-items img,
.form-protect img {
  height: 24px;
  object-fit: contain;
  opacity: 0.85;
}

.form-protect {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #f0e6f2;
}

/* Feature Cards Grid Section */
.welcome-card-container {
  background: #ffffff;
  box-shadow: inset 0 4px 20px rgba(0,0,0,0.02);
}

.card1-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.card1 {
  background: var(--blush-bg);
  padding: 30px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  text-align: center;
  transition: all 0.3s ease;
}

.card1:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-soft);
  border-color: var(--primary-pink);
}

.card1-img-box {
  width: 100%;
  height: 210px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 8px 25px rgba(216, 27, 96, 0.12);
  border: 2px solid #ffffff;
}

.card1-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.card1:hover .card1-img-box img {
  transform: scale(1.06);
}

.card1-icon {
  width: 64px;
  height: 64px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 8px 20px rgba(216, 27, 96, 0.1);
  font-size: 1.8rem;
  color: var(--primary-pink);
}

.card1 h4 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.card1 p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Dual Action / How it Works */
.slim-work {
  background: radial-gradient(circle at 90% 10%, #fff0f5 0%, #ffffff 80%);
}

.slim-work-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.slim-work-img-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.slim-work-img-wrapper img {
  border-radius: var(--radius-lg);
  width: 100%;
}

.slim-work-contant h2 {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.25;
}

.slim-work-contant p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.7;
}

.dual-pill-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 25px;
}

.dual-pill-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background: #ffffff;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  border-left: 4px solid var(--primary-rose);
}

.dual-pill-item h5 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
}

.dual-pill-item p {
  font-size: 0.9rem;
  margin: 4px 0 0 0;
}

/* Expert / Dermatologist Section */
.expert {
  background: #ffffff;
}

.expert-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 45px;
  align-items: center;
}

.expert-contant {
  background: var(--blush-bg);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  position: relative;
}

.expert-quote-icon {
  font-size: 3rem;
  color: var(--primary-pink);
  opacity: 0.2;
  position: absolute;
  top: 20px;
  right: 30px;
}

.expert-contant h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.expert-contant p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 18px;
}

.expert-author {
  font-weight: 700;
  color: var(--primary-rose);
  font-size: 1.1rem;
  border-top: 1px solid rgba(216, 27, 96, 0.15);
  padding-top: 15px;
  margin-top: 15px;
}

.expert-author span {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
}

.expert-img-wrapper img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-glow);
}

/* Ingredients Section */
.ingredients {
  background: linear-gradient(180deg, #fff0f5 0%, #ffffff 100%);
}

.ingredients-container2 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 30px;
}

.ingredients-item {
  background: #ffffff;
  padding: 24px 16px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-light);
  transition: transform 0.3s ease;
}

.ingredients-item:hover {
  transform: translateY(-5px);
  border-color: var(--primary-pink);
}

.ingredients-img-box {
  width: 100%;
  height: 140px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 15px;
  box-shadow: 0 6px 18px rgba(216, 27, 96, 0.1);
  border: 2px solid #ffffff;
}

.ingredients-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  cursor: zoom-in;
}

.ingredients-item:hover .ingredients-img-box img {
  transform: scale(1.08);
}

.ingredients-item h6 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}

.ingredients-item p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* Package Selection Tiers */
.packages-section {
  background: #ffffff;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
  margin-top: 35px;
}

.package-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 2px solid #eae2ec;
  padding: 35px 25px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.package-card:hover {
  border-color: var(--primary-pink);
  box-shadow: var(--shadow-soft);
}

.package-card.popular {
  border-color: var(--primary-rose);
  box-shadow: var(--shadow-glow);
  transform: scale(1.04);
  background: linear-gradient(180deg, #fff7fa 0%, #ffffff 100%);
}

.package-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--rose-gradient);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3);
}

.package-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--text-dark);
  margin: 10px 0 5px;
}

.package-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.package-price {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary-pink);
  margin-bottom: 15px;
}

.package-price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
}

.package-features {
  list-style: none;
  text-align: left;
  margin: 20px 0 25px;
}

.package-features li {
  font-size: 0.9rem;
  color: var(--text-dark);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.package-features li i {
  color: #2e7d32;
  font-size: 1rem;
}

/* Reviews Carousel Section */
.comments {
  background: var(--blush-bg);
}

.swiper-container {
  overflow: hidden;
  padding: 20px 10px 40px;
}

.swiper-slide {
  height: auto;
}

.slide {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}

.slide-rating {
  color: var(--gold-accent);
  font-size: 1.1rem;
}

.slide-content h6 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.slide-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.slider-navigation {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 25px;
}

.prev-slide, .next-slide {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--primary-pink);
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.prev-slide:hover, .next-slide:hover {
  background: var(--primary-pink);
  color: #ffffff;
}

/* 3-Step Routine Section */
.how-use {
  background: #ffffff;
}

.card2-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 35px;
}

.card2 {
  background: var(--blush-bg);
  padding: 35px 25px;
  border-radius: var(--radius-lg);
  text-align: center;
  border: 1px solid var(--border-light);
  position: relative;
}

.step-num {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 2.2rem;
  font-weight: 900;
  color: rgba(216, 27, 96, 0.12);
  font-family: var(--font-heading);
}

.card2-img-box {
  width: 100%;
  height: 200px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 8px 25px rgba(216, 27, 96, 0.12);
  border: 2px solid #ffffff;
}

.card2-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.card2:hover .card2-img-box img {
  transform: scale(1.06);
}

.card2-icon-box {
  width: 70px;
  height: 70px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: var(--primary-rose);
  box-shadow: 0 8px 20px rgba(216, 27, 96, 0.12);
}

.card2 h5 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.card2 p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Footer */
.footer {
  background: #1e1620;
  color: #d1c8d4;
  padding: 50px 0 30px;
  text-align: center;
}

.footer-logo {
  max-height: 80px;
  margin: 0 auto 20px;
  filter: brightness(1.1) drop-shadow(0 4px 10px rgba(0,0,0,0.5));
}

.footer p {
  font-size: 0.88rem;
  max-width: 800px;
  margin: 0 auto 15px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin: 20px 0;
  font-size: 0.88rem;
}

.footer-links a {
  color: #e2d8e4;
}

.footer-links a:hover {
  color: var(--primary-pink-light);
}

/* Modal Popup */
.popup-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  background: rgba(30, 22, 32, 0.75);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.popup-modal.show {
  display: flex;
}

.popup-center {
  max-width: 600px;
  width: 100%;
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.3);
  animation: popIn 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}

@keyframes popIn {
  0% { opacity: 0; transform: scale(0.85); }
  100% { opacity: 1; transform: scale(1); }
}

.popup-top {
  background: var(--rose-gradient);
  color: #ffffff;
  padding: 20px 25px;
  text-align: center;
  position: relative;
}

.popup-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin: 0;

}

.popup-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 1.5rem;
  color: #ffffff;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.popup-close:hover {
  opacity: 1;
}

.popup-bottom {
  padding: 30px 25px;
}

.popup-product-flex {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.popup-product-flex img {
  width: 130px;
  border-radius: var(--radius-md);
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .welcome-container,
  .slim-work-container,
  .expert-container {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .welcome-title {
    font-size: 2.4rem;
  }

  .card1-container,
  .card2-container,
  .packages-grid {
    grid-template-columns: 1fr;
  }

  .ingredients-container2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .package-card.popular {
    transform: none;
  }
}

@media (max-width: 576px) {
  section {
    padding: 40px 0;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .welcome-title {
    font-size: 1.95rem;
  }

  .ingredients-container2 {
    grid-template-columns: 1fr;
  }

  .header-logo {
    max-height: 50px;
  }

  .header-badge {
    display: none;
  }

  .welcome-products-showcase {
    flex-direction: column;
    gap: 15px;
  }

  .product-img-wrapper {
    width: 100%;
  }

  .form-block {
    padding: 18px 15px 22px;
  }

  .form-select {
    font-size: 0.82rem;
    padding: 0 12px 0 42px;
  }

  .time-remain-items {
    min-width: 44px;
    padding: 4px 8px;
  }

  .time-remain-items span.hour,
  .time-remain-items span.minutes,
  .time-remain-items span.seconds {
    font-size: 1.15rem;
  }

  .lightbox-content {
    max-width: 96%;
    max-height: 75vh;
  }
}

/* ==========================================================================
   IMAGE LIGHTBOX MODAL (FULL SIZE EXPANSION)
   ========================================================================== */
.card1-img-box img,
.card2-img-box img,
.product-img-wrapper img,
.zoomable-img {
  cursor: zoom-in;
  transition: transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.35s ease;
}

.card1-img-box img:hover,
.card2-img-box img:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 30px rgba(233, 30, 99, 0.25);
}

.image-lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100000;
  background: rgba(15, 10, 18, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 25px;
}

.image-lightbox.show {
  display: flex;
  animation: fadeInLightbox 0.3s ease forwards;
}

@keyframes fadeInLightbox {
  from { opacity: 0; }
  to { opacity: 1; }
}

.lightbox-content {
  max-width: 90%;
  max-height: 82vh;
  border-radius: var(--radius-md);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6);
  object-fit: contain;
  border: 3px solid rgba(255, 255, 255, 0.25);
  animation: zoomInContent 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes zoomInContent {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.lightbox-close {
  position: absolute;
  top: 25px;
  right: 35px;
  font-size: 2.8rem;
  color: #ffffff;
  cursor: pointer;
  line-height: 1;
  transition: transform 0.2s, color 0.2s;
  z-index: 100001;
}

.lightbox-close:hover {
  transform: scale(1.2);
  color: var(--primary-pink-light);
}

.lightbox-caption {
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-top: 18px;
  text-align: center;
  letter-spacing: 0.5px;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 24px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.15);
}