/* ============================================================================
   iyiweb teması v1 — Claude Design canvas renderer'larının birebir CSS karşılığı.
   ÖZGÜN tasarım sistemi (lisans: bize ait). Token'lar: --t-primary/bg/surface/ink/
   muted/head/body/radius (+ blok-bazlı --block-bg override).
   Responsive: container query (editörde cihaz genişliğine tepki) + aynı kuralların
   @media kopyası (yayın fallback — eski tarayıcıda viewport==container zaten).
   ========================================================================== */

.iw-page {
  --t-primary: #B23A6B;
  --t-bg: #FBF6F8;
  --t-surface: #FFFFFF;
  --t-ink: #2A1E24;
  --t-muted: #8A7681;
  --t-head: 'Cormorant Garamond', serif;
  --t-body: 'Inter', sans-serif;
  --t-radius: 14px;
  /* türevler (color-mix fallback'leri düz değerlerle başlar, destek varsa override) */
  --t-line: rgba(0, 0, 0, .08);
  --t-line-strong: rgba(0, 0, 0, .18);
  --t-ink-soft: rgba(0, 0, 0, .55);
  --t-primary-soft: rgba(0, 0, 0, .06);
  background: var(--t-bg);
  font-family: var(--t-body);
  color: var(--t-ink);
  container-type: inline-size;
  container-name: iwpage;
  margin: 0;
}
@supports (color: color-mix(in srgb, red 50%, blue)) {
  .iw-page {
    --t-line: color-mix(in srgb, var(--t-ink) 8%, transparent);
    --t-line-strong: color-mix(in srgb, var(--t-ink) 18%, transparent);
    --t-ink-soft: color-mix(in srgb, var(--t-ink) 72%, transparent);
    --t-primary-soft: color-mix(in srgb, var(--t-primary) 12%, transparent);
  }
}
.iw-page * { box-sizing: border-box; }
.iw-page img { max-width: 100%; display: block; }

/* ── ortak parçalar ─────────────────────────────────────────────────────── */
.iw-sec { padding: 64px 56px; background: var(--block-bg, var(--t-bg)); }
.iw-sec--surface { background: var(--block-bg, var(--t-surface)); }
.iw-sec--ink { background: var(--block-bg, var(--t-ink)); }
.iw-ovl { font-family: var(--t-body); font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--t-primary); margin: 0 0 14px; }
.iw-h2 { font-family: var(--t-head); font-weight: 700; font-size: 38px; color: var(--t-ink); margin: 0 0 28px; letter-spacing: -.5px; }
.iw-h2--center { text-align: center; margin-bottom: 36px; }
.iw-btn { font-family: var(--t-body); font-weight: 600; font-size: 14px; padding: 9px 16px; border-radius: var(--t-radius); display: inline-flex; align-items: center; gap: 8px; border: 1px solid transparent; background: var(--t-primary); color: #fff; text-decoration: none; cursor: pointer; }
.iw-btn--big { font-size: 15px; padding: 13px 22px; }
.iw-btn--ghost { background: transparent; color: var(--t-ink); border-color: var(--t-line-strong); }
.iw-ph { background: var(--t-primary-soft); border: 1px dashed var(--t-line-strong); border-radius: var(--t-radius); display: flex; align-items: center; justify-content: center; color: var(--t-muted); font-family: var(--t-body); font-size: 13px; min-height: 180px; background-size: cover; background-position: center; }
.iw-ph--cover { min-height: 360px; border-radius: calc(var(--t-radius) * 1.4); }
.iw-ph--tall { min-height: 300px; border-radius: calc(var(--t-radius) * 1.3); }
.iw-ph--map { min-height: 260px; }
.iw-ph[style*="background-image"] { border-style: solid; color: transparent; }
/* görsel element stilleri (styleProps.el): Doldurma + Köşe yuvarlaklığı (iki renderer iw-fit-*/iw-rad-* basar) */
.iw-ph.iw-fit-cover { background-size: cover; }
.iw-ph.iw-fit-contain { background-size: contain; background-repeat: no-repeat; }
.iw-ph.iw-fit-fill { background-size: 100% 100%; }
.iw-ph.iw-rad-none { border-radius: 0; }
.iw-ph.iw-rad-s { border-radius: calc(var(--t-radius) * .4); }
.iw-ph.iw-rad-m { border-radius: var(--t-radius); }
.iw-ph.iw-rad-l { border-radius: calc(var(--t-radius) * 2.2); }
.iw-iconchip { width: 46px; height: 46px; border-radius: calc(var(--t-radius) * .7); flex-shrink: 0; background: var(--t-primary-soft); color: var(--t-primary); display: flex; align-items: center; justify-content: center; font-size: 20px; }

