:root {
  --ink:    #0D1B2A;
  --ink2:   #1E3148;
  --fog:    #E8EDF2;
  --white:  #F7F9FB;
  --ember:  #C1440E;
  --ember2: #E05520;
  --sand:   #D4C9B8;
  --muted:  #7A8B99;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'DM Sans', system-ui, sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--white);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: 0; background: none; font: inherit; color: inherit; }
input, textarea { font: inherit; }

/* ── UTILS ── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
@media (max-width: 768px) { .container { padding: 0 20px; } }

/* ── LOADER ── */
#loader {
  position: fixed; inset: 0; z-index: 8000;
  background: var(--ink); display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 32px;
  transition: opacity .9s ease, visibility .9s ease;
}
#loader.done { opacity: 0; visibility: hidden; }
.ld-wordmark {
  font-family: var(--serif); font-size: 28px; letter-spacing: .2em;
  color: var(--white); font-weight: 300; text-transform: uppercase;
}
.ld-bar {
  width: 180px; height: 1px; background: rgba(247,249,251,.15); position: relative; overflow: hidden;
}
.ld-fill {
  position: absolute; left: -100%; top: 0; height: 100%;
  width: 100%; background: var(--ember);
  animation: barfill 1s cubic-bezier(.4,0,.2,1) forwards .2s;
}
@keyframes barfill { to { left: 0; } }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  padding: 28px 0; transition: padding .3s, background .3s, box-shadow .3s;
}
nav.scrolled {
  background: rgba(247,249,251,.95); backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(13,27,42,.08); padding: 16px 0;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
}
.nav-links { display: flex; gap: 40px; }
.nav-links a {
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--white); transition: color .2s; font-weight: 500;
}
nav.scrolled .nav-links a { color: var(--muted); }
.nav-links a:hover { color: var(--ember); }
nav.scrolled .nav-links a:hover { color: var(--ember); }
.nav-brand {
  font-family: var(--serif); font-size: 22px; font-weight: 400;
  letter-spacing: .24em; text-transform: uppercase;
  color: var(--white); transition: color .3s;
}
nav.scrolled .nav-brand { color: var(--ink); }
.nav-right { display: flex; gap: 14px; align-items: center; }
.nav-icon {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(247,249,251,.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); transition: .2s; position: relative;
}
nav.scrolled .nav-icon { border-color: rgba(13,27,42,.12); color: var(--ink); }
.nav-icon:hover { border-color: var(--ember); color: var(--ember); }
.nav-icon svg { width: 16px; height: 16px; }
.cart-dot {
  position: absolute; right: -2px; top: -2px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--ember); color: #fff;
  font-size: 9px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
.nav-ham { display: none; }
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-ham { display: flex; }
}

/* ── HERO (SPLIT) ── */
.hero {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}
@media (max-width: 860px) { .hero { grid-template-columns: 1fr; } }
.hero-left {
  background: var(--ink);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 120px 64px 80px;
  position: relative; overflow: hidden;
}
@media (max-width: 768px) { .hero-left { padding: 120px 28px 60px; } }
.hero-left::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 55%;
  background: linear-gradient(180deg, rgba(13,27,42,0) 0%, rgba(13,27,42,1) 100%);
  z-index: 1;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: .38;
}
.hero-content { position: relative; z-index: 2; }
.hero-eyebrow {
  font-size: 11px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--ember); margin-bottom: 28px; display: flex; align-items: center; gap: 14px;
}
.hero-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--ember); }
h1.hero-h1 {
  font-family: var(--serif); font-size: clamp(52px, 6vw, 88px);
  font-weight: 300; line-height: .92; letter-spacing: -.02em;
  color: var(--white); margin-bottom: 32px;
}
h1.hero-h1 em { font-style: italic; color: var(--sand); }
.hero-body {
  font-size: 15px; line-height: 1.8; color: rgba(247,249,251,.6);
  max-width: 440px; margin-bottom: 44px;
}
.hero-cta {
  display: inline-flex; align-items: center; gap: 16px;
  font-size: 12px; letter-spacing: .16em; text-transform: uppercase;
  font-weight: 500; color: var(--white); transition: gap .25s;
}
.hero-cta .cta-arrow {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--ember); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: background .2s;
}
.hero-cta:hover .cta-arrow { background: var(--ember2); }
.hero-cta:hover { gap: 22px; }
.hero-cta svg { width: 18px; height: 18px; }

