:root {
  --ink: #2a2422;
  --muted: #6a5f58;
  --line: #e4d8d0;
  --paper: #f6f0ea;
  --card: #fffdf9;
  --accent: #b5838d;
  --accent-2: #8a7a6c;
  --warn: #b5812a;
  --bad: #9a2f2f;
  --ok: #2f5d45;
  --shadow: 0 1px 0 rgba(42, 36, 34, 0.04);
  --radius: 18px;
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
html, body { margin: 0; padding: 0; }
body {
  font-family: Manrope, system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.top {
  position: sticky; top: 0; z-index: 20;
  background: rgba(244, 239, 228, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.top-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px 20px;
  min-height: 72px;
  padding: 10px 0;
}
.logo { display: flex; align-items: center; gap: 10px; font-family: Fraunces, Georgia, serif; font-weight: 650; font-size: 22px; white-space: nowrap; color: inherit; }
.logo-mark {
  width: 48px; height: 48px; flex: 0 0 auto;
  display: block; object-fit: contain;
  background: transparent;
}
.foot-logo .logo-mark { width: 40px; height: 40px; }
.admin-side .logo-mark { width: 42px; height: 42px; }
.search { display: flex; min-width: 0; background: var(--card); border: 1px solid var(--line); border-radius: 999px; overflow: hidden; }
.search input { flex: 1; min-width: 0; border: 0; padding: 12px 18px; background: transparent; font: inherit; }
.search button, .btn {
  border: 0; background: var(--ink); color: #f4efe4; padding: 12px 18px; font: inherit; cursor: pointer;
  white-space: nowrap;
}
.btn { border-radius: 999px; display: inline-flex; align-items: center; gap: 8px; }
.btn.ghost { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.btn.accent { background: var(--accent); }
.btn.wide { width: 100%; justify-content: center; }
.top-nav { display: flex; gap: 18px; align-items: center; font-weight: 600; white-space: nowrap; }
.top-nav a { min-height: 44px; display: inline-flex; align-items: center; }
.cart-link b { background: var(--accent); color: #fff; border-radius: 999px; padding: 1px 8px; font-size: 12px; margin-left: 4px; }
.hero {
  display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px; padding: 56px 0 24px;
  align-items: center;
}
.hero h1 {
  font-family: Fraunces, Georgia, serif; font-size: clamp(36px, 6vw, 68px);
  line-height: 1.05; font-weight: 650; margin: 0 0 16px;
}
.lead { font-size: 18px; color: var(--muted); max-width: 540px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.hero-card {
  background: var(--card); border: 1px solid var(--line); border-radius: 28px; padding: 28px;
}
.hero-card dt { color: var(--muted); font-size: 13px; }
.hero-card dd { margin: 0 0 14px; font-family: Fraunces, serif; font-size: 28px; }
.trust { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; padding: 8px 0 40px; }
.trust div, .card, .product-card, .panel {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
}
.trust div { padding: 16px 18px; font-size: 14px; display: flex; flex-direction: column; gap: 4px; }
.trust b { font-family: Fraunces, Georgia, serif; font-size: 16px; font-weight: 650; }
.section { padding: 12px 0 48px; }
.section h2 { font-family: Fraunces, serif; font-size: 32px; margin: 0 0 18px; }
.grid-prods {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}
.product-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-width: 0;
}
.product-card .pic {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  flex: 0 0 auto;
  overflow: hidden;
  background: #f7f3ec;
}
.product-card .pic img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  object-position: center;
  padding: 12px;
}
.product-card .body { padding: 14px 16px 16px; display: flex; flex-direction: column; gap: 6px; flex: 1; min-width: 0; }
.brand { color: var(--muted); font-size: 12px; letter-spacing: .04em; text-transform: uppercase; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.product-card h3 {
  margin: 0;
  font-size: 15px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: calc(1.35em * 3);
  height: calc(1.35em * 3);
}
.price { font-family: Fraunces, serif; font-size: 22px; margin-top: auto; }
.price small { display: block; font-family: Manrope, sans-serif; color: var(--muted); font-size: 12px; }
.catbar {
  border-top: 1px solid var(--line);
  background: #efe9dc;
}
.catbar-inner {
  display: flex;
  gap: 6px 14px;
  overflow-x: auto;
  padding: 8px 0;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}
.catbar-inner a { color: var(--muted); }
.catbar-inner a:hover { color: var(--ink); }
.cat-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 16px;
}
.cat-chips a {
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--card);
  font-size: 13px;
  font-weight: 600;
}
.cat-chips a.on, .cat-chips a:hover { border-color: var(--accent); color: var(--accent); }
.cat-chips.sub a { font-weight: 500; background: transparent; }
.cat {
  padding: 22px; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  min-height: 110px; display: flex; flex-direction: column; justify-content: space-between;
}
.cat b { font-family: Fraunces, serif; font-size: 22px; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.steps article { padding: 24px; }
.steps span { font-family: Fraunces, serif; font-size: 28px; color: var(--accent); }
.foot { border-top: 1px solid var(--line); padding: 40px 0 24px; margin-top: 24px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 24px; }
.foot a, .foot p { display: block; color: var(--muted); }
.tiny { color: var(--muted); font-size: 12px; margin-top: 24px; }
.crumbs { color: var(--muted); font-size: 13px; padding: 18px 0 8px; }
.toolbar { display: flex; justify-content: space-between; gap: 12px; align-items: end; margin: 8px 0 18px; }
.filters { display: flex; gap: 8px; flex-wrap: wrap; }
select, input[type=text], input[type=email], input[type=password], input[type=tel], textarea {
  font: inherit; padding: 11px 12px; border: 1px solid var(--line); border-radius: 12px; background: var(--card); width: 100%;
}
label { display: block; font-size: 13px; color: var(--muted); margin: 0 0 6px; }
.field { margin-bottom: 14px; }
.catalog-sentinel { text-align: center; padding: 22px 8px 40px; color: var(--muted); font-size: 14px; }
.pager a { padding: 8px 12px; border: 1px solid var(--line); border-radius: 10px; background: var(--card); }
.product-page { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 36px; padding-bottom: 48px; }
.gallery { background: var(--card); border: 1px solid var(--line); border-radius: 24px; padding: 18px; }
.gallery-main {
  position: relative;
  aspect-ratio: 1 / 1;
  background: #f7f3ec;
  border-radius: 16px;
  overflow: hidden;
}
.gallery-main img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  object-position: center;
  padding: 16px;
}
.gallery .thumbs { display: flex; gap: 8px; margin-top: 12px; overflow: auto; -webkit-overflow-scrolling: touch; }
.gallery .thumbs img { width: 72px; height: 72px; flex: 0 0 72px; object-fit: contain; background: #f7f3ec; border-radius: 10px; cursor: pointer; }
.buy-box h1 { font-family: Fraunces, serif; font-size: 34px; line-height: 1.15; margin: 8px 0 12px; }
.stock { font-weight: 700; font-size: 13px; }
.stock.ok { color: var(--ok); } .stock.warn { color: var(--warn); } .stock.bad { color: var(--bad); }
.qty { display: flex; align-items: center; gap: 8px; margin: 16px 0; }
.qty input { width: 72px; text-align: center; }
.qty .btn { padding: 8px 12px; min-width: 40px; justify-content: center; }
.qty-limit-msg { color: var(--bad); font-size: 13px; font-weight: 600; margin: 0 0 12px; }
.meta-list { color: var(--muted); font-size: 14px; }
.desc { margin-top: 28px; background: var(--card); border: 1px solid var(--line); border-radius: 24px; padding: 24px; }
.desc h2 { margin: 0 0 12px; }
.desc h3 { margin: 18px 0 8px; font-size: 16px; }
.desc p { margin: 0 0 10px; line-height: 1.55; }
.desc ul { margin: 0 0 12px 1.2em; }
.desc li { margin: 4px 0; line-height: 1.45; }
.desc .inci { font-size: 13px; color: var(--muted); }
.auth, .account { width: min(720px, 100%); margin: 24px auto 48px; }
.checkout { width: min(960px, 100%); margin: 24px auto 48px; }
.receipt {
  margin: 16px 0 8px;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
}
.receipt-kicker {
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 8px;
}
.receipt-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 5px 0;
  font-size: 14px;
}
.receipt-row span { color: var(--muted); }
.receipt-row b { font-weight: 650; white-space: nowrap; }
.receipt-ship {
  align-items: flex-start;
}
.receipt-ship b {
  white-space: normal;
  text-align: right;
  max-width: 62%;
  line-height: 1.35;
  color: #b5838d;
  font-weight: 650;
}
.receipt-total {
  margin-top: 8px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
  font-size: 18px;
}
.receipt-total span, .receipt-total b {
  font-family: Fraunces, Georgia, serif;
  color: var(--ink);
  font-weight: 650;
}
.receipt-note {
  margin: 8px 0 0;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
}
.auth { width: min(440px, 100%); }
.table { width: 100%; border-collapse: collapse; background: var(--card); border-radius: 16px; overflow: hidden; }
.table th, .table td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--line); vertical-align: middle; }
.cart-item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.cart-thumb {
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  border-radius: 12px;
  overflow: hidden;
  background: #f7f3ec;
  border: 1px solid var(--line);
}
.cart-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}
.cart-aside { padding: 20px; }
.cart-next {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.cart-next h3 {
  font-family: Fraunces, Georgia, serif;
  font-size: 20px;
  font-weight: 650;
  margin: 0 0 8px;
}
.cart-next p { color: var(--muted); margin: 0 0 12px; font-size: 14px; line-height: 1.45; }
.cart-next .btn, .buy-continue { margin-top: 4px; justify-content: center; }
.qty + .qty-limit-msg + [data-add-cart],
form[data-qty-limit] .buy-continue { margin-top: 10px; }
.empty .btn { margin-top: 14px; }
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.notice { padding: 12px 14px; border-radius: 12px; background: #efe6d4; margin: 12px 0; }
.err { background: #f4d6d2; }
.admin-body { display: grid; grid-template-columns: 240px 1fr; min-height: 100vh; }
.admin-side { background: #2a2422; color: #f6f0ea; padding: 24px 18px; }
.admin-side nav { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }
.admin-side a { color: #d7d0c3; display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.admin-badge {
  min-width: 18px; height: 18px; padding: 0 5px; border-radius: 999px;
  background: #b5838d; color: #fff; font-size: 11px; font-weight: 700;
  line-height: 18px; text-align: center; flex-shrink: 0;
}
.admin-main { padding: 28px; }
.admin-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 16px; align-items: start; }
.worker-grid { grid-template-columns: 1fr 1fr; }
.worker-card { padding: 20px; }
.worker-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 10px; }
.worker-head h2 { margin: 0; font-family: Fraunces, Georgia, serif; font-size: 22px; }
.worker-badge { display: inline-block; padding: 4px 10px; border-radius: 999px; font-size: 12px; font-weight: 700; }
.worker-badge-ok { background: #dff5e8; color: #17633a; }
.worker-badge-warn { background: #fff1d6; color: #8a5a00; }
.worker-badge-off { background: #ece7e1; color: #6d645c; }
.worker-meta { display: flex; flex-wrap: wrap; gap: 12px; font-size: 13px; color: var(--muted); margin-bottom: 12px; }
.worker-progress { margin: 12px 0 16px; }
.worker-progress-bar { height: 10px; border-radius: 999px; background: #ece7e1; overflow: hidden; }
.worker-progress-bar i { display: block; height: 100%; background: linear-gradient(90deg, #2f8f57, #5fbf84); transition: width .4s ease; }
.worker-progress-label { margin-top: 6px; font-size: 13px; }
.worker-stats { grid-template-columns: repeat(2, 1fr); margin-bottom: 12px; }
.worker-note { min-height: 1.2em; margin-bottom: 8px; }
.worker-log { background: #1f1b19; color: #d9d2c7; padding: 10px 12px; border-radius: 12px; max-height: 120px; overflow: auto; font-size: 12px; white-space: pre-wrap; margin: 0 0 14px; }
.worker-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.worker-schedule { padding: 20px; margin-top: 16px; }
.worker-schedule-block { margin: 18px 0; padding-top: 12px; border-top: 1px solid var(--line); }
.worker-period { display: grid; grid-template-columns: 1fr auto auto auto; gap: 10px; align-items: center; margin: 10px 0; padding: 12px; border: 1px solid var(--line); border-radius: 12px; }
.worker-days { display: flex; flex-wrap: wrap; gap: 8px 12px; }
.worker-days .check { font-size: 13px; }
.admin-card { padding: 20px; }
.admin-card h2 { font-family: Fraunces, Georgia, serif; font-size: 22px; margin: 0 0 10px; }
.calc-box {
  background: #171b14; color: #f4efe4; border-radius: 18px; padding: 22px;
}
.calc-kicker { margin: 0 0 12px; font-size: 12px; letter-spacing: .04em; text-transform: uppercase; color: #d9784a; }
.calc-box b { font-family: Fraunces, Georgia, serif; font-size: 28px; }
.calc-box hr { border: 0; border-top: 1px solid #3a4034; margin: 16px 0; }
.check { display: flex; gap: 8px; align-items: center; color: inherit; margin: 0 0 14px; }
.field-row { display: flex; gap: 8px; align-items: center; }
.region-row { display: flex; justify-content: space-between; gap: 12px; font-size: 14px; }
.region-row b { font-family: Fraunces, Georgia, serif; }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.stat { padding: 18px; background: var(--card); border: 1px solid var(--line); border-radius: 16px; }
.stat b { display: block; font-family: Fraunces, serif; font-size: 28px; }
.muted { color: var(--muted); }
.empty { padding: 40px; text-align: center; color: var(--muted); }
.section-head { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 10px; }
.section-head h2 { margin: 0; }
.qty-form { display: flex; align-items: center; gap: 6px; }
.qty-form input { width: 52px; text-align: center; padding: 8px; }
.qty-form .btn { padding: 8px 12px; min-width: 40px; justify-content: center; }
.ship-choice {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 14px 16px; border: 1px solid var(--line); border-radius: 16px;
  margin-bottom: 12px; cursor: pointer; color: inherit;
}
.ship-choice.is-on, .ship-choice:has(input:checked) {
  border-color: var(--accent); background: #fbf4ee;
}
.ship-choice b { display: block; }
.ship-choice small { display: block; color: var(--muted); margin-top: 4px; line-height: 1.4; }
.pool-sort-extra { display: none; }
.checkout form:has(input[name="fulfillment"][value="pool"]:checked) .pool-sort-extra,
.checkout form:has(input[name="fulfillment"][type="hidden"][value="pool"]) .pool-sort-extra {
  display: block;
}
.pool-board {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 16px;
}
.pool-card {
  display: flex; gap: 18px; align-items: center;
  padding: 20px; background: var(--card); border: 1px solid var(--line);
  border-radius: 22px; box-shadow: var(--shadow);
}
.pool-card.compact { padding: 16px; }
.pool-ring {
  width: 92px; height: 92px; border-radius: 50%; flex: 0 0 auto;
  display: grid; place-items: center;
  background: conic-gradient(var(--accent) calc(var(--pct, 0) * 1%), #e7e0d4 0);
}
.pool-ring::before {
  content: ""; width: 68px; height: 68px; border-radius: 50%;
  background: var(--card); grid-area: 1 / 1;
}
.pool-ring span {
  grid-area: 1 / 1; z-index: 1;
  font-family: Fraunces, Georgia, serif; font-size: 18px; font-weight: 650;
}
.pool-body { min-width: 0; flex: 1; }
.pool-kicker {
  margin: 0 0 2px; font-size: 12px; letter-spacing: .04em;
  text-transform: uppercase; color: var(--accent); font-weight: 700;
}
.pool-body h3 { margin: 0 0 10px; font-family: Fraunces, Georgia, serif; font-size: 20px; }
.pool-bar {
  height: 8px; background: #e7e0d4; border-radius: 99px; overflow: hidden;
}
.pool-bar i {
  display: block; height: 100%; width: calc(var(--pct) * 1%);
  background: linear-gradient(90deg, var(--accent), #c4a494);
  border-radius: inherit;
  transition: width .7s ease;
  position: relative;
}
.pool-bar i::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.35), transparent);
  animation: pool-shine 2.4s linear infinite;
}
@keyframes pool-shine {
  from { transform: translateX(-100%); }
  to { transform: translateX(100%); }
}
.pool-meta { margin: 8px 0 4px; }
.cart-fill { margin: 10px 0 16px; }
.compact-board { margin: 8px 0 18px; }
@media (max-width: 1100px) {
  .grid-prods { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .cats, .trust { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
  .container { width: min(1180px, calc(100% - 20px)); }
  .top-inner {
    grid-template-columns: 1fr auto;
    min-height: 0;
    gap: 10px 12px;
    padding: 8px 0;
  }
  .search { grid-column: 1 / -1; }
  .logo { font-size: 18px; }
  .logo-mark { width: 40px; height: 40px; }
  .top-nav { gap: 12px; font-size: 13px; }
  .search input, .search button, .btn { padding: 11px 14px; min-height: 44px; }
  .hero, .product-page, .cart-layout, .split, .foot-grid, .admin-body, .stats, .steps, .admin-grid {
    grid-template-columns: 1fr;
  }
  .hero { padding: 28px 0 12px; gap: 20px; }
  .hero h1 { font-size: clamp(30px, 9vw, 44px); }
  .lead { font-size: 16px; }
  .hero-card { padding: 20px; }
  .hero-card dd { font-size: 22px; }
  .grid-prods { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .product-card .pic img { padding: 8px; }
  .product-card .body { padding: 10px 12px 12px; }
  .product-card h3 { font-size: 13px; }
  .price { font-size: 18px; }
  .section { padding: 8px 0 32px; }
  .section h2 { font-size: 24px; }
  .cats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cat { padding: 16px; min-height: 88px; }
  .cat b { font-size: 18px; }
  .trust { grid-template-columns: 1fr 1fr; }
  .toolbar { flex-direction: column; align-items: stretch; }
  .gallery { padding: 12px; }
  .buy-box h1 { font-size: 24px; }
  .qty { flex-wrap: wrap; }
  .pager { flex-wrap: wrap; }
  .auth, .checkout, .account { margin: 16px auto 32px; }
  .pool-card { flex-wrap: wrap; }
  .section-head { flex-wrap: wrap; }
}
@media (max-width: 420px) {
  .top-nav { gap: 8px; font-size: 12px; }
  .trust { grid-template-columns: 1fr; }
  .product-card h3 { font-size: 12px; min-height: calc(1.35em * 2); height: calc(1.35em * 2); -webkit-line-clamp: 2; line-clamp: 2; }
}
.geo-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.geo-chips label {
  display: inline-flex; align-items: center; gap: 6px;
  border: 1px solid var(--line); border-radius: 999px; padding: 6px 12px;
  background: var(--paper); font-size: 13px; cursor: pointer;
}
.eco-body { background: #eef4ec; color: #1b2a1e; }
.eco-top { border-bottom: 1px solid #d5e0d2; background: rgba(238, 244, 236, 0.92); }
.eco-top-inner { display: flex; justify-content: space-between; align-items: center; min-height: 72px; }
.eco-badge {
  font-size: 13px; font-weight: 600; color: #2f5d45;
  border: 1px solid #b7cbb8; border-radius: 999px; padding: 6px 12px; background: #fff;
}
.eco-hero { padding: 48px 0 12px; }
.eco-hero h1 {
  font-family: Fraunces, Georgia, serif; font-size: clamp(34px, 6vw, 58px);
  line-height: 1.08; margin: 0 0 16px; max-width: 16ch;
}
.eco-kicker { letter-spacing: .08em; text-transform: uppercase; font-size: 12px; color: #2f5d45; font-weight: 700; }
.eco-copy { max-width: 720px; color: #3a4b3e; }
.eco-copy p { margin: 0 0 14px; }
.eco-points { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin-top: 24px; }
.eco-points article {
  background: #fff; border: 1px solid #d5e0d2; border-radius: 18px; padding: 18px;
}
.eco-points b { display: block; font-family: Fraunces, Georgia, serif; font-size: 20px; margin-bottom: 8px; }
.eco-points p { margin: 0; color: #5c6756; }
.eco-news { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.eco-card {
  display: flex; flex-direction: column; background: #fff;
  border: 1px solid #d5e0d2; border-radius: 18px; overflow: hidden; min-height: 100%;
}
.eco-pic { aspect-ratio: 16 / 9; background: linear-gradient(135deg, #2f5d45, #8fb89a); overflow: hidden; }
.eco-pic img { width: 100%; height: 100%; object-fit: cover; }
.eco-card-body { padding: 14px 16px 16px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.eco-card-body h3 { margin: 0; font-size: 16px; line-height: 1.3; }
.eco-card-body p { margin: 0; color: #5c6756; font-size: 14px; }
.eco-source, .eco-card time { font-size: 12px; color: #2f5d45; font-weight: 600; }
.eco-foot { padding: 28px 0 40px; color: #5c6756; }
.eco-foot a { text-decoration: underline; }
@media (max-width: 900px) {
  .eco-news, .eco-points { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .eco-news, .eco-points { grid-template-columns: 1fr; }
  .eco-hero { padding: 28px 0 8px; }
}
.mailing-page-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0 20px; }
.mailing-page-tabs a {
  padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; font-size: 13px; font-weight: 600;
}
.mailing-page-tabs a.is-on { background: var(--accent); color: #fff; border-color: var(--accent); }
.mailing-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(280px, 1.1fr); gap: 18px; align-items: start; }
.mailing-preview-panel h3 { margin: 0 0 10px; font-family: Fraunces, Georgia, serif; }
.mail-preview-iframe {
  width: 100%; min-height: 640px; border: 1px solid var(--line); border-radius: 12px; background: #f4f1ea;
}
@media (max-width: 900px) {
  .mailing-grid { grid-template-columns: 1fr; }
}
