/* =====================================================================
   OhMyCandle — Atelier  ·  premium boutique theme
   Warme atelierpalette · Fraunces + DM Sans
   ===================================================================== */

:root {
    --ink: #2c1d16;
    --ink-soft: #6f5b4c;
    --wood: #744a35;
    --wood-dark: #3d281c;
    --rose: #b97878;
    --rose-deep: #8d5654;
    --blush: #f3d3cd;
    --cream: #fff8f0;
    --sand: #eadcc9;
    --paper: #f6ede3;
    --paper-2: #f1e4d6;
    --line: #e4d4c2;
    --gold: #c98a3f;

    --maxw: 1280px;
    --gutter: clamp(1.25rem, 4vw, 3.5rem);
    --radius: 16px;
    --radius-lg: 22px;
    --shadow-sm: 0 2px 18px -10px rgba(61, 40, 28, .35);
    --shadow: 0 30px 80px -52px rgba(61, 40, 28, .55);
    --shadow-lg: 0 50px 120px -60px rgba(61, 40, 28, .6);

    --serif: "Fraunces", Georgia, "Times New Roman", serif;
    --sans: "DM Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    --ease: cubic-bezier(.22, 1, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--sans);
    color: var(--ink);
    background: var(--paper);
    font-size: 1.0625rem;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.05; margin: 0; color: var(--ink); letter-spacing: -0.01em; }
em { font-style: italic; }

::selection { background: var(--blush); color: var(--wood-dark); }

.omc-skip { position: absolute; left: -999px; top: 0; background: var(--ink); color: #fff; padding: .75rem 1.25rem; z-index: 200; border-radius: 0 0 10px 0; }
.omc-skip:focus { left: 0; }

.omc-wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }

.omc-section { padding-block: clamp(4.5rem, 9vw, 9rem); }

.omc-h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); }
.omc-h2 { font-size: clamp(2rem, 4.6vw, 3.4rem); line-height: 1.06; }

.omc-eyebrow {
    font-family: var(--sans);
    text-transform: uppercase;
    letter-spacing: .22em;
    font-size: .72rem;
    font-weight: 600;
    color: var(--rose-deep);
    margin: 0 0 1.1rem;
}
.omc-eyebrow--light { color: var(--blush); }

/* ---------- Buttons ---------- */
.omc-btn {
    --bg: var(--ink); --fg: var(--cream);
    display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
    font-family: var(--sans); font-weight: 600; font-size: .95rem; letter-spacing: .01em;
    padding: 1rem 1.9rem; border-radius: 100px; border: 1px solid transparent;
    background: var(--bg); color: var(--fg); cursor: pointer;
    transition: transform .4s var(--ease), background .35s var(--ease), color .35s var(--ease), box-shadow .35s var(--ease);
    will-change: transform;
}
.omc-btn--solid:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -18px rgba(44, 29, 22, .6); background: var(--wood-dark); }
.omc-btn--ghost-light { background: transparent; color: var(--cream); border-color: rgba(255, 248, 240, .5); }
.omc-btn--ghost-light:hover { background: rgba(255, 248, 240, .12); border-color: var(--cream); transform: translateY(-2px); }

.omc-link { display: inline-flex; align-items: center; gap: .5rem; font-weight: 600; color: var(--wood); border-bottom: 1px solid var(--line); padding-bottom: 3px; transition: gap .35s var(--ease), color .35s var(--ease); }
.omc-link:hover { gap: .85rem; color: var(--rose-deep); }

/* ---------- Header ---------- */
.omc-header { position: fixed; inset: 0 0 auto 0; z-index: 100; transition: background .45s var(--ease), box-shadow .45s var(--ease), transform .5s var(--ease); background: var(--cream); }
.omc-header.is-transparent { background: transparent; }
.omc-header.is-scrolled { background: rgba(255, 248, 240, .9); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); box-shadow: 0 1px 0 var(--line), 0 18px 40px -34px rgba(61, 40, 28, .5); }
.omc-header.is-hidden { transform: translateY(-100%); }
.omc-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; min-height: 84px; }

