﻿/* ===========================================================
   Cosmoder — Cosmetics e-commerce landing
   Design tokens + custom styling layered on Bootstrap 5.3.8
   =========================================================== */

:root {
  /* surfaces */
  --bg:        oklch(0.987 0.008 305);
  --surface:   #ffffff;
  --surface-2: oklch(0.965 0.012 305);
  --lav-wash:  oklch(0.945 0.022 305);

  /* ink */
  --ink:       oklch(0.27 0.045 312);
  --ink-soft:  oklch(0.46 0.035 312);
  --ink-faint: oklch(0.62 0.03 312);

  /* purple family */
  --plum:      oklch(0.50 0.155 308);
  --plum-deep: oklch(0.38 0.14 312);
  --lavender:  oklch(0.74 0.115 305);
  --lav-200:   oklch(0.88 0.06 305);

  /* lines */
  --line:      oklch(0.91 0.014 305);
  --line-2:    oklch(0.85 0.02 305);

  /* type */
  --serif: "Playfair Display", Georgia, serif;
  --sans:  "Manrope", system-ui, -apple-system, sans-serif;

  /* bootstrap overrides */
  --bs-body-font-family: var(--sans);
  --bs-body-color: var(--ink);
  --bs-body-bg: var(--bg);
  --bs-border-color: var(--line);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.005em;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, .serif {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--plum);
}

.text-soft  { color: var(--ink-soft) !important; }
.text-faint { color: var(--ink-faint) !important; }
.text-plum  { color: var(--plum) !important; }
.bg-wash    { background: var(--lav-wash) !important; }
.bg-surface2{ background: var(--surface-2) !important; }

.section { padding: 92px 0; }
.section-sm { padding: 60px 0; }

.lead-serif {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  line-height: 1.08;
}

/* ---------- buttons (Bootstrap btn overrides) ---------- */
.btn {
  --bs-btn-padding-x: 1.6rem;
  --bs-btn-padding-y: 0.72rem;
  --bs-btn-font-family: var(--sans);
  --bs-btn-font-weight: 600;
  --bs-btn-font-size: 0.82rem;
  --bs-btn-border-radius: 999px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform .25s ease, background-color .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  --bs-btn-bg: var(--plum);
  --bs-btn-border-color: var(--plum);
  --bs-btn-hover-bg: var(--plum-deep);
  --bs-btn-hover-border-color: var(--plum-deep);
  --bs-btn-active-bg: var(--plum-deep);
  --bs-btn-active-border-color: var(--plum-deep);
  --bs-btn-color: #fff;
  --bs-btn-hover-color: #fff;
  box-shadow: 0 10px 24px -12px oklch(0.50 0.155 308 / 0.7);
}
.btn-primary:hover { box-shadow: 0 16px 30px -12px oklch(0.50 0.155 308 / 0.85); }

.btn-outline-plum {
  --bs-btn-color: var(--plum);
  --bs-btn-border-color: var(--line-2);
  --bs-btn-bg: transparent;
  --bs-btn-hover-bg: var(--ink);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-border-color: var(--ink);
  --bs-btn-active-bg: var(--ink);
  --bs-btn-active-color: #fff;
}

.btn-light-plum {
  --bs-btn-bg: #fff;
  --bs-btn-color: var(--ink);
  --bs-btn-border-color: #fff;
  --bs-btn-hover-bg: var(--lav-wash);
  --bs-btn-hover-color: var(--plum-deep);
  --bs-btn-hover-border-color: var(--lav-wash);
}

.btn-link-arrow {
  --bs-btn-bg: transparent;
  --bs-btn-border-color: transparent;
  --bs-btn-color: var(--plum);
  --bs-btn-padding-x: 0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  font-size: 0.76rem;
}
.btn-link-arrow .arr { transition: transform .25s ease; display: inline-block; }
.btn-link-arrow:hover .arr { transform: translateX(5px); }