.hero-right {
  position: relative; overflow: hidden;
}
@media (max-width: 860px) { .hero-right { display: none; } }
.hero-right img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 8s ease;
}
.hero-right:hover img { transform: scale(1.04); }
.hero-right-label {
  position: absolute; bottom: 48px; left: 48px;
  background: var(--white); padding: 20px 24px;
  max-width: 220px;
}
.hero-right-label small {
  display: block; font-size: 10px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 6px;
}
.hero-right-label strong {
  font-family: var(--serif); font-size: 22px; font-weight: 400; color: var(--ink);
}

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ── SECTION HEADER ── */
.sec-hd { margin-bottom: 56px; }
.sec-hd-row { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; }
.sec-eye {
  font-size: 10px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--ember); margin-bottom: 14px; display: block;
}
.sec-hd h2 {
  font-family: var(--serif); font-size: clamp(36px, 5vw, 64px);
  font-weight: 300; letter-spacing: -.02em; line-height: .95;
}
.sec-link {
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  border-bottom: 1px solid var(--ink); padding-bottom: 3px;
  transition: color .2s, border-color .2s; white-space: nowrap;
}
.sec-link:hover { color: var(--ember); border-color: var(--ember); }

/* ── KOLEKSIYONLAR ── */
#koleksiyon { padding: 120px 0; background: var(--white); }
.kol-grid {
  display: grid; grid-template-columns: 1.3fr 1fr;
  grid-template-rows: 380px 320px; gap: 16px;
}
@media (max-width: 860px) { .kol-grid { grid-template-columns: 1fr; grid-template-rows: auto; } }
.kol-card {
  position: relative; overflow: hidden; cursor: pointer;
  border-radius: 2px;
}
.kol-card:first-child { grid-row: 1 / 3; }
@media (max-width: 860px) { .kol-card:first-child { grid-row: auto; } }
.kol-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s cubic-bezier(.4,0,.2,1);
}
.kol-card:hover .kol-img { transform: scale(1.06); }
.kol-over {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(13,27,42,.78) 0%, rgba(13,27,42,.1) 55%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 36px; transition: background .4s;
}
.kol-card:hover .kol-over {
  background: linear-gradient(0deg, rgba(13,27,42,.88) 0%, rgba(13,27,42,.2) 55%);
}
.kol-over h3 {
  font-family: var(--serif); font-size: 34px; font-weight: 300;
  color: var(--white); margin-bottom: 12px; line-height: 1;
}
.kol-card:first-child .kol-over h3 { font-size: 48px; }
.kol-btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(247,249,251,.7); transition: color .2s, gap .2s;
}
.kol-card:hover .kol-btn { color: var(--white); gap: 16px; }
.kol-btn svg { width: 14px; height: 14px; }

/* ── ÜRÜNLER ── */
#urunler { padding: 120px 0; background: var(--fog); }
.prod-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 20px;
}
@media (max-width: 1024px) { .prod-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 540px) { .prod-grid { grid-template-columns: 1fr; } }
.prod-card {
  background: var(--white); cursor: pointer;
  border-radius: 2px; overflow: hidden;
  transition: box-shadow .3s;
}
.prod-card:hover { box-shadow: 0 16px 56px rgba(13,27,42,.1); }
.prod-img-wrap {
  position: relative; overflow: hidden; aspect-ratio: 3/4;
  background: var(--fog);
}
.prod-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s cubic-bezier(.4,0,.2,1);
}
.prod-card:hover .prod-img-wrap img { transform: scale(1.05); }
.prod-badge {
  position: absolute; top: 14px; left: 14px;
  font-size: 9px; letter-spacing: .18em; text-transform: uppercase;
  padding: 5px 12px; background: var(--ink); color: var(--white);
  border-radius: 1px;
}
.prod-badge.sale { background: var(--ember); }
/* ATÖLYE NOTU — signature hover */
.atelier-note {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 18px 20px;
  background: rgba(13,27,42,.92);
  transform: translateY(100%);
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
}
.prod-card:hover .atelier-note { transform: translateY(0); }
.atelier-note small {
  display: block; font-size: 9px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--ember); margin-bottom: 6px;
}
.atelier-note p { font-size: 12px; color: rgba(247,249,251,.8); line-height: 1.5; }
.prod-body { padding: 18px 20px 22px; }
.prod-cat {
  font-size: 10px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 8px;
}
.prod-name {
  font-family: var(--serif); font-size: 21px; font-weight: 400;
  line-height: 1.1; margin-bottom: 10px; color: var(--ink);
}
.prod-price-row { display: flex; justify-content: space-between; align-items: center; }
.prod-price { font-size: 15px; font-weight: 500; color: var(--ink); }
.prod-price del { color: var(--muted); font-weight: 300; margin-right: 6px; font-size: 13px; }
.prod-plus {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--ink); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 300; transition: background .2s, transform .2s;
  flex-shrink: 0;
}
.prod-plus:hover { background: var(--ember); transform: rotate(90deg); }