/* ── header ─────────────────────────────────────────────────────────────── */
.iw-header { display: flex; align-items: center; gap: 18px; padding: 20px 56px; background: var(--block-bg, var(--t-surface)); border-bottom: 1px solid var(--t-line); }
.iw-header__brand { font-family: var(--t-head); font-weight: 700; font-size: 22px; color: var(--t-ink); letter-spacing: -.3px; text-decoration: none; }
.iw-header__sp { flex: 1; }
.iw-header__nav { display: flex; gap: 8px; }
.iw-header__nav a { font-family: var(--t-body); font-size: 14px; font-weight: 500; padding: 6px 10px; border-radius: 8px; color: var(--t-ink-soft); text-decoration: none; position: relative; }
.iw-header__nav > .iw-nav-item:first-child > a, .iw-header__nav a:hover { color: var(--t-primary); }
/* Header variant'ları (aile: header) — aynı içerik, farklı tasarım */
.iw-header--centered { flex-direction: column; gap: 12px; align-items: center; }
.iw-header--centered .iw-header__nav { justify-content: center; align-items: center; }
.iw-header--minimal { border-bottom: 0; }
.iw-nav-item { position: relative; display: inline-block; }
.iw-nav-item .iw-dd { display: none; position: absolute; top: 100%; left: 0; min-width: 200px; background: var(--t-surface); border: 1px solid var(--t-line); border-radius: 12px; box-shadow: 0 16px 40px rgba(0,0,0,.1); padding: 8px; z-index: 50; }
.iw-nav-item:hover .iw-dd { display: block; }
.iw-dd a { display: block; padding: 8px 12px; border-radius: 8px; white-space: nowrap; }
.iw-dd a:hover { background: var(--t-bg); }

/* ── hero ───────────────────────────────────────────────────────────────── */
.iw-hero { background: var(--block-bg, var(--t-surface)); padding: 76px 56px; }
.iw-hero__row { display: flex; gap: 48px; align-items: center; }
.iw-hero__col { flex: 1; min-width: 0; }
.iw-hero__title { font-family: var(--t-head); font-weight: 700; font-size: 60px; line-height: 1.04; letter-spacing: -1px; color: var(--t-ink); margin: 0 0 18px; }
.iw-hero__sub { font-family: var(--t-body); font-size: 17px; line-height: 1.6; color: var(--t-muted); margin: 0 0 28px; max-width: 460px; }
.iw-hero__btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── services (ikonlu kart listesi) ─────────────────────────────────────── */
.iw-svc__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.iw-svc__card { display: flex; align-items: center; gap: 16px; padding: 18px; background: var(--t-surface); border-radius: var(--t-radius); border: 1px solid var(--t-line); }
.iw-svc__body { flex: 1; min-width: 0; }
.iw-svc__name { font-family: var(--t-head); font-weight: 700; font-size: 18px; color: var(--t-ink); }
.iw-svc__desc { font-family: var(--t-body); font-size: 13px; color: var(--t-muted); margin-top: 2px; }
.iw-svc__price { font-family: var(--t-body); font-weight: 700; font-size: 17px; color: var(--t-primary); white-space: nowrap; }

/* ── products (vitrin) ──────────────────────────────────────────────────── */
.iw-prod__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.iw-prod__card { background: var(--t-surface); border-radius: var(--t-radius); overflow: hidden; border: 1px solid var(--t-line); }
.iw-prod__img { min-height: 168px; border-radius: 0; border: 0; }
.iw-prod__body { padding: 15px; }
.iw-prod__name { font-family: var(--t-head); font-weight: 700; font-size: 16px; color: var(--t-ink); line-height: 1.25; }
.iw-prod__desc { font-family: var(--t-body); font-size: 12.5px; color: var(--t-muted); margin-top: 3px; }
.iw-prod__foot { display: flex; align-items: center; justify-content: space-between; margin-top: 12px; gap: 8px; }
.iw-prod__price { font-family: var(--t-head); font-weight: 800; font-size: 19px; color: var(--t-ink); letter-spacing: -.4px; }
.iw-prod__cta { font-size: 12.5px; padding: 8px 14px; }

