/* Ori Kozmetik - minimal landing (no effects) */

:root {
  --bg: #ffffff;
  --bg-soft: #fafbfc;
  --bg-subtle: #f8faf9;
  --card: #ffffff;
  --text: #0f172a;
  --muted: #475569;
  --brand: #0E3B2E;
  --brand-2: #1F3B2C;
  --border: rgba(2, 6, 23, 0.10);
  --shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  --radius: 18px;
  --radius-sm: 12px;
}

/* Hard reset */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Unbounded", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 35%, var(--bg-subtle) 100%);
  background-color: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  min-height: 100vh;
}

/* Scroll akıcılığı: sticky/fixed kendi katmanında (GPU) */
header {
  transform: translateZ(0);
  backface-visibility: hidden;
}
.wa-float {
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* Aşağıdaki bölümler: viewport dışında boyama atlanır */
section:not(.home) {
  content-visibility: auto;
  contain-intrinsic-size: auto 480px;
}

/* No animation */
* { animation: none !important; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

/* Anchor link scroll offset (sticky header) */
section[id],
footer[id] {
  scroll-margin-top: 86px;
}

/* Nav / buton tıklayınca yumuşak kayma */
html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* Focus visible (a11y) */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.header-inner {
  height: 74px;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 16px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.logo {
  justify-self: start;
}

.navlinks {
  justify-self: center;
}

.nav-side {
  justify-self: end;
}

.logo img { width: 170px; height: auto; }

.navlinks {
  display: flex;
  align-items: center;
  gap: 18px;
}

.navlinks a {
  font-size: 14px;
  color: #111827;
}

.nav-side {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-side a {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
}

.nav-side i { font-size: 20px; color: #111827; }

.menu-btn {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
}
.menu-btn i { font-size: 22px; color: #111827; }

@media (max-width: 900px) {
  .header-inner {
    display: flex;
    justify-content: space-between;
  }

  .logo,
  .navlinks,
  .nav-side {
    justify-self: auto;
  }

  .menu-btn { display: inline-flex; align-items: center; justify-content: center; }
  .navlinks { display: none; }
  .navlinks.active {
    display: flex;
    position: fixed;
    top: 74px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 12px;
    padding: 16px 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
  }
}

/* Sections */
section { padding: 72px 0; }

/* Hero (oriflamegirisi style: left content + right form) */
.home { padding: 40px 0 72px; }
.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
  align-items: start;
}

.hero-left {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  background: #fff;
  box-shadow: var(--shadow);
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--brand);
  font-weight: 600;
  margin-bottom: 12px;
}

.hero-title {
  font-size: 34px;
  line-height: 1.15;
  margin: 0 0 10px;
  color: var(--brand);
}

.hero-sub {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.hero-points {
  margin: 0;
  padding-left: 18px;
  color: #111827;
  font-size: 14px;
  line-height: 1.8;
}

.hero-cta-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  padding: 0 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  color: #111827;
  font-size: 14px;
  font-weight: 600;
}

.btn-primary {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

.hero-right {
  position: sticky;
  top: 94px;
}

.form-container {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  padding: 22px;
}

.form-container h2 {
  margin: 0 0 8px;
  font-size: 20px;
  color: #111827;
}

.form-container p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.input-group { margin-bottom: 12px; }

input, select, textarea, button {
  font-family: inherit;
}

input, select, textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 12px;
  font-size: 14px;
  outline: none;
  background: #fff;
  color: #111827;
}

textarea { min-height: 86px; resize: vertical; }

button {
  width: 100%;
  height: 46px;
  border-radius: 12px;
  border: 1px solid var(--brand);
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
}

#status {
  margin: 10px 0 0;
  font-size: 13px;
  color: var(--muted);
  text-align: center;
}

.hero-media {
  margin-top: 18px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
}

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; }
  .hero-right { position: static; top: auto; }
}

/* "Neden Oriflame" + cards */
.section-title {
  margin: 0 0 10px;
  font-size: 26px;
  color: var(--brand);
}

.section-desc {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  padding: 16px;
  box-shadow: var(--shadow);
}

.card .icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.card .icon i { font-size: 22px; color: var(--brand); }

.card h3 {
  margin: 0 0 8px;
  font-size: 15px;
  color: #111827;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

@media (max-width: 980px) {
  .cards { grid-template-columns: 1fr; }
}

/* Note banner */
.note {
  margin-top: 18px;
  border: 1px dashed rgba(14, 59, 46, 0.35);
  background: rgba(14, 59, 46, 0.04);
  border-radius: var(--radius);
  padding: 14px 16px;
  color: #0b2a21;
  font-size: 13px;
  line-height: 1.6;
}

/* Neler mümkün – kendi tasarımımız (yeşil/beyaz/gri, pembe yok) */
.nereler-mumkun-section {
  background: #f4f7f6;
  padding: 72px 0;
}
.nereler-mumkun-section .section-title {
  text-align: center;
  margin-bottom: 12px;
}
.nereler-mumkun-section .section-desc {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 640px;
  margin-bottom: 32px;
}
.nereler-mumkun-section .section-desc + .section-title {
  margin-top: 32px;
}
.nereler-mumkun-section .cards {
  gap: 24px;
  margin-top: 8px;
}
.nereler-mumkun-section .card {
  background: #fff;
  border: 1px solid rgba(14, 59, 46, 0.08);
  border-left: 5px solid var(--brand);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.04);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.nereler-mumkun-section .card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08), 0 4px 10px rgba(0, 0, 0, 0.04);
  border-left-color: var(--brand-2);
}
.nereler-mumkun-section .card .icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(14, 59, 46, 0.1) 0%, rgba(14, 59, 46, 0.05) 100%);
  border: 1px solid rgba(14, 59, 46, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}
