:root {
  --wom-orange: #c8652a;
  --wom-orange-dark: #a84f1e;
  --wom-orange-light: #f5e6da;
  --wom-cream: #faf6f1;
  --wom-brown: #3d2c1e;
  --wom-brown-soft: #6b5744;
  --wom-text: #2c2017;
  --wom-text-muted: #7a6e63;
  --wom-white: #ffffff;
  --wom-border: #e8ddd1;
  --wom-shadow-sm: 0 1px 3px rgba(61,44,30,0.06);
  --wom-shadow-md: 0 4px 12px rgba(61,44,30,0.08);
  --wom-shadow-lg: 0 8px 24px rgba(61,44,30,0.12);
  --wom-radius-sm: 8px;
  --wom-radius-md: 14px;
  --wom-radius-lg: 20px;
  --wom-max-width: 860px;
  --wom-font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --wom-font-heading: 'Lora', Georgia, 'Times New Roman', serif;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
[id] { scroll-margin-top: 80px; }
body { font-family: var(--wom-font-body); font-size: 16px; line-height: 1.75; color: var(--wom-text); background: var(--wom-cream); }
a { color: var(--wom-orange); text-decoration: none; transition: color 150ms ease; }
a:hover { color: var(--wom-orange-dark); text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }

.wom-header { position: sticky; top: 0; z-index: 100; background: rgba(250,246,241,0.92); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid var(--wom-border); box-shadow: var(--wom-shadow-sm); }
.wom-header-inner { max-width: var(--wom-max-width); margin: 0 auto; padding: 12px 20px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.wom-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.wom-brand:hover { text-decoration: none; }
.wom-brand img { height: 38px; width: auto; }
.wom-brand-name { font-family: var(--wom-font-heading); font-weight: 700; font-size: 1.15rem; color: var(--wom-brown); letter-spacing: 0.2px; }

.wom-socials { display: flex; align-items: center; gap: 8px; list-style: none; margin: 0; padding: 0; }
.wom-socials a { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 999px; border: 1px solid var(--wom-border); background: var(--wom-white); transition: background 150ms ease, border-color 150ms ease, transform 150ms ease, box-shadow 150ms ease; }
.wom-socials a:hover { background: var(--wom-orange-light); border-color: var(--wom-orange); transform: translateY(-1px); box-shadow: 0 4px 10px rgba(200,101,42,0.15); text-decoration: none; }
.wom-socials svg { width: 17px; height: 17px; fill: var(--wom-brown-soft); transition: fill 150ms ease; }
.wom-socials a:hover svg { fill: var(--wom-orange); }

.wom-hero { position: relative; max-width: var(--wom-max-width); margin: 28px auto 0; padding: 0 20px; }
.wom-hero-img { width: 100%; border-radius: var(--wom-radius-lg); box-shadow: var(--wom-shadow-lg); aspect-ratio: 16 / 9; object-fit: cover; }
.wom-hero-content { margin-top: -30px; position: relative; z-index: 2; background: var(--wom-white); border-radius: var(--wom-radius-lg); padding: 28px 30px 22px; box-shadow: var(--wom-shadow-md); border: 1px solid var(--wom-border); }
.wom-post-title { font-family: var(--wom-font-heading); font-size: 2rem; font-weight: 700; line-height: 1.25; color: var(--wom-brown); margin: 0 0 10px; }
.wom-post-meta { font-size: 0.9rem; color: var(--wom-text-muted); display: flex; flex-wrap: wrap; gap: 6px 16px; align-items: center; }
.wom-post-meta .wom-tag { display: inline-block; background: var(--wom-orange-light); color: var(--wom-orange-dark); padding: 2px 10px; border-radius: 999px; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.3px; text-transform: uppercase; }

.wom-toc-wrapper { max-width: var(--wom-max-width); margin: 24px auto 0; padding: 0 20px; }
.wom-toc { background: var(--wom-white); border: 1px solid var(--wom-border); border-radius: var(--wom-radius-md); padding: 20px 24px; box-shadow: var(--wom-shadow-sm); }
.wom-toc-title { font-family: var(--wom-font-heading); font-size: 1.1rem; font-weight: 700; color: var(--wom-brown); margin: 0 0 10px; display: flex; align-items: center; gap: 8px; cursor: pointer; user-select: none; }
.wom-toc-title svg { width: 18px; height: 18px; fill: var(--wom-orange); transition: transform 250ms ease; }
.wom-toc-title.collapsed svg { transform: rotate(-90deg); }
.wom-toc-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 4px; }
.wom-toc-list.hidden { display: none; }
.wom-toc-list a { display: block; padding: 6px 12px; border-radius: var(--wom-radius-sm); font-size: 0.92rem; color: var(--wom-text); transition: background 120ms ease, color 120ms ease; }
.wom-toc-list a:hover { background: var(--wom-orange-light); color: var(--wom-orange-dark); text-decoration: none; }

.wom-article-wrapper { max-width: var(--wom-max-width); margin: 0 auto; padding: 0 20px 80px; }
.wom-article { margin-top: 28px; }
.wom-article p { margin: 0 0 18px; }
.wom-article h2 { font-family: var(--wom-font-heading); font-size: 1.65rem; font-weight: 700; line-height: 1.3; color: var(--wom-brown); margin: 42px 0 14px; padding-bottom: 8px; border-bottom: 3px solid var(--wom-orange-light); }
.wom-article h3 { font-family: var(--wom-font-heading); font-size: 1.25rem; font-weight: 600; line-height: 1.35; color: var(--wom-orange-dark); margin: 30px 0 10px; }
.wom-article h4 { font-family: var(--wom-font-heading); font-size: 1.05rem; font-weight: 600; color: var(--wom-brown-soft); margin: 20px 0 8px; }
.wom-article ul, .wom-article ol { padding-left: 1.25rem; margin: 0 0 18px; }
.wom-article li { margin: 5px 0; }
.wom-article strong { color: var(--wom-brown); }
.wom-article figure { margin: 0; }
.wom-article .wom-img-single { border-radius: var(--wom-radius-md); box-shadow: var(--wom-shadow-md); margin: 20px auto; cursor: zoom-in; transition: transform 200ms ease, box-shadow 200ms ease; }
.wom-article .wom-img-single:hover { transform: scale(1.01); box-shadow: var(--wom-shadow-lg); }

.wom-marketplace { background: var(--wom-white); border: 1px solid var(--wom-border); border-radius: var(--wom-radius-lg); padding: 24px; margin: 24px 0; box-shadow: var(--wom-shadow-sm); transition: box-shadow 200ms ease; }
.wom-marketplace:hover { box-shadow: var(--wom-shadow-md); }
.wom-marketplace h3 { margin-top: 0; }
.wom-marketplace .wom-location { font-size: 0.88rem; color: var(--wom-text-muted); margin: -6px 0 14px; font-style: italic; }

.wom-carousel { position: relative; margin: 16px -8px; }
.wom-carousel-track { display: flex; gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scroll-behavior: smooth; padding: 8px 4px; scrollbar-width: none; }
.wom-carousel-track::-webkit-scrollbar { display: none; }
.wom-carousel-slide { flex: 0 0 auto; scroll-snap-align: start; min-width: 260px; max-width: 320px; }
.wom-carousel-slide img { width: 100%; height: 200px; object-fit: cover; border-radius: var(--wom-radius-sm); cursor: zoom-in; box-shadow: var(--wom-shadow-sm); transition: transform 200ms ease, box-shadow 200ms ease; }
.wom-carousel-slide img:hover { transform: scale(1.02); box-shadow: var(--wom-shadow-md); }
.wom-carousel-slide figcaption { font-size: 0.82rem; color: var(--wom-text-muted); text-align: center; margin-top: 6px; line-height: 1.35; }

.wom-carousel-btn { position: absolute; top: 50%; transform: translateY(-60%); width: 36px; height: 36px; border-radius: 999px; background: rgba(255,255,255,0.95); border: 1px solid var(--wom-border); box-shadow: var(--wom-shadow-md); display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 3; padding: 0; transition: transform 150ms ease, box-shadow 150ms ease, opacity 150ms ease; }
.wom-carousel-btn:hover { box-shadow: var(--wom-shadow-lg); background: var(--wom-white); }
.wom-carousel-btn.prev { left: 4px; }
.wom-carousel-btn.next { right: 4px; }
.wom-carousel-btn svg { width: 16px; height: 16px; fill: var(--wom-orange); }
.wom-carousel-btn.prev svg { transform: rotate(180deg); }
.wom-carousel-btn.disabled { opacity: 0.3; pointer-events: none; }

.wom-callout { background: var(--wom-orange-light); border-left: 4px solid var(--wom-orange); border-radius: 0 var(--wom-radius-sm) var(--wom-radius-sm) 0; padding: 16px 20px; margin: 20px 0; font-size: 0.95rem; }
.wom-callout strong { color: var(--wom-orange-dark); }

.wom-follow-cta { text-align: center; background: var(--wom-white); border: 1px solid var(--wom-border); border-radius: var(--wom-radius-lg); padding: 36px 24px; margin: 48px 0 0; box-shadow: var(--wom-shadow-sm); }
.wom-follow-cta h2 { font-family: var(--wom-font-heading); font-size: 1.4rem; color: var(--wom-brown); margin: 0 0 6px; border: none; padding: 0; }
.wom-follow-cta p { color: var(--wom-text-muted); margin: 0 0 18px; font-size: 0.95rem; }
.wom-follow-cta .wom-socials { justify-content: center; gap: 12px; }
.wom-follow-cta .wom-socials a { width: 44px; height: 44px; }
.wom-follow-cta .wom-socials svg { width: 20px; height: 20px; }

.wom-related { margin: 36px 0 0; }
.wom-related h3 { font-family: var(--wom-font-heading); font-size: 1.2rem; color: var(--wom-brown); margin: 0 0 14px; }
.wom-related-card { display: flex; gap: 16px; align-items: center; background: var(--wom-white); border: 1px solid var(--wom-border); border-radius: var(--wom-radius-md); padding: 14px; text-decoration: none; transition: box-shadow 200ms ease, transform 200ms ease; }
.wom-related-card:hover { box-shadow: var(--wom-shadow-md); transform: translateY(-2px); text-decoration: none; }
.wom-related-card img { width: 100px; height: 70px; object-fit: cover; border-radius: var(--wom-radius-sm); flex-shrink: 0; }
.wom-related-card span { font-weight: 600; color: var(--wom-brown); font-size: 0.95rem; }

.wom-footer { max-width: var(--wom-max-width); margin: 0 auto; padding: 0 20px 48px; text-align: center; }
.wom-footer-inner { border-top: 1px solid var(--wom-border); padding-top: 24px; }
.wom-footer-logo { height: 48px; width: auto; margin: 0 auto 12px; }
.wom-footer .wom-socials { justify-content: center; margin-bottom: 14px; }
.wom-footer-copy { font-size: 0.85rem; color: var(--wom-text-muted); line-height: 1.6; }

.wom-lightbox { position: fixed; inset: 0; background: rgba(44,32,23,0.82); display: none; align-items: center; justify-content: center; z-index: 500; padding: 20px; cursor: zoom-out; }
.wom-lightbox.active { display: flex; }
.wom-lightbox img { max-width: 94vw; max-height: 92vh; border-radius: var(--wom-radius-md); box-shadow: 0 12px 40px rgba(0,0,0,0.4); cursor: default; }
.wom-lightbox-close { position: absolute; top: 16px; right: 16px; width: 40px; height: 40px; border-radius: 999px; background: rgba(255,255,255,0.92); border: 1px solid #ddd; display: grid; place-items: center; cursor: pointer; transition: background 120ms ease; }
.wom-lightbox-close:hover { background: #fff; }
.wom-lightbox-close svg { width: 18px; height: 18px; fill: var(--wom-brown); }

.wom-back-top { position: fixed; bottom: 24px; right: 24px; width: 44px; height: 44px; border-radius: 999px; background: var(--wom-orange); border: none; box-shadow: var(--wom-shadow-lg); display: grid; place-items: center; cursor: pointer; z-index: 90; opacity: 0; transform: translateY(12px); transition: opacity 250ms ease, transform 250ms ease, background 150ms ease; pointer-events: none; }
.wom-back-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.wom-back-top:hover { background: var(--wom-orange-dark); }
.wom-back-top svg { width: 20px; height: 20px; fill: #fff; }

@media (max-width: 640px) {
  .wom-post-title { font-size: 1.55rem; }
  .wom-hero-content { margin-top: -18px; padding: 20px 18px 16px; }
  .wom-article h2 { font-size: 1.4rem; }
  .wom-marketplace { padding: 18px 16px; }
  .wom-carousel-slide { min-width: 72vw; max-width: 80vw; }
  .wom-carousel-slide img { height: 170px; }
  .wom-brand-name { display: none; }
  .wom-toc { padding: 16px 18px; }
}
@media (min-width: 960px) {
  .wom-post-title { font-size: 2.4rem; }
  .wom-hero-content { padding: 32px 36px 26px; }
  .wom-carousel-slide img { height: 220px; }
}
@media print {
  .wom-header, .wom-back-top, .wom-carousel-btn, .wom-lightbox, .wom-follow-cta { display: none !important; }
  body { background: #fff; }
  .wom-marketplace { break-inside: avoid; }
}
