/* ============================================
   SHEOVATION - Ultimate Spot Corrector Theme
   ============================================ */

:root {
  /* ── Sheovation Marka Paleti ──────────────────────────
     Zemin : Pearl White + Cool Mist Grey
     Koyu  : Graphite Black / Obsidian
     Accent: Deep Plum (#5C2058)
     Metal : Muted Soft Gold (#B08D57)
  ─────────────────────────────────────────────────── */
  --purple-dark:   #1C1C1E;   /* Graphite Black — header, hero koyu alan */
  --purple-mid:    #2A1525;   /* Obsidian Plum — derin koyu gradyan */
  --purple-accent: #5C2058;   /* Deep Plum — ana vurgu, CTA, seçimler */
  --purple-light:  #7A3575;   /* Lighter Plum — hover, ikincil vurgu */
  --gold:          #B08D57;   /* Muted Soft Gold — premium metal detay */
  --gold-light:    #C9A96E;   /* Gold hover / shine */
  --white:         #FFFFFF;
  --off-white:     #F7F8FA;   /* Pearl White / Porcelain — ana arka plan */
  --text-dark:     #1C1C1E;   /* Graphite — ana metin */
  --text-gray:     #4A4A55;   /* Orta gri — ikincil metin */
  --bg-section:    #EEF0F4;   /* Cool Mist Grey — section zeminleri */
  --green-check:   #5C2058;   /* Deep Plum — checkmark & icon tonu */
  --star-gold:     #B08D57;   /* Muted Gold — yıldız rengi */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Nunito', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
}

/* ============================================
   HEADER / LOGO BAR
   ============================================ */
.sheo-header {
  background: var(--purple-dark);
  padding: 14px 0;
}
.sheo-header .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.sheo-logo {
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.sheo-logo span {
  color: var(--white);
  font-weight: 400;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  background: linear-gradient(135deg, #0D0D0F 0%, #1C1217 40%, #281422 70%, #1C1217 100%);
  min-height: 580px;
  position: relative;
  overflow: hidden;
  padding: 50px 0 40px;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  width: 460px;
  height: 460px;
  background: radial-gradient(ellipse, rgba(92,32,88,0.22) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  width: 360px;
  height: 360px;
  border: 2px solid rgba(200,150,255,0.18);
  border-radius: 50%;
  pointer-events: none;
}

.hero-glow-ring {
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  width: 280px;
  height: 280px;
  border: 40px solid rgba(180,100,255,0.10);
  border-radius: 50%;
  filter: blur(6px);
  pointer-events: none;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 340px 220px;
  gap: 20px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  color: var(--white);
}

.hero-tagline {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  line-height: 1.12;
  font-weight: 700;
  margin-bottom: 8px;
}

.hero-title .gold {
  color: var(--gold-light);
  font-style: italic;
}

.hero-subtitle {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 4px;
  margin-top: 14px;
}

.hero-subtitle-desc {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 20px;
}

.hero-features {
  list-style: none;
  margin-bottom: 28px;
}

.hero-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.88);
  margin-bottom: 9px;
  font-weight: 500;
}

.hero-features li svg {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: var(--gold-light);
}

.btn-buy {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--purple-accent);
  color: var(--white);
  font-family: 'Nunito', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 14px 28px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background 0.22s, transform 0.18s, box-shadow 0.22s;
  text-transform: uppercase;
  text-decoration: none;
}

.btn-buy:hover {
  background: #4A1A47;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(124,58,237,0.45);
  color: var(--white);
}

.btn-buy svg {
  width: 18px;
  height: 18px;
}

.hero-badges {
  display: flex;
  gap: 20px;
  margin-top: 16px;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.75);
  font-weight: 600;
}

.hero-badge svg {
  width: 14px;
  height: 14px;
  color: var(--gold);
}