.omc-logo { display: inline-flex; align-items: center; gap: .6rem; }
.omc-logo__text { font-family: var(--sans); font-size: 1.4rem; font-weight: 600; letter-spacing: .005em; color: var(--ink); }
.omc-logo__text--lg { font-size: 1.95rem; }
.is-transparent .omc-logo__text, .is-transparent .omc-nav__list > li > a, .is-transparent .omc-cart { color: var(--cream); }
.is-transparent.is-scrolled .omc-logo__text, .is-transparent.is-scrolled .omc-nav__list > li > a, .is-transparent.is-scrolled .omc-cart { color: var(--ink); }

.omc-nav__list { list-style: none; display: flex; gap: 2.1rem; margin: 0; padding: 0; }
.omc-nav__list > li > a { font-weight: 500; font-size: .98rem; color: var(--ink); position: relative; padding-block: .4rem; transition: color .3s var(--ease); }
.omc-nav__list > li > a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1.5px; background: var(--rose); transition: width .4s var(--ease); }
.omc-nav__list > li > a:hover::after { width: 100%; }

.omc-header__actions { display: flex; align-items: center; gap: .75rem; }
.omc-cart { position: relative; display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; color: var(--ink); transition: background .3s var(--ease); }
.omc-cart:hover { background: rgba(116, 74, 53, .1); }
.omc-cart-count { position: absolute; top: 4px; right: 2px; min-width: 18px; height: 18px; padding: 0 4px; border-radius: 100px; background: var(--rose-deep); color: #fff; font-size: .68rem; font-weight: 700; display: grid; place-items: center; transform: scale(0); transition: transform .35s var(--ease); }
.omc-cart-count.is-filled { transform: scale(1); }

.omc-burger { display: none; width: 44px; height: 44px; border: 0; background: transparent; cursor: pointer; flex-direction: column; gap: 6px; align-items: center; justify-content: center; }
.omc-burger span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .4s var(--ease), opacity .3s var(--ease); }
.is-transparent .omc-burger span { background: var(--cream); }
.is-transparent.is-scrolled .omc-burger span { background: var(--ink); }
.omc-burger[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.omc-burger[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }

/* ---------- Mobiel menu (body-level overlay) ---------- */
.omc-mobile-menu { position: fixed; inset: 0; z-index: 130; background: var(--cream); display: grid; align-content: center; justify-items: center; gap: 1.6rem; padding: 2rem; opacity: 0; visibility: hidden; transition: opacity .4s var(--ease), visibility .4s var(--ease); }
.omc-mobile-menu.is-open { opacity: 1; visibility: visible; }
.omc-mobile-menu__close { position: absolute; top: 1.4rem; right: 1.4rem; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 50%; background: var(--paper); color: var(--ink); display: grid; place-items: center; cursor: pointer; }
.omc-mobile-menu__brand { font-family: var(--sans); font-weight: 600; font-size: 1.2rem; letter-spacing: .01em; color: var(--ink); position: absolute; top: 1.7rem; left: 1.6rem; }
.omc-mobile-menu__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.5rem; text-align: center; }
.omc-mobile-menu__list > li > a { font-family: var(--serif); font-size: 2.1rem; font-weight: 500; color: var(--ink); transition: color .3s var(--ease); }
.omc-mobile-menu__list > li > a:hover { color: var(--rose-deep); }
.omc-mobile-menu__cart { margin-top: .6rem; background: var(--ink); color: var(--cream); padding: .95rem 2.2rem; border-radius: 100px; font-family: var(--sans); font-weight: 600; }