/* ── menu (fiyat listesi, noktalı) ──────────────────────────────────────── */
.iw-menu__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px 48px; }
.iw-menu__row { display: flex; align-items: baseline; gap: 8px; padding: 14px 0; border-bottom: 1px dashed var(--t-line-strong); }
.iw-menu__dots { flex: 1; border-bottom: 1px dotted var(--t-line-strong); transform: translateY(-4px); }
.iw-menu__name { font-family: var(--t-head); font-weight: 700; font-size: 18px; color: var(--t-ink); }
.iw-menu__desc { font-family: var(--t-body); font-size: 13px; color: var(--t-muted); margin-top: 1px; }
.iw-menu__price { font-family: var(--t-body); font-weight: 700; font-size: 16px; color: var(--t-primary); white-space: nowrap; }

/* ── gallery ────────────────────────────────────────────────────────────── */
.iw-gal__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.iw-gal__grid .iw-ph { min-height: 180px; }

/* ── about ──────────────────────────────────────────────────────────────── */
.iw-about__row { display: flex; gap: 44px; align-items: center; }
.iw-about__col { flex: 1; min-width: 0; }
.iw-about__body { font-family: var(--t-body); font-size: 15px; line-height: 1.7; color: var(--t-muted); margin: 0; }

/* ── features (3 kart) ──────────────────────────────────────────────────── */
.iw-feat__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.iw-feat__card { padding: 24px; background: var(--t-surface); border-radius: calc(var(--t-radius) * 1.1); border: 1px solid var(--t-line); }
.iw-feat__card .iw-iconchip { width: 48px; height: 48px; border-radius: calc(var(--t-radius) * .8); margin-bottom: 16px; }
.iw-feat__name { font-family: var(--t-head); font-weight: 700; font-size: 19px; color: var(--t-ink); margin-bottom: 8px; }
.iw-feat__desc { font-family: var(--t-body); font-size: 14px; line-height: 1.6; color: var(--t-muted); }