/* Hero product bottle area */
.hero-product {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-product .bottle-img {
  width: 220px;
  filter: drop-shadow(0 20px 60px rgba(150,80,255,0.55));
  position: relative;
  z-index: 2;
}

/* Placeholder bottle when no image uploaded */
.bottle-placeholder {
  width: 200px;
  height: 320px;
  background: linear-gradient(170deg, #3A1535 0%, #1C0D1A 60%);
  border-radius: 50px 50px 40px 40px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(200,160,255,0.25);
  box-shadow: 0 30px 80px rgba(100,40,200,0.5), inset 0 1px 0 rgba(255,255,255,0.1);
}

.bottle-placeholder::before {
  content: '';
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 50px;
  background: linear-gradient(to bottom, #8A6935, #B08D57);
  border-radius: 6px 6px 0 0;
}

.bottle-placeholder::after {
  content: '';
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 30px;
  background: #2A1525;
  border-radius: 3px 3px 0 0;
}

.bottle-label {
  color: var(--white);
  text-align: center;
  padding: 20px;
}

.bottle-label .brand {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.bottle-label .product-name {
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 4px;
}

.bottle-label .product-sub {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.4;
}

/* Hero stats */
.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-top: 10px;
}

.stat-item {
  color: var(--white);
  text-align: left;
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 3px;
}

.stat-desc {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
  max-width: 160px;
}

.stat-note {
  font-size: 0.58rem;
  color: rgba(255,255,255,0.4);
  display: block;
  margin-top: 2px;
}

/* ============================================
   INGREDIENTS BAR
   ============================================ */
.ingredients-bar {
  background: var(--white);
  padding: 36px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.06);
}

.ingredients-bar .row {
  display: flex;
  align-items: center;
  gap: 40px;
}

.ingredients-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
  min-width: 180px;
}

.ingredients-list {
  display: flex;
  gap: 36px;
  flex: 1;
  justify-content: center;
}

.ingredient-item {
  text-align: center;
}

.ingredient-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 8px;
  color: var(--purple-accent);
}

.ingredient-pct {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1;
  margin-bottom: 3px;
}

.ingredient-name {
  font-size: 0.7rem;
  color: var(--text-gray);
  font-weight: 500;
}

.ingredients-divider {
  width: 1px;
  height: 60px;
  background: #E5E1EC;
}

/* ============================================
   FORMULA SECTION
   ============================================ */
.formula-section {
  background: var(--bg-section);
  padding: 70px 0;
}

.formula-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 260px;
  gap: 40px;
  align-items: center;
}

.formula-image {
  border-radius: 16px;
  overflow: hidden;
  height: 380px;
  background: #ccc;
}

.formula-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.formula-image-placeholder {
  width: 100%;
  height: 380px;
  background: linear-gradient(135deg, #d4c5f9 0%, #e8d5ff 50%, #c8b8f0 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-mid);
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
}

.formula-content {}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--purple-accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}

.formula-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.formula-desc {
  font-size: 0.84rem;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 24px;
}

.formula-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.formula-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-dark);
}

.benefit-check {
  width: 22px;
  height: 22px;
  background: var(--purple-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-check svg {
  width: 12px;
  height: 12px;
  color: white;
}

/* Formula product image */
.formula-product {
  display: flex;
  align-items: center;
  justify-content: center;
}

.formula-product .bottle-placeholder {
  transform: scale(0.85);
}

/* ============================================
   RESULTS SECTION
   ============================================ */
.results-section {
  background: var(--white);
  padding: 70px 0;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 50px;
}

.results-grid {
  display: grid;
  grid-template-columns: 1fr 300px 1fr;
  gap: 40px;
  align-items: center;
}

.testimonial-card {
  background: var(--bg-section);
  border-radius: 16px;
  padding: 28px;
}

.quote-mark {
  font-size: 3rem;
  color: var(--purple-light);
  line-height: 0.6;
  margin-bottom: 14px;
  font-family: 'Playfair Display', serif;
  opacity: 0.7;
}

.testimonial-text {
  font-size: 0.88rem;
  color: var(--text-dark);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 16px;
}

.stars {
  color: var(--star-gold);
  font-size: 1rem;
  margin-bottom: 6px;
  letter-spacing: 2px;
}

.testimonial-author {
  font-size: 0.78rem;
  color: var(--text-gray);
  font-weight: 600;
}

/* Before/After */
.before-after {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #F1EEF6;
}

.before-after-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 220px;
}

.ba-panel {
  position: relative;
  overflow: hidden;
}

.ba-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-panel-placeholder {
  width: 100%;
  height: 220px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 14px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--white);
}

.ba-before-placeholder {
  background: linear-gradient(135deg, #c8a87e 0%, #b89060 100%);
}

.ba-after-placeholder {
  background: linear-gradient(135deg, #e8c8a0 0%, #d4a870 100%);
}

.ba-label {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

.weeks-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: var(--purple-accent);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 5;
  border: 3px solid white;
  box-shadow: 0 4px 20px rgba(124,58,237,0.4);
}

.weeks-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: white;
  line-height: 1;
}

.weeks-text {
  font-size: 0.42rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-align: center;
  line-height: 1.2;
}

/* Results icons */
.results-icons {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.result-icon-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.result-icon {
  width: 44px;
  height: 44px;
  background: var(--bg-section);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--purple-accent);
}

.result-icon svg {
  width: 22px;
  height: 22px;
}

.result-icon-text {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.35;
}

/* ============================================
   WHY SHEOVATION
   ============================================ */
.why-section {
  background: var(--bg-section);
  padding: 70px 0;
}

.why-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  align-items: start;
}

