/*
 * Medicina Estelar — additions for the page-builder sections (me.css is the live design, 1:1).
 * Only what the editable sections need beyond the live markup: background tones, spacing choices,
 * column choices, promo cards inside the product grid, the real add-to-cart button.
 */

/* background tones and spacing (section settings) */
.me-tone-paper { background: var(--me-paper); }
.me-tone-white { background: #fff; }
.me-tone-linen { background: var(--me-linen); }
.me-bordered { border-top: 1px solid var(--me-rule); border-bottom: 1px solid var(--me-rule); }
.me-dark.me-bordered { border-color: var(--me-rule-dark); }
.me-section.me-sp-compact { padding: clamp(2.2rem, 4vw, 3.6rem) 0; }
.me-section.me-sp-none { padding: 0; }
.me-dark .me-card-kicker { color: var(--me-clay); }

/* heading row: intro text is rich text now (may hold several paragraphs) */
.me-sec-header .me-lead p:last-child { margin-bottom: 0; }

/* prose whose first paragraph is the lead (manifesto, about) */
.me-prose-lead > p:first-child { font-size: clamp(1.15rem, 1.6vw, 1.32rem); line-height: 1.55; }
.me-actions-row { margin-top: 2rem; display: flex; gap: 1rem; flex-wrap: wrap; }

/* image side switches */
@media (min-width: 992px) {
  .me-manifesto-grid.me-img-start > figure { order: -1; }
  .me-manifesto-grid.me-no-img { grid-template-columns: minmax(0, 1fr); max-width: 860px; }
  .me-about-grid.me-img-end > div:first-child { order: 2; }
}

/* buttons */
.me-btn .me-ico { margin-right: .55em; flex: none; }
.me-btn-olive { background: var(--me-olive); box-shadow: 0 4px 14px rgb(63 74 52 / .25); }
.me-btn-olive:hover, .me-btn-olive:focus { background: var(--me-olive-hover); }
.me-card-actions .me-btn { flex: 1; text-align: center; }

/* column choices */
@media (min-width: 992px) {
  .me-grid-cards.me-cols-2, .me-products-grid.me-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .me-grid-cards.me-cols-3, .me-products-grid.me-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .me-grid-cards.me-cols-4, .me-products-grid.me-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* product cards: real products (the live inline styles as rules) */
.me-product-thumb { display: block; }
.me-product-body { padding: 1.6rem 1.4rem 1.2rem; display: flex; flex-direction: column; flex: 1; }
.me-product-title { margin: 0 0 .8rem; padding: 0; font-size: 1.3rem; }
.me-product-title a { color: inherit; }
.me-product-desc { margin: 0 0 1.1rem; line-height: 1.55; color: rgb(21 19 15 / .75); }
.me-product-desc p { margin: 0; }
.me-product-price { margin: 0 0 1.3rem; font-size: 1.35rem; font-weight: 700; color: var(--me-oxide); }
.me-product-buy { margin-top: auto; }
.me-product-buy .me-btn, .me-add-form .me-btn { width: 100%; text-align: center; }
.me-add-form { margin: 0; }
.me-add-form .me-btn svg { width: 17px; height: 17px; margin-right: .55em; }
.me-products-more { text-align: center; margin-top: 2.8rem; }

/* promo cards between the products */
.me-promo-card { position: relative; display: flex; flex-direction: column; justify-content: flex-end; min-height: 100%; overflow: hidden; border-radius: 2px; }
.me-promo-card.me-span-2 { grid-column: span 2; }
.me-promo-body { position: relative; z-index: 1; padding: 2rem 1.7rem; display: flex; flex-direction: column; gap: .9rem; align-items: flex-start; }
.me-promo-card h3 { margin: 0; font-size: clamp(1.4rem, 2vw, 1.8rem); line-height: 1.15; }
.me-promo-card h3 em { font-style: italic; font-weight: 300; }
.me-promo-text p { margin: 0 0 .6rem; }
.me-promo-img { width: 100%; height: 220px; object-fit: cover; }
.me-promo-dark { background: var(--me-ink); color: var(--me-linen); }
.me-promo-dark h3 { color: var(--me-paper); }
.me-promo-dark .me-promo-text, .me-promo-dark .me-promo-text p { color: rgb(235 227 214 / .82); }
.me-promo-dark .me-card-kicker { color: var(--me-clay); }
.me-promo-dark .me-btn-line, .me-promo-oxide .me-btn-line, .me-promo-image .me-btn-line { border-color: rgb(255 255 255 / .6); color: #fff !important; background: transparent; }
.me-promo-linen { background: var(--me-linen); color: var(--me-ink); }
.me-promo-oxide { background: var(--me-oxide); color: #FCF8F2; }
.me-promo-oxide h3, .me-promo-oxide .me-card-kicker, .me-promo-oxide .me-promo-text p { color: #FCF8F2; }
.me-promo-image { min-height: 420px; background: var(--me-ink); color: #fff; }
.me-promo-image .me-promo-img { position: absolute; inset: 0; height: 100%; }
.me-promo-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgb(21 19 15 / .85), rgb(21 19 15 / .1) 70%); }
.me-promo-image h3, .me-promo-image .me-card-kicker, .me-promo-image .me-promo-text p { color: #fff; }
@media (max-width: 767px) { .me-promo-card.me-span-2 { grid-column: auto; } }

/* slider height choices (live = full) */
.me-slider-h-large .me-slider { height: 80vh; min-height: 520px; }
.me-slider-h-medium .me-slider { height: 60vh; min-height: 440px; }
.me-slide picture { position: absolute; inset: 0; display: block; }
.me-slide-title { font-family: var(--me-serif); color: #fff; }
.me-slide-text p { margin: 0; }

/* call to action */
.me-cta { text-align: center; max-width: 800px; }
.me-cta .me-lead { margin-bottom: 2.2rem; }
.me-cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* sections.css (the generic builder styles) turns <em> in headings into a sans accent;
   Medicina Estelar uses the Newsreader italic, as on the live site */
.me-root em, .me-root h1 em, .me-root h2 em, .me-root h3 em, .me-root h4 em,
.me-root .me-slide h1 em, .me-root .me-slide-title em {
  font-family: var(--me-serif) !important;
  font-style: italic !important;
  font-weight: 300;
}

/* ---------------------------------------------------------------- product page in Lina's style
   (the builder's product section: gallery, name, price, Modalidad, cart, description) */
#product .de-pdp { font-family: var(--me-serif); color: var(--me-ink); }
#product .de-eyebrow { font-family: var(--me-sans); font-size: .72rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--me-oxide); }
#product .de-pdp__title { font-family: var(--me-serif); font-weight: 400; font-size: clamp(2rem, 3.4vw, 3rem); line-height: 1.08; letter-spacing: -.02em; color: var(--me-ink); margin: .4rem 0 .8rem; }
#product .de-pdp__price .current-price, #product .de-pdp__price .current-price-value { font-family: var(--me-serif); font-size: 1.7rem; font-weight: 400; color: var(--me-oxide); }
#product .de-pdp__price .tax-shipping-delivery-label, #product .de-pdp__price small { font-family: var(--me-sans); font-size: .75rem; color: rgb(21 19 15 / .6); }
#product .de-pdp__variants .control-label, #product .de-pdp__variants label.control-label { font-family: var(--me-sans); font-size: .72rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: rgb(21 19 15 / .7); }
#product .de-pdp__variants .input-radio + span, #product .de-pdp__variants .radio-label { font-family: var(--me-sans); font-size: .84rem; font-weight: 500; border: 1px solid var(--me-rule); border-radius: 2px; padding: .65em 1.3em; background: #fff; color: var(--me-ink); }
#product .de-pdp__variants .input-radio:checked + span, #product .de-pdp__variants .input-radio:checked + .radio-label { border-color: var(--me-oxide); background: var(--me-oxide); color: #FCF8F2; }
#product .add-to-cart, #product .de-pdp__buy .btn-primary { font-family: var(--me-sans); font-size: .88rem; font-weight: 600; letter-spacing: .04em; background: var(--me-oxide); border-color: var(--me-oxide); color: #FCF8F2; border-radius: 2px; box-shadow: 0 4px 14px rgb(158 75 46 / .25); }
#product .add-to-cart:hover, #product .de-pdp__buy .btn-primary:hover { background: var(--me-ink); border-color: var(--me-ink); }
#product .de-qty { border-radius: 2px; border-color: var(--me-rule); }
#product .de-pdp__desc { font-size: 1.05rem; line-height: 1.7; color: rgb(21 19 15 / .85); }
#product .de-pdp__desc p, #product .de-pdp__desc li { font-size: 1.05rem; line-height: 1.7; color: rgb(21 19 15 / .85); }
#product .de-pdp__desc h3 { font-family: var(--me-serif); font-weight: 400; font-size: 1.6rem; margin: 2rem 0 .8rem; color: var(--me-ink); }
#product .de-pdp__desc em { color: rgb(21 19 15 / .6); font-size: .95rem; }
#product .de-pdp__gallery img { border-radius: 2px; }
#product .breadcrumb, #product .breadcrumb a { font-family: var(--me-sans); font-size: .78rem; color: rgb(21 19 15 / .6); }
#product .wishlist-button-add { display: none; }

/* sticky header: the menu bar sits inside the section wrapper, so it cannot stick on its own.
   The whole <header id="header"> sticks instead, pulled up by the top bar's height, so the thin
   top bar scrolls away and the menu bar stays (live behaviour). --me-topbar-h is set by me.js. */
/* sections.css makes #header display: contents, so the header SECTION is the box that sticks */
.estelar-section.estelar-section--me-header { position: sticky; top: calc(-1 * var(--me-topbar-h, 0px)); z-index: 1000; background: #fff; }
.estelar-section--me-header .me-header { position: relative; top: auto; }

/* ------------------------------------------------ Dermedics layout values (user 2026-09-23)
   Lina keeps her colours and fonts; spacing, widths, gaps, paddings and radii follow Dermedics. */
:root, .me-root { --me-maxw: 1440px !important; --me-pad: var(--de-gutter, 16px) !important; }
/* me.css sets overflow-x: hidden on html/body, which makes body a scroll box and breaks position: sticky
   (header, product buy bar). clip cuts sideways overflow the same way without that side effect. */
html, body { overflow-x: clip !important; overflow-y: visible !important; }
/* me.css sets .me-root { padding: 0 !important } (it was a page wrapper there): the section spacing must win */
.me-root.me-section.me-spaced { padding-top: calc(var(--de-space, 16px) * var(--me-st, 4)) !important; padding-bottom: calc(var(--de-space, 16px) * var(--me-sb, 4)) !important; }
.me-sec-header { margin-bottom: 37px; gap: 24px 48px; }
.me-sec-header h2 { margin-bottom: 0; }
.me-grid-cards { gap: 24px !important; }
.me-products-grid { gap: 36px 24px !important; }
.me-lineage-grid { gap: 36px 24px !important; }
.me-manifesto-grid, .me-about-grid { gap: 48px 64px; }

/* session cards: Dermedics card radius and paddings */
.me-card { border-radius: 8px; }
.me-card-img { aspect-ratio: 4 / 3; }
.me-card-body { padding: 32px 28px 20px; }
.me-card-body h3 { margin: 0 0 12px; }
.me-card-body p { margin: 0 0 16px; }
.me-card-price { margin-top: auto; padding-top: 16px; border-top: 1px solid var(--me-rule); }
.me-card-actions { padding: 0 28px 28px; gap: 12px; }

/* product cards: Dermedics product card proportions */
.me-product-card { border-radius: 8px !important; text-align: left !important; padding-bottom: 0 !important; }
.me-product-thumb { border-radius: 8px 8px 0 0; }
.me-product-body { padding: 20px 20px 24px !important; }
.me-product-title { font-size: 1.2rem !important; line-height: 1.25; margin-bottom: 8px !important; }
.me-product-desc { font-size: .95rem; margin-bottom: 16px !important; }
.me-product-price { font-size: 1.2rem !important; margin-bottom: 16px !important; }

/* promo cards between products: Dermedics promo card (36/32 padding, 4 px radius, 400 px min height) */
.me-promo-card { border-radius: 4px; min-height: 400px; }
.me-promo-body { padding: 36px 32px; }
.me-about-img, .me-man-fig img { border-radius: 8px; }

@media (max-width: 749px) {
  .me-card-body { padding: 26px 22px 16px; }
  .me-card-actions { padding: 0 22px 22px; }
  .me-promo-card { min-height: 340px; }
  .me-promo-body { padding: 32px 26px; }
  .me-sec-header { margin-bottom: 28px; }
}

/* outline buttons on the dark slider: white, as on the live site (the light-background rule made them grey) */
.me-slider-container .me-btn-line { color: #fff !important; border-color: rgb(255 255 255 / .7) !important; background: rgb(21 19 15 / .25) !important; }
.me-slider-container .me-btn-line:hover { color: var(--me-ink) !important; background: #fff !important; border-color: #fff !important; }
@media (max-width: 576px) {
  .me-topbar-right { font-size: .72rem; gap: .35rem; flex-wrap: nowrap; white-space: nowrap; }
}

/* slider photos: me.css ".me-root img { height: auto }" beat ".me-slide-bg { height: 100% }", so the photo
   kept its own proportions instead of filling the slide (cut off on desktop, dark gap on phones) */
.me-slider-container .me-slide-bg { width: 100% !important; height: 100% !important; max-width: none !important; object-fit: cover; }

/* slow zoom on the active slide: the live 8 % enlarged the (1376 px) photos too much; 3 % keeps the effect */
.me-slider-container .me-slide-bg { transform: scale(1.01); }
.me-slider-container .me-slide.active .me-slide-bg { transform: scale(1.03); }

/* slide text: aligned to the page grid (1440 + gutter) instead of a narrow centred box;
   position and title size are slide settings */
.me-slider-container .me-slide-content { width: 100% !important; max-width: var(--me-maxw) !important; margin: 0 auto !important; padding-left: var(--me-pad) !important; padding-right: var(--me-pad) !important; display: flex; flex-direction: column; }
.me-slider-container .me-slide-content > * { max-width: 760px; }
.me-slider-container .me-slide-content .me-slide-text { max-width: 620px; }
.me-slider-container .me-slide-content .me-slide-btns { width: 100%; }
.me-slide-content.me-pos-left { align-items: flex-start; text-align: left; }
.me-slide-content.me-pos-center { align-items: center; text-align: center; }
.me-slide-content.me-pos-center .me-slide-btns { justify-content: center; }
.me-slide-content.me-pos-right { align-items: flex-end; text-align: left; }
.me-slide-content.me-pos-right > * { width: 100%; }
.me-slider-container .me-slide-content.me-title-small h1, .me-slider-container .me-slide-content.me-title-small .me-slide-title { font-size: clamp(1.8rem, 1.4rem + 1.8vw, 3rem) !important; }
.me-slider-container .me-slide-content.me-title-medium h1, .me-slider-container .me-slide-content.me-title-medium .me-slide-title { font-size: clamp(2rem, 1.5rem + 2.4vw, 3.6rem) !important; }
.me-slider-container .me-slide-content.me-title-large h1, .me-slider-container .me-slide-content.me-title-large .me-slide-title { font-size: clamp(2.6rem, 2rem + 3.2vw, 4.8rem) !important; }
.me-slider-container .me-slide-content h1, .me-slider-container .me-slide-title { max-width: 760px !important; line-height: 1.1; }
@media (min-width: 768px) {
  .me-slider-container .me-slide-btns { display: flex; gap: 12px; max-width: 620px; }
  .me-slider-container .me-slide-btns .me-btn { width: auto !important; }
}

/* footer: me.css ".me-root { padding: 0 !important }" also removed the footer's own padding.
   Dermedics spacing: 4 steps above, 2 below. Link subtitles on their own line. */
.me-root.me-footer-wrap { padding: calc(var(--de-space, 16px) * 4) 0 calc(var(--de-space, 16px) * 2) !important; }
.me-foot-links a span { display: block; margin-top: 3px; line-height: 1.4; }

/* call to action: same page width as every other section (was an 800 px box);
   title up to 960 px, text up to 820 px (Dermedics text widths), centred */
.me-cta.me-wrap { max-width: var(--me-maxw) !important; width: 100%; }
.me-cta h2 { max-width: 960px; margin-left: auto; margin-right: auto; }
.me-cta .me-lead { max-width: 820px; margin-left: auto; margin-right: auto; }

/* footer colour (setting): British racing green in Lina's earth range by default */
.me-root.me-footer-wrap { background: var(--me-footer-bg, #1D3B2C) !important; border-top-color: rgb(235 227 214 / .12); }
.me-footer-wrap .me-disclaimer-box { background: rgb(0 0 0 / .16); border-color: rgb(235 227 214 / .14); }
.me-footer-wrap .me-foot-bottom { border-top-color: rgb(235 227 214 / .14); }
.me-footer-wrap .me-foot-brand { color: #fff !important; }

/* ======================================================= site-wide review fixes (2026-09-23) */

/* menu: readable — sentence case, 15 px, medium weight, little tracking (was 12.8 px uppercase +10 % tracking) */
.me-nav-menu { gap: 2rem; }
.me-nav-menu > li > a { font-family: var(--me-sans); font-size: 15px !important; font-weight: 500 !important; text-transform: none !important; letter-spacing: .01em !important; color: var(--me-ink); }
.me-submenu a strong { font-family: var(--me-sans); font-size: 15px; font-weight: 600; letter-spacing: 0; }
.me-submenu a span { font-size: 13px; line-height: 1.4; }
.me-mobile-nav a, .me-mob-link-main { font-size: 17px !important; text-transform: none !important; letter-spacing: .01em !important; font-weight: 500 !important; }
.me-topbar { font-size: 13px; }

/* slider: air between the text and the buttons */
.me-slider-container .me-slide-text { margin-bottom: 28px; }

/* titles followed by text get their own space (about, call to action, page intros) */
.me-about-grid h2 { margin: 0 0 20px !important; }
.me-cta h2 { margin: 0 auto 20px !important; }
.me-cta .me-card-kicker, .me-about-grid .me-card-kicker { display: block; margin-bottom: 12px; }

/* session card titles: ink, not the link colour */
.me-card h3, .me-card h3 a { color: var(--me-ink) !important; }
.me-card h3 a:hover { color: var(--me-oxide) !important; }

/* numbered / theory items: one row for up to 5 items on desktop */
@media (min-width: 992px) { .me-lineage-grid { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important; } }
/* …and readable on light backgrounds (the live design only had them on dark) */
.me-section:not(.me-dark) .me-lin-item h4 { color: var(--me-ink) !important; }
.me-section:not(.me-dark) .me-lin-item p { color: rgb(21 19 15 / .72) !important; }
.me-section:not(.me-dark) .me-lin-who { color: var(--me-oxide) !important; }

/* product card text in the site serif */
.me-product-desc { font-family: var(--me-serif) !important; font-size: 1rem !important; }

/* outline buttons on dark sections: clean outline, no grey fill */
.me-dark .me-btn-line { background: transparent !important; border-color: rgb(235 227 214 / .45) !important; color: var(--me-linen) !important; }
.me-dark .me-btn-line:hover { background: var(--me-linen) !important; color: var(--me-ink) !important; }

/* footer: brand, tagline and social spacing */
.me-footer-wrap .me-foot-brand { margin: 0 0 14px !important; }
.me-footer-wrap .me-foot-tagline { margin-bottom: 22px !important; line-height: 1.6; }
.me-footer-wrap .me-social-links { gap: 6px 14px; margin-top: 18px; }
.me-footer-wrap .me-social-links .me-sep { display: inline; opacity: .45; }

/* category pages: the theme's empty "active filters" line */
#category #js-active-search-filters, #category .active_filters, #category .active-filters { display: none !important; }

/* short pages: footer at the bottom of the window, no sand band under it */
main { min-height: 100vh; display: flex; flex-direction: column; }
main > #wrapper { flex: 1 0 auto; }

/* contact form in Lina's style (builder form: .de-cform) */
.de-cform { font-family: var(--me-serif); color: var(--me-ink); }
.de-cform .de-cform__grid { gap: 24px; }
.de-cform .de-cform__label { font-family: var(--me-sans) !important; font-size: 13px !important; font-weight: 600 !important; letter-spacing: .02em !important; text-transform: none !important; color: var(--me-ink) !important; margin-bottom: 8px; }
.de-cform .de-cform__input { font-family: var(--me-serif) !important; font-size: 17px !important; border: 1px solid var(--me-rule) !important; border-radius: 2px !important; background: #fff !important; padding: 12px 14px !important; height: auto !important; min-height: 48px; }
.de-cform .de-cform__input:focus { border-color: var(--me-oxide) !important; outline: none; box-shadow: 0 0 0 3px rgb(158 75 46 / .12); }
.de-cform .de-cform__input--area { min-height: 140px; }
.de-cform .de-cform__option, .de-cform .de-cform__options label { font-family: var(--me-serif) !important; font-size: 16px !important; letter-spacing: 0 !important; text-transform: none !important; }
.de-cform .de-cform__options { gap: 10px 28px; }
.de-cform input[type=radio], .de-cform input[type=checkbox] { accent-color: var(--me-oxide); }
.de-cform .de-btn { font-family: var(--me-sans) !important; font-size: .88rem !important; font-weight: 600 !important; letter-spacing: .04em !important; text-transform: none !important; background: var(--me-oxide) !important; border-color: var(--me-oxide) !important; color: #FCF8F2 !important; border-radius: 2px !important; padding: 16px 30px !important; box-shadow: 0 4px 14px rgb(158 75 46 / .25); }
.de-cform .de-btn:hover { background: var(--me-ink) !important; border-color: var(--me-ink) !important; }

/* catalogue with filter tabs (live /tienda) */
.me-store-head { text-align: center; max-width: 960px; margin: 0 auto; }
.me-store-head .me-card-kicker { display: block; margin-bottom: 12px; }
.me-store-heading { margin: 0 0 20px; font-size: clamp(2rem, 1.5rem + 2vw, 3.2rem); }
.me-store-head .me-lead { max-width: 820px; margin: 0 auto; }
.me-store-tabs { margin: 36px 0 48px !important; }
.me-store-grid { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)) !important; gap: 36px 24px !important; margin-bottom: 0 !important; }
.me-store-item { border-radius: 8px !important; }
.me-store-item[hidden] { display: none !important; }
.me-store-item-thumb { display: block; }
.me-store-title a { color: inherit; }
.me-store-desc { font-family: var(--me-serif); font-size: 1rem !important; }
.me-store-actions { gap: 12px !important; }
.me-store-actions > .me-btn, .me-store-actions > .me-add-form { flex: 1; }
.me-store-actions .me-add-form .me-btn { width: 100%; }
@media (min-width: 768px) { .me-store-actions { flex-direction: row !important; } }
.me-card-actions > .me-add-form { flex: 1; }
.me-card-actions .me-add-form .me-btn { width: 100%; }

/* sub-menus: bigger text (user 2026-09-23) — names 19 px, descriptions 14.5 px, wider box */
.me-nav-menu .me-submenu { min-width: 340px !important; width: 340px !important; padding: 12px 0 !important; }
.me-nav-menu .me-submenu a { padding: 14px 24px !important; }
.me-nav-menu .me-submenu a strong { font-family: var(--me-serif) !important; font-size: 19px !important; font-weight: 400 !important; line-height: 1.25 !important; }
.me-nav-menu .me-submenu a span { font-family: var(--me-sans) !important; font-size: 14.5px !important; line-height: 1.45 !important; margin-top: 3px; display: block; }
.me-mobile-drawer .me-mob-dropdown-list a strong { font-size: 18px !important; }
.me-mobile-drawer .me-mob-dropdown-list a span { font-size: 14.5px !important; line-height: 1.45 !important; display: block; }

/* catalogue: 3 (or 4) columns, promo boxes, clean price line */
@media (min-width: 992px) {
  .me-store-grid.me-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
  .me-store-grid.me-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)) !important; }
}
@media (min-width: 640px) and (max-width: 991px) { .me-store-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; } }
.me-store-meta { flex-wrap: wrap; gap: 4px 12px; align-items: baseline; }
.me-store-price { white-space: nowrap; }
.me-store-note { flex: 1 1 160px; text-align: right; line-height: 1.4; }
.me-store-promo { border-radius: 8px !important; min-height: 460px; }
.me-store-promo[hidden] { display: none !important; }
.me-store-promo .me-promo-body { padding: 44px 40px; max-width: 620px; gap: 14px; }
.me-store-promo h3 { font-size: clamp(1.8rem, 1.3rem + 1.6vw, 2.6rem); line-height: 1.08; }
.me-store-promo .me-promo-text p { font-size: 1.08rem; line-height: 1.6; }
.me-promo-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 6px; }
.me-promo-image .me-btn-line { border-color: rgb(255 255 255 / .7) !important; color: #fff !important; background: rgb(21 19 15 / .25) !important; }
.me-promo-image::after { background: linear-gradient(to top, rgb(21 19 15 / .88) 10%, rgb(21 19 15 / .35) 60%, rgb(21 19 15 / .15)); }
.me-promo-green { background: var(--me-footer-bg, #1D3B2C); color: var(--me-linen); }
.me-promo-green h3, .me-promo-green .me-promo-text p { color: #fff; }
.me-promo-green .me-card-kicker { color: var(--me-clay); }
@media (max-width: 749px) { .me-store-promo { min-height: 420px; } .me-store-promo .me-promo-body { padding: 32px 26px; } }

/* add-to-cart confirmation */
.me-cart-toast { position: fixed; right: 24px; top: 100px; z-index: 2000; width: min(340px, calc(100vw - 32px)); background: #fff; border: 1px solid var(--me-rule); border-top: 3px solid var(--me-oxide); border-radius: 8px; box-shadow: 0 18px 40px rgb(21 19 15 / .18); padding: 20px 22px; opacity: 0; transform: translateY(-8px); transition: opacity .25s ease, transform .25s ease; }
.me-cart-toast.is-in { opacity: 1; transform: none; }
.me-cart-toast__title { font-family: var(--me-serif); font-size: 1.3rem; color: var(--me-ink); margin: 0 0 14px; }
.me-cart-toast__btns { display: flex; gap: 10px; }
.me-cart-toast__btns .me-btn { flex: 1; text-align: center; }
@media (max-width: 575px) { .me-cart-toast { right: 16px; top: auto; bottom: 90px; } }

/* call-to-action band: fluid text (user 2026-09-23) — title and text use the full page width,
   lines balanced instead of a narrow centred column */
.me-cta h2 { max-width: none !important; text-wrap: balance; }
.me-cta .me-lead { max-width: 1120px !important; text-wrap: balance; }
/* top banners the same fluid style (user 2026-09-23): catalogue intro too */
.me-store-head { max-width: none !important; }
.me-store-heading { text-wrap: balance; }
.me-store-head .me-lead { max-width: 1120px !important; text-wrap: balance; }
.me-store-heading { font-size: clamp(2rem, 1.6rem + 1.6vw, 2.92rem) !important; line-height: 1.12; }

/* plain text slightly heavier (user 2026-09-23): Newsreader 300 → 360 (variable font, full range loaded) */
body, .me-root, .me-cms { font-weight: 360 !important; }
.me-root p, .me-root li, .me-lead, .me-prose, .me-card-body p, .me-product-desc, .me-store-desc,
.me-lin-item p, .me-slide-text, .me-promo-text p, .me-foot-tagline, #product .de-pdp__desc, #product .de-pdp__desc p,
#product .de-pdp__desc li, .de-cform .de-cform__input { font-weight: 360 !important; }
.me-quote, .me-foot-quote, .me-man-fig figcaption { font-weight: 340 !important; }

/* video strip: play button at the bottom centre, not over the face (user 2026-09-23) */
.me-strip-item .me-play-badge { top: auto !important; bottom: 24px; left: 50%; transform: translateX(-50%) !important; }
.me-video-link:hover .me-play-badge { transform: translateX(-50%) scale(1.12) !important; }
@media (max-width: 749px) { .me-strip-item .me-play-badge { bottom: 16px; width: 48px; height: 48px; } }
/* banners: text runs the full page width (balanced lines made short texts look narrow) */
.me-cta .me-lead, .me-store-head .me-lead { max-width: none !important; text-wrap: pretty !important; }

/* lists inside text blocks at the same size as the paragraphs; light-background step items more readable */
.me-prose ul { margin: 0 0 18px; padding-left: 1.2em; }
.me-prose li { font-size: 1.05rem !important; line-height: 1.6; margin-bottom: 6px; color: rgb(21 19 15 / .85); }
.me-section:not(.me-dark) .me-lin-item h4 { font-size: 1.25rem !important; margin-bottom: 8px; }
.me-section:not(.me-dark) .me-lin-item p { font-size: 1rem !important; line-height: 1.6; }

/* links inside numbered/channel items */
.me-lin-item .me-lin-link { font-family: var(--me-sans); font-size: .88rem; font-weight: 600; color: var(--me-oxide) !important; text-decoration: none; border-bottom: 1px solid currentColor; padding-bottom: 1px; }
.me-lin-item .me-lin-link:hover { color: var(--me-ink) !important; }
.me-dark .me-lin-item .me-lin-link { color: var(--me-clay) !important; }
/* banner titles: fill the full width; no balancing into two narrow halves on smaller screens */
.me-cta h2, .me-store-heading { max-width: none !important; text-wrap: pretty !important; }
/* banner titles scale with the screen so they stay on one line on laptops (1024–1440 px) */
.me-cta h2, .me-store-heading { font-size: clamp(1.9rem, 3.2vw, 2.92rem) !important; }

/* logo: the height is a header setting (now 100 px); me.css capped it at 82 px */
@media (min-width: 992px) { .me-header .me-logo-img { max-height: none !important; max-width: 420px !important; } }
@media (max-width: 991px) { .me-header .me-logo-img { max-height: 70px !important; } }
@media (max-width: 576px) { .me-header .me-logo-img { max-height: 58px !important; } }