/* ── HIKAYE ── */
#hikaye { padding: 140px 0; background: var(--white); }
.story-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center;
}
@media (max-width: 860px) { .story-grid { grid-template-columns: 1fr; gap: 56px; } }
.story-img-wrap { position: relative; }
.story-img-main {
  width: 82%; aspect-ratio: 3/4; object-fit: cover; margin-left: auto;
  border-radius: 2px;
}
.story-quote {
  position: absolute; bottom: -32px; left: 0;
  background: var(--ink); padding: 28px 32px; max-width: 260px;
}
.story-quote p {
  font-family: var(--serif); font-size: 18px; font-style: italic;
  font-weight: 300; color: var(--white); line-height: 1.5;
}
.story-quote small {
  display: block; margin-top: 12px; font-size: 10px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--ember);
}
.story-text h2 {
  font-family: var(--serif); font-size: clamp(36px, 4vw, 58px);
  font-weight: 300; line-height: .98; letter-spacing: -.02em; margin-bottom: 28px;
}
.story-text p { font-size: 15px; line-height: 1.85; color: var(--muted); margin-bottom: 18px; }
.story-stats {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  border-top: 1px solid rgba(13,27,42,.1);
  margin: 40px 0 36px; padding-top: 36px; gap: 0;
}
.story-stat { padding-right: 24px; border-right: 1px solid rgba(13,27,42,.1); }
.story-stat:last-child { border-right: 0; padding-right: 0; padding-left: 24px; }
.story-stat:nth-child(2) { padding-left: 24px; }
.story-stat strong {
  display: block; font-family: var(--serif); font-size: 40px;
  font-weight: 300; color: var(--ember); line-height: 1;
}
.story-stat span { font-size: 12px; color: var(--muted); margin-top: 5px; display: block; }
.story-cta {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12px; letter-spacing: .16em; text-transform: uppercase; font-weight: 500;
  border-bottom: 1px solid var(--ink); padding-bottom: 4px;
  transition: color .2s, border-color .2s, gap .2s;
}
.story-cta:hover { color: var(--ember); border-color: var(--ember); gap: 18px; }
.story-cta svg { width: 14px; height: 14px; }

/* ── FOOTER ── */
footer { background: var(--ink); color: var(--white); padding: 96px 0 36px; }
.footer-top {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 64px;
  border-bottom: 1px solid rgba(247,249,251,.08);
  margin-bottom: 40px;
}
@media (max-width: 860px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-top { grid-template-columns: 1fr; } }
.footer-brand-name {
  font-family: var(--serif); font-size: 24px; font-weight: 300;
  letter-spacing: .2em; text-transform: uppercase; margin-bottom: 18px;
}
.footer-desc { font-size: 13px; line-height: 1.8; color: rgba(247,249,251,.45); margin-bottom: 28px; }
.social-row { display: flex; gap: 12px; }
.social-btn {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(247,249,251,.15);
  display: flex; align-items: center; justify-content: center;
  transition: .2s; color: rgba(247,249,251,.5);
}
.social-btn:hover { border-color: var(--ember); color: var(--ember); }
.social-btn svg { width: 14px; height: 14px; }
.footer-col h5 {
  font-size: 10px; letter-spacing: .24em; text-transform: uppercase;
  color: rgba(247,249,251,.4); margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 11px; }