/* ---------- Hero ---------- */
.omc-hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; padding-top: clamp(6rem, 14vh, 8rem); padding-bottom: clamp(3.5rem, 8vh, 7rem); color: var(--cream); isolation: isolate; }
.omc-hero__media { position: absolute; inset: 0; z-index: -1; }
.omc-hero__media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.08); animation: omc-kenburns 20s var(--ease) forwards; }
@keyframes omc-kenburns { to { transform: scale(1); } }
.omc-hero__glow { position: absolute; width: 70vmax; height: 70vmax; left: 56%; top: 42%; transform: translate(-50%, -50%); pointer-events: none; background: radial-gradient(circle, rgba(255, 196, 128, .34) 0%, rgba(255, 168, 92, .14) 28%, transparent 60%); mix-blend-mode: screen; animation: omc-flicker 5.5s ease-in-out infinite; }
@keyframes omc-flicker { 0%, 100% { opacity: .82; transform: translate(-50%, -50%) scale(1); } 42% { opacity: 1; transform: translate(-50%, -50%) scale(1.05); } 68% { opacity: .74; transform: translate(-50%, -50%) scale(.99); } }
.omc-hero__veil { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(34, 22, 16, .52) 0%, rgba(34, 22, 16, .2) 30%, rgba(34, 22, 16, .55) 68%, rgba(28, 18, 12, .86) 100%), linear-gradient(90deg, rgba(34, 22, 16, .55) 0%, rgba(34, 22, 16, 0) 52%); }
.omc-hero__inner { position: relative; max-width: 780px; }
.omc-hero__title { font-size: clamp(2.8rem, 7vw, 5.6rem); font-weight: 500; line-height: 1.02; margin: 0 0 1.4rem; color: var(--cream); text-shadow: 0 1px 2px rgba(20, 12, 8, .45), 0 14px 50px rgba(20, 12, 8, .5); }
.omc-hero__lead { font-size: clamp(1.05rem, 1.6vw, 1.3rem); max-width: 46ch; color: rgba(255, 248, 240, .95); margin: 0 0 2.2rem; line-height: 1.6; text-shadow: 0 1px 16px rgba(20, 12, 8, .4); }
.omc-hero__cta { display: flex; flex-wrap: wrap; gap: .9rem; }
.omc-hero__meta { display: flex; align-items: center; gap: .65rem; margin-top: 1.9rem; font-size: .92rem; color: rgba(255, 248, 240, .92); text-shadow: 0 1px 12px rgba(20, 12, 8, .4); }
.omc-hero__meta strong { color: var(--cream); }
.omc-hero__stars { color: #f0c074; letter-spacing: .1em; }
.omc-hero__feature { position: absolute; right: var(--gutter); bottom: clamp(3.2rem, 8vh, 6.5rem); display: flex; align-items: center; gap: .9rem; background: rgba(255, 248, 240, .13); border: 1px solid rgba(255, 248, 240, .3); -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px); padding: .75rem 1.15rem .75rem .75rem; border-radius: 100px; box-shadow: 0 24px 50px -28px rgba(20, 12, 8, .7); transition: transform .5s var(--ease), background .4s var(--ease); z-index: 2; }
.omc-hero__feature:hover { transform: translateY(-3px); background: rgba(255, 248, 240, .2); }
.omc-hero__feature-img { width: 56px; height: 56px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.omc-hero__feature-img img { width: 100%; height: 100%; object-fit: cover; }
.omc-hero__feature-body { display: grid; gap: 1px; color: var(--cream); }
.omc-hero__feature-label { font-size: .64rem; text-transform: uppercase; letter-spacing: .14em; color: var(--blush); font-weight: 700; }
.omc-hero__feature-body strong { font-family: var(--serif); font-size: 1.08rem; font-weight: 500; }
.omc-hero__feature-price { font-size: .85rem; color: rgba(255, 248, 240, .88); }
.omc-hero__feature-arrow { color: var(--cream); font-size: 1.1rem; margin-left: .2rem; transition: transform .4s var(--ease); }
.omc-hero__feature:hover .omc-hero__feature-arrow { transform: translateX(3px); }
.omc-hero__scroll { position: absolute; left: 50%; bottom: 1.6rem; transform: translateX(-50%); width: 26px; height: 42px; border: 1.5px solid rgba(255, 248, 240, .5); border-radius: 100px; display: grid; justify-items: center; padding-top: 8px; }
.omc-hero__scroll span { width: 3px; height: 8px; border-radius: 3px; background: var(--cream); animation: omc-scroll 1.8s var(--ease) infinite; }
@keyframes omc-scroll { 0% { opacity: 0; transform: translateY(0); } 40% { opacity: 1; } 100% { opacity: 0; transform: translateY(14px); } }

/* ---------- Trust strip ---------- */
.omc-trust { background: var(--ink); color: var(--cream); }
.omc-trust__row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1.2rem 1.6rem; padding-block: 1.15rem; font-size: .92rem; letter-spacing: .02em; }
.omc-trust__row b { color: var(--blush); font-weight: 600; }
.omc-dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(255, 248, 240, .4); }