/* ---------- announcement bar ---------- */
.announce {
  background: var(--ink);
  color: oklch(0.92 0.02 305);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* ---------- navbar ---------- */
.site-nav {
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,0.86);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.brand-mark {
  width: 30px; height: 30px;
  display: inline-grid; place-items: center;
  position: relative;
}
.brand-mark .ring {
  width: 30px; height: 30px; border-radius: 50%;
  border: 2px solid var(--plum);
}
.brand-mark .dot {
  position: absolute; width: 10px; height: 10px; border-radius: 50%;
  background: var(--lavender);
  top: 3px; right: 1px;
}
.brand-word {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.navbar-nav .nav-link {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-soft);
  padding: 0.5rem 0.95rem;
  position: relative;
}
.navbar-nav .nav-link:hover { color: var(--plum); }
.nav-icon-btn {
  width: 42px; height: 42px; border-radius: 50%;
  display: inline-grid; place-items: center;
  border: 1px solid var(--line);
  background: #fff; color: var(--ink);
  transition: all .2s ease;
  position: relative;
}
.nav-icon-btn:hover { border-color: var(--plum); color: var(--plum); }
.cart-count {
  position: absolute; top: -4px; right: -4px;
  background: var(--plum); color: #fff;
  font-size: 0.64rem; font-weight: 700;
  min-width: 18px; height: 18px; border-radius: 999px;
  display: grid; place-items: center; padding: 0 4px;
}

/* ---------- placeholder imagery ---------- */
.ph {
  position: relative;
  background-color: var(--lav-wash);
  background-image: repeating-linear-gradient(
    -45deg,
    oklch(0.93 0.03 305) 0 10px,
    oklch(0.90 0.04 305) 10px 20px
  );
  overflow: hidden;
}
.ph::after {
  content: attr(data-label);
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 0.7rem; letter-spacing: 0.1em;
  text-transform: uppercase;
  color: oklch(0.52 0.06 305);
  text-align: center; padding: 12px;
}
.ph-tall   { aspect-ratio: 3 / 4; }
.ph-square { aspect-ratio: 1 / 1; }
.ph-wide   { aspect-ratio: 16 / 10; }

/* ---------- hero ---------- */
.hero { background: var(--lav-wash); position: relative; }
.hero .owl-stage-outer { overflow: hidden; }
.hero-slide {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 620px;
}
.hero-copy {/* padding: 64px clamp(24px, 6vw, 96px); */padding: 6rem 4rem 7rem 8rem;}
.hero-copy h2 {
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  line-height: 1.02;
  margin: 0.4rem 0 1.2rem;
}
.hero-copy p { font-size: 1.05rem; color: var(--ink-soft); max-width: 30rem; }
.hero-slide.hero-fullscreen { position: relative; overflow: hidden; }
.hero-slide.hero-fullscreen .hero-media {
  position: absolute; inset: 0; align-self: unset; z-index: 0;
}
.hero-slide.hero-fullscreen .hero-media::after {
  content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(90deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.25) 55%, transparent 100%);
}
.hero-slide.hero-fullscreen .hero-copy {
  position: relative; z-index: 2;
  color: #fff;
}
.hero-slide.hero-fullscreen .hero-copy .eyebrow { color: rgba(255,255,255,.75); }
.hero-slide.hero-fullscreen .hero-copy h2 { color: #fff; }
.hero-slide.hero-fullscreen .hero-copy p { color: rgba(255,255,255,.85); }
.hero-media { position: relative; align-self: stretch; background: var(--lav-wash); }
.hero-media .hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-media .ph { position: absolute; inset: 0; }
.hero-media .ph::after { font-size: 0.8rem; }
.hero-badge {
  position: absolute; z-index: 3;
  bottom: 38px; left: -40px;
  background: #fff; border-radius: 999px;
  padding: 14px 26px;
  box-shadow: 0 24px 50px -24px oklch(0.4 0.1 308 / 0.5);
  font-weight: 700; font-size: 0.85rem;
}
.hero-badge .num { font-family: var(--serif); color: var(--plum); font-size: 1.4rem; }

/* owl nav dots */
.owl-theme .owl-dots { margin-top: 0 !important; }
.hero .owl-dots {
  position: absolute; bottom: 30px; left: clamp(24px, 6vw, 96px); z-index: 4;
}
.owl-theme .owl-dots .owl-dot span {
  width: 26px; height: 4px; border-radius: 2px;
  background: var(--lav-200); margin: 0 4px; transition: all .3s ease;
}
.owl-theme .owl-dots .owl-dot.active span { background: var(--plum); width: 42px; }

.hero-owl .owl-nav button.owl-prev,
.hero-owl .owl-nav button.owl-next {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 4;
  width: 52px; height: 52px; border-radius: 50%;
  background: #fff; border: 1px solid var(--line);
  display: grid; place-items: center; cursor: pointer;
  color: var(--ink); font-size: 1.4rem; line-height: 1;
  transition: all .2s ease; margin: 0;
  padding: 0;
}
.hero-owl .owl-nav {
    margin: 0;
}
.hero-owl .owl-nav button.owl-prev:hover,
.hero-owl .owl-nav button.owl-next:hover { background: var(--plum); color: #fff; border-color: var(--plum); }
.hero-owl .owl-nav button.owl-prev { left: 18px; }
.hero-owl .owl-nav button.owl-next { right: 18px; }

/* ---------- category cards ---------- */
.cat-card {
  display: block; position: relative; border-radius: 14px;
  overflow: hidden; text-decoration: none;
  background: var(--surface);
  border: 1px solid var(--line);
  transition: transform .35s ease, box-shadow .35s ease;
}
.cat-card:hover { transform: translateY(-6px); box-shadow: 0 28px 50px -30px oklch(0.4 0.1 308 / 0.5); }
.cat-card .ph { border-radius: 0; }
.cat-card .cat-label {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 18px 20px;
  background: linear-gradient(to top, oklch(0.27 0.045 312 / 0.78), transparent);
  color: #fff;
}
.cat-card .cat-label .name { font-family: var(--serif); font-size: 1.25rem; }
.cat-card .cat-label .count { font-size: 0.74rem; letter-spacing: 0.1em; opacity: 0.85; text-transform: uppercase; }

/* ---------- product cards ---------- */
.product-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  height: 100%;
  display: flex; flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 28px 50px -30px oklch(0.4 0.1 308 / 0.45); border-color: var(--line-2); }
.product-media { position: relative; }
.product-media .ph { border-radius: 0; }
.product-tag {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  font-size: 0.64rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 999px;
}
.tag-new  { background: var(--plum); color: #fff; }
.tag-sale { background: var(--ink); color: #fff; }
.wish-btn {
  position: absolute; top: 10px; right: 10px; z-index: 2;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.9); border: none;
  display: grid; place-items: center; color: var(--ink-soft);
  opacity: 0; transform: translateY(-6px); transition: all .25s ease;
}
.product-card:hover .wish-btn { opacity: 1; transform: translateY(0); }
.wish-btn:hover { color: var(--plum); }
.product-body { padding: 18px 18px 20px; display: flex; flex-direction: column; flex: 1; }
.product-body .cat { font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-faint); }
.product-body .name { font-family: var(--serif); font-size: 1.12rem; margin: 4px 0 6px; line-height: 1.2; }
.stars { color: var(--lavender); font-size: 0.8rem; letter-spacing: 0.1em; }
.price-row { margin-top: auto; display: flex; align-items: center; gap: 10px; padding-top: 14px; }
.price { font-weight: 700; font-size: 1.05rem; color: var(--ink); }
.price-old { color: var(--ink-faint); text-decoration: line-through; font-size: 0.9rem; }
.add-btn {
  margin-left: auto;
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--line-2); background: #fff; color: var(--ink);
  display: grid; place-items: center; transition: all .2s ease; cursor: pointer;
}
.add-btn:hover { background: var(--plum); border-color: var(--plum); color: #fff; }

/* ---------- campaign banner ---------- */
.campaign {
  position: relative; overflow: hidden; border-radius: 20px;
  background: linear-gradient(120deg, var(--plum-deep), var(--plum) 60%, var(--lavender));
  color: #fff;
}
.campaign .inner { padding: clamp(40px, 6vw, 80px); position: relative; z-index: 2; }
.campaign h2 { color: #fff; font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.05; }
.campaign .blob {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,0.08);
}
.campaign .blob.b1 { width: 360px; height: 360px; right: -80px; top: -120px; }
.campaign .blob.b2 { width: 220px; height: 220px; right: 180px; bottom: -120px; }
.countdown { display: flex; gap: 12px; }
.cd-box {
  background: rgba(255,255,255,0.14); border-radius: 12px;
  padding: 12px 16px; text-align: center; min-width: 74px;
  backdrop-filter: blur(4px);
}
@media (max-width: 600px) {
.cd-box {
    zoom: 0.8;
}
}
.cd-box .n { font-family: var(--serif); font-size: 1.9rem; line-height: 1; }
.cd-box .l { font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.8; }

/* ---------- brand story ---------- */
.story-img-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.story-img-grid .ph:nth-child(1) { grid-row: span 2; }
.feature-line { display: flex; gap: 14px; align-items: flex-start; }
.feature-line .ic {
  flex: 0 0 auto; width: 44px; height: 44px; border-radius: 50%;
  background: var(--lav-wash); color: var(--plum);
  display: grid; place-items: center; font-size: 1.1rem;
}

/* ---------- reviews ---------- */
.review-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 16px; padding: 32px; height: 100%;
}
.review-card .quote { font-family: var(--serif); font-size: 1.2rem; line-height: 1.5; color: var(--ink); }
.review-card .stars { font-size: 0.95rem; }
.review-card svg {
    font-size: 10px;
}
.reviewer { display: flex; align-items: center; gap: 12px; margin-top: 22px; }
.reviewer .av {
  width: 46px !important;
  height: 46px;
  border-radius: 50%;
  background: var(--lav-200);
  display: grid;
  place-items: center;
  font-family: var(--serif);
  color: var(--plum-deep);
  font-weight: 600;
}
.reviews-owl .owl-dots { text-align: center; margin-top: 34px !important; }