.nereler-mumkun-section .card:hover .icon {
  background: linear-gradient(145deg, rgba(14, 59, 46, 0.14) 0%, rgba(14, 59, 46, 0.08) 100%);
  transform: scale(1.05);
}
.nereler-mumkun-section .card .icon i {
  font-size: 26px;
  color: var(--brand);
}
.nereler-mumkun-section .card h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 12px;
  position: relative;
  padding-bottom: 12px;
  letter-spacing: 0.01em;
}
.nereler-mumkun-section .card h3::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 36px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--brand), transparent);
  border-radius: 2px;
  opacity: 0.85;
}
.nereler-mumkun-section .card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

@media (max-width: 980px) {
  .nereler-mumkun-section .cards { grid-template-columns: 1fr; }
  .nereler-mumkun-section .card { padding: 24px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  .nereler-mumkun-section .card,
  .nereler-mumkun-section .card .icon { transition: none; }
  .nereler-mumkun-section .card:hover {
    transform: none;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.04);
  }
  .nereler-mumkun-section .card:hover .icon { transform: none; }
}

.nereler-mumkun-section .note {
  margin-top: 28px;
  text-align: center;
}

/* Hakkımızda */
.hakkimizda-section {
  background: #f8faf9;
  padding: 64px 0;
}

.hakkimizda-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 32px;
  align-items: center;
}

.hakkimizda-photo {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  aspect-ratio: 3 / 4;
  max-height: 420px;
}

.hakkimizda-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hakkimizda-content {
  padding: 0 0 0 8px;
}

.hakkimizda-section .title-box {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.hakkimizda-section .line {
  flex: 1;
  max-width: 72px;
  height: 2px;
  background: var(--brand);
  opacity: 0.6;
}

.hakkimizda-title {
  margin: 0;
  font-size: 28px;
  color: var(--brand);
  white-space: nowrap;
}

.hakkimizda-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
}

@media (max-width: 820px) {
  .hakkimizda-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hakkimizda-photo {
    max-width: 280px;
    margin: 0 auto;
    max-height: 360px;
  }

  .hakkimizda-content {
    padding: 0;
    text-align: center;
  }

  .hakkimizda-section .title-box {
    justify-content: center;
  }

  .hakkimizda-section .line {
    max-width: 48px;
  }

  .hakkimizda-title {
    white-space: normal;
  }
}

/* Katalog */
.catalog-section {
  padding: 64px 0;
}
.catalog-title {
  margin: 0 0 24px;
  font-size: 26px;
  color: var(--brand);
  text-align: center;
}
.catalog-title::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background: var(--brand);
  opacity: 0.5;
  margin: 12px auto 0;
  border-radius: 2px;
}

.catalog-frame-wrapper {
  position: relative;
  height: 500px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.catalog-frame-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 540px; /* Alt ~40px Heyzine branding kırpılıyor */
  border: none;
  display: block;
}

@media (max-width: 700px) {
  .catalog-frame-wrapper { height: 360px; }
  .catalog-frame-wrapper iframe { height: 400px; }
}

/* Kampanyalar */
.kampanyalar-section {
  padding: 64px 0;
}
.kampanyalar-title {
  margin: 0 0 8px;
  font-size: 26px;
  color: var(--brand);
  text-align: center;
}
.kampanyalar-title::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background: var(--brand);
  opacity: 0.5;
  margin: 12px auto 0;
  border-radius: 2px;
}
.kampanyalar-desc {
  margin: 0 0 24px;
  font-size: 15px;
  color: var(--muted);
  text-align: center;
  line-height: 1.5;
}