/* ---------- Section head ---------- */
.omc-shead { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 1rem 2rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.omc-shead__title { font-size: clamp(1.9rem, 4vw, 3.1rem); grid-row: span 2; }
.omc-shead__link { align-self: end; }
.omc-shead--center { grid-template-columns: 1fr; justify-items: center; text-align: center; }
.omc-shead--center .omc-shead__title { grid-row: auto; }
.omc-shead__lead { max-width: 50ch; color: var(--ink-soft); margin: .6rem 0 0; }

/* ---------- Grids ---------- */
.omc-grid { display: grid; gap: clamp(1.2rem, 2.4vw, 2.2rem); }
.omc-grid--products { grid-template-columns: repeat(4, 1fr); }
.omc-grid--scents { grid-template-columns: repeat(3, 1fr); }
.omc-grid--reviews { grid-template-columns: repeat(3, 1fr); }

/* ---------- Product card ---------- */
.omc-card { background: var(--cream); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .5s var(--ease), box-shadow .5s var(--ease); display: flex; flex-direction: column; }
.omc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.omc-card__media { position: relative; display: block; aspect-ratio: 4 / 5; overflow: hidden; background: var(--paper-2); }
.omc-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.omc-card:hover .omc-card__media img { transform: scale(1.06); }
.omc-card__pill { position: absolute; top: 14px; left: 14px; background: rgba(255, 248, 240, .92); color: var(--wood-dark); font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; padding: .45rem .75rem; border-radius: 100px; -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); }
.omc-card__body { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; gap: .35rem; flex: 1; }
.omc-card__name { font-size: 1.3rem; }
.omc-card__name a:hover { color: var(--rose-deep); }
.omc-card__note { color: var(--ink-soft); font-size: .92rem; margin: 0; }
.omc-card__foot { margin-top: auto; padding-top: 1rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.omc-card__price { font-family: var(--serif); font-size: 1.3rem; font-weight: 600; color: var(--ink); }
.omc-card__price del { color: var(--ink-soft); font-size: .85em; margin-right: .4rem; font-weight: 400; }
.omc-card__add, a.omc-card__add { background: var(--ink); color: var(--cream); border: 0; border-radius: 100px; padding: .6rem 1.1rem; font-size: .82rem; font-weight: 600; cursor: pointer; transition: background .3s var(--ease), transform .3s var(--ease); white-space: nowrap; }
.omc-card__add:hover { background: var(--rose-deep); transform: translateY(-1px); }
.omc-card__add--static { opacity: .9; }

/* ---------- Story (editorial split) ---------- */
.omc-story { background: linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%); }
.omc-story__grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.omc-story__media { margin: 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 5 / 6; }
.omc-story__media img { width: 100%; height: 100%; object-fit: cover; }
.omc-story__text .omc-h2 { margin-bottom: 1.4rem; }
.omc-story__text p { color: var(--ink-soft); max-width: 52ch; }
.omc-ticks { list-style: none; margin: 1.6rem 0; padding: 0; display: grid; gap: .7rem; }
.omc-ticks li { position: relative; padding-left: 1.9rem; color: var(--ink); }
.omc-ticks li::before { content: ""; position: absolute; left: 0; top: .5em; width: 11px; height: 11px; border-radius: 50%; background: var(--rose); box-shadow: 0 0 0 4px rgba(185, 120, 120, .18); }