.footer-col a {
  font-size: 13px; color: rgba(247,249,251,.6);
  transition: color .2s;
}
.footer-col a:hover { color: var(--ember); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: rgba(247,249,251,.3);
}
@media (max-width: 560px) { .footer-bottom { flex-direction: column; gap: 12px; text-align: center; } }

/* ── NEWSLETTER ── */
.newsletter {
  border-bottom: 1px solid rgba(247,249,251,.08);
  padding-bottom: 64px; margin-bottom: 64px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: end;
}
@media (max-width: 680px) { .newsletter { grid-template-columns: 1fr; gap: 24px; } }
.newsletter h3 {
  font-family: var(--serif); font-size: 40px; font-weight: 300; line-height: .98;
}
.newsletter p { color: rgba(247,249,251,.45); font-size: 13px; margin-top: 10px; }
.nws-form { display: flex; border-bottom: 1px solid rgba(247,249,251,.2); }
.nws-form input {
  flex: 1; background: transparent; border: 0; outline: none; padding: 12px 0;
  font-size: 14px; color: var(--white);
}
.nws-form input::placeholder { color: rgba(247,249,251,.3); }
.nws-form button {
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(247,249,251,.5); padding: 12px 0 12px 20px;
  transition: color .2s;
}
.nws-form button:hover { color: var(--ember); }

