/* --- Korean Products Promo Section --- */
:root {
  --fal-primary: #c9ae70;
  --fal-ink: #0c0c0d;
  --fal-muted: #5f5f5f;
}

.fal-korean-products-promo {
  padding: 40px 20px;
  text-align: center;
  /* Requested Fix: Full Height */
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.fal-korean-products-promo h2 {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  background-color: rgba(0, 0, 0, 0.2); /* خلفية زجاجية مع شفافية */
  border-radius: 10px;
  padding: 10px 10px;
  display: inline-block;
  backdrop-filter: blur(6px); /* تأثير الزجاج */
  border: 2px solid rgba(255, 255, 255, 0.2); /* إطار خفيف */
}

.fal-korean-products-promo p {
  font-size: 18px;
  color: #fff;
  line-height: 1.6;
  margin-bottom: 30px;
}

.fal-korean-products-promo .buy-now-btn {
  background-color: var(--fal-primary);
  color: #fff;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 25px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  display: inline-block;
}

.fal-korean-products-promo .buy-now-btn:hover {
  background-color: #a78d52;
}

/* Responsive */
@media (max-width: 768px) {
  .fal-korean-products-promo h2 {
    font-size: 24px;
  }

  .fal-korean-products-promo p {
    font-size: 16px;
  }

  .fal-korean-products-promo .buy-now-btn {
    padding: 10px 24px;
  }
}

/* --- Skincare Dark Section --- */
.fal-skincare-dark {
  /* Scoped Variables for Dark Theme */
  --fal-gold: #c9ae70;
  --fal-ink: #ffffff;
  --fal-text: #cccccc;
  --fal-bg: #14120e; /* Dark Brown/Gold Background */
  --fal-card-bg: #1c1914; /* Dark Card Background */
  --fal-border: rgba(201, 174, 112, 0.4); /* Gold Border */
  --fal-font: "Tajawal", "Cairo", system-ui, -apple-system, sans-serif;

  background-color: var(--fal-bg);
  font-family: var(--fal-font);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
  text-align: right;
  color: var(--fal-text);
}

/* --- Background Pattern & Golden Texture --- */
.fal-skincare-dark::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.6;
  /* Golden Texture: Noise + Gradient - Optimized for Performance */
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.6' numOctaves='1' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.10'/%3E%3C/svg%3E"),
    radial-gradient(
      circle at top right,
      rgba(201, 174, 112, 0.15),
      transparent 70%
    );
  mix-blend-mode: overlay;
}

/* Golden Ambient Touch */
.fal-skincare-dark::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 0% 0%,
      rgba(201, 174, 112, 0.12) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 100% 100%,
      rgba(201, 174, 112, 0.12) 0%,
      transparent 50%
    );
  z-index: 0;
  pointer-events: none;
}

.fal-s2__container {
  position: relative;
  z-index: 1;
  width: 90%;
  max-width: 100%;
  margin: 0 auto;
}

/* Header */
.fal-s2__header {
  text-align: center;
  margin-bottom: 60px;
}
.fal-s2__eyebrow {
  color: var(--fal-gold);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 15px;
  display: block;
  text-transform: uppercase;
}
.fal-s2__title {
  color: var(--fal-ink);
  font-weight: 900;
  font-size: clamp(28px, 5vw, 42px);
  margin: 0 0 15px;
  line-height: 1.2;
}
.fal-s2__divider {
  width: 70px;
  height: 4px;
  background: var(--fal-gold);
  margin: 25px auto;
  border-radius: 2px;
}
.fal-s2__lead {
  max-width: 750px;
  margin: 0 auto;
  color: var(--fal-text);
  line-height: 1.8;
  font-size: 18px;
}

/* Grid Layout */
.fal-s2__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

/* Card Styles */
.fal-s2__card {
  background: var(--fal-card-bg);
  border: 1px solid var(--fal-border);
  border-radius: 16px;
  padding: 40px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);

  /* Animation Init */
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.fal-s2__card.in-view {
  opacity: 1;
  transform: translateY(0);
}

.fal-s2__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  border-color: var(--fal-gold);
  background: #231f18;
}

/* Elegant side accent on hover */
.fal-s2__card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 4px;
  height: 100%;
  background: var(--fal-gold);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.fal-s2__card:hover::after {
  opacity: 1;
}

.fal-s2__card-title {
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 20px 0;
  color: var(--fal-ink);
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Icon for title */
.fal-s2__card-title::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background: var(--fal-gold);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--fal-gold);
}

.fal-s2__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fal-s2__list li {
  position: relative;
  padding-right: 24px;
  margin-bottom: 14px;
  color: var(--fal-text);
  line-height: 1.7;
  font-size: 16px;
  font-weight: 500;
}
.fal-s2__list li::before {
  content: "✓";
  color: var(--fal-gold);
  font-weight: 900;
  position: absolute;
  right: 0;
  top: 0;
}

/* Full width card for the last item */
.fal-s2__card--full {
  grid-column: 1 / -1;
  background: linear-gradient(
    to left,
    var(--fal-card-bg),
    #231f18
  ); /* Subtle gradient */
}

/* CTA Section */
.fal-s2__cta {
  text-align: center;
  margin-top: 40px;
}

.fal-s2__cta-label {
  font-weight: 700;
  margin-bottom: 20px;
  display: block;
  font-size: 18px;
  color: var(--fal-ink);
}

.fal-s2__store-link {
  display: inline-flex;
  background: var(--fal-card-bg);
  padding: 12px;
  border-radius: 20px;
  border: 1px solid var(--fal-border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  text-decoration: none;
}

.fal-s2__store-link:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 20px 40px rgba(201, 174, 112, 0.15);
  border-color: var(--fal-gold);
}

.fal-s2__store-img {
  display: block;
  width: 120px !important;
  max-width: 100% !important;
  height: 100% !important;
  border-radius: 14px;
}

/* Responsive */
@media (max-width: 768px) {
  .fal-s2__grid {
    grid-template-columns: 1fr;
  }
  .fal-s2__title {
    font-size: 32px;
  }
  .fal-s2__card {
    padding: 25px;
  }
}