/* ---------- Scents ---------- */
.omc-scents { background: var(--cream); }
.omc-scent { position: relative; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.8rem, 3vw, 2.6rem); overflow: hidden; transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.omc-scent::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 4px; background: var(--omc-accent, var(--rose)); transform: scaleX(0); transform-origin: left; transition: transform .6s var(--ease); }
.omc-scent:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.omc-scent:hover::before { transform: scaleX(1); }
.omc-scent__index { font-family: var(--serif); font-size: 1rem; color: var(--omc-accent, var(--rose)); font-weight: 600; }
.omc-scent h3 { font-size: 1.7rem; margin: .5rem 0 .8rem; }
.omc-scent p { color: var(--ink-soft); margin: 0 0 1.4rem; }
.omc-scent__notes { font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; color: var(--wood); font-weight: 600; }

/* ---------- Feature (full-bleed quote) ---------- */
.omc-feature { position: relative; color: var(--cream); padding-block: clamp(5rem, 12vw, 10rem); text-align: center; isolation: isolate; }
.omc-feature__media { position: absolute; inset: 0; z-index: -1; }
.omc-feature__media img { width: 100%; height: 100%; object-fit: cover; }
.omc-feature__veil { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(44, 29, 22, .55), rgba(44, 29, 22, .7)); }
.omc-feature__inner { display: grid; justify-items: center; gap: 1.8rem; }
.omc-feature blockquote { font-family: var(--serif); font-size: clamp(1.7rem, 4.2vw, 3.2rem); font-weight: 400; line-height: 1.2; margin: 0; max-width: 22ch; text-shadow: 0 2px 30px rgba(20, 12, 8, .4); }

/* ---------- Reviews ---------- */
.omc-reviews { background: var(--paper-2); }
.omc-stars { color: var(--gold); font-size: 1.3rem; letter-spacing: .15em; margin-bottom: 1rem; }
.omc-review { margin: 0; background: var(--cream); border-radius: var(--radius-lg); padding: clamp(1.6rem, 2.8vw, 2.3rem); box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 1.2rem; }
.omc-review blockquote { margin: 0; font-family: var(--serif); font-size: 1.22rem; line-height: 1.5; color: var(--ink); }
.omc-review figcaption { font-size: .9rem; font-weight: 600; color: var(--wood); letter-spacing: .02em; }