.why-intro-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.why-intro-desc {
  font-size: 0.84rem;
  color: var(--text-gray);
  line-height: 1.7;
}

.why-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.why-card {
  background: white;
  border-radius: 14px;
  padding: 24px 18px;
  text-align: center;
  box-shadow: 0 2px 16px rgba(100,60,200,0.06);
}

.why-card-icon {
  width: 54px;
  height: 54px;
  background: var(--bg-section);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  color: var(--purple-accent);
}

.why-card-icon svg {
  width: 28px;
  height: 28px;
}

.why-card-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}

.why-card-desc {
  font-size: 0.72rem;
  color: var(--text-gray);
  line-height: 1.55;
}

/* ============================================
   ACTIVE INGREDIENTS
   ============================================ */
.actives-section {
  background: white;
  padding: 70px 0;
}

.actives-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 50px;
  align-items: center;
}

.actives-image {
  position: relative;
}

.actives-image-placeholder {
  width: 260px;
  height: 340px;
  background: linear-gradient(135deg, #e8d5ff 0%, #d4b8f8 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-mid);
  font-size: 0.8rem;
  font-weight: 600;
}

.actives-content {}

.actives-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 30px;
}

.actives-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 40px;
  margin-bottom: 34px;
}

.active-item {}

.active-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 5px;
}

.active-icon {
  width: 22px;
  height: 22px;
  color: var(--purple-accent);
  flex-shrink: 0;
}

.active-name {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--text-dark);
}

.active-desc {
  font-size: 0.76rem;
  color: var(--text-gray);
  line-height: 1.6;
  padding-left: 30px;
}

/* ============================================
   HOW TO USE
   ============================================ */
.how-section {
  background: var(--bg-section);
  padding: 70px 0;
}

.how-grid {
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 40px;
  align-items: center;
}

.how-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 36px;
}

.how-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.how-step {
  flex: 1;
  text-align: center;
  position: relative;
}

.how-step-icon {
  width: 70px;
  height: 70px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  box-shadow: 0 4px 20px rgba(100,60,200,0.12);
  color: var(--purple-accent);
}

.how-step-icon svg {
  width: 34px;
  height: 34px;
}

.how-step-desc {
  font-size: 0.72rem;
  color: var(--text-gray);
  line-height: 1.5;
  max-width: 120px;
  margin: 0 auto;
}

.how-arrow {
  display: flex;
  align-items: center;
  padding-top: 30px;
  padding-left: 0;
  padding-right: 0;
  color: var(--purple-light);
}

.how-arrow svg {
  width: 28px;
  height: 28px;
  opacity: 0.5;
}

.how-product-img {
  display: flex;
  justify-content: center;
}

/* ============================================
   REVIEWS / PRICE SECTION
   ============================================ */
.reviews-section {
  background: var(--off-white);
  padding: 70px 0;
}

.reviews-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  text-align: left;
  margin-bottom: 36px;
}

.reviews-price-grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 50px;
  align-items: start;
}

.reviews-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

.review-card {
  background: var(--white);
  border: 1px solid #E2DEEA;
  box-shadow: 0 2px 16px rgba(92,32,88,0.06);
  border-radius: 14px;
  padding: 22px;
}

.review-stars {
  color: var(--star-gold);
  font-size: 0.8rem;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.review-text {
  font-size: 0.78rem;
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 10px;
}

.review-author {
  font-size: 0.7rem;
  color: var(--text-gray);
  font-weight: 600;
}

/* Price card */
.price-card {
  background: white;
  border-radius: 16px;
  padding: 32px 28px;
  text-align: center;
  position: sticky;
  top: 20px;
}

.price-old {
  font-size: 1.1rem;
  color: #aaa;
  text-decoration: line-through;
  margin-bottom: 4px;
  font-weight: 600;
}

.price-new {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1;
  margin-bottom: 4px;
}

.price-new .currency {
  font-size: 1.4rem;
  font-family: 'Nunito', sans-serif;
  vertical-align: super;
}

.price-volume {
  font-size: 0.72rem;
  color: var(--text-gray);
  margin-bottom: 22px;
}

.btn-buy-lg {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: var(--purple-accent);
  color: white;
  font-family: 'Nunito', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 16px;
  border-radius: 8px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.22s, transform 0.18s, box-shadow 0.22s;
  margin-bottom: 10px;
  border: none;
  cursor: pointer;
}

.btn-buy-lg:hover {
  background: #4A1A47;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(124,58,237,0.45);
  color: white;
}

.btn-buy-lg svg {
  width: 18px;
  height: 18px;
}

.free-shipping {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.72rem;
  color: var(--text-gray);
  font-weight: 500;
}

.free-shipping svg {
  width: 14px;
  height: 14px;
  color: var(--purple-accent);
}

/* ============================================
   TRUST BAR (FOOTER)
   ============================================ */
.trust-bar {
  background: var(--purple-dark);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 0;
}

.trust-bar .row {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.75);
  font-size: 0.74rem;
  font-weight: 600;
}