/* ---------- instagram ---------- */
.ig-tile { position: relative; display: block; overflow: hidden; border-radius: 12px; }
.ig-tile .ph { transition: transform .5s ease; }
.ig-tile:hover .ph { transform: scale(1.06); }
.ig-tile .ig-over {
  position: absolute; inset: 0; background: oklch(0.4 0.12 308 / 0.42);
  display: grid; place-items: center; color: #fff; font-size: 1.3rem;
  opacity: 0; transition: opacity .3s ease;
}
.ig-tile:hover .ig-over { opacity: 1; }

/* ---------- footer ---------- */
.site-footer { background: var(--ink); color: oklch(0.82 0.02 305); }
.site-footer a { color: oklch(0.78 0.02 305); text-decoration: none; font-size: 0.9rem; transition: color .2s ease; }
.site-footer a:hover { color: #fff; }
.site-footer h6 {
  color: #fff; text-transform: uppercase; letter-spacing: 0.14em;
  font-size: 0.78rem; font-weight: 700; margin-bottom: 1.2rem;
}
.footer-list li { margin-bottom: 0.7rem; list-style: none; }
.footer-list { padding: 0; margin: 0; }
.footer-brand .brand-word { color: #fff; }
.foot-input {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  color: #fff; border-radius: 999px;
}
.foot-input::placeholder { color: oklch(0.7 0.02 305); }
.foot-input:focus {
  background: rgba(255,255,255,0.1);
  border-color: var(--lavender); box-shadow: none; color: #fff;
}
.pay-pill {
  border: 1px solid rgba(255,255,255,0.2); border-radius: 6px;
  padding: 5px 10px; font-size: 0.66rem; font-weight: 700; letter-spacing: 0.08em;
  color: oklch(0.85 0.02 305); font-family: ui-monospace, monospace;
}
.soc-btn {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: grid; place-items: center; color: oklch(0.82 0.02 305);
  transition: all .2s ease;
}
.soc-btn:hover { background: var(--plum); border-color: var(--plum); color: #fff; }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 991px) {
  .hero-slide { grid-template-columns: 1fr; min-height: auto; }
  .hero-media { min-height: 360px; order: -1; }
  .hero-badge { left: 16px; bottom: 16px; }
  .section { padding: 64px 0; }
}
@media (max-width: 575px) {
  .hero-copy {padding: 40px 24px 76px;}
  .hero-owl .owl-nav button.owl-prev,
  .hero-owl .owl-nav button.owl-next { display: none; }
}

/* ---- sw-modules / data-sw-server uyumu ---- */
.sw-prod-slide {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.sw-prod-slide:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 50px -30px oklch(0.4 0.1 308 / 0.45);
  border-color: var(--line-2);
}
.sw-prod-img-wrap {
  position: relative;
  display: block;
  overflow: hidden;
}
.sw-prod-img-wrap > a { display: block; }
.sw-prod-img {
  width: 100%;
  /* aspect-ratio: 1; */
  /* object-fit: cover; */
  display: block;
}
.sw-prod-img-ph {
  width: 100%;
  aspect-ratio: 1;
  background: var(--lav-wash);
  display: grid;
  place-items: center;
  font-size: 3rem;
  color: var(--line-2);
}
.sw-prod-img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 12px;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 100%);
  transform: translateY(100%);
  transition: transform .25s ease;
}
.sw-prod-img-wrap:hover .sw-prod-img-overlay { transform: translateY(0); }
.sw-prod-discount {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--plum);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 4px;
  line-height: 1.3;
}
.sw-prod-tags {
  position: absolute;
  top: 10px;
  right: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}