/* ---------- Gift ---------- */
.omc-gift { background: var(--cream); }
.omc-gift__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.omc-gift__text p { color: var(--ink-soft); max-width: 44ch; margin-bottom: 2rem; }
.omc-gift__text .omc-h2 { margin: 1.4rem 0; }
.omc-gift__media { margin: 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 16 / 11; }
.omc-gift__media img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Footer ---------- */
.omc-footer { background: var(--wood-dark); color: rgba(255, 248, 240, .82); padding-block: clamp(3.5rem, 6vw, 5.5rem) 2rem; }
.omc-footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255, 248, 240, .14); }
.omc-footer__brand p { max-width: 34ch; margin: 1rem 0 1.5rem; font-size: .96rem; }
.omc-footer .omc-logo__text { color: var(--cream); }
.omc-footer__col h4 { font-family: var(--sans); font-size: .78rem; text-transform: uppercase; letter-spacing: .16em; color: var(--blush); margin: 0 0 1.2rem; font-weight: 600; }
.omc-footer__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .7rem; }
.omc-footer__col a { color: rgba(255, 248, 240, .82); transition: color .3s var(--ease); }
.omc-footer__col a:hover { color: var(--cream); }
.omc-footer__news p { font-size: .94rem; margin: 0 0 1.1rem; }
.omc-news { display: flex; background: rgba(255, 248, 240, .1); border: 1px solid rgba(255, 248, 240, .2); border-radius: 100px; padding: 4px 4px 4px 1.1rem; max-width: 320px; }
.omc-news input { flex: 1; background: transparent; border: 0; color: var(--cream); font-family: inherit; font-size: .92rem; outline: none; }
.omc-news input::placeholder { color: rgba(255, 248, 240, .55); }
.omc-news button { width: 40px; height: 40px; border-radius: 50%; border: 0; background: var(--rose); color: #fff; display: grid; place-items: center; cursor: pointer; transition: background .3s var(--ease), transform .3s var(--ease); }
.omc-news button:hover { background: var(--rose-deep); transform: translateX(2px); }
.omc-social { display: flex; gap: .6rem; }
.omc-social a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255, 248, 240, .24); display: grid; place-items: center; color: var(--cream); transition: background .3s var(--ease), border-color .3s var(--ease); }
.omc-social a:hover { background: rgba(255, 248, 240, .12); border-color: var(--cream); }
.omc-footer__bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; padding-top: 1.8rem; font-size: .85rem; color: rgba(255, 248, 240, .6); }
.omc-pay { display: flex; gap: .5rem; flex-wrap: wrap; }
.omc-pay span { border: 1px solid rgba(255, 248, 240, .22); border-radius: 6px; padding: .25rem .6rem; font-size: .72rem; letter-spacing: .04em; }
.omc-credit a { color: var(--blush); }