.trust-item svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-product { order: -1; }
  .hero-stats { flex-direction: row; justify-content: center; }
  .hero-features li { justify-content: center; }
  .hero-badges { justify-content: center; }

  .ingredients-bar .row { flex-direction: column; }
  .ingredients-list { flex-wrap: wrap; gap: 20px; }
  .ingredients-divider { display: none; }

  .formula-grid { grid-template-columns: 1fr; }
  .formula-product { display: none; }

  .results-grid { grid-template-columns: 1fr; }
  .results-icons { flex-direction: row; flex-wrap: wrap; justify-content: center; }

  .why-grid { grid-template-columns: 1fr; }
  .why-cards { grid-template-columns: 1fr 1fr; }

  .actives-grid { grid-template-columns: 1fr; }
  .actives-image { display: none; }
  .actives-list { grid-template-columns: 1fr; }

  .how-grid { grid-template-columns: 1fr; }
  .how-product-img { display: none; }
  .how-steps { flex-wrap: wrap; gap: 20px; }

  .reviews-price-grid { grid-template-columns: 1fr; }
  .reviews-list { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .hero-title { font-size: 2rem; }
  .why-cards { grid-template-columns: 1fr; }
  .how-step-desc { max-width: 90px; }
}

/* ============================================
   v2.0 — VIDEO + BEFORE/AFTER + PRICING
   ============================================ */