.kampanyalar-wrapper { display: flex; align-items: center; gap: 10px; }
.kampanyalar-track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 6px 2px;
  scroll-snap-type: x mandatory;
}
.kampanyalar-track::-webkit-scrollbar { display: none; }
.kampanya-card {
  scroll-snap-align: start;
  min-width: 300px;
  max-width: 300px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}
.kampanya-card img { width: 100%; height: 190px; object-fit: cover; }
.kampanya-info { padding: 12px 12px 14px; }
.kampanya-info h3 { margin: 0 0 8px; font-size: 14px; color: #111827; }
.kampanya-info p { margin: 0; font-size: 12px; color: var(--muted); line-height: 1.6; }

.kampanya-arrow {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  cursor: pointer;
  font-size: 22px;
  color: #111827;
}
.kampanya-arrow:hover { background: #f8fafc; }

@media (max-width: 700px) { .kampanya-card { min-width: 260px; max-width: 260px; } }

.basariplani { padding: 64px 0; }
.plan { text-align: center; }
.plan h1 {
  margin: 0 0 24px;
  font-size: 26px;
  color: var(--brand);
}
.plan h1::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background: var(--brand);
  opacity: 0.5;
  margin: 12px auto 0;
  border-radius: 2px;
}
.plan img {
  max-width: min(100%, 780px);
  width: auto;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  display: block;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.soru { padding: 64px 0; }
.cevap {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  padding: 18px;
}
.cevap h3 { margin: 0 0 10px; color: var(--brand); }
.cevap p { margin: 0; color: var(--muted); line-height: 1.75; font-size: 14px; }

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 30px 0 18px;
  background: #fff;
}
.footer-container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 18px;
  align-items: start;
}
.footer-left img { width: 170px; }
.footer-slogan { margin: 10px 0 0; color: var(--muted); font-size: 12px; line-height: 1.6; }
.footer-menu h3 { margin: 0 0 10px; color: var(--brand); font-size: 14px; }
.footer-menu ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 8px; }
.footer-menu a { font-size: 13px; color: #111827; }

.footer-contact {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.footer-contact a {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  margin-right: 0;
}
.footer-contact a i { font-size: 20px; color: #111827; }
.footer-bottom {
  width: min(1120px, calc(100% - 32px));
  margin: 24px auto 0;
  padding: 20px 16px 0;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--muted);
  line-height: 1.7;
  text-align: center;
}
@media (max-width: 980px) { .footer-container { grid-template-columns: 1fr; } }

/* Hover – küçük dokunuşlar (ikonlar, linkler, butonlar) */
.logo img {
  transition: opacity 0.2s ease;
}
.logo:hover img { opacity: 0.85; }

.navlinks a {
  transition: color 0.2s ease;
}
.navlinks a:hover { color: var(--brand); }

.nav-side a {
  transition: background 0.2s ease, color 0.2s ease;
}
.nav-side a:hover {
  background: #f1f5f9;
}
.nav-side a:hover i { color: var(--brand); }

.menu-btn {
  transition: background 0.2s ease;
}
.menu-btn:hover { background: #f1f5f9; }

.btn, .btn-primary {
  transition: opacity 0.2s ease;
}
.btn:hover, .btn-primary:hover { opacity: 0.88; }

.form-container button {
  transition: opacity 0.2s ease;
}
.form-container button:hover { opacity: 0.88; }

.kampanya-arrow {
  transition: background 0.2s ease;
}
.kampanya-arrow:hover { background: #f1f5f9; }

.footer-menu a {
  transition: color 0.2s ease;
}
.footer-menu a:hover { color: var(--brand); }

.footer-contact a {
  transition: background 0.2s ease, color 0.2s ease;
}
.footer-contact a:hover {
  background: #f1f5f9;
}
.footer-contact a:hover i { color: var(--brand); }

.wa-float {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.wa-float:hover {
  transform: translateZ(0) scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

@media (prefers-reduced-motion: reduce) {
  .logo img, .navlinks a, .nav-side a, .menu-btn, .btn, .btn-primary,
  .form-container button, .kampanya-arrow, .footer-menu a, .wa-float {
    transition: none;
  }
  .footer-contact a { transition: none; }
  .footer-contact a:hover { background: #fff; }
  .footer-contact a:hover i { color: #111827; }
  .wa-float:hover { transform: translateZ(0); }
}

/* WhatsApp floating */
.wa-float {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 2000;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.wa-float i { font-size: 26px; color: #16a34a; }