/* ---------- WooCommerce ---------- */
.omc-shop { padding-top: clamp(7rem, 12vh, 9rem); }
.omc-shop__head { text-align: center; margin-bottom: 2.5rem; }
.woocommerce ul.products { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 2.4vw, 2.2rem); }
.woocommerce ul.products li.product { margin: 0; text-align: left; background: var(--cream); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.woocommerce ul.products li.product:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.woocommerce ul.products li.product a img { margin: 0; border-radius: 0; aspect-ratio: 4/5; object-fit: cover; width: 100%; }
.woocommerce ul.products li.product .woocommerce-loop-product__title { font-family: var(--serif); font-size: 1.25rem; font-weight: 500; padding: 1.1rem 1.3rem .2rem; }
.woocommerce ul.products li.product .price { display: block; padding: 0 1.3rem; font-family: var(--serif); font-size: 1.2rem; color: var(--ink); font-weight: 600; }
.woocommerce ul.products li.product .price del { color: var(--ink-soft); font-weight: 400; }
.woocommerce ul.products li.product .button,
.woocommerce a.button, .woocommerce button.button, .woocommerce input.button, .woocommerce #respond input#submit,
.woocommerce a.button.alt, .woocommerce button.button.alt {
    display: inline-flex; align-items: center; justify-content: center;
    margin: 1rem 1.3rem 1.4rem; background: var(--ink); color: var(--cream);
    border: 0; border-radius: 100px; padding: .8rem 1.5rem; font-family: var(--sans);
    font-weight: 600; font-size: .9rem; cursor: pointer; transition: background .3s var(--ease), transform .3s var(--ease);
}
.woocommerce a.button:hover, .woocommerce button.button:hover, .woocommerce ul.products li.product .button:hover,
.woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover { background: var(--rose-deep); transform: translateY(-2px); }
.woocommerce span.onsale { background: var(--rose-deep); color: #fff; border-radius: 100px; min-height: auto; min-width: auto; padding: .35rem .8rem; font-weight: 600; }

/* Single product */
.woocommerce div.product { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); }
.woocommerce div.product div.images { margin: 0; }
.woocommerce div.product div.images img { border-radius: var(--radius-lg); }
.woocommerce div.product .product_title { font-size: clamp(2rem, 4vw, 3rem); }
.woocommerce div.product p.price, .woocommerce div.product span.price { font-family: var(--serif); font-size: 1.8rem; color: var(--wood-dark); }
.woocommerce div.product .woocommerce-product-details__short-description { color: var(--ink-soft); }
.woocommerce .quantity input.qty { border: 1px solid var(--line); border-radius: 100px; padding: .6rem; background: var(--cream); }
.woocommerce-tabs ul.tabs { border: 0 !important; }
.woocommerce div.product .woocommerce-tabs ul.tabs li { background: var(--paper-2); border: 0; border-radius: 100px; }

/* Cart / checkout */
.woocommerce table.shop_table { border-radius: var(--radius); border-color: var(--line); overflow: hidden; }
.woocommerce .cart-collaterals .cart_totals, .woocommerce-checkout #payment { background: var(--cream); border-radius: var(--radius-lg); padding: 1.6rem; box-shadow: var(--shadow-sm); }
.woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea, .select2-container .select2-selection { border: 1px solid var(--line); border-radius: 10px; padding: .7rem .9rem; background: #fff; }
.woocommerce-message, .woocommerce-info, .woocommerce-error { border-top-color: var(--rose) !important; border-radius: var(--radius); background: var(--cream); }
.woocommerce-message::before, .woocommerce-info::before { color: var(--rose) !important; }

/* Pages / prose */
.omc-page { padding-top: clamp(7rem, 12vh, 9rem); }
.omc-page__narrow { max-width: 780px; }
.omc-page__head { margin-bottom: 2rem; }
.omc-prose p, .omc-prose li { color: var(--ink-soft); }
.omc-prose h2, .omc-prose h3 { margin-top: 2rem; }
.omc-pagination { margin-top: 3rem; }

/* ---------- Scroll reveal ---------- */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
[data-reveal].is-in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
    .omc-grid--products { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
    .omc-burger { display: flex; }
    .omc-nav { display: none; }
    .omc-header__inner { display: grid; grid-template-columns: 44px 1fr 44px; }
    .omc-logo { justify-content: center; }
    .omc-grid--scents, .omc-grid--reviews { grid-template-columns: 1fr; }
    .omc-story__grid, .omc-gift__grid { grid-template-columns: 1fr; }
    .omc-gift__media { order: -1; }
    .omc-hero__feature { display: none; }
    .omc-hero { min-height: 92svh; align-items: center; padding-top: 7rem; }
    .omc-hero__inner { max-width: 100%; }
    .omc-hero__title { font-size: clamp(2.3rem, 8.5vw, 3.6rem); margin-bottom: 1.1rem; }
    .omc-hero__lead { font-size: 1rem; max-width: 100%; margin-bottom: 1.7rem; }
    .omc-hero__meta { margin-top: 1.5rem; font-size: .85rem; }
    .omc-shead { grid-template-columns: 1fr; }
    .omc-shead__title { grid-row: auto; }
    .omc-footer__top { grid-template-columns: 1fr 1fr; }
    .woocommerce ul.products { grid-template-columns: repeat(2, 1fr); }
    .woocommerce div.product { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
    .omc-grid--products { grid-template-columns: 1fr 1fr; gap: 1rem; }
    .omc-card__body { padding: 1rem 1rem 1.15rem; }
    .omc-card__name { font-size: 1.08rem; }
    /* Prijs + winkelmandknop onder elkaar, knop vol breed + duidelijk zichtbaar */
    .omc-card__foot { flex-direction: column; align-items: stretch; gap: .65rem; padding-top: .85rem; }
    .omc-card__add, a.omc-card__add { width: 100%; text-align: center; padding: .75rem 1rem; font-size: .85rem; }
    .woocommerce ul.products li.product .button, .woocommerce ul.products li.product a.button { display: block; margin: .8rem 1rem 1.1rem; width: calc(100% - 2rem); text-align: center; }
    .omc-footer__top { grid-template-columns: 1fr; }
    .omc-trust__row { gap: .6rem 1rem; font-size: .82rem; }
    .woocommerce ul.products { grid-template-columns: 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
    [data-reveal] { opacity: 1; transform: none; }
    .omc-hero__media img { animation: none; transform: none; }
}