/* ---- Section Head ---- */
.section-head { text-align:center; margin-bottom:50px; }
.section-tag-pill {
  display:inline-block;
  background:rgba(124,58,237,.1);
  color:var(--purple-accent);
  font-size:.7rem;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
  padding:6px 16px;
  border-radius:50px;
  margin-bottom:14px;
}
.gold-pill { background:rgba(201,162,39,.15); color:var(--gold); }
.section-title-lg {
  font-family:'Playfair Display',serif;
  font-size:2rem;
  font-weight:700;
  color:var(--text-dark);
  margin-bottom:10px;
}
.section-title-lg.light { color:#fff; }
.section-sub { font-size:.85rem; color:var(--text-gray); }
.section-sub.light { color:rgba(255,255,255,.7); }

/* ============================================
   VIDEO SECTION
   ============================================ */
.video-section { background:#fff; padding:70px 0; }
.video-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.video-card { display:flex; flex-direction:column; align-items:center; gap:14px; }
.video-frame.reels-frame {
  width:100%;
  /* Dikey 9:16 orani */
  aspect-ratio:9/16;
  border-radius:20px;
  overflow:hidden;
  background:#0e0520;
  position:relative;
  box-shadow:0 8px 40px rgba(100,60,200,.18);
}
.video-frame.reels-frame iframe,
.video-frame.reels-frame video {
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:none;
  object-fit:cover;
}
.video-placeholder {
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(160deg,#2d1157,#1a0a38);
}
.vp-inner { text-align:center; padding:20px; }
.vp-play-btn {
  width:56px; height:56px;
  background:rgba(124,58,237,.8);
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-size:1.4rem; color:#fff;
  margin:0 auto 14px;
}
.vp-hint { font-size:.72rem; color:rgba(255,255,255,.65); line-height:1.6; }
.vp-hint strong { color:rgba(255,255,255,.9); }
.vp-hint small { font-size:.62rem; color:rgba(255,255,255,.4); }
.video-card-label {
  font-size:.8rem; font-weight:700; color:var(--text-dark);
  text-align:center;
}

/* ============================================
   BEFORE/AFTER SECTION
   ============================================ */
.ba-section { background:var(--bg-section); padding:70px 0; }
.ba-two-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
}
.ba-case-card {
  background:#fff;
  border-radius:20px;
  padding:28px;
  box-shadow:0 4px 30px rgba(100,60,200,.07);
}
.ba-case-title {
  font-family:'Playfair Display',serif;
  font-size:1.1rem; font-weight:700;
  color:var(--text-dark);
  margin-bottom:18px;
  text-align:center;
}
.ba-case-images {
  display:flex;
  align-items:stretch;
  gap:0;
  border-radius:14px;
  overflow:hidden;
  margin-bottom:16px;
  height:260px;
}
.ba-side { flex:1; display:flex; flex-direction:column; }
.ba-img-wrap {
  flex:1;
  overflow:hidden;
  position:relative;
}
.ba-img-wrap img { width:100%;height:100%;object-fit:cover;display:block; }
.ba-img-ph {
  width:100%; height:100%;
  display:flex; align-items:center; justify-content:center;
  background:linear-gradient(135deg,#c8b0e8,#b898d8);
  text-align:center;
}
.ba-img-ph.after-ph { background:linear-gradient(135deg,#e8d5c0,#d4b898); }
.ba-img-ph span { display:block; font-size:.65rem; font-weight:800; color:rgba(255,255,255,.9); letter-spacing:.1em; margin-bottom:4px; }
.ba-img-ph small { font-size:.55rem; color:rgba(255,255,255,.65); line-height:1.4; }
.ba-side-label {
  font-size:.65rem; font-weight:800;
  text-align:center; letter-spacing:.08em;
  padding:7px 4px;
}
.before-lbl { background:#e8e0f5; color:var(--purple-mid); }
.after-lbl  { background:var(--purple-accent); color:#fff; }
.ba-center-divider {
  width:48px; flex-shrink:0;
  display:flex; align-items:center; justify-content:center;
  background:#f8f5ff;
  position:relative;
}
.ba-weeks-badge {
  width:42px; height:42px;
  background:var(--purple-accent);
  border-radius:50%;
  border:3px solid #fff;
  display:flex; flex-direction:column;
  align-items:center; justify-content:center;
  box-shadow:0 4px 16px rgba(124,58,237,.4);
}
.ba-weeks-badge strong { font-size:1rem; font-weight:800; color:#fff; line-height:1; }
.ba-weeks-badge small  { font-size:.42rem; color:rgba(255,255,255,.85); font-weight:700; letter-spacing:.04em; }
.ba-case-results {
  display:flex; flex-wrap:wrap; gap:8px; justify-content:center;
}
.ba-result-tag {
  display:inline-flex; align-items:center; gap:5px;
  background:rgba(124,58,237,.08);
  color:var(--purple-accent);
  font-size:.7rem; font-weight:700;
  padding:5px 12px; border-radius:50px;
}
.ba-result-tag svg { flex-shrink:0; }

/* ============================================
   PACKAGE PRICING SECTION
   ============================================ */
.pricing-section {
  background:linear-gradient(135deg,#1a0a38 0%,#2d1157 50%,#1a0a38 100%);
  padding:70px 0;
  position:relative;
  overflow:hidden;
}
.pricing-section::before {
  content:'';
  position:absolute; top:0; left:0; right:0; bottom:0;
  background:radial-gradient(ellipse at 50% 0%,rgba(200,150,255,.1) 0%,transparent 60%);
  pointer-events:none;
}
.pricing-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  position:relative;
  z-index:2;
}
.pricing-card {
  background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.12);
  border-radius:20px;
  padding:32px 24px;
  text-align:center;
  position:relative;
  transition:transform .25s,box-shadow .25s,background .25s;
}
.pricing-card:hover {
  transform:translateY(-6px);
  box-shadow:0 20px 60px rgba(0,0,0,.3);
  background:rgba(255,255,255,.1);
}
.pricing-card.popular {
  background:rgba(255,255,255,.13);
  border-color:rgba(255,255,255,.3);
  transform:scale(1.04);
  box-shadow:0 20px 60px rgba(124,58,237,.4);
}
.pricing-card.popular:hover { transform:scale(1.04) translateY(-6px); }
.pricing-card.best-value {
  background:rgba(201,162,39,.1);
  border-color:rgba(201,162,39,.35);
}
.popular-badge,.bestvalue-badge {
  position:absolute; top:-14px; left:50%; transform:translateX(-50%);
  white-space:nowrap;
  font-size:.65rem; font-weight:800; letter-spacing:.08em;
  padding:5px 16px; border-radius:50px; text-transform:uppercase;
}
.popular-badge  { background:var(--purple-accent); color:#fff; }
.bestvalue-badge{ background:var(--gold); color:#1a0a38; }
.pkg-header { margin-bottom:20px; }
.pkg-icon { font-size:2rem; margin-bottom:8px; }
.pkg-name { font-family:'Playfair Display',serif; font-size:1.1rem; font-weight:700; color:#fff; margin-bottom:4px; }
.pkg-qty  { font-size:.72rem; color:rgba(255,255,255,.55); font-weight:600; }
.pkg-pricing { margin-bottom:20px; }
.pkg-old  { font-size:.9rem; color:rgba(255,255,255,.4); text-decoration:line-through; margin-bottom:4px; }
.pkg-price{ font-family:'Playfair Display',serif; font-size:2.2rem; font-weight:700; color:#fff; line-height:1; margin-bottom:6px; }
.pkg-price span { font-size:1rem; font-family:'Nunito',sans-serif; }
.pkg-saving {
  display:inline-block;
  background:rgba(34,197,94,.15); color:#4ade80;
  font-size:.7rem; font-weight:700;
  padding:3px 12px; border-radius:50px;
}
.pkg-features {
  list-style:none; text-align:left;
  margin-bottom:24px;
}
.pkg-features li {
  display:flex; align-items:center; gap:8px;
  font-size:.78rem; color:rgba(255,255,255,.75);
  margin-bottom:8px; font-weight:500;
}
.pkg-features li svg { flex-shrink:0; color:rgba(255,255,255,.5); }
.btn-pkg {
  display:block; width:100%;
  background:rgba(255,255,255,.12);
  border:1.5px solid rgba(255,255,255,.25);
  color:#fff; text-align:center;
  font-family:'Nunito',sans-serif;
  font-size:.85rem; font-weight:800;
  letter-spacing:.06em; text-transform:uppercase;
  padding:14px; border-radius:10px;
  text-decoration:none;
  transition:background .2s,border-color .2s,transform .18s;
}
.btn-pkg:hover { background:rgba(255,255,255,.2); border-color:rgba(255,255,255,.4); transform:translateY(-2px); color:#fff; }
.btn-pkg-popular {
  background:var(--purple-accent);
  border-color:var(--purple-accent);
  box-shadow:0 6px 24px rgba(124,58,237,.5);
}
.btn-pkg-popular:hover { background:#6d28d9; border-color:#6d28d9; color:#fff; }
.btn-pkg-gold {
  background:var(--gold);
  border-color:var(--gold);
  color:#1a0a38;
  box-shadow:0 6px 24px rgba(201,162,39,.4);
}
.btn-pkg-gold:hover { background:var(--gold-light); border-color:var(--gold-light); color:#1a0a38; }
.pricing-footnote {
  text-align:center; font-size:.72rem;
  color:rgba(255,255,255,.4); margin-top:32px;
  position:relative; z-index:2;
}

/* Price card extras */
.price-card-title {
  font-size:.72rem; font-weight:800; color:var(--purple-accent);
  text-transform:uppercase; letter-spacing:.1em; margin-bottom:8px;
}
.price-tl { font-size:1.2rem; font-family:'Nunito',sans-serif; font-weight:700; }
.pkg-switcher {
  display:flex; flex-direction:column; gap:8px; margin-top:14px;
}
.ps-link {
  display:block; text-align:center;
  font-size:.72rem; color:var(--text-gray); font-weight:600;
  text-decoration:none; padding:6px;
  border:1px solid #e8e0f5; border-radius:6px;
  transition:all .2s;
}
.ps-link:hover { border-color:var(--purple-accent); color:var(--purple-accent); }

/* Why card icon update */
.why-card-icon { font-size:1.8rem; margin-bottom:10px; }

/* How step update */
.how-step-icon { font-size:2rem; margin-bottom:8px; }

/* Active emoji */
.active-emoji { font-size:1.1rem; }

/* ============================================
   RESPONSIVE v2
   ============================================ */
@media(max-width:900px){
  .video-grid { grid-template-columns:1fr 1fr; }
  .ba-two-grid { grid-template-columns:1fr; }
  .pricing-grid { grid-template-columns:1fr; }
  .pricing-card.popular { transform:none; }
  .pricing-card.popular:hover { transform:translateY(-4px); }
}
@media(max-width:600px){
  .video-grid { grid-template-columns:1fr; }
  .section-title-lg { font-size:1.5rem; }
  .ba-case-images { height:200px; }
}

/* ============================================
   FORMULA DERMO — Premium Dermokozmetik v2
   ============================================ */

.formula-dermo-section {
  background: linear-gradient(180deg, #faf8ff 0%, #f0ebff 40%, #faf8ff 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.formula-dermo-section::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--purple-accent), var(--gold), var(--purple-light));
}

.formula-dermo-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 40px;
  align-items: start;
}

/* ---- Layer Cards ---- */
.formula-layer {
  margin-bottom: 28px;
  border-radius: 20px;
  border: 1px solid rgba(124,58,237,.1);
  background: white;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(100,60,200,.06);
}

.layer-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(124,58,237,.08);
  background: linear-gradient(90deg, rgba(124,58,237,.04), transparent);
}

.layer-badge {
  font-size: .6rem;
  font-weight: 900;
  letter-spacing: .14em;
  padding: 5px 12px;
  border-radius: 50px;
  white-space: nowrap;
  flex-shrink: 0;
}
.l1-badge { background: linear-gradient(135deg, #7c3aed, #9333ea); color: #fff; }
.l2-badge { background: linear-gradient(135deg, #0ea5e9, #0284c7); color: #fff; }
.l3-badge { background: linear-gradient(135deg, #16a34a, #15803d); color: #fff; }

.layer-title { font-size: .9rem; font-weight: 800; color: var(--text-dark); margin-bottom: 2px; }
.layer-subtitle { font-size: .7rem; color: var(--text-gray); font-weight: 500; }

.layer-ingredients {
  padding: 20px 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.layer-ingredients.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* ---- Ingredient Cards ---- */
.ingr-card {
  border-radius: 12px;
  padding: 14px 16px;
  border: 1px solid transparent;
  transition: transform .2s, box-shadow .2s;
}
.ingr-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,.07);
}

.star-card    { background: linear-gradient(135deg, rgba(124,58,237,.06), rgba(147,51,234,.03)); border-color: rgba(92,32,88,.15); }
.support-card { background: linear-gradient(135deg, rgba(201,162,39,.06), rgba(240,192,64,.03)); border-color: rgba(201,162,39,.2); }
.hydra-card   { background: linear-gradient(135deg, rgba(14,165,233,.06), rgba(2,132,199,.03)); border-color: rgba(14,165,233,.2); }
.botanic-card { background: linear-gradient(135deg, rgba(22,163,74,.06), rgba(21,128,61,.03)); border-color: rgba(22,163,74,.15); }

.ingr-top {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 8px;
}

.ingr-pct {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--purple-accent);
  line-height: 1;
  min-width: 42px;
  flex-shrink: 0;
}
.ingr-pct-sm {
  font-size: .85rem;
  font-weight: 800;
  color: var(--purple-accent);
  min-width: 36px;
  flex-shrink: 0;
  padding-top: 2px;
}

.ingr-info { flex: 1; }
.ingr-name {
  font-size: .82rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: 4px;
}
.ingr-aka {
  display: block;
  font-size: .67rem;
  font-weight: 500;
  color: var(--text-gray);
  font-style: italic;
}

.ingr-badge {
  display: inline-block;
  font-size: .6rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 50px;
}
.star-badge    { background: rgba(92,32,88,.1); color: var(--purple-accent); }
.support-badge { background: rgba(201,162,39,.12); color: #92700a; }
.hydra-badge   { background: rgba(14,165,233,.1); color: #0369a1; }

.ingr-desc {
  font-size: .74rem;
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 8px;
}

.ingr-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.ingr-tags span {
  font-size: .6rem;
  font-weight: 700;
  background: rgba(0,0,0,.04);
  color: #666;
  padding: 3px 8px;
  border-radius: 50px;
  letter-spacing: .04em;
}

/* ---- Preservative Note ---- */
.preservative-note {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: #f8f5ff;
  border: 1px solid rgba(124,58,237,.1);
  border-radius: 12px;
  padding: 14px 18px;
  margin-top: 4px;
}
.pn-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.preservative-note p {
  font-size: .73rem;
  color: var(--text-gray);
  line-height: 1.65;
  margin: 0;
}
.preservative-note strong { color: var(--text-dark); }

/* ---- Right Column ---- */
.formula-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 30px;
}
.formula-bottle-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ---- Formula Summary Card ---- */
.formula-summary-card {
  background: white;
  border-radius: 20px;
  padding: 26px 22px;
  box-shadow: 0 8px 40px rgba(100,60,200,.1);
  border: 1px solid rgba(124,58,237,.1);
}
.fsc-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 18px;
  text-align: center;
}
.fsc-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f0eaff;
}
.fsc-stat { flex: 1; text-align: center; }
.fsc-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--purple-accent);
  line-height: 1;
  margin-bottom: 4px;
}
.fsc-lbl { font-size: .65rem; color: var(--text-gray); font-weight: 600; }
.fsc-divider { width: 1px; height: 40px; background: #e8e0f5; flex-shrink: 0; }

.fsc-claims {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.fsc-claim {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .74rem;
  color: var(--text-dark);
  font-weight: 600;
}
.fsc-claim svg { color: var(--purple-accent); flex-shrink: 0; }

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .formula-dermo-layout {
    grid-template-columns: 1fr;
  }
  .formula-right {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .formula-bottle-wrap { display: none; }
  .formula-summary-card { flex: 1; min-width: 280px; }
}
@media (max-width: 600px) {
  .layer-ingredients.two-col {
    grid-template-columns: 1fr;
  }
  .formula-right { flex-direction: column; }
}

/* ============================================
   v3.0 — HEADER LOGO + BOTTLE IMAGE + REVIEWS + LAB + FOOTER
   ============================================ */

/* ── Header ── */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-logo-link { text-decoration: none; display: flex; align-items: center; }
.header-logo-img  { max-height: 48px; width: auto; object-fit: contain; }
.header-trust {
  display: flex; align-items: center; gap: 6px;
  font-size: .7rem; color: rgba(255,255,255,.6); font-weight: 600;
}
.header-trust svg { color: var(--gold); }

/* ── Bottle real image (fix bad display) ── */
.bottle-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 30px 70px rgba(120,60,255,.55));
}
.bottle-real-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  max-height: 420px;
}

/* ── Videos 4 columns ── */
.video-grid.four-col { grid-template-columns: repeat(4,1fr); }
@media(max-width:900px){ .video-grid.four-col { grid-template-columns: 1fr 1fr; } }
@media(max-width:500px){ .video-grid.four-col { grid-template-columns: 1fr 1fr; } }

/* ── Reviews platforms ── */
.review-top-row {
  display: flex; align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.review-platform {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: .65rem; font-weight: 700;
  padding: 3px 8px; border-radius: 50px;
}
.trendyol-badge { background: rgba(255,96,0,.1); color: #FF6000; }
.hb-badge       { background: rgba(255,96,0,.1); color: #cc4a00; }

/* ── Lab Section ── */
.lab-section {
  background: linear-gradient(135deg, #0e0520 0%, #1a0a38 50%, #0e0520 100%);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.lab-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(201,162,39,.08) 0%, transparent 60%);
}
.lab-grid {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 50px;
  align-items: center;
  position: relative; z-index: 2;
}
.lab-visual {
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.lab-icon-wrap {
  width: 90px; height: 90px;
  background: rgba(201,162,39,.15);
  border: 2px solid rgba(201,162,39,.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.lab-icon-wrap svg { width: 40px; height: 40px; }
.lab-uk-flag { font-size: 2.5rem; }
.lab-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem; font-weight: 700;
  color: #fff; line-height: 1.25; margin-bottom: 14px;
}
.lab-desc {
  font-size: .82rem; color: rgba(255,255,255,.65);
  line-height: 1.75; margin-bottom: 24px;
}
.lab-badges {
  display: flex; flex-wrap: wrap; gap: 10px;
}
.lab-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(201,162,39,.12);
  border: 1px solid rgba(201,162,39,.3);
  color: var(--gold);
  font-size: .72rem; font-weight: 700;
  padding: 7px 14px; border-radius: 50px;
}
.lab-badge svg { width: 14px; height: 14px; }
@media(max-width:700px){
  .lab-grid { grid-template-columns: 1fr; text-align: center; }
  .lab-visual { flex-direction: row; justify-content: center; }
  .lab-badges { justify-content: center; }
}

/* ── Footer ── */
.sheo-footer {
  background: #0a0318;
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 60px 0 0;
  color: rgba(255,255,255,.6);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.5fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-logo { max-height: 44px; width: auto; opacity: .9; }
.footer-tagline {
  font-size: .78rem; color: rgba(255,255,255,.4);
  margin-top: 10px; margin-bottom: 8px;
  font-style: italic;
}
.footer-lab-note {
  font-size: .7rem; color: var(--gold);
  font-weight: 600; margin-top: 8px;
}
.footer-col-title {
  font-size: .7rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .12em;
  color: rgba(255,255,255,.9);
  margin-bottom: 16px;
}
.footer-company-info p {
  font-size: .73rem; line-height: 1.8; margin: 0; color: rgba(255,255,255,.55);
}
.footer-company-info strong { color: rgba(255,255,255,.8); }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 9px; }
.footer-links a {
  font-size: .75rem; color: rgba(255,255,255,.5);
  text-decoration: none; transition: color .2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: .68rem; color: rgba(255,255,255,.3); margin: 4px 0;
}
.footer-legal { font-style: italic; }
.trust-bar-row {
  display: flex; justify-content: space-around;
  align-items: center; flex-wrap: wrap; gap: 14px;
}

@media(max-width:800px){
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
}

/* ── ETBİS ── */
.footer-etbis {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.etbis-link {
  display: inline-block;
  transition: opacity 0.2s, transform 0.2s;
}
.etbis-link:hover {
  opacity: 0.85;
  transform: scale(1.03);
}
.etbis-img {
  width: 110px;
  height: auto;
  display: block;
  border-radius: 6px;
}

/* ETBİS — footer alta ortada */
.footer-etbis-center {
  display: flex;
  justify-content: center;
  padding: 22px 0 16px;
  border-top: 1px solid rgba(255,255,255,.06);
  margin-top: 10px;
}