/* ── stats (koyu şerit) ─────────────────────────────────────────────────── */
.iw-stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.iw-stats__cell { text-align: center; }
.iw-stats__num { font-family: var(--t-head); font-weight: 700; font-size: 46px; color: #fff; line-height: 1; }
.iw-stats__lbl { font-family: var(--t-body); font-size: 13px; color: rgba(255,255,255,.6); margin-top: 8px; }

/* ── testimonial ────────────────────────────────────────────────────────── */
.iw-quote { text-align: center; }
.iw-quote__mark { color: var(--t-primary); margin-bottom: 18px; font-size: 40px; font-family: var(--t-head); line-height: 1; }
.iw-quote__text { font-family: var(--t-head); font-weight: 600; font-size: 30px; line-height: 1.35; color: var(--t-ink); max-width: 760px; margin: 0 auto 22px; letter-spacing: -.3px; }
.iw-quote__author { font-family: var(--t-body); font-weight: 700; font-size: 15px; color: var(--t-ink); }
.iw-quote__role { font-family: var(--t-body); font-size: 13px; color: var(--t-muted); margin-top: 2px; }

/* ── cta banner ─────────────────────────────────────────────────────────── */
.iw-cta { padding: 56px; }
.iw-cta__box { background: var(--t-primary); border-radius: calc(var(--t-radius) * 1.4); padding: 52px 56px; display: flex; gap: 24px; align-items: center; }
.iw-cta__col { flex: 1; min-width: 0; }
.iw-cta__title { font-family: var(--t-head); font-weight: 700; font-size: 34px; color: #fff; margin: 0 0 8px; letter-spacing: -.4px; }
.iw-cta__sub { font-family: var(--t-body); font-size: 15px; color: rgba(255,255,255,.85); margin: 0; line-height: 1.5; }
.iw-cta__btn { background: #fff; color: var(--t-primary); font-weight: 700; font-size: 15px; padding: 14px 26px; border-radius: var(--t-radius); border: 0; white-space: nowrap; }

/* ── hours & iletişim ───────────────────────────────────────────────────── */
.iw-hours__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start; }
.iw-hours__infos { display: flex; flex-direction: column; gap: 14px; }
.iw-info { display: flex; gap: 12px; align-items: center; }
.iw-info__chip { width: 40px; height: 40px; border-radius: calc(var(--t-radius) * .7); flex-shrink: 0; background: var(--t-primary-soft); color: var(--t-primary); display: flex; align-items: center; justify-content: center; font-size: 18px; }
.iw-info__lbl { font-family: var(--t-body); font-size: 11px; font-weight: 600; color: var(--t-muted); text-transform: uppercase; letter-spacing: .5px; }
.iw-info__val { font-family: var(--t-body); font-size: 15px; font-weight: 600; color: var(--t-ink); margin-top: 2px; }
.iw-hours__list { margin-top: 18px; }
.iw-hours__row { display: flex; justify-content: space-between; padding: 9px 0; border-top: 1px solid var(--t-line); font-family: var(--t-body); }
.iw-hours__row:first-child { border-top: 0; }
.iw-hours__day { font-size: 14px; color: var(--t-muted); }
.iw-hours__time { font-size: 14px; font-weight: 600; color: var(--t-ink); }

/* ── form (iletişim) ────────────────────────────────────────────────────── */
.iw-form { display: flex; flex-direction: column; gap: 12px; max-width: 560px; }
.iw-form input, .iw-form textarea { font-family: var(--t-body); font-size: 14px; padding: 12px 14px; border: 1px solid var(--t-line-strong); border-radius: calc(var(--t-radius) * .7); background: var(--t-surface); color: var(--t-ink); width: 100%; }
.iw-form textarea { min-height: 120px; resize: vertical; }
.iw-form .iw-btn { align-self: flex-start; }

/* ── footer ─────────────────────────────────────────────────────────────── */
.iw-footer { background: var(--block-bg, var(--t-ink)); padding: 48px 56px 28px; }
.iw-footer__row { display: flex; gap: 32px; flex-wrap: wrap; margin-bottom: 28px; }
.iw-footer__brandcol { flex: 1; min-width: 180px; }
.iw-footer__brand { font-family: var(--t-head); font-weight: 700; font-size: 20px; color: #fff; margin-bottom: 10px; }
.iw-footer__desc { font-family: var(--t-body); font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.6; margin: 0; max-width: 280px; }
.iw-footer__cols { display: flex; gap: 56px; }
.iw-footer__coltitle { font-family: var(--t-body); font-size: 11px; font-weight: 700; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .6px; margin-bottom: 12px; }
.iw-footer__col { display: flex; flex-direction: column; gap: 8px; }
.iw-footer__col a, .iw-footer__col span { font-family: var(--t-body); font-size: 13px; color: rgba(255,255,255,.7); text-decoration: none; }
.iw-footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 16px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; font-family: var(--t-body); font-size: 12px; color: rgba(255,255,255,.45); }
.iw-footer__made { display: inline-flex; align-items: center; gap: 6px; }
.iw-fbar { width: 3px; background: var(--t-primary); border-radius: 1px; display: inline-block; }

/* ── responsive: container query (editör) ───────────────────────────────── */
@container iwpage (max-width: 760px) {
  .iw-sec, .iw-footer { padding: 36px 22px; }
  .iw-rev__grid { grid-template-columns: 1fr; }
  .iw-burger { display: flex; }
  .iw-header .iw-btn { display: none; }
  .iw-header { padding: 16px 20px; }
  .iw-header__nav { display: none; }
  .iw-header__brand { font-size: 18px; }
  .iw-hero { padding: 40px 22px; }
  .iw-hero__row, .iw-about__row, .iw-cta__box, .iw-footer__row { flex-direction: column; }
  .iw-hero__title { font-size: 38px; }
  .iw-hero__sub { font-size: 15px; }
  .iw-h2 { font-size: 28px; }
  .iw-svc__grid, .iw-menu__grid, .iw-feat__grid, .iw-hours__grid { grid-template-columns: 1fr; }
  .iw-prod__grid { grid-template-columns: repeat(2, 1fr); }
  .iw-gal__grid { grid-template-columns: 1fr 1fr; }
  .iw-gal__grid .iw-ph { min-height: 120px; }
  .iw-stats__grid { grid-template-columns: 1fr 1fr; }
  .iw-stats__num { font-size: 34px; }
  .iw-quote__text { font-size: 22px; }
  .iw-cta { padding: 32px 22px; }
  .iw-cta__box { padding: 32px 24px; text-align: center; }
  .iw-cta__title { font-size: 26px; }
  .iw-ph--cover { min-height: 220px; }
  .iw-ph--tall { min-height: 200px; }
  .iw-prod__img { min-height: 120px; }
  .iw-footer__cols { gap: 32px; }
}

/* ── responsive: media fallback (yayın — container query desteklenmezse) ── */
@media (max-width: 760px) {
  .iw-sec, .iw-footer { padding: 36px 22px; }
  .iw-rev__grid { grid-template-columns: 1fr; }
  .iw-burger { display: flex; }
  .iw-header .iw-btn { display: none; }
  .iw-header { padding: 16px 20px; }
  .iw-header__nav { display: none; }
  .iw-header__brand { font-size: 18px; }
  .iw-hero { padding: 40px 22px; }
  .iw-hero__row, .iw-about__row, .iw-cta__box, .iw-footer__row { flex-direction: column; }
  .iw-hero__title { font-size: 38px; }
  .iw-hero__sub { font-size: 15px; }
  .iw-h2 { font-size: 28px; }
  .iw-svc__grid, .iw-menu__grid, .iw-feat__grid, .iw-hours__grid { grid-template-columns: 1fr; }
  .iw-prod__grid { grid-template-columns: repeat(2, 1fr); }
  .iw-gal__grid { grid-template-columns: 1fr 1fr; }
  .iw-gal__grid .iw-ph { min-height: 120px; }
  .iw-stats__grid { grid-template-columns: 1fr 1fr; }
  .iw-stats__num { font-size: 34px; }
  .iw-quote__text { font-size: 22px; }
  .iw-cta { padding: 32px 22px; }
  .iw-cta__box { padding: 32px 24px; text-align: center; }
  .iw-cta__title { font-size: 26px; }
  .iw-ph--cover { min-height: 220px; }
  .iw-ph--tall { min-height: 200px; }
  .iw-prod__img { min-height: 120px; }
  .iw-footer__cols { gap: 32px; }
}

/* ── F2.5 ekleri ─────────────────────────────────────────────────────────── */
.iw-page [hidden] { display: none !important; } /* display'li elemanlarda hidden çalışsın */
.iw-header { position: relative; }
.iw-header__logo img { display: block; max-height: 56px; object-fit: contain; }
.iw-burger { display: none; background: transparent; border: 0; padding: 6px; cursor: pointer; flex-direction: column; gap: 5px; }
.iw-burger span { width: 22px; height: 2px; background: var(--t-ink); border-radius: 2px; display: block; transition: transform .2s; }
.iw-burger.open span:first-child { transform: translateY(7px) rotate(45deg); }
.iw-burger.open span:last-child { transform: translateY(-0px) rotate(-45deg); }
.iw-mobmenu { position: absolute; top: 100%; left: 0; right: 0; z-index: 60; background: var(--t-surface);
  border-bottom: 1px solid var(--t-line); box-shadow: 0 24px 48px rgba(0,0,0,.12); padding: 10px 20px 18px; }
.iw-mobmenu__link { display: block; font-family: var(--t-body); font-size: 16px; font-weight: 600; color: var(--t-ink);
  text-decoration: none; padding: 12px 0; border-bottom: 1px solid var(--t-line); }
.iw-mobmenu__sub { padding: 4px 0 8px 14px; display: flex; flex-direction: column; gap: 2px; }
.iw-mobmenu__sub a { font-family: var(--t-body); font-size: 14px; color: var(--t-muted); text-decoration: none; padding: 7px 0; }
.iw-mobmenu__cta { margin-top: 14px; justify-content: center; display: inline-flex; }
/* semantik blok arka planları (panel 'Arka plan' kontrolü — classBind styleProps.bg) */
.iw-bg-page { --block-bg: var(--t-bg); }
.iw-bg-surface { --block-bg: var(--t-surface); }
.iw-bg-soft { --block-bg: var(--t-primary-soft); }
.iw-bg-ink { --block-bg: var(--t-ink); }
.iw-bg-primary { --block-bg: var(--t-primary); }

/* ── F5 ekleri ───────────────────────────────────────────────────────────── */
.iw-legal__body { font-family: var(--t-body); font-size: 15px; line-height: 1.8; color: var(--t-muted); max-width: 760px; white-space: pre-line; }
.iw-form__row { display: flex; gap: 12px; }
.iw-form__row input { flex: 1; }
.iw-form select { font-family: var(--t-body); font-size: 14px; padding: 12px 14px; border: 1px solid var(--t-line-strong); border-radius: calc(var(--t-radius) * .7); background: var(--t-surface); color: var(--t-ink); width: 100%; }
/* çerez bildirimi (yayın — behaviors 'cookieConsent') */
.iw-cookie { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 90; background: var(--t-ink); color: #fff;
  border-radius: 14px; padding: 14px 18px; display: flex; gap: 14px; align-items: center; flex-wrap: wrap;
  font-family: var(--t-body); font-size: 13.5px; line-height: 1.5; box-shadow: 0 18px 50px rgba(0,0,0,.3); max-width: 720px; margin: 0 auto; }
.iw-cookie a { color: #fff; text-decoration: underline; }
.iw-cookie__btns { display: flex; gap: 8px; margin-left: auto; }
.iw-cookie__btn { font: 600 13px/1 inherit; padding: 9px 14px; border-radius: 9px; border: 0; cursor: pointer; background: var(--t-primary); color: #fff; }
.iw-cookie__btn--ghost { background: rgba(255,255,255,.14); }

/* ── L5: element stil override utilities (SEMANTICS §13) + blok pad ───────── */
.iw-page .iw-es-s { font-size: .8em; }
.iw-page .iw-es-m { font-size: 1em; }
.iw-page .iw-es-l { font-size: 1.25em; }
.iw-page .iw-es-xl { font-size: 1.55em; }
.iw-page .iw-ew-b { font-weight: 700; }
.iw-page .iw-ea-l { text-align: left; }
.iw-page .iw-ea-c { text-align: center; }
.iw-page .iw-ea-r { text-align: right; }
.iw-page .iw-ec-primary { color: var(--t-primary); }
.iw-page .iw-ec-muted { color: var(--t-muted); }
.iw-page .iw-ec-ink { color: var(--t-ink); }
.iw-sec.iw-pad-s, .iw-hero.iw-pad-s, .iw-cta.iw-pad-s { padding-top: 32px; padding-bottom: 32px; }
.iw-sec.iw-pad-l, .iw-hero.iw-pad-l, .iw-cta.iw-pad-l { padding-top: 104px; padding-bottom: 104px; }
.iw-form__kvkk { display: flex; gap: 9px; align-items: flex-start; font-family: var(--t-body); font-size: 12.5px; line-height: 1.5; color: var(--t-muted); cursor: pointer; }
.iw-form__kvkk input { margin-top: 2px; accent-color: var(--t-primary); width: auto; }
.iw-form__kvkk a { color: var(--t-primary); }

/* ── Yorumlar (L6b) ─────────────────────────────────────────────────────── */
.iw-rev__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 30px; }
.iw-rev__card { background: var(--t-surface); border: 1px solid var(--t-line); border-radius: var(--t-radius); padding: 18px; }
.iw-rev__stars { color: var(--t-primary); font-size: 15px; letter-spacing: 2px; margin-bottom: 8px; }
.iw-rev__text { font-family: var(--t-body); font-size: 14px; line-height: 1.6; color: var(--t-ink); margin: 0 0 10px; }
.iw-rev__author { font-family: var(--t-body); font-size: 12.5px; font-weight: 700; color: var(--t-muted); }
.iw-rev__formtitle { font-family: var(--t-head); font-weight: 700; font-size: 22px; color: var(--t-ink); margin: 0 0 14px; }