.sw-prod-tag {
  background: rgba(255,255,255,0.9);
  color: var(--ink);
  font-size: 0.65rem;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 3px;
  line-height: 1.4;
  letter-spacing: 0.04em;
}
.sw-prod-body {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
}
.sw-prod-brand {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 4px;
}
.sw-prod-name {
  font-family: var(--serif);
  font-size: 1.12rem;
  line-height: 1.2;
  margin: 0 0 4px;
  color: var(--ink);
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: var(--sw-name-lines, 2);
  line-clamp: var(--sw-name-lines, 2);
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: calc(var(--sw-name-lines, 2) * 1.2 * 1.12rem);
}
.sw-prod-name:hover { color: var(--plum); }
.sw-prod-stars {
  color: var(--lavender);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  margin: 0 0 2px;
}
.sw-prod-prices {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 14px;
}
.sw-prod-price { font-weight: 700; font-size: 1.05rem; color: var(--ink); }
.sw-prod-old { color: var(--ink-faint); text-decoration: line-through; font-size: 0.9rem; }
.sw-prod-cart-btn,
.sw-prod-fav-btn {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border: none;
  background: rgba(255,255,255,0.95);
  color: var(--plum);
  border-radius: 8px;
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 1.15rem;
  transition: background .2s ease, color .2s ease;
}
.sw-prod-cart-btn:hover,
.sw-prod-fav-btn:hover { background: var(--plum); color: #fff; }

.sw-prod-row-group {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sw-prod-row-group .sw-prod-slide {
  width: 100%;
}

/* -- Product Tab Nav -- */
.sw-prod-tab-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.sw-tab-btn {
  background: none;
  border: 1px solid #d1d5db;
  border-radius: 20px;
  padding: 6px 18px;
  font-size: 14px;
  cursor: pointer;
  color: #6b7280;
  font-family: inherit;
  transition: background .15s, color .15s, border-color .15s;
}
.sw-tab-btn:hover {
  border-color: var(--plum, #6b21a8);
  color: var(--plum, #6b21a8);
}
.sw-tab-btn.active {
  background: var(--plum, #6b21a8);
  color: #fff;
  border-color: var(--plum, #6b21a8);
}

.sw-prod-tab-panel {
  display: none;
}
.sw-prod-tab-panel.active {
  display: block;
}

.sw-prod-slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}
.sw-prod-nav { display: flex; gap: 8px; }
.sw-prod-nav-btn {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--line-2);
  background: var(--surface);
  color: var(--ink);
  display: grid; place-items: center;
  cursor: pointer;
  transition: all .2s ease;
  font-size: 1rem;
  line-height: 1;
}
.sw-prod-nav-btn:hover { background: var(--plum); border-color: var(--plum); color: #fff; }
.sw-server-slider {width: 100%;position: relative;}
.sw-server-slider .owl-stage-outer { overflow: hidden; }
.sw-server-slider .owl-carousel .owl-item { padding-bottom: 1.2rem; }
.sw-server-slider .sw-prod-slide { display: flex; flex-direction: column; height: 100%; }

/* -- Product Slider: OWL nav -- */
.sw-server-slider .owl-nav { margin: 0; }
.sw-server-slider .owl-nav button.owl-prev,
.sw-server-slider .owl-nav button.owl-next {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  z-index: 4;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  cursor: pointer;
  color: var(--ink);
  font-size: 1.3rem;
  line-height: 1;
  transition: all .2s ease;
  margin: 0;
  padding: 0;
}
.sw-server-slider .owl-nav button.owl-prev:hover,
.sw-server-slider .owl-nav button.owl-next:hover { background: var(--plum); color: #fff; border-color: var(--plum); }
.sw-server-slider .owl-nav button.owl-prev {left: 10px;}
.sw-server-slider .owl-nav button.owl-next {right: 10px;}

/* -- Product Slider: OWL dots -- */
.sw-server-slider .owl-dots { margin-top: 20px !important; text-align: center; }
.sw-server-slider .owl-dots .owl-dot span {
  width: 26px; height: 4px; border-radius: 2px;
  background: var(--lav-200); margin: 0 4px;
  transition: all .3s ease; display: block;
}
.sw-server-slider .owl-dots .owl-dot.active span { background: var(--plum); width: 42px; }
/* ===========================================================
   Cosmoder — İletişim sayfası stilleri
   style.css token'ları üzerine kuruludur
   =========================================================== */

/* ---------- hero ---------- */
.ct-hero {
  background: var(--lav-wash);
  border-bottom: 1px solid var(--line);
  padding: clamp(48px, 6vw, 84px) 0;
}
.ct-hero h1 {
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  line-height: 1.06;
  margin: 0.5rem 0 0.9rem;
}
.ct-hero p { color: var(--ink-soft); max-width: 34rem; font-size: 1.05rem; margin: 0; }

.ct-crumb {
  font-size: 0.78rem; letter-spacing: 0.04em;
  color: var(--ink-faint); margin-bottom: 8px;
}
.ct-crumb a { color: var(--ink-soft); text-decoration: none; }
.ct-crumb a:hover { color: var(--plum); }
.ct-crumb .sep { margin: 0 8px; color: var(--line-2); }

.ct-wrap { padding: clamp(56px, 7vw, 92px) 0; }
.ct-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}

/* ---------- form card ---------- */
.ct-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: clamp(26px, 3.4vw, 44px);
}
.ct-card h2 {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  margin: 0 0 6px;
}
.ct-card .sub { color: var(--ink-soft); margin-bottom: 26px; font-size: 0.95rem; }

.ct-label {
  display: block; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-soft); margin-bottom: 8px;
}
.ct-input, .ct-textarea, .ct-select {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line-2);
  border-radius: 12px;
  padding: 13px 16px;
  font-family: var(--sans); font-size: 0.95rem;
  color: var(--ink);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.ct-textarea { min-height: 148px; resize: vertical; }
.ct-input:focus, .ct-textarea:focus, .ct-select:focus {
  outline: none;
  background: #fff;
  border-color: var(--plum);
  box-shadow: 0 0 0 3px oklch(0.50 0.155 308 / 0.12);
}
.ct-input::placeholder, .ct-textarea::placeholder { color: var(--ink-faint); }
.ct-field { margin-bottom: 20px; }
.ct-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.ct-consent { display: flex; gap: 10px; align-items: flex-start; margin: 4px 0 24px; }
.ct-consent input { margin-top: 3px; accent-color: var(--plum); width: 16px; height: 16px; }
.ct-consent label { font-size: 0.82rem; color: var(--ink-soft); line-height: 1.5; }
.ct-consent a { color: var(--plum); }

.ct-note {
  display: none;
  align-items: center; gap: 10px;
  background: var(--lav-wash);
  border: 1px solid var(--line);
  border-radius: 12px; padding: 14px 16px;
  margin-top: 18px; color: var(--plum-deep);
  font-size: 0.9rem; font-weight: 600;
}
.ct-note.show { display: flex; }

/* ---------- info side ---------- */
.ct-info-list { display: flex; flex-direction: column; gap: 14px; }
.ct-info {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px; padding: 22px;
  transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.ct-info:hover { transform: translateY(-3px); border-color: var(--line-2); box-shadow: 0 24px 44px -30px oklch(0.4 0.1 308 / 0.5); }
.ct-info .ic {
  flex: 0 0 auto; width: 46px; height: 46px; border-radius: 50%;
  background: var(--lav-wash); color: var(--plum);
  display: grid; place-items: center;
}
.ct-info .k { font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 4px; }
.ct-info .v { font-weight: 600; color: var(--ink); line-height: 1.5; }
.ct-info .v a { color: var(--ink); text-decoration: none; }
.ct-info .v a:hover { color: var(--plum); }
.ct-info .meta { font-size: 0.85rem; color: var(--ink-soft); margin-top: 2px; }

.ct-socials { display: flex; gap: 10px; margin-top: 4px; }
.ct-soc {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid var(--line-2); background: #fff; color: var(--ink);
  display: grid; place-items: center; transition: all .2s ease;
}
.ct-soc:hover { background: var(--plum); border-color: var(--plum); color: #fff; }

.ct-map {
  margin-top: 16px; border-radius: 16px; overflow: hidden;
  border: 1px solid var(--line);
}
.ct-map .ph { aspect-ratio: 16 / 9; border-radius: 0; }

/* ---------- faq ---------- */
.ct-faq { max-width: 780px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%; background: none; border: none;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 24px 4px; text-align: left; cursor: pointer;
  font-family: var(--serif); font-size: 1.12rem; color: var(--ink);
}
.faq-q .plus { flex: 0 0 auto; color: var(--plum); font-size: 1.4rem; transition: transform .25s ease; line-height: 1; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a {transition: max-height .3s ease;}
.faq-a p { color: var(--ink-soft); padding: 0 4px 24px; margin: 0; line-height: 1.6; max-width: 44rem; }

@media (max-width: 860px) {
  .ct-grid { grid-template-columns: 1fr; }
  .ct-row2 { grid-template-columns: 1fr; }
}
/* ===========================================================
   Cosmoder — İletişim sayfası stilleri
   style.css token'ları üzerine kuruludur
   =========================================================== */
   /* ===========================================================
   Cosmoder — Hakkımızda sayfası stilleri
   style.css token'ları üzerine kuruludur
   =========================================================== */

.ab-hero {
  background: var(--lav-wash);
  border-bottom: 1px solid var(--line);
  padding: clamp(44px, 5.5vw, 76px) 0;
  text-align: center;
}
.ab-hero h1 {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  line-height: 1.06; margin: 0.5rem 0 0.9rem;
}
.ab-hero p { color: var(--ink-soft); max-width: 40rem; margin: 0 auto; font-size: 1.05rem; }

.ab-crumb {
  font-size: 0.78rem; letter-spacing: 0.04em;
  color: var(--ink-faint); margin-bottom: 8px;
}
.ab-crumb a { color: var(--ink-soft); text-decoration: none; }
.ab-crumb a:hover { color: var(--plum); }
.ab-crumb .sep { margin: 0 8px; color: var(--line-2); }

/* alternating profile / mission blocks */
.ab-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.ab-block + .ab-block { margin-top: clamp(56px, 8vw, 120px); }
.ab-block.reverse .ab-media { order: -1; }

.ab-copy h2 {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  line-height: 1.08; margin: 0 0 1.1rem;
}
.ab-copy .eyebrow { margin-bottom: 6px; }
.ab-copy p { color: var(--ink-soft); line-height: 1.75; margin: 0 0 1rem; }
.ab-copy p:last-child { margin-bottom: 0; }
.ab-block.reverse .ab-copy { text-align: right; }

.ab-slot {
  display: block;
  width: 100%;
  height: clamp(340px, 34vw, 480px);
  box-shadow: 0 30px 60px -40px oklch(0.4 0.1 308 / 0.6);
}

/* values strip */
.ab-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.4vw, 30px);
}
.ab-value {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: clamp(24px, 2.8vw, 34px);
  transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.ab-value:hover { transform: translateY(-4px); border-color: var(--line-2); box-shadow: 0 28px 50px -34px oklch(0.4 0.1 308 / 0.5); }
.ab-value .ic {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--lav-wash); color: var(--plum);
  display: grid; place-items: center; margin-bottom: 16px;
}
.ab-value h3 { font-family: var(--serif); font-weight: 600; font-size: 1.25rem; margin: 0 0 8px; }
.ab-value p { color: var(--ink-soft); margin: 0; line-height: 1.6; font-size: 0.95rem; }

@media (max-width: 860px) {
  .ab-block { grid-template-columns: 1fr; gap: 28px; }
  .ab-block.reverse .ab-media { order: -1; }
  .ab-block.reverse .ab-copy { text-align: left; }
  .ab-values { grid-template-columns: 1fr; }
}