/* ── CART DRAWER ── */
#cartOverlay {
  position: fixed; inset: 0; z-index: 700;
  background: rgba(13,27,42,.55); backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none; transition: opacity .25s;
}
#cartOverlay.on { opacity: 1; pointer-events: auto; }
#cartDrawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 750;
  width: min(460px, 100%); background: var(--white);
  box-shadow: -20px 0 80px rgba(13,27,42,.12);
  transform: translateX(105%); transition: transform .38s cubic-bezier(.2,.8,.2,1);
  display: flex; flex-direction: column;
}
#cartDrawer.on { transform: translateX(0); }
.cd-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 28px; border-bottom: 1px solid rgba(13,27,42,.08);
}
.cd-head h3 { font-family: var(--serif); font-size: 28px; font-weight: 400; }
.cd-close {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(13,27,42,.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; transition: .2s;
}
.cd-close:hover { border-color: var(--ember); color: var(--ember); }
.cd-items { flex: 1; overflow-y: auto; padding: 20px 28px; }
.cd-item {
  display: grid; grid-template-columns: 72px 1fr auto;
  gap: 14px; padding: 14px 0; border-bottom: 1px solid rgba(13,27,42,.07);
  align-items: center;
}
.cd-thumb {
  width: 72px; height: 72px; border-radius: 2px; overflow: hidden;
  background: var(--fog); flex-shrink: 0;
}
.cd-thumb img { width: 100%; height: 100%; object-fit: cover; }
.cd-info h4 { font-family: var(--serif); font-size: 17px; font-weight: 400; margin-bottom: 4px; }
.cd-info p { font-size: 13px; color: var(--ember); font-weight: 500; }
.qty-ctrl {
  display: flex; align-items: center;
  border: 1px solid rgba(13,27,42,.12); border-radius: 2px;
  margin-top: 10px; width: 94px; overflow: hidden;
}
.qty-ctrl button {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 300; transition: background .15s;
}
.qty-ctrl button:hover { background: var(--fog); }
.qty-ctrl span { flex: 1; text-align: center; font-size: 13px; }
.cd-remove { color: var(--muted); font-size: 20px; padding: 6px; align-self: flex-start; }
.cd-remove:hover { color: var(--ember); }
.cd-empty { padding: 60px 0; text-align: center; color: var(--muted); line-height: 1.8; font-size: 14px; }
.cd-foot {
  padding: 22px 28px; border-top: 1px solid rgba(13,27,42,.08);
  background: var(--white);
}
.cd-total { display: flex; justify-content: space-between; font-family: var(--serif); font-size: 22px; margin-bottom: 18px; }
.cd-field {
  width: 100%; border: 1px solid rgba(13,27,42,.15);
  padding: 11px 14px; margin-bottom: 9px; outline: none;
  font-size: 14px; border-radius: 2px; transition: border-color .2s;
}
.cd-field:focus { border-color: var(--ember); }
.cd-textarea { resize: none; }
.cd-send {
  width: 100%; background: var(--ink); color: var(--white);
  padding: 14px; font-size: 12px; letter-spacing: .16em; text-transform: uppercase;
  border-radius: 2px; font-weight: 500; transition: background .2s;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.cd-send:hover { background: var(--ember); }
.cd-send svg { width: 16px; height: 16px; }

/* ── PRODUCT MODAL ── */
#modalOverlay {
  position: fixed; inset: 0; z-index: 800;
  background: rgba(13,27,42,.6); backdrop-filter: blur(8px);
  opacity: 0; pointer-events: none; transition: opacity .25s;
}
#modalOverlay.on { opacity: 1; pointer-events: auto; }
#prodModal {
  position: fixed; left: 50%; top: 50%; z-index: 850;
  transform: translate(-50%,-48%) scale(.97);
  width: min(940px, calc(100% - 28px)); max-height: 90vh; overflow: auto;
  background: var(--white); border-radius: 2px;
  box-shadow: 0 40px 120px rgba(13,27,42,.2);
  opacity: 0; pointer-events: none; transition: .28s ease;
}
#prodModal.on { opacity: 1; pointer-events: auto; transform: translate(-50%,-50%) scale(1); }
.pm-grid { display: grid; grid-template-columns: 1fr 1fr; }
@media (max-width: 680px) { .pm-grid { grid-template-columns: 1fr; } }
.pm-img {
  aspect-ratio: 1/1; overflow: hidden;
  background: var(--fog);
}
.pm-img img { width: 100%; height: 100%; object-fit: cover; }
.pm-body { padding: 40px; display: flex; flex-direction: column; }
.pm-cat {
  font-size: 10px; letter-spacing: .24em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 12px;
}
.pm-title {
  font-family: var(--serif); font-size: 38px; font-weight: 400;
  line-height: .98; margin-bottom: 14px;
}
.pm-price { font-size: 22px; font-weight: 500; color: var(--ember); margin-bottom: 22px; }
.pm-desc { font-size: 14px; line-height: 1.8; color: var(--muted); margin-bottom: 28px; }
.pm-swatches { display: flex; gap: 10px; margin-bottom: 30px; }
.pm-swatch {
  width: 32px; height: 32px; border-radius: 50%;
  border: 2px solid transparent; outline: 2px solid transparent;
  outline-offset: 3px; cursor: pointer; transition: outline-color .2s;
}
.pm-swatch:hover, .pm-swatch.sel { outline-color: var(--ink); }
.pm-actions { display: flex; gap: 12px; margin-top: auto; }
.pm-add {
  flex: 1; background: var(--ink); color: var(--white);
  padding: 14px; font-size: 12px; letter-spacing: .16em; text-transform: uppercase;
  font-weight: 500; border-radius: 2px; transition: background .2s;
}
.pm-add:hover { background: var(--ember); }
.pm-close {
  width: 48px; height: 48px; border: 1px solid rgba(13,27,42,.15);
  border-radius: 2px; display: flex; align-items: center; justify-content: center;
  font-size: 20px; transition: .2s;
}
.pm-close:hover { border-color: var(--ember); color: var(--ember); }
.pm-meta { margin-top: 24px; padding-top: 20px; border-top: 1px solid rgba(13,27,42,.08); }
.pm-meta p { font-size: 12px; color: var(--muted); line-height: 1.6; display: flex; align-items: center; gap: 8px; margin-bottom: 7px; }
.pm-meta svg { width: 14px; height: 14px; flex-shrink: 0; }
.pm-close-corner {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  background: var(--white); width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 18px;
  box-shadow: 0 2px 12px rgba(13,27,42,.12); transition: .2s;
}
.pm-close-corner:hover { color: var(--ember); }
