/*
Theme Name: EVEEN
Theme URI: https://eveen.ma
Author: EVEEN
Author URI: https://eveen.ma
Description: EVEEN — a premium, luxurious and feminine WooCommerce theme for beauty & cosmetics brands. Built from scratch with clean, modular PHP, HTML5, CSS3 and vanilla JavaScript. Fully responsive, WooCommerce-ready (Shop, Cart, Checkout, My Account), wishlist & quick-view ready, prices in Moroccan Dirham (MAD).
Version: 1.6.2
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: eveen
Tags: e-commerce, beauty, cosmetics, custom-colors, custom-menu, featured-images, translation-ready, woocommerce, rtl-language-support
WC requires at least: 7.0
WC tested up to: 9.0

EVEEN WordPress Theme, (C) 2026 EVEEN.
EVEEN is distributed under the terms of the GNU GPL.
*/

/* ==========================================================================
   TABLE OF CONTENTS
   1.  Design Tokens (CSS variables)
   2.  Reset & Base
   3.  Typography helpers
   4.  Buttons
   5.  Layout helpers
   6.  Announcement bar & top bar
   7.  Header / Navigation
   8.  Hero
   9.  Section headings
   10. Category cards
   11. Product cards
   12. About / Story
   13. Why choose us
   14. Testimonials
   15. Instagram gallery
   16. Newsletter
   17. Footer
   18. Blog / archive / single / comments
   19. Sidebar & widgets
   20. Pagination
   21. Mobile navigation & drawers
   22. Utilities, toast, back-to-top
   23. Accessibility
   ========================================================================== */

/* 1. Design Tokens
   ------------------------------------------------------------------------ */
:root {
    /* Brand colours: White · Soft Pink · Rose Pink */
    --eveen-white:      #ffffff;
    --eveen-blush:      #fceff3; /* soft pink surface */
    --eveen-blush-2:    #f8dee7; /* deeper soft pink */
    --eveen-blush-3:    #f4e9ee;
    --eveen-rose:       #c56a85; /* rose pink — primary */
    --eveen-rose-dark:  #a9506b; /* hover / active */
    --eveen-rose-soft:  #e7a8ba;
    --eveen-ink:        #3b2c34; /* deep plum text */
    --eveen-ink-soft:   #5a4a52;
    --eveen-muted:      #9b8a92;
    --eveen-line:       #f1dce4;
    --eveen-line-2:     #ecd6df;
    --eveen-gold:       #c9a66b; /* subtle luxury accent */
    --eveen-success:    #6fb98f;
    --eveen-wa:         #25d366;

    /* Typography */
    --eveen-display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    --eveen-script:  'Dancing Script', 'Brush Script MT', cursive;
    --eveen-body:    'Nunito Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;

    /* Structure */
    --eveen-max: 1240px;
    --eveen-gutter: clamp(18px, 4vw, 32px);
    --eveen-radius: 18px;
    --eveen-radius-lg: 26px;
    --eveen-radius-pill: 999px;

    /* Motion */
    --eveen-ease: cubic-bezier(.2, .7, .2, 1);
    --eveen-fast: .2s;
    --eveen-slow: .45s;

    /* Elevation */
    --eveen-shadow-sm: 0 8px 24px -18px rgba(59, 44, 52, .5);
    --eveen-shadow:    0 22px 45px -28px rgba(169, 80, 107, .45);
    --eveen-shadow-lg: 0 40px 80px -40px rgba(169, 80, 107, .5);
}

/* 2. Reset & Base
   ------------------------------------------------------------------------ */
*,
*::before,
*::after { box-sizing: border-box; }

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

body {
    margin: 0;
    font-family: var(--eveen-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--eveen-ink);
    background: var(--eveen-blush);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color var(--eveen-fast) var(--eveen-ease); }
button { font-family: inherit; }
ul, ol { margin: 0; padding: 0; }

h1, h2, h3, h4, h5 {
    font-family: var(--eveen-display);
    font-weight: 600;
    line-height: 1.08;
    color: var(--eveen-ink);
    margin: 0;
}

p { margin: 0 0 1rem; }

:focus-visible {
    outline: 2px solid var(--eveen-rose);
    outline-offset: 3px;
}

::selection { background: var(--eveen-blush-2); color: var(--eveen-ink); }

/* 3. Typography helpers
   ------------------------------------------------------------------------ */
.eveen-script {
    font-family: var(--eveen-script);
    font-weight: 700;
    color: var(--eveen-rose);
    line-height: 1;
}

.eveen-eyebrow {
    display: inline-block;
    font-family: var(--eveen-body);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--eveen-rose);
}

/* 4. Buttons
   ------------------------------------------------------------------------ */
.eveen-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-family: var(--eveen-body);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: .03em;
    padding: 15px 32px;
    border: 1.5px solid transparent;
    border-radius: var(--eveen-radius-pill);
    cursor: pointer;
    transition: all var(--eveen-fast) var(--eveen-ease);
    white-space: nowrap;
}
.eveen-btn svg { width: 18px; height: 18px; }
.eveen-btn--primary { background: var(--eveen-rose); color: #fff; }
.eveen-btn--primary:hover { background: var(--eveen-rose-dark); transform: translateY(-2px); box-shadow: var(--eveen-shadow); }
.eveen-btn--ink { background: var(--eveen-ink); color: #fff; }
.eveen-btn--ink:hover { background: #000; transform: translateY(-2px); }
.eveen-btn--outline { background: transparent; border-color: var(--eveen-ink); color: var(--eveen-ink); }
.eveen-btn--outline:hover { background: var(--eveen-ink); color: #fff; }
.eveen-btn--ghost { background: #fff; border-color: var(--eveen-line); color: var(--eveen-ink); }
.eveen-btn--ghost:hover { border-color: var(--eveen-rose); color: var(--eveen-rose); }
.eveen-btn--wa { background: var(--eveen-wa); color: #fff; }
.eveen-btn--wa:hover { filter: brightness(.95); }
.eveen-btn--block { width: 100%; }

/* 5. Layout helpers
   ------------------------------------------------------------------------ */
.eveen-wrap {
    max-width: var(--eveen-max);
    margin: 0 auto;
    padding-left: var(--eveen-gutter);
    padding-right: var(--eveen-gutter);
}
.eveen-section { padding: clamp(56px, 8vw, 96px) 0; }
.eveen-section--tight { padding: clamp(32px, 5vw, 56px) 0; }
.eveen-bg-white { background: var(--eveen-white); }
.eveen-bg-blush { background: var(--eveen-blush); }

/* 9. Section headings
   ------------------------------------------------------------------------ */
.eveen-shead {
    text-align: center;
    max-width: 640px;
    margin: 0 auto clamp(34px, 5vw, 52px);
}
.eveen-shead .eveen-script { font-size: clamp(1.7rem, 3vw, 2.2rem); }
.eveen-shead h2 {
    font-size: clamp(2.1rem, 4.4vw, 3.3rem);
    margin-top: 2px;
}
.eveen-shead p { color: var(--eveen-muted); margin-top: 12px; }
.eveen-shead--left { text-align: left; margin-left: 0; }

/* 6. Announcement bar & top bar
   ------------------------------------------------------------------------ */
.eveen-topbar {
    background: var(--eveen-ink);
    color: #e9d8df;
    font-size: 12.5px;
}
.eveen-topbar__in {
    max-width: var(--eveen-max);
    margin: 0 auto;
    padding: 9px var(--eveen-gutter);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}
.eveen-topbar__contact { display: flex; gap: 20px; flex-wrap: wrap; }
.eveen-topbar__contact a:hover { color: #fff; }
.eveen-topbar__social { display: flex; gap: 14px; }
.eveen-topbar__social a { display: grid; place-items: center; }
.eveen-topbar__social svg { width: 16px; height: 16px; }
.eveen-topbar__social a:hover { color: var(--eveen-rose-soft); }

.eveen-announce {
    background: var(--eveen-rose);
    color: #fff;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .04em;
    padding: 10px var(--eveen-gutter);
    position: relative;
}
.eveen-announce__close {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    opacity: .8;
    font-size: 16px;
    line-height: 1;
}
.eveen-announce__close:hover { opacity: 1; }
.eveen-announce--hidden { display: none; }

@media (max-width: 720px) {
    .eveen-topbar__contact { display: none; }
    .eveen-topbar__in { justify-content: center; }
}

/* 7. Header / Navigation
   ------------------------------------------------------------------------ */
.eveen-header {
    background: rgba(252, 239, 243, .9);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 60;
    border-bottom: 1px solid var(--eveen-line);
}
.eveen-header__in {
    max-width: var(--eveen-max);
    margin: 0 auto;
    padding: 0 var(--eveen-gutter);
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.eveen-brand {
    font-family: var(--eveen-display);
    font-weight: 700;
    font-size: 30px;
    letter-spacing: .16em;
    color: var(--eveen-ink);
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
}
.eveen-brand span { color: var(--eveen-rose); }
.eveen-brand img { max-height: 46px; width: auto; }

/* WordPress custom logo (the_custom_logo) — constrain to header height */
.eveen-header__brand .custom-logo-link { display: inline-flex; align-items: center; line-height: 0; }
.eveen-header__brand img.custom-logo { height: 48px; width: auto; max-width: 210px; }
@media (max-width: 600px) { .eveen-header__brand img.custom-logo { height: 40px; max-width: 160px; } }

.eveen-nav { display: flex; }
.eveen-nav ul { display: flex; gap: 32px; list-style: none; }
.eveen-nav li { position: relative; }
.eveen-nav a {
    font-weight: 600;
    font-size: 14.5px;
    letter-spacing: .02em;
    padding: 6px 0;
    position: relative;
}
.eveen-nav a::after {
    content: "";
    position: absolute;
    left: 0; bottom: -2px;
    width: 0; height: 2px;
    background: var(--eveen-rose);
    transition: width var(--eveen-fast) var(--eveen-ease);
}
.eveen-nav a:hover,
.eveen-nav .current-menu-item > a { color: var(--eveen-rose); }
.eveen-nav a:hover::after,
.eveen-nav .current-menu-item > a::after { width: 100%; }

/* Dropdown / sub-menu */
.eveen-nav .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 210px;
    background: #fff;
    border: 1px solid var(--eveen-line);
    border-radius: 14px;
    box-shadow: var(--eveen-shadow);
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all var(--eveen-fast) var(--eveen-ease);
    z-index: 5;
}
.eveen-nav li:hover > .sub-menu { opacity: 1; visibility: visible; transform: translateY(6px); }
.eveen-nav .sub-menu a { padding: 9px 14px; border-radius: 9px; font-size: 14px; }
.eveen-nav .sub-menu a::after { display: none; }
.eveen-nav .sub-menu a:hover { background: var(--eveen-blush); }

.eveen-header__actions { display: flex; align-items: center; gap: 8px; }
.eveen-iconbtn {
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--eveen-ink);
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    transition: background var(--eveen-fast) var(--eveen-ease), color var(--eveen-fast) var(--eveen-ease);
}
.eveen-iconbtn:hover { background: var(--eveen-blush-2); color: var(--eveen-rose); }
.eveen-iconbtn svg { width: 23px; height: 23px; }
.eveen-iconbtn .eveen-count {
    position: absolute;
    top: 2px; right: 2px;
    min-width: 19px; height: 19px;
    border-radius: var(--eveen-radius-pill);
    background: var(--eveen-rose);
    color: #fff;
    font-family: var(--eveen-body);
    font-size: 11px;
    font-weight: 800;
    display: grid;
    place-items: center;
    padding: 0 5px;
}
.eveen-burger { display: none; }

@media (max-width: 980px) {
    .eveen-nav { display: none; }
    .eveen-burger { display: grid; }
}

/* 8. Hero
   ------------------------------------------------------------------------ */
.eveen-hero { overflow: hidden; position: relative; }
.eveen-hero__grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: clamp(24px, 5vw, 56px);
    align-items: center;
    padding: clamp(30px, 6vw, 60px) 0;
}
.eveen-hero__content .eveen-script { font-size: clamp(1.9rem, 3.4vw, 2.9rem); display: block; margin-bottom: 2px; }
.eveen-hero__content h1 {
    font-size: clamp(3rem, 7vw, 5.6rem);
    line-height: 1;
    letter-spacing: -.01em;
}
.eveen-hero__content p {
    color: var(--eveen-ink-soft);
    font-size: 1.12rem;
    margin: 20px 0 30px;
    max-width: 40ch;
}
.eveen-hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.eveen-hero__badges {
    display: flex;
    gap: 26px;
    margin-top: 34px;
    flex-wrap: wrap;
}
.eveen-hero__badges div { display: flex; align-items: center; gap: 9px; font-weight: 600; font-size: 13.5px; }
.eveen-hero__badges svg { width: 20px; height: 20px; color: var(--eveen-rose); flex: none; }

.eveen-hero__media { position: relative; display: flex; justify-content: center; }
.eveen-hero__media .eveen-ring {
    position: absolute;
    inset: 6% 12%;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 40%, var(--eveen-blush-2), var(--eveen-blush));
}
.eveen-hero__media .eveen-ring::after {
    content: "";
    position: absolute;
    inset: -18px;
    border: 1.5px dashed var(--eveen-rose-soft);
    border-radius: 50%;
    opacity: .55;
}
.eveen-hero__media img {
    position: relative;
    width: 100%;
    max-width: 460px;
    aspect-ratio: 3 / 3.7;
    object-fit: cover;
    border-radius: 300px 300px 26px 26px;
    box-shadow: var(--eveen-shadow-lg);
}
.eveen-hero__off {
    position: absolute;
    top: 12%;
    left: 2%;
    background: var(--eveen-rose);
    color: #fff;
    width: 104px;
    height: 104px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    text-align: center;
    line-height: 1.05;
    box-shadow: 0 18px 40px -14px rgba(197, 106, 133, .7);
    transform: rotate(-12deg);
    animation: eveen-float 5s ease-in-out infinite;
}
.eveen-hero__off b { font-family: var(--eveen-display); font-weight: 700; font-size: 2rem; display: block; }
.eveen-hero__off small { font-size: 10px; letter-spacing: .12em; }

@keyframes eveen-float { 0%, 100% { transform: rotate(-12deg) translateY(0); } 50% { transform: rotate(-12deg) translateY(-10px); } }

@media (max-width: 900px) {
    .eveen-hero__grid { grid-template-columns: 1fr; text-align: center; }
    .eveen-hero__content p { margin-left: auto; margin-right: auto; }
    .eveen-hero__actions, .eveen-hero__badges { justify-content: center; }
    .eveen-hero__media { order: -1; }
    .eveen-hero__off { left: 8%; }
}

/* Text-only, centered hero variant (no media column) */
.eveen-hero--centered .eveen-hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
    padding: clamp(56px, 9vw, 104px) 0;
}
.eveen-hero--centered .eveen-hero__content { max-width: 760px; margin: 0 auto; }
.eveen-hero--centered .eveen-hero__content p { margin-left: auto; margin-right: auto; }
.eveen-hero--centered .eveen-hero__actions,
.eveen-hero--centered .eveen-hero__badges { justify-content: center; }

/* Hero background image + readability overlay */
.eveen-hero--bg {
    position: relative;
    background-image: url('assets/images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.eveen-hero--bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(252, 239, 243, .3), rgba(252, 239, 243, .55));
    pointer-events: none;
}
.eveen-hero--bg .eveen-wrap { position: relative; z-index: 1; }

/* 10. Category cards
   ------------------------------------------------------------------------ */
.eveen-cats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(14px, 2vw, 24px);
}
.eveen-cat {
    position: relative;
    display: block;
    border-radius: var(--eveen-radius-lg);
    overflow: hidden;
    aspect-ratio: 3 / 3.6;
    background: var(--eveen-blush-2);
    box-shadow: var(--eveen-shadow-sm);
}
.eveen-cat img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform var(--eveen-slow) var(--eveen-ease);
}
.eveen-cat:hover img { transform: scale(1.06); }
.eveen-cat::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(59, 44, 52, .62), rgba(59, 44, 52, 0) 55%);
}
.eveen-cat__label {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    z-index: 2;
    padding: 22px 20px;
    color: #fff;
    text-align: center;
}
.eveen-cat__label h3 { color: #fff; font-size: 1.5rem; }
.eveen-cat__label span {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .06em;
    opacity: .9;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
}
@media (max-width: 900px) { .eveen-cats { grid-template-columns: repeat(2, 1fr); } }

/* 11. Product cards
   ------------------------------------------------------------------------ */
.eveen-products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(16px, 2vw, 26px);
}
@media (max-width: 1024px) { .eveen-products { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px)  { .eveen-products { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px)  { .eveen-products { grid-template-columns: 1fr; } }

.eveen-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--eveen-line);
    border-radius: var(--eveen-radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform var(--eveen-fast) var(--eveen-ease), box-shadow var(--eveen-fast) var(--eveen-ease);
}
.eveen-card:hover { transform: translateY(-6px); box-shadow: var(--eveen-shadow); }
.eveen-card__media {
    position: relative;
    aspect-ratio: 1 / 1;
    background: var(--eveen-blush-2);
    overflow: hidden;
    display: block;
}
.eveen-card__media img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform var(--eveen-slow) var(--eveen-ease);
}
.eveen-card:hover .eveen-card__media img { transform: scale(1.06); }

.eveen-badge {
    position: absolute;
    top: 12px; left: 12px;
    z-index: 3;
    color: #fff;
    font-family: var(--eveen-body);
    font-weight: 800;
    font-size: 10.5px;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 5px 11px;
    border-radius: 7px;
}
.eveen-badge--sale { background: var(--eveen-success); }
.eveen-badge--new  { background: var(--eveen-rose); }
.eveen-badge--best { background: var(--eveen-ink); }
.eveen-badge--soldout { background: var(--eveen-muted); }

/* Floating actions (wishlist / quick view) */
.eveen-card__actions {
    position: absolute;
    top: 12px; right: 12px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateX(10px);
    transition: all var(--eveen-fast) var(--eveen-ease);
}
.eveen-card:hover .eveen-card__actions { opacity: 1; transform: translateX(0); }
.eveen-card__act {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--eveen-line);
    display: grid;
    place-items: center;
    cursor: pointer;
    color: var(--eveen-ink);
    box-shadow: var(--eveen-shadow-sm);
    transition: all var(--eveen-fast) var(--eveen-ease);
}
.eveen-card__act:hover { background: var(--eveen-rose); color: #fff; border-color: var(--eveen-rose); }
.eveen-card__act svg { width: 17px; height: 17px; }
.eveen-card__act.is-active { background: var(--eveen-rose); color: #fff; border-color: var(--eveen-rose); }
.eveen-card__act.is-active svg { fill: currentColor; }

@media (hover: none) {
    .eveen-card__actions { opacity: 1; transform: none; }
}

.eveen-card__body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
    text-align: center;
}
.eveen-card__cat {
    font-weight: 700;
    font-size: 10.5px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--eveen-rose);
}
.eveen-card__title { font-size: 1.35rem; margin: 4px 0 6px; }
.eveen-card__title a:hover { color: var(--eveen-rose); }
.eveen-card__rating { color: var(--eveen-gold); font-size: 13px; letter-spacing: 2px; margin-bottom: 4px; }
.eveen-card__price {
    font-family: var(--eveen-display);
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--eveen-rose);
    margin: auto 0 14px;
    /* Flex so the sale price and the struck regular price never overlap (they
       did in RTL with inline margins). Sale price first, then regular. */
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 8px;
}
.eveen-card__price del { color: var(--eveen-muted); font-size: .85em; margin: 0; font-weight: 500; order: 2; }
.eveen-card__price ins { text-decoration: none; order: 1; }
.eveen-card__price .eveen-cur { font-family: var(--eveen-body); font-size: .72rem; font-weight: 600; color: var(--eveen-muted); }

.eveen-add {
    background: var(--eveen-ink);
    color: #fff;
    border: none;
    border-radius: var(--eveen-radius-pill);
    padding: 12px 16px;
    font-family: var(--eveen-body);
    font-weight: 700;
    font-size: 13.5px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background var(--eveen-fast) var(--eveen-ease);
}
.eveen-add:hover { background: var(--eveen-rose); }
.eveen-add svg { width: 16px; height: 16px; }
.eveen-add.loading { opacity: .7; pointer-events: none; }
.eveen-add.added { background: var(--eveen-success); }

/* 12. About / Story
   ------------------------------------------------------------------------ */
.eveen-story__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(28px, 5vw, 60px);
    align-items: center;
}
.eveen-story__media {
    position: relative;
    border-radius: var(--eveen-radius-lg);
    overflow: hidden;
    box-shadow: var(--eveen-shadow);
}
.eveen-story__media img { width: 100%; aspect-ratio: 4 / 3.4; object-fit: cover; }
.eveen-story__badge {
    position: absolute;
    bottom: 20px; right: 20px;
    background: #fff;
    border-radius: var(--eveen-radius);
    padding: 16px 20px;
    text-align: center;
    box-shadow: var(--eveen-shadow);
}
.eveen-story__badge b { font-family: var(--eveen-display); font-size: 1.9rem; color: var(--eveen-rose); display: block; }
.eveen-story__badge small { font-size: 11px; letter-spacing: .08em; color: var(--eveen-muted); text-transform: uppercase; }
.eveen-story__content h2 { font-size: clamp(2rem, 3.8vw, 3rem); margin-top: 4px; }
.eveen-story__content p { color: var(--eveen-ink-soft); margin-top: 14px; }
.eveen-story__list { list-style: none; margin: 22px 0; display: grid; gap: 12px; }
.eveen-story__list li { display: flex; align-items: center; gap: 12px; font-weight: 600; }
.eveen-story__list svg { width: 22px; height: 22px; color: var(--eveen-rose); flex: none; }
@media (max-width: 880px) { .eveen-story__grid { grid-template-columns: 1fr; } .eveen-story__media { order: -1; } }

/* 13. Why choose us
   ------------------------------------------------------------------------ */
.eveen-why {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(14px, 2vw, 22px);
}
.eveen-why__item {
    background: #fff;
    border: 1px solid var(--eveen-line);
    border-radius: var(--eveen-radius);
    text-align: center;
    padding: 30px 20px;
    transition: transform var(--eveen-fast) var(--eveen-ease), box-shadow var(--eveen-fast) var(--eveen-ease);
}
.eveen-why__item:hover { transform: translateY(-5px); box-shadow: var(--eveen-shadow); }
.eveen-why__ic {
    width: 60px; height: 60px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: var(--eveen-blush-2);
    color: var(--eveen-rose);
    display: grid;
    place-items: center;
}
.eveen-why__ic svg { width: 27px; height: 27px; }
.eveen-why__item h4 { font-size: 1.3rem; margin-bottom: 6px; }
.eveen-why__item p { color: var(--eveen-muted); font-size: 13.5px; margin: 0; }
@media (max-width: 760px) { .eveen-why { grid-template-columns: 1fr 1fr; } }

/* 14. Testimonials
   ------------------------------------------------------------------------ */
.eveen-testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(16px, 2vw, 26px);
}
.eveen-testi {
    background: #fff;
    border: 1px solid var(--eveen-line);
    border-radius: var(--eveen-radius-lg);
    padding: 30px 26px;
    position: relative;
}
.eveen-testi__stars { color: var(--eveen-gold); letter-spacing: 3px; margin-bottom: 14px; font-size: 15px; }
.eveen-testi__text { color: var(--eveen-ink-soft); font-style: italic; font-size: 1.05rem; }
.eveen-testi__author { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.eveen-testi__avatar {
    width: 46px; height: 46px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--eveen-blush-2);
    display: grid;
    place-items: center;
    font-family: var(--eveen-display);
    font-size: 1.2rem;
    color: var(--eveen-rose);
    font-weight: 700;
}
.eveen-testi__name { font-weight: 700; }
.eveen-testi__role { font-size: 12.5px; color: var(--eveen-muted); }
@media (max-width: 860px) { .eveen-testimonials { grid-template-columns: 1fr; } }

/* 15. Instagram gallery
   ------------------------------------------------------------------------ */
.eveen-insta {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}
.eveen-insta a {
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: 14px;
    overflow: hidden;
    background: var(--eveen-blush-2);
}
.eveen-insta img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--eveen-slow) var(--eveen-ease); }
.eveen-insta a:hover img { transform: scale(1.08); }
.eveen-insta a::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(197, 106, 133, .35);
    opacity: 0;
    transition: opacity var(--eveen-fast) var(--eveen-ease);
}
.eveen-insta a:hover::after { opacity: 1; }
@media (max-width: 900px) { .eveen-insta { grid-template-columns: repeat(3, 1fr); } }

/* 16. Newsletter
   ------------------------------------------------------------------------ */
.eveen-newsletter {
    background: linear-gradient(135deg, var(--eveen-rose), var(--eveen-rose-dark));
    color: #fff;
    border-radius: var(--eveen-radius-lg);
    padding: clamp(36px, 6vw, 64px);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.eveen-newsletter::before,
.eveen-newsletter::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
}
.eveen-newsletter::before { width: 260px; height: 260px; top: -120px; right: -60px; }
.eveen-newsletter::after { width: 200px; height: 200px; bottom: -110px; left: -50px; }
.eveen-newsletter > * { position: relative; z-index: 1; }
.eveen-newsletter .eveen-script { color: #fff; font-size: clamp(1.7rem, 3vw, 2.2rem); }
.eveen-newsletter h2 { color: #fff; font-size: clamp(1.9rem, 3.6vw, 2.8rem); margin-top: 2px; }
.eveen-newsletter p { color: rgba(255, 255, 255, .9); max-width: 46ch; margin: 12px auto 26px; }
.eveen-newsletter__form {
    display: flex;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}
.eveen-newsletter__form input {
    flex: 1;
    min-width: 220px;
    border: none;
    border-radius: var(--eveen-radius-pill);
    padding: 15px 22px;
    font-family: var(--eveen-body);
    font-size: 15px;
    background: rgba(255, 255, 255, .95);
    color: var(--eveen-ink);
}
.eveen-newsletter__form input:focus { outline: 2px solid #fff; }
.eveen-newsletter__form button { background: var(--eveen-ink); color: #fff; }
.eveen-newsletter__form button:hover { background: #000; }

/* 17. Footer
   ------------------------------------------------------------------------ */
.eveen-footer { background: var(--eveen-ink); color: #c9bdc4; padding: clamp(48px, 7vw, 72px) 0 26px; }
.eveen-footer__grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
    gap: clamp(24px, 4vw, 44px);
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}
.eveen-footer .eveen-brand { color: #fff; font-size: 28px; margin-bottom: 14px; }
.eveen-footer img.custom-logo { height: 44px; width: auto; max-width: 190px; margin-bottom: 16px; }
.eveen-footer .eveen-brand span { color: var(--eveen-rose-soft); }
.eveen-footer h4 { color: #fff; font-size: 1.15rem; margin-bottom: 16px; }
.eveen-footer p { font-size: 14.5px; max-width: 32ch; }
.eveen-footer ul { list-style: none; }
.eveen-footer li { margin-bottom: 10px; }
.eveen-footer a:hover { color: var(--eveen-rose-soft); }
.eveen-footer__social { display: flex; gap: 12px; margin-top: 18px; }
.eveen-footer__social a {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .18);
    display: grid;
    place-items: center;
    transition: all var(--eveen-fast) var(--eveen-ease);
}
.eveen-footer__social a:hover { background: var(--eveen-rose); border-color: var(--eveen-rose); color: #fff; }
.eveen-footer__social svg { width: 18px; height: 18px; }
.eveen-footer__contact li { display: flex; gap: 10px; align-items: flex-start; }
.eveen-footer__contact svg { width: 18px; height: 18px; color: var(--eveen-rose-soft); flex: none; margin-top: 3px; }
.eveen-footer__bottom {
    text-align: center;
    padding-top: 24px;
    font-size: 13px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}
.eveen-footer__bottom a { color: var(--eveen-rose-soft); }
.eveen-footer__pay { display: flex; gap: 8px; align-items: center; opacity: .8; }
@media (max-width: 860px) { .eveen-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .eveen-footer__grid { grid-template-columns: 1fr; } }

/* 18. Blog / archive / single / page
   ------------------------------------------------------------------------ */
.eveen-content-area { padding: clamp(40px, 6vw, 72px) 0; }
.eveen-layout { display: grid; grid-template-columns: 1fr; gap: 44px; }
.eveen-layout--sidebar { grid-template-columns: minmax(0, 1fr) 320px; }
@media (max-width: 900px) { .eveen-layout--sidebar { grid-template-columns: 1fr; } }

.eveen-page-header { text-align: center; margin-bottom: clamp(30px, 5vw, 48px); }
.eveen-page-header h1 { font-size: clamp(2.2rem, 4.6vw, 3.4rem); }
.eveen-page-header .eveen-crumbs { color: var(--eveen-muted); font-size: 13px; margin-top: 10px; }
.eveen-crumbs a:hover { color: var(--eveen-rose); }

.eveen-posts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
@media (max-width: 680px) { .eveen-posts { grid-template-columns: 1fr; } }

.eveen-post-card {
    background: #fff;
    border: 1px solid var(--eveen-line);
    border-radius: var(--eveen-radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform var(--eveen-fast) var(--eveen-ease), box-shadow var(--eveen-fast) var(--eveen-ease);
}
.eveen-post-card:hover { transform: translateY(-5px); box-shadow: var(--eveen-shadow); }
.eveen-post-card__media { aspect-ratio: 16 / 10; overflow: hidden; background: var(--eveen-blush-2); }
.eveen-post-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--eveen-slow) var(--eveen-ease); }
.eveen-post-card:hover .eveen-post-card__media img { transform: scale(1.05); }
.eveen-post-card__body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.eveen-post-card__meta { font-size: 12px; letter-spacing: .06em; text-transform: uppercase; color: var(--eveen-rose); font-weight: 700; margin-bottom: 8px; }
.eveen-post-card__title { font-size: 1.5rem; margin-bottom: 10px; }
.eveen-post-card__title a:hover { color: var(--eveen-rose); }
.eveen-post-card__excerpt { color: var(--eveen-muted); font-size: 14.5px; flex: 1; }
.eveen-post-card__more { margin-top: 16px; font-weight: 700; color: var(--eveen-rose); display: inline-flex; align-items: center; gap: 6px; }
.eveen-post-card__more:hover { gap: 10px; }

/* Single post */
.eveen-single { max-width: 820px; margin: 0 auto; }
.eveen-single__hero { text-align: center; margin-bottom: 34px; }
.eveen-single__hero h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); margin: 14px 0; }
.eveen-single__meta { color: var(--eveen-muted); font-size: 13.5px; display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }
.eveen-single__thumb { border-radius: var(--eveen-radius-lg); overflow: hidden; margin-bottom: 34px; box-shadow: var(--eveen-shadow); }
.eveen-prose { font-size: 1.08rem; line-height: 1.8; color: var(--eveen-ink-soft); }
.eveen-prose h2, .eveen-prose h3 { color: var(--eveen-ink); margin: 1.8em 0 .6em; }
.eveen-prose h2 { font-size: 1.9rem; }
.eveen-prose h3 { font-size: 1.5rem; }
.eveen-prose a { color: var(--eveen-rose); text-decoration: underline; text-underline-offset: 3px; }
.eveen-prose img { border-radius: var(--eveen-radius); margin: 1.5em 0; }
.eveen-prose blockquote {
    border-left: 4px solid var(--eveen-rose);
    background: var(--eveen-blush);
    padding: 18px 24px;
    border-radius: 0 14px 14px 0;
    margin: 1.5em 0;
    font-family: var(--eveen-display);
    font-size: 1.3rem;
    color: var(--eveen-ink);
}
.eveen-prose ul, .eveen-prose ol { padding-left: 1.4em; margin: 1em 0; }
.eveen-prose li { margin-bottom: .5em; }
.eveen-prose code { background: var(--eveen-blush-2); padding: 2px 7px; border-radius: 6px; font-size: .9em; }
.eveen-prose pre { background: var(--eveen-ink); color: #f5e9ee; padding: 20px; border-radius: 14px; overflow: auto; }
.eveen-prose pre code { background: none; padding: 0; }

.eveen-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 34px 0; }
.eveen-tags a {
    font-size: 12.5px;
    font-weight: 600;
    padding: 6px 14px;
    background: var(--eveen-blush);
    border: 1px solid var(--eveen-line);
    border-radius: var(--eveen-radius-pill);
}
.eveen-tags a:hover { background: var(--eveen-rose); color: #fff; border-color: var(--eveen-rose); }

.eveen-post-nav { display: flex; justify-content: space-between; gap: 16px; margin: 40px 0; flex-wrap: wrap; }
.eveen-post-nav a { flex: 1; min-width: 200px; padding: 20px; background: #fff; border: 1px solid var(--eveen-line); border-radius: var(--eveen-radius); }
.eveen-post-nav a:hover { border-color: var(--eveen-rose); }
.eveen-post-nav small { color: var(--eveen-muted); font-size: 12px; text-transform: uppercase; letter-spacing: .06em; }
.eveen-post-nav .t { font-family: var(--eveen-display); font-size: 1.2rem; color: var(--eveen-ink); }
.eveen-post-nav .next { text-align: right; }

/* 19. Sidebar & widgets
   ------------------------------------------------------------------------ */
.eveen-sidebar .widget { background: #fff; border: 1px solid var(--eveen-line); border-radius: var(--eveen-radius); padding: 24px; margin-bottom: 24px; }
.eveen-sidebar .widget-title { font-size: 1.3rem; margin-bottom: 16px; position: relative; padding-bottom: 12px; }
.eveen-sidebar .widget-title::after { content: ""; position: absolute; left: 0; bottom: 0; width: 40px; height: 3px; background: var(--eveen-rose); border-radius: 3px; }
.eveen-sidebar ul { list-style: none; }
.eveen-sidebar li { margin-bottom: 10px; padding-bottom: 10px; border-bottom: 1px solid var(--eveen-line); }
.eveen-sidebar li:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.eveen-sidebar a:hover { color: var(--eveen-rose); }
.eveen-sidebar .searchform, .eveen-sidebar .search-form { display: flex; gap: 8px; }
.eveen-search { display: flex; gap: 8px; }
.eveen-search input[type="search"], .eveen-sidebar input[type="search"] {
    flex: 1;
    border: 1.5px solid var(--eveen-line);
    border-radius: var(--eveen-radius-pill);
    padding: 12px 18px;
    font-family: var(--eveen-body);
    background: #fff;
    color: var(--eveen-ink);
}
.eveen-search input[type="search"]:focus, .eveen-sidebar input[type="search"]:focus { outline: none; border-color: var(--eveen-rose); }
.eveen-search button { background: var(--eveen-rose); color: #fff; border: none; border-radius: var(--eveen-radius-pill); padding: 0 18px; cursor: pointer; display: grid; place-items: center; }
.eveen-search button:hover { background: var(--eveen-rose-dark); }
.eveen-search button svg { width: 18px; height: 18px; }

/* 20. Pagination
   ------------------------------------------------------------------------ */
.eveen-pagination { display: flex; justify-content: center; margin-top: 48px; }
.eveen-pagination .page-numbers {
    display: inline-grid;
    place-items: center;
    min-width: 44px; height: 44px;
    padding: 0 12px;
    margin: 0 4px;
    border-radius: var(--eveen-radius-pill);
    background: #fff;
    border: 1px solid var(--eveen-line);
    font-weight: 700;
    color: var(--eveen-ink);
    transition: all var(--eveen-fast) var(--eveen-ease);
}
.eveen-pagination .page-numbers:hover,
.eveen-pagination .page-numbers.current { background: var(--eveen-rose); color: #fff; border-color: var(--eveen-rose); }

/* 21. Mobile navigation & drawers
   ------------------------------------------------------------------------ */
.eveen-overlay {
    position: fixed;
    inset: 0;
    background: rgba(59, 44, 52, .5);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    z-index: 90;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--eveen-fast) var(--eveen-ease);
}
.eveen-overlay.is-open { opacity: 1; pointer-events: auto; }

.eveen-drawer {
    position: fixed;
    top: 0;
    height: 100%;
    width: 400px;
    max-width: 90vw;
    background: var(--eveen-blush);
    z-index: 95;
    display: flex;
    flex-direction: column;
    transition: transform var(--eveen-slow) var(--eveen-ease);
    box-shadow: -30px 0 60px -20px rgba(0, 0, 0, .4);
}
.eveen-drawer--right { right: 0; transform: translateX(100%); }
.eveen-drawer--left  { left: 0;  transform: translateX(-100%); }
.eveen-drawer.is-open { transform: none; }
.eveen-drawer__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 24px;
    border-bottom: 1px solid var(--eveen-line);
}
.eveen-drawer__head h3 { font-size: 1.5rem; }
.eveen-drawer__close {
    background: #fff;
    border: 1px solid var(--eveen-line);
    width: 38px; height: 38px;
    border-radius: 11px;
    cursor: pointer;
    font-size: 17px;
    color: var(--eveen-ink);
    display: grid;
    place-items: center;
}
.eveen-drawer__close:hover { border-color: var(--eveen-rose); color: var(--eveen-rose); }
.eveen-drawer__body { flex: 1; overflow: auto; padding: 20px 24px; }

/* Mobile nav list */
.eveen-mobile-nav ul { list-style: none; }
.eveen-mobile-nav li { border-bottom: 1px solid var(--eveen-line); }
.eveen-mobile-nav a { display: block; padding: 15px 4px; font-family: var(--eveen-display); font-size: 1.35rem; }
.eveen-mobile-nav a:hover { color: var(--eveen-rose); }
.eveen-mobile-nav .sub-menu { padding-left: 16px; }
.eveen-mobile-nav .sub-menu a { font-size: 1.1rem; padding: 11px 4px; }

/* 22. Utilities, toast, floating buttons
   ------------------------------------------------------------------------ */
.eveen-toast {
    position: fixed;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%) translateY(20px);
    background: var(--eveen-ink);
    color: #fff;
    padding: 14px 24px;
    border-radius: var(--eveen-radius-pill);
    font-weight: 600;
    font-size: 14px;
    z-index: 120;
    opacity: 0;
    pointer-events: none;
    transition: all var(--eveen-fast) var(--eveen-ease);
    box-shadow: var(--eveen-shadow);
    display: flex;
    align-items: center;
    gap: 10px;
}
.eveen-toast.is-visible { opacity: 1; transform: translateX(-50%) translateY(0); }
.eveen-toast svg { width: 18px; height: 18px; color: var(--eveen-success); }

.eveen-wa-float {
    position: fixed;
    bottom: 24px; left: 24px;
    z-index: 70;
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--eveen-wa);
    display: grid;
    place-items: center;
    box-shadow: 0 14px 32px -8px rgba(37, 211, 102, .6);
    transition: transform var(--eveen-fast) var(--eveen-ease);
}
.eveen-wa-float:hover { transform: scale(1.08); }
.eveen-wa-float svg { width: 28px; height: 28px; color: #fff; }

.eveen-totop {
    position: fixed;
    bottom: 24px; right: 24px;
    z-index: 70;
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--eveen-ink);
    color: #fff;
    border: none;
    cursor: pointer;
    display: grid;
    place-items: center;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: all var(--eveen-fast) var(--eveen-ease);
}
.eveen-totop.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.eveen-totop:hover { background: var(--eveen-rose); }
.eveen-totop svg { width: 20px; height: 20px; }

/* Reveal on scroll */
.eveen-reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--eveen-ease), transform .7s var(--eveen-ease); }
.eveen-reveal.is-visible { opacity: 1; transform: none; }

/* 23. Accessibility
   ------------------------------------------------------------------------ */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px; width: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    word-wrap: normal !important;
}
.skip-link {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 200;
    background: var(--eveen-ink);
    color: #fff;
    padding: 12px 20px;
    border-radius: 0 0 12px 0;
    transform: translateY(-130%);   /* hide upward — no horizontal overflow (safe for RTL) */
    transition: transform var(--eveen-fast) var(--eveen-ease);
}
.skip-link:focus { transform: translateY(0); }

/* Search slide-down panel (available without WooCommerce) */
.eveen-search-panel {
    background: var(--eveen-blush);
    border-bottom: 1px solid var(--eveen-line);
    overflow: hidden;
    max-height: 0;
    transition: max-height var(--eveen-fast) var(--eveen-ease), padding var(--eveen-fast) var(--eveen-ease);
}
.eveen-search-panel[hidden] { display: block; }
.eveen-search-panel.is-open { max-height: 130px; padding: 20px 0; }

/* Generic modal (Quick View reuses these) */
.eveen-modal {
    position: fixed;
    inset: 0;
    z-index: 110;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(59, 44, 52, .6);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}
.eveen-modal.is-open { display: flex; }
.eveen-modal__box {
    position: relative;
    background: #fff;
    border-radius: var(--eveen-radius-lg);
    width: 100%;
    max-width: 760px;
    max-height: 92vh;
    overflow: auto;
    box-shadow: var(--eveen-shadow-lg);
}
.eveen-modal__close { position: absolute; top: 16px; right: 16px; z-index: 3; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
    .eveen-reveal { opacity: 1; transform: none; }
}

/* ==========================================================================
   24. Homepage editorial rhythm
   Scoped to front-page section IDs only. Varies alignment, vertical spacing
   and container widths so sections no longer read as copy-pasted. No colours,
   type, images, products, markup or functionality are changed here.
   ========================================================================== */

/* --- Deliberately uneven vertical rhythm (guides the eye, adds breathing
       room to the key commercial + closing moments) --- */
#eveen-categories   { padding-top: clamp(52px, 7vw, 88px);  padding-bottom: clamp(38px, 5.5vw, 64px); }
#eveen-featured     { padding-top: clamp(74px, 10vw, 128px); padding-bottom: clamp(74px, 10vw, 128px); }
#eveen-about        { padding-top: clamp(64px, 9vw, 112px);  padding-bottom: clamp(64px, 9vw, 112px); }
#eveen-why          { padding-top: clamp(44px, 6vw, 74px);   padding-bottom: clamp(44px, 6vw, 74px); }
#eveen-testimonials { padding-top: clamp(74px, 10vw, 122px); padding-bottom: clamp(74px, 10vw, 122px); }
#eveen-instagram    { padding-top: clamp(56px, 8vw, 96px);   padding-bottom: clamp(38px, 5.5vw, 64px); }
#eveen-newsletter   { padding-top: clamp(76px, 11vw, 136px); padding-bottom: clamp(76px, 11vw, 136px); }

/* --- Alternate the centered default with left-aligned, editorial headers --- */
#eveen-categories .eveen-shead,
#eveen-why .eveen-shead,
#eveen-instagram .eveen-shead {
    text-align: left;
    margin-left: 0;
    margin-right: auto;
}
#eveen-categories .eveen-shead { max-width: 560px; }
#eveen-why .eveen-shead        { max-width: 500px; }
#eveen-instagram .eveen-shead  { max-width: 580px; }
#eveen-categories .eveen-shead p,
#eveen-instagram .eveen-shead p { margin-left: 0; }

/* Bespoke accent rule under the left-aligned titles (hand-finished detail) */
#eveen-categories .eveen-shead h2::after,
#eveen-why .eveen-shead h2::after,
#eveen-instagram .eveen-shead h2::after {
    content: "";
    display: block;
    width: 54px;
    height: 3px;
    margin-top: 20px;
    background: var(--eveen-rose);
    border-radius: 3px;
}

/* --- Container composition: subtle, intentional width variation --- */
#eveen-featured .eveen-shead     { max-width: 600px; }
#eveen-testimonials .eveen-shead { max-width: 520px; }   /* tighter, more poised */
#eveen-newsletter .eveen-newsletter { max-width: 1080px; margin-left: auto; margin-right: auto; }

/* Asymmetric two-column story for editorial balance (desktop only; the
   existing single-column mobile rule is preserved) */
@media (min-width: 881px) {
    #eveen-about .eveen-story__grid {
        grid-template-columns: 1.12fr 0.88fr;
        gap: clamp(40px, 6vw, 72px);
    }
}

/* On small screens, recentre the left-aligned heads so nothing feels lopsided */
@media (max-width: 600px) {
    #eveen-categories .eveen-shead,
    #eveen-why .eveen-shead,
    #eveen-instagram .eveen-shead { text-align: center; margin-left: auto; }
    #eveen-categories .eveen-shead h2::after,
    #eveen-why .eveen-shead h2::after,
    #eveen-instagram .eveen-shead h2::after { margin-left: auto; margin-right: auto; }
}

/* ==========================================================================
   25. Card visual language
   A deliberate radius / shadow / hover hierarchy so each card type reads as
   individually crafted while the system stays cohesive. Presentation only —
   no colours (all values are opacity variants of the existing ink & rose
   tokens), content, images, products or layout are changed.

   Radius hierarchy:  promo 30px  >  image 24px  >  testimonial 20px  >
                      product / feature 16px  >  small badge 14px
   ========================================================================== */

/* --- Product cards: tight radius, hairline translucent stroke, very subtle
       layered lift on hover --- */
.eveen-card {
    border-radius: 16px;
    border-color: rgba(59, 44, 52, .07);
    box-shadow: 0 1px 2px rgba(59, 44, 52, .04);
    transition: transform .28s var(--eveen-ease), box-shadow .28s var(--eveen-ease), border-color .28s var(--eveen-ease);
}
.eveen-card:hover {
    transform: translateY(-5px);
    border-color: rgba(197, 106, 133, .16);
    box-shadow: 0 2px 4px rgba(59, 44, 52, .05), 0 24px 44px -28px rgba(169, 80, 107, .30);
}
.eveen-card__body { padding: 20px 18px 22px; }

/* --- Category cards: softer image radius, depth from shadow (no border),
       a gentle lift that complements the existing image zoom --- */
.eveen-cat {
    border-radius: 24px;
    box-shadow: 0 12px 30px -22px rgba(59, 44, 52, .40);
    transition: transform .35s var(--eveen-ease), box-shadow .35s var(--eveen-ease);
}
.eveen-cat:hover {
    transform: translateY(-4px);
    box-shadow: 0 26px 50px -30px rgba(169, 80, 107, .38);
}

/* --- Feature cards: tighter radius, translucent stroke, gentle rose "glow"
       elevation on hover --- */
.eveen-why__item {
    border-radius: 16px;
    border-color: rgba(197, 106, 133, .10);
    padding: 34px 24px;
    box-shadow: 0 1px 2px rgba(59, 44, 52, .03), inset 0 1px 0 rgba(255, 255, 255, .6);
    transition: transform .3s var(--eveen-ease), box-shadow .3s var(--eveen-ease), border-color .3s var(--eveen-ease);
}
.eveen-why__item:hover {
    transform: translateY(-5px);
    border-color: rgba(197, 106, 133, .22);
    box-shadow: 0 24px 48px -26px rgba(197, 106, 133, .34), 0 2px 6px rgba(59, 44, 52, .04);
}

/* --- Testimonials: medium radius, near-invisible stroke, almost
       imperceptible movement — poise over motion --- */
.eveen-testi {
    border-radius: 20px;
    border-color: rgba(59, 44, 52, .05);
    padding: 34px 30px;
    box-shadow: 0 12px 34px -24px rgba(59, 44, 52, .26), inset 0 1px 0 rgba(255, 255, 255, .55);
    transition: transform .45s var(--eveen-ease), box-shadow .45s var(--eveen-ease);
}
.eveen-testi:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 44px -28px rgba(169, 80, 107, .24), inset 0 1px 0 rgba(255, 255, 255, .55);
}

/* --- Newsletter: the largest promotional block — softest corners and a
       broad, diffuse shadow so it reads as the anchor moment --- */
.eveen-newsletter {
    border-radius: 30px;
    box-shadow: 0 40px 82px -46px rgba(169, 80, 107, .48);
}

/* --- Story (About) accents: media softer, floating badge tight & crisp --- */
.eveen-story__media {
    border-radius: 24px;
    box-shadow: 0 26px 56px -34px rgba(169, 80, 107, .40);
}
.eveen-story__badge {
    border-radius: 14px;
    box-shadow: 0 18px 38px -20px rgba(59, 44, 52, .34), inset 0 1px 0 rgba(255, 255, 255, .7);
}

/* --- Post cards (blog/journal previews) tuned to match the product cards --- */
.eveen-post-card {
    border-color: rgba(59, 44, 52, .07);
    box-shadow: 0 1px 2px rgba(59, 44, 52, .04);
}
.eveen-post-card:hover {
    box-shadow: 0 2px 4px rgba(59, 44, 52, .05), 0 24px 44px -28px rgba(169, 80, 107, .28);
}

/* ==========================================================================
   26. Motion language
   One consistent, calm interaction system. Two shared easing curves, subtle
   180–300ms durations, transform/opacity only (GPU-friendly, no reflow).
   Motion only — no layout, colour, type or card styling is changed.
   ========================================================================== */
:root {
    --eveen-ease-out: cubic-bezier(.22, .61, .36, 1);  /* entrances, hovers */
    --eveen-ease-io:  cubic-bezier(.4, 0, .2, 1);      /* reversible states */
    --eveen-t-1: 180ms;  /* small, immediate */
    --eveen-t-2: 240ms;  /* default */
    --eveen-t-3: 300ms;  /* larger surfaces */
}

/* --- Buttons: softer hovers, natural press, elegant focus (no bounce) --- */
.eveen-btn {
    transition:
        background-color var(--eveen-t-2) var(--eveen-ease-out),
        border-color var(--eveen-t-2) var(--eveen-ease-out),
        color var(--eveen-t-2) var(--eveen-ease-out),
        transform var(--eveen-t-2) var(--eveen-ease-out),
        box-shadow var(--eveen-t-2) var(--eveen-ease-out);
}
.eveen-btn:active { transform: translateY(0) scale(.985); transition-duration: var(--eveen-t-1); }
.eveen-btn:focus-visible { outline: none; box-shadow: 0 0 0 3px rgba(197, 106, 133, .32); }
.eveen-add { transition: background-color var(--eveen-t-2) var(--eveen-ease-out), transform var(--eveen-t-1) var(--eveen-ease-out); }
.eveen-add:active { transform: scale(.98); }

/* --- Navigation: smooth underline, gentle icon + background fades --- */
.eveen-nav a::after { transition: width var(--eveen-t-2) var(--eveen-ease-out); }
.eveen-iconbtn {
    transition: background-color var(--eveen-t-2) var(--eveen-ease-out), color var(--eveen-t-2) var(--eveen-ease-out);
}
.eveen-iconbtn svg { transition: transform var(--eveen-t-2) var(--eveen-ease-out); }
.eveen-iconbtn:hover svg { transform: scale(1.08); }
.eveen-iconbtn:focus-visible { outline: none; box-shadow: 0 0 0 3px rgba(197, 106, 133, .28); }
.eveen-nav .sub-menu {
    transition: opacity var(--eveen-t-2) var(--eveen-ease-out), transform var(--eveen-t-2) var(--eveen-ease-out), visibility var(--eveen-t-2) linear;
}

/* --- Product cards: crisp hover timing, gentle staggered control reveal --- */
.eveen-card__actions { transition: opacity var(--eveen-t-2) var(--eveen-ease-out), transform var(--eveen-t-2) var(--eveen-ease-out); }
.eveen-card__act { transition: background-color var(--eveen-t-2) var(--eveen-ease-out), color var(--eveen-t-2) var(--eveen-ease-out), transform var(--eveen-t-1) var(--eveen-ease-out); }
.eveen-card:hover .eveen-card__act:nth-child(2) { transition-delay: 55ms; }  /* controls reveal in sequence */
.eveen-card__act:active { transform: scale(.94); }

/* --- Images: smooth, restrained zoom (transform only) --- */
.eveen-card__media img { transition: transform var(--eveen-slow) var(--eveen-ease-out); }
.eveen-card:hover .eveen-card__media img { transform: scale(1.045); }
.eveen-cat img { transition: transform var(--eveen-slow) var(--eveen-ease-out); }
.eveen-cat:hover img { transform: scale(1.05); }
.eveen-insta img { transition: transform var(--eveen-slow) var(--eveen-ease-out); }
.eveen-insta a:hover img { transform: scale(1.06); }
.eveen-post-card__media img { transition: transform var(--eveen-slow) var(--eveen-ease-out); }
.eveen-post-card:hover .eveen-post-card__media img { transform: scale(1.045); }

/* --- Floating controls: calmer scale --- */
.eveen-wa-float { transition: transform var(--eveen-t-2) var(--eveen-ease-out), box-shadow var(--eveen-t-2) var(--eveen-ease-out); }
.eveen-wa-float:hover { transform: scale(1.05); }
.eveen-totop { transition: opacity var(--eveen-t-2) var(--eveen-ease-out), transform var(--eveen-t-2) var(--eveen-ease-out), background-color var(--eveen-t-2) var(--eveen-ease-out); }

/* --- Section entrances: lighter rise, unified easing --- */
.eveen-reveal {
    transform: translateY(18px);
    transition: opacity var(--eveen-slow) var(--eveen-ease-out), transform var(--eveen-slow) var(--eveen-ease-out);
}

/* Stagger the cards within a revealed grid (opacity only, so hover transforms
   stay crisp). The parent grid handles the gentle rise; children fade in
   sequence for a hand-sequenced, editorial entrance. */
.eveen-cats.eveen-reveal > *,
.eveen-why.eveen-reveal > *,
.eveen-testimonials.eveen-reveal > *,
.eveen-products.eveen-reveal > * {
    opacity: 0;
    transition: opacity var(--eveen-t-3) var(--eveen-ease-out);
}
.eveen-cats.eveen-reveal.is-visible > *,
.eveen-why.eveen-reveal.is-visible > *,
.eveen-testimonials.eveen-reveal.is-visible > *,
.eveen-products.eveen-reveal.is-visible > * { opacity: 1; }
.eveen-reveal.is-visible > *:nth-child(1) { transition-delay: 40ms; }
.eveen-reveal.is-visible > *:nth-child(2) { transition-delay: 110ms; }
.eveen-reveal.is-visible > *:nth-child(3) { transition-delay: 180ms; }
.eveen-reveal.is-visible > *:nth-child(4) { transition-delay: 250ms; }
.eveen-reveal.is-visible > *:nth-child(5) { transition-delay: 320ms; }
.eveen-reveal.is-visible > *:nth-child(6) { transition-delay: 390ms; }

/* Honour reduced-motion for the new staggered children too */
@media (prefers-reduced-motion: reduce) {
    .eveen-cats.eveen-reveal > *,
    .eveen-why.eveen-reveal > *,
    .eveen-testimonials.eveen-reveal > *,
    .eveen-products.eveen-reveal > * { opacity: 1 !important; transition: none !important; }
}

/* ==========================================================================
   27. Typography refinements
   Editorial fine-tuning only: proportion, line-height, tracking, measure and
   text rhythm. No new fonts, no family or colour changes, no layout changes.
   ========================================================================== */

/* --- Base rhythm: calmer paragraph leading, confident heading tracking --- */
body { line-height: 1.68; letter-spacing: .001em; }
p { line-height: 1.68; }
h1, h2, h3, h4, h5 { letter-spacing: -.008em; }   /* subtle optical tightening on the serif */

/* --- Section heading system: script recedes, title leads, subtitle breathes.
       Sizes are tuned for proportion, not enlarged. --- */
.eveen-shead { max-width: 660px; }
.eveen-shead .eveen-script { font-size: clamp(1.5rem, 2.6vw, 1.95rem); letter-spacing: .01em; }
.eveen-shead h2 {
    font-size: clamp(2.05rem, 4.2vw, 3.15rem);
    line-height: 1.06;
    letter-spacing: -.014em;
    margin-top: 7px;
}
.eveen-shead p {
    font-size: 1.03rem;
    line-height: 1.62;
    margin-top: 15px;
    max-width: 52ch;
    margin-left: auto;
    margin-right: auto;
}
/* left-aligned heads keep their measure hard-left (set in §24) */
#eveen-categories .eveen-shead p,
#eveen-why .eveen-shead p,
#eveen-instagram .eveen-shead p { margin-left: 0; }

/* --- Hero: display confidence + comfortable measure --- */
.eveen-hero__content h1 { line-height: .97; letter-spacing: -.018em; }
.eveen-hero__content .eveen-script { letter-spacing: .01em; }
.eveen-hero__content p { font-size: 1.08rem; line-height: 1.62; max-width: 42ch; }

/* --- About / story: readable body measure, poised heading --- */
.eveen-story__content h2 { line-height: 1.06; letter-spacing: -.014em; }
.eveen-story__content p { font-size: 1.03rem; line-height: 1.72; max-width: 52ch; }
.eveen-story__list li { line-height: 1.4; }

/* --- Product metadata & cards --- */
.eveen-card__cat { font-size: 11px; letter-spacing: .16em; }
.eveen-card__title { line-height: 1.16; letter-spacing: -.006em; margin: 5px 0 7px; }
.eveen-card__price { letter-spacing: .004em; }

/* --- Category tile labels --- */
.eveen-cat__label h3 { letter-spacing: -.006em; }
.eveen-cat__label span { letter-spacing: .09em; }

/* --- Feature cards --- */
.eveen-why__item h4 { letter-spacing: -.006em; }
.eveen-why__item p { line-height: 1.6; }

/* --- Testimonials: a touch larger quote, tighter leading = editorial pull --- */
.eveen-testi__text { font-size: 1.12rem; line-height: 1.55; letter-spacing: -.003em; }
.eveen-testi__name { letter-spacing: .008em; }
.eveen-testi__role { letter-spacing: .04em; }

/* --- Newsletter --- */
.eveen-newsletter h2 { line-height: 1.08; letter-spacing: -.012em; }
.eveen-newsletter p { line-height: 1.6; max-width: 48ch; }

/* --- Small UI type: buttons, nav, eyebrows, brand, announcement --- */
.eveen-btn { letter-spacing: .045em; }
.eveen-nav a { letter-spacing: .015em; }
.eveen-eyebrow { letter-spacing: .24em; }
.eveen-brand { letter-spacing: .18em; }
.eveen-announce { letter-spacing: .015em; }
.eveen-topbar { letter-spacing: .008em; }

/* --- Footer: quieter, more legible --- */
.eveen-footer h4 { letter-spacing: .006em; }
.eveen-footer p { line-height: 1.7; }
.eveen-footer li { line-height: 1.6; }

/* --- Long-form prose (pages/posts): comfortable measure & leading --- */
.eveen-prose { line-height: 1.8; }
.eveen-prose p { max-width: 68ch; }

/* --- Form labels & widget titles --- */
.woocommerce form .form-row label { letter-spacing: .01em; }
.widget-title { letter-spacing: -.004em; }

/* ==========================================================================
   28. Closing CTA block (pink)
   Shares the newsletter block's language for a cohesive premium look.
   ========================================================================== */
.eveen-cta {
    background: linear-gradient(135deg, var(--eveen-rose), var(--eveen-rose-dark));
    color: #fff;
    border-radius: 30px;
    padding: clamp(40px, 6vw, 68px);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 82px -46px rgba(169, 80, 107, .48);
}
.eveen-cta::before,
.eveen-cta::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    pointer-events: none;
}
.eveen-cta::before { width: 260px; height: 260px; top: -120px; right: -60px; }
.eveen-cta::after  { width: 200px; height: 200px; bottom: -110px; left: -50px; }
.eveen-cta > * { position: relative; z-index: 1; }
.eveen-cta .eveen-script { color: #fff; font-size: clamp(1.5rem, 2.6vw, 1.95rem); }
.eveen-cta h2 {
    color: #fff;
    font-size: clamp(1.9rem, 3.6vw, 2.8rem);
    line-height: 1.08;
    letter-spacing: -.012em;
    margin-top: 2px;
}
.eveen-cta p {
    color: rgba(255, 255, 255, .9);
    max-width: 46ch;
    margin: 12px auto 26px;
    line-height: 1.6;
}
.eveen-cta__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
/* Generous closing rhythm to match the other anchor moments */
#eveen-cta { padding-top: clamp(56px, 8vw, 96px); padding-bottom: clamp(72px, 11vw, 128px); }

/* ==========================================================================
   29. Merged hero (opening section: hero text + brand-promise cards)
   ========================================================================== */
.eveen-hero--merged .eveen-hero__grid { padding-bottom: clamp(18px, 3vw, 34px); }
.eveen-hero__features-wrap { padding-bottom: clamp(48px, 8vw, 90px); }

/* Full product-range showcase image inside the hero */
.eveen-hero__showcase {
    max-width: 1120px;
    margin: clamp(8px, 2vw, 22px) auto clamp(40px, 6vw, 70px);
}
.eveen-hero__showcase img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: var(--eveen-radius-lg);
    box-shadow: var(--eveen-shadow);
}

/* --- Split hero: text left, product image right (Rosemary-style layout) --- */
.eveen-hero--split .eveen-hero__grid {
    grid-template-columns: 1fr 1.18fr;   /* image column wider so the photo fills the space */
    grid-template-areas: "content visual" "cta visual";
    align-items: center;
    text-align: left;
    gap: clamp(14px, 2.2vw, 26px) clamp(24px, 4vw, 56px);
}
.eveen-hero--split .eveen-hero__content { max-width: none; margin: 0; grid-area: content; align-self: end; }
.eveen-hero--split .eveen-hero__visual { grid-area: visual; }
.eveen-hero--split .eveen-hero__cta { grid-area: cta; align-self: start; }

.eveen-hero__visual { position: relative; display: flex; justify-content: center; }
.eveen-hero__visual-ring {
    position: absolute;
    inset: 6% 4%;
    z-index: 0;
    background: radial-gradient(circle at 52% 46%, var(--eveen-blush-2), transparent 68%);
    border-radius: 50%;
}
.eveen-hero__visual img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    border-radius: var(--eveen-radius-lg);
    box-shadow: var(--eveen-shadow);
}

/* Play / "video" secondary CTA */
.eveen-hero__video { display: inline-flex; align-items: center; gap: 13px; }
.eveen-hero__play {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--eveen-rose);
    color: #fff;
    display: grid;
    place-items: center;
    flex: none;
    box-shadow: 0 12px 26px -12px rgba(197, 106, 133, .7);
    transition: transform var(--eveen-t-2, .24s) var(--eveen-ease-out), background-color var(--eveen-t-2, .24s) var(--eveen-ease-out);
}
.eveen-hero__play svg { margin-left: 2px; }
.eveen-hero__video:hover .eveen-hero__play { transform: scale(1.06); background: var(--eveen-rose-dark); }
.eveen-hero__video-txt {
    font-family: var(--eveen-body);
    font-weight: 700;
    font-size: 15px;
    line-height: 1.15;
    color: var(--eveen-ink);
    letter-spacing: 0;
}
.eveen-hero__video:hover .eveen-hero__video-txt { color: var(--eveen-rose); }
.eveen-hero__video-txt small { display: block; font-weight: 600; font-size: 12px; color: var(--eveen-muted); margin-top: 3px; }

@media (max-width: 900px) {
    /* Mobile order: heading + text → photo → buttons + guarantees */
    .eveen-hero--split .eveen-hero__grid {
        grid-template-columns: 1fr;
        grid-template-areas: "content" "visual" "cta";
        text-align: center;
        padding-top: clamp(40px, 11vw, 60px);   /* a little breathing room at the top */
    }
    .eveen-hero--split .eveen-hero__content { align-self: auto; }
    .eveen-hero--split .eveen-hero__cta { align-self: auto; }
    .eveen-hero--split .eveen-hero__content p { margin-left: auto; margin-right: auto; }
    /* Side gutter so the (RTL) heading isn't glued to the screen edge. */
    .eveen-hero--split .eveen-hero__content,
    .eveen-hero--split .eveen-hero__cta { padding-inline: clamp(20px, 6vw, 30px); }
    .eveen-hero--split .eveen-hero__actions,
    .eveen-hero--split .eveen-hero__badges { justify-content: center; }
}

/* ==========================================================================
   30. Light footer (white background, dark text)
   ========================================================================== */
.eveen-footer {
    background: var(--eveen-white);
    color: var(--eveen-ink-soft);
    border-top: 1px solid var(--eveen-line);
}
.eveen-footer .eveen-brand { color: var(--eveen-ink); }
.eveen-footer .eveen-brand span { color: var(--eveen-rose); }
.eveen-footer h4 { color: var(--eveen-ink); }
.eveen-footer p,
.eveen-footer li { color: var(--eveen-ink-soft); }
.eveen-footer a { color: var(--eveen-ink-soft); }
.eveen-footer a:hover { color: var(--eveen-rose); }
.eveen-footer__grid { border-bottom-color: var(--eveen-line); }
.eveen-footer__social a { border-color: var(--eveen-line); color: var(--eveen-ink-soft); }
.eveen-footer__social a:hover { background: var(--eveen-rose); border-color: var(--eveen-rose); color: #fff; }
.eveen-footer__contact svg { color: var(--eveen-rose); }
.eveen-footer__bottom { color: var(--eveen-muted); }
.eveen-footer__bottom a { color: var(--eveen-rose); }

/* ==========================================================================
   31. About & Contact page templates
   ========================================================================== */

/* Page intro header */
.eveen-page-intro { text-align: center; max-width: 680px; margin: 0 auto clamp(36px, 6vw, 60px); }
.eveen-page-intro .eveen-eyebrow { margin-bottom: 10px; }
.eveen-page-intro h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); line-height: 1.05; letter-spacing: -.014em; }
.eveen-page-intro p { color: var(--eveen-muted); margin-top: 14px; font-size: 1.05rem; line-height: 1.62; }

/* Key-figure stats band */
.eveen-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2vw, 26px); text-align: center; }
.eveen-stat { background: #fff; border: 1px solid rgba(59, 44, 52, .07); border-radius: var(--eveen-radius); padding: 28px 18px; box-shadow: var(--eveen-shadow-sm); }
.eveen-stat b { font-family: var(--eveen-display); font-weight: 700; font-size: clamp(2rem, 4vw, 2.8rem); color: var(--eveen-rose); display: block; line-height: 1; }
.eveen-stat span { color: var(--eveen-muted); font-size: 13px; letter-spacing: .05em; display: block; margin-top: 8px; }
@media (max-width: 760px) { .eveen-stats { grid-template-columns: 1fr 1fr; } }

/* Contact layout */
.eveen-contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(28px, 5vw, 56px); align-items: start; }
@media (max-width: 880px) { .eveen-contact-grid { grid-template-columns: 1fr; } }

.eveen-contact-info { display: grid; gap: 16px; }
.eveen-contact-card { display: flex; gap: 16px; align-items: flex-start; background: #fff; border: 1px solid rgba(59, 44, 52, .07); border-radius: var(--eveen-radius); padding: 22px; box-shadow: var(--eveen-shadow-sm); }
.eveen-contact-card__ic { width: 48px; height: 48px; border-radius: 50%; background: var(--eveen-blush-2); color: var(--eveen-rose); display: grid; place-items: center; flex: none; }
.eveen-contact-card h4 { font-size: 1.2rem; margin-bottom: 3px; }
.eveen-contact-card p, .eveen-contact-card a { color: var(--eveen-ink-soft); font-size: 14.5px; margin: 0; }
.eveen-contact-card a:hover { color: var(--eveen-rose); }
.eveen-contact-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 4px; }
.eveen-contact-social { display: flex; gap: 12px; margin-top: 4px; }
.eveen-contact-social a { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--eveen-line); display: grid; place-items: center; color: var(--eveen-ink-soft); transition: all var(--eveen-t-2, .24s) var(--eveen-ease-out); }
.eveen-contact-social a:hover { background: var(--eveen-rose); border-color: var(--eveen-rose); color: #fff; }

/* Themed form (Contact) */
.eveen-form { background: #fff; border: 1px solid rgba(59, 44, 52, .07); border-radius: var(--eveen-radius-lg); padding: clamp(24px, 3vw, 38px); box-shadow: var(--eveen-shadow); }
.eveen-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 520px) { .eveen-form__row { grid-template-columns: 1fr; } }
.eveen-field { display: block; margin-bottom: 16px; }
.eveen-field label { display: block; font-weight: 600; font-size: 13px; margin-bottom: 6px; color: var(--eveen-ink); }
.eveen-field input, .eveen-field textarea { width: 100%; border: 1.5px solid var(--eveen-line); border-radius: 12px; padding: 13px 15px; font-family: var(--eveen-body); font-size: 15px; background: #fff; color: var(--eveen-ink); transition: border-color var(--eveen-t-2, .24s) var(--eveen-ease-out); }
.eveen-field input:focus, .eveen-field textarea:focus { outline: none; border-color: var(--eveen-rose); }
.eveen-field textarea { min-height: 150px; resize: vertical; }
.eveen-form__msg { min-height: 1.2em; margin: 4px 0 0; font-size: 14px; font-weight: 600; }
.eveen-form__msg.is-ok { color: var(--eveen-success); }
.eveen-form__msg.is-err { color: #c0392b; }

/* Map */
.eveen-map { border-radius: var(--eveen-radius-lg); overflow: hidden; box-shadow: var(--eveen-shadow); margin-top: clamp(32px, 5vw, 56px); }
.eveen-map iframe { display: block; width: 100%; height: 380px; border: 0; }

/* ==========================================================================
   32. Fix: buttons placed inside prose keep their own text colour
   (prevents rose-on-rose unreadable text, e.g. "Explore the range")
   ========================================================================== */
.eveen-prose a.eveen-btn { text-decoration: none; }
.eveen-prose a.eveen-btn--primary,
.eveen-prose a.eveen-btn--ink,
.eveen-prose a.eveen-btn--wa { color: #fff; }
.eveen-prose a.eveen-btn--primary:hover,
.eveen-prose a.eveen-btn--ink:hover,
.eveen-prose a.eveen-btn--wa:hover { color: #fff; }
.eveen-prose a.eveen-btn--outline { color: var(--eveen-ink); }
.eveen-prose a.eveen-btn--outline:hover { color: #fff; }
.eveen-prose a.eveen-btn--ghost { color: var(--eveen-ink); }

/* ==========================================================================
   33. Pack / bundle section
   ========================================================================== */
.eveen-pack {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(24px, 4vw, 52px);
    align-items: center;
    background: var(--eveen-blush);
    border: 1px solid rgba(59, 44, 52, .06);
    border-radius: var(--eveen-radius-lg);
    padding: clamp(18px, 3vw, 34px);
    box-shadow: var(--eveen-shadow);
}
@media (max-width: 860px) { .eveen-pack { grid-template-columns: 1fr; } }

.eveen-pack__media { position: relative; border-radius: var(--eveen-radius); overflow: hidden; box-shadow: var(--eveen-shadow-sm); }
.eveen-pack__media img { display: block; width: 100%; height: 100%; object-fit: cover; }
.eveen-pack__badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--eveen-rose);
    color: #fff;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: .05em;
    padding: 7px 14px;
    border-radius: var(--eveen-radius-pill);
    box-shadow: 0 10px 22px -10px rgba(197, 106, 133, .6);
}
.eveen-pack__body { padding: clamp(4px, 1vw, 14px); }
.eveen-pack__title { font-family: var(--eveen-display); font-size: clamp(1.8rem, 3.4vw, 2.6rem); line-height: 1.06; letter-spacing: -.012em; margin: 6px 0 12px; }
.eveen-pack__body > p { color: var(--eveen-ink-soft); line-height: 1.6; }
.eveen-pack__list { list-style: none; margin: 20px 0; display: grid; gap: 11px; }
.eveen-pack__list li { display: flex; align-items: center; gap: 11px; font-weight: 600; color: var(--eveen-ink); }
.eveen-pack__list svg { width: 20px; height: 20px; color: var(--eveen-rose); flex: none; }
.eveen-pack__price { font-family: var(--eveen-display); font-weight: 700; font-size: 1.9rem; color: var(--eveen-rose); margin: 18px 0 22px; display: flex; align-items: baseline; flex-wrap: wrap; gap: 12px; }
.eveen-pack__price del { color: var(--eveen-muted); font-size: .58em; margin: 0; font-weight: 500; order: 2; }
.eveen-pack__price ins { text-decoration: none; order: 1; }
.eveen-pack__price span { font-family: var(--eveen-body); font-size: .85rem; color: var(--eveen-muted); font-weight: 600; }
.eveen-pack__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ==========================================================================
   34. Language switcher (Polylang) + top-bar layout
   ========================================================================== */
.eveen-topbar__end { display: flex; align-items: center; gap: 18px; }
.eveen-langs { display: flex; align-items: center; gap: 3px; list-style: none; margin: 0; padding: 0; }
.eveen-langs li { line-height: 1; }
.eveen-langs a {
    display: inline-block;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 11.5px;
    letter-spacing: .06em;
    padding: 3px 8px;
    border-radius: 6px;
    color: #e9d8df;
    opacity: .72;
    transition: opacity var(--eveen-t-2, .24s) var(--eveen-ease-out), background-color var(--eveen-t-2, .24s) var(--eveen-ease-out);
}
.eveen-langs a:hover { opacity: 1; color: #fff; }
.eveen-langs .current-lang a { color: #fff; opacity: 1; background: rgba(255, 255, 255, .16); }
@media (max-width: 720px) {
    .eveen-topbar__contact { display: none; }
    .eveen-topbar__in { justify-content: center; }
    .eveen-topbar__end { gap: 12px; }
}

/* ==========================================================================
   35. White hero background
   ========================================================================== */
.eveen-hero { background: var(--eveen-white); }

/* ==========================================================================
   36. Hero feature strip — compact, connected bar (not separate cards)
   ========================================================================== */
.eveen-hero__features-wrap .eveen-why {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: var(--eveen-blush);
    border: 1px solid var(--eveen-line);
    border-radius: var(--eveen-radius);
    overflow: hidden;
    box-shadow: var(--eveen-shadow-sm);
}
.eveen-hero__features-wrap .eveen-why__item {
    background: transparent;
    border: none;
    border-left: 1px solid var(--eveen-line);
    border-radius: 0;
    box-shadow: none;
    padding: 20px 18px;                 /* smaller */
    display: flex;
    flex-direction: row;                /* icon beside text = more compact */
    align-items: center;
    gap: 14px;
    text-align: left;
}
.eveen-hero__features-wrap .eveen-why__item:first-child { border-left: none; }
.eveen-hero__features-wrap .eveen-why__item:hover { transform: none; box-shadow: none; background: rgba(255, 255, 255, .55); }
.eveen-hero__features-wrap .eveen-why__ic {
    width: 42px;
    height: 42px;
    margin: 0;
    flex: none;
}
.eveen-hero__features-wrap .eveen-why__ic svg { width: 20px; height: 20px; }
.eveen-hero__features-wrap .eveen-why__item h4 { font-size: 1.02rem; margin-bottom: 2px; line-height: 1.15; }
.eveen-hero__features-wrap .eveen-why__item p { font-size: 12px; line-height: 1.45; margin: 0; }

@media (max-width: 760px) {
    /* Keep the 4 guarantees on one row: icon on top, title underneath, no text */
    .eveen-hero__features-wrap .eveen-why { grid-template-columns: repeat(4, 1fr); }
    .eveen-hero__features-wrap .eveen-why__item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px;
        padding: 14px 4px;
        border-top: none;
        border-left: 1px solid var(--eveen-line);
    }
    .eveen-hero__features-wrap .eveen-why__item:first-child { border-left: none; }
    .eveen-hero__features-wrap .eveen-why__item p { display: none; }
    .eveen-hero__features-wrap .eveen-why__item h4 { font-size: 10.5px; line-height: 1.2; margin: 0; }
    .eveen-hero__features-wrap .eveen-why__ic { width: 36px; height: 36px; }
    .eveen-hero__features-wrap .eveen-why__ic svg { width: 17px; height: 17px; }
    /* RTL keeps dividers on the right */
    .rtl .eveen-hero__features-wrap .eveen-why__item { border-left: none; border-right: 1px solid var(--eveen-line); }
    .rtl .eveen-hero__features-wrap .eveen-why__item:first-child { border-right: none; }
}

/* RTL: dividers on the right, text aligned right */
.rtl .eveen-hero__features-wrap .eveen-why__item { text-align: right; border-left: none; border-right: 1px solid var(--eveen-line); }
.rtl .eveen-hero__features-wrap .eveen-why__item:first-child { border-right: none; }

/* ==========================================================================
   37. Pack section: blush background, white card
   ========================================================================== */
#eveen-pack { background: var(--eveen-blush); }
.eveen-pack { background: var(--eveen-white); }

/* ==========================================================================
   38. Very white hero — remove the pink glow behind the product image
   ========================================================================== */
.eveen-hero--split .eveen-hero__visual-ring { display: none; }
.eveen-hero--split .eveen-hero__visual img { box-shadow: 0 18px 48px -30px rgba(59, 44, 52, .22); }

/* ==========================================================================
   39. Featured products section — white background
   ========================================================================== */
#eveen-featured { background: var(--eveen-white); }

/* ==========================================================================
   40. Shop: featured pack pulled up (visible without scrolling)
   ========================================================================== */
.woocommerce #eveen-pack { padding-top: 0; padding-bottom: clamp(38px, 6vw, 60px); }
.woocommerce #eveen-pack .eveen-shead { margin-bottom: clamp(18px, 3vw, 30px); }   /* heading kept, at the top */
.woocommerce-shop .eveen-content-area,
.post-type-archive-product .eveen-content-area { padding-top: clamp(16px, 3vw, 30px); }


/* ==========================================================================
   42. Transparent (cut-out) hero product image — float, no white frame
   ========================================================================== */
.eveen-hero--split .eveen-hero__visual img {
    border-radius: 0;
    box-shadow: none;
    filter: drop-shadow(0 22px 26px rgba(59, 44, 52, .16));
}

/* ==========================================================================
   43. Pack: transparent (cut-out) product image — float on the card
   ========================================================================== */
.eveen-pack__media { box-shadow: none; overflow: visible; background: transparent; }
.eveen-pack__media img { object-fit: contain; filter: drop-shadow(0 16px 22px rgba(59, 44, 52, .14)); }

/* ==========================================================================
   44. Product cards — full-bleed portrait so the product FILLS the frame
   The product photos are tall (portrait) with generous beige margins around
   the bottle/jar. A square frame either cropped the product (cover) or left
   side bars (contain). A portrait 3:4 frame matches the photos: the image
   fills the card edge-to-edge (no bars) while only trimming empty margin,
   so the whole product stays visible.
   ========================================================================== */
.eveen-card__media { aspect-ratio: 3 / 4; background: var(--eveen-blush-2); }
.eveen-card__media img { object-fit: cover; object-position: center; padding: 0; }

/* Anchor targets (e.g. pack "See what's inside" → products) clear the sticky header. */
#eveen-featured, #eveen-shop-grid, #eveen-pack { scroll-margin-top: 90px; }
.eveen-anchor { display: block; height: 0; }

/* ==========================================================================
   45. Make the WHOLE product card clickable → single product page
   The title link stretches an invisible overlay across the card, so a click
   anywhere (image, price, blank space) opens the product. Interactive controls
   (add-to-bag, wishlist, quick-view, category link) sit above it so they still
   work, and the media keeps its own link to the same page.
   ========================================================================== */
.eveen-card__title a::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
}
.eveen-card__media,
.eveen-card__cat,
.eveen-card__actions,
.eveen-card__body .button,
.eveen-card__body .added_to_cart { position: relative; z-index: 2; }
.eveen-card__title a { position: static; }

/* ==========================================================================
   41. About / Contact intro — tighter vertical spacing
   ========================================================================== */
.eveen-content-area--intro { padding-top: clamp(22px, 3vw, 34px); padding-bottom: clamp(2px, 1.5vw, 14px); }
.eveen-content-area--intro .eveen-page-intro { margin-bottom: clamp(16px, 2.5vw, 28px); }

/* ==========================================================================
   46. Cart & Checkout — bigger, clearer type + larger product image
   ========================================================================== */
.woocommerce-cart table.shop_table,
.woocommerce-checkout table.shop_table {
    font-size: 16px;
    border-color: var(--eveen-line);
}
.woocommerce-cart table.shop_table th,
.woocommerce-checkout table.shop_table th {
    font-size: 15px;
    letter-spacing: .02em;
    color: var(--eveen-ink);
    padding: 16px 14px;
}
.woocommerce-cart table.shop_table td,
.woocommerce-checkout table.shop_table td {
    padding: 18px 14px;
    vertical-align: middle;
    color: var(--eveen-ink);
}

/* Product image — much larger and framed */
.woocommerce td.product-thumbnail img,
.woocommerce-cart .product-thumbnail img {
    width: 104px;
    height: 104px;
    max-width: none;
    object-fit: contain;
    background: #fff;
    border: 1px solid var(--eveen-line);
    border-radius: 14px;
    padding: 6px;
}

/* Product name & prices — clear and prominent */
.woocommerce-cart td.product-name a {
    font-size: 18px;
    font-weight: 600;
    color: var(--eveen-ink);
}
.woocommerce-cart .product-price,
.woocommerce-cart .product-subtotal,
.woocommerce-cart td.product-name {
    font-size: 16px;
}

/* Totals card — larger heading, rows and grand total */
.cart_totals h2,
.woocommerce-checkout #order_review_heading { font-size: 22px; color: var(--eveen-ink); margin-bottom: 12px; }
.cart_totals table th,
.cart_totals table td,
.woocommerce-checkout .shop_table th,
.woocommerce-checkout .shop_table td { font-size: 16px; padding: 14px 12px; color: var(--eveen-ink); }
.cart_totals .order-total th,
.cart_totals .order-total td,
.woocommerce-checkout .order-total th,
.woocommerce-checkout .order-total td { font-size: 20px; font-weight: 700; }

/* Coupon + quantity inputs a touch larger for legibility */
.woocommerce-cart .quantity input.qty { font-size: 16px; padding: 8px; width: 68px; }
.woocommerce form .form-row label,
.woocommerce-checkout .woocommerce-billing-fields label { font-size: 15px; color: var(--eveen-ink); }

/* Proceed-to-checkout / place-order buttons — bigger tap target */
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.woocommerce #place_order { font-size: 17px; padding: 16px 26px; }

/* ==========================================================================
   47. Cart & Checkout — premium EVEEN restyle of the WooCommerce block cart
   ========================================================================== */
/* Layout — balanced columns, tighter, fills the page nicely */
.woocommerce-cart .eveen-wrap,
.woocommerce-checkout .eveen-wrap { max-width: 1180px; }
.wp-block-woocommerce-cart { margin-top: 4px; }
.wp-block-woocommerce-cart .wc-block-cart,
.wc-block-cart.alignwide,
.wc-block-checkout.alignwide { max-width: none; }
.wc-block-cart { gap: 40px; align-items: flex-start; }
.wc-block-cart .wc-block-cart__main { flex: 1 1 60%; margin: 0; }
.wc-block-cart .wc-block-cart__sidebar { flex: 1 1 36%; }

/* Items — one clean white card */
.wc-block-cart-items {
    border: 1px solid var(--eveen-line);
    border-radius: var(--eveen-radius-lg);
    background: #fff;
    overflow: hidden;
    box-shadow: 0 24px 60px -40px rgba(59, 44, 52, .3);
}
.wc-block-cart-items__header th {
    background: var(--eveen-blush);
    color: var(--eveen-ink);
    font-size: 13px;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 16px 22px;
    border: 0;
}
.wc-block-cart-items__row td { padding: 24px 22px; border-color: var(--eveen-line); }
.wc-block-cart-items__row:last-child td { border-bottom: 0; }

/* Product image — large, framed */
td.wc-block-cart-item__image,
.wc-block-cart-item__image { width: 150px; padding-inline-end: 20px; }
.wc-block-cart-item__image img {
    width: 132px !important;
    height: auto !important;
    max-width: none;
    object-fit: contain;
    background: #fff;
    border: 1px solid var(--eveen-line);
    border-radius: 16px;
    padding: 8px;
}

/* Product name + prices */
.wc-block-components-product-name {
    font-size: 20px !important;
    font-weight: 600;
    color: var(--eveen-ink);
    line-height: 1.35;
    text-decoration: none;
}
.wc-block-cart-item__prices,
.wc-block-cart-item__total { font-size: 16px; }
.wc-block-cart-item__total .wc-block-components-formatted-money-amount,
.wc-block-components-product-price__value.is-discounted {
    color: var(--eveen-rose-dark);
    font-weight: 700;
    font-size: 18px;
}
.wc-block-components-product-price__regular { color: var(--eveen-muted); }

/* "Save" sale badge → soft pill */
.wc-block-components-sale-badge {
    background: var(--eveen-blush-2);
    color: var(--eveen-rose-dark);
    border-radius: 999px;
    font-weight: 600;
    padding: 4px 12px;
    margin-top: 6px;
}

/* Remove (trash) link */
.wc-block-cart-item__remove-link { color: var(--eveen-muted); font-size: 13px; }
.wc-block-cart-item__remove-link:hover { color: var(--eveen-rose-dark); }

/* Totals sidebar — elegant blush card, sticky */
.wp-block-woocommerce-cart-totals-block,
.wc-block-cart__sidebar .wc-block-components-sidebar {
    background: var(--eveen-blush);
    border: 1px solid var(--eveen-line);
    border-radius: var(--eveen-radius-lg);
    padding: 28px 26px;
    box-shadow: 0 24px 60px -38px rgba(59, 44, 52, .34);
    position: sticky;
    top: 96px;
}
.wp-block-woocommerce-cart-order-summary-heading-block {
    font-size: 20px !important;
    font-weight: 700;
    color: var(--eveen-ink);
    margin: 0 0 10px;
}
.wc-block-components-totals-item { padding: 11px 0; }
.wc-block-components-totals-item__label,
.wc-block-components-totals-item__value { font-size: 16px !important; color: var(--eveen-ink); }
.wc-block-components-totals-item__description { color: var(--eveen-muted); }
.wc-block-components-totals-footer-item {
    border-top: 1px solid var(--eveen-line-2);
    margin-top: 8px;
    padding-top: 16px;
}
.wc-block-components-totals-footer-item .wc-block-components-totals-item__label { font-size: 17px !important; font-weight: 600; }
.wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
    font-size: 26px !important;
    font-weight: 800;
    color: var(--eveen-rose-dark);
}

/* Coupon accordion / links in brand colour */
.wc-block-components-panel__button,
.wc-block-components-totals-coupon__button-text { color: var(--eveen-rose-dark) !important; font-weight: 600; }

/* Proceed to checkout / place order → brand rose button */
.wc-block-cart__submit-button,
.wp-block-woocommerce-proceed-to-checkout-block a,
.wc-block-components-checkout-place-order-button,
.woocommerce-checkout #place_order {
    background: linear-gradient(135deg, var(--eveen-rose), var(--eveen-rose-dark)) !important;
    color: #fff !important;
    border: 0 !important;
    border-radius: 999px !important;
    font-size: 17px !important;
    font-weight: 600 !important;
    min-height: 58px;
    padding: 16px 30px !important;
    box-shadow: 0 16px 34px -14px rgba(197, 106, 133, .6);
    transition: filter .2s ease, transform .2s ease;
}
.wc-block-cart__submit-button:hover,
.wp-block-woocommerce-proceed-to-checkout-block a:hover,
.woocommerce-checkout #place_order:hover { filter: brightness(1.06); transform: translateY(-1px); color: #fff !important; }
.wp-block-woocommerce-proceed-to-checkout-block a { text-decoration: none !important; }

/* Mobile — stack columns, shrink image */
@media (max-width: 782px) {
    .wc-block-cart { flex-direction: column; gap: 24px; }
    .wc-block-cart .wc-block-cart__main,
    .wc-block-cart .wc-block-cart__sidebar { flex: 1 1 100%; width: 100%; }
    .wc-block-cart__sidebar .wc-block-components-sidebar { position: static; }
    .wc-block-components-product-name { font-size: 17px !important; }
    /* WooCommerce zeroes the totals-card padding on mobile → text touches the
       edges. Force an inner gutter back so nothing runs out of the frame. */
    .wp-block-woocommerce-cart-totals-block { padding: 22px 20px !important; }
}

/* Mobile cart row: stack cleanly — image on one side, name/price/total on the
   other (the default block grid stays cramped in 3 columns on phones). */
@media (max-width: 600px) {
    .wc-block-cart-items__header { display: none !important; }
    .wc-block-cart-items__row {
        display: grid !important;
        grid-template-columns: 96px 1fr !important;
        grid-template-rows: auto auto !important;
        column-gap: 14px !important;
        row-gap: 4px !important;
        align-items: start !important;
        padding: 18px 16px !important;
    }
    .wc-block-cart-item__image {
        grid-column: 1 !important;
        grid-row: 1 / span 2 !important;
        width: 96px !important;
        padding: 0 !important;
    }
    .wc-block-cart-item__image img { width: 96px !important; padding: 6px; }
    .wc-block-cart-item__product {
        grid-column: 2 !important;
        grid-row: 1 !important;
        padding: 0 !important;
    }
    .wc-block-cart-item__total {
        grid-column: 2 !important;
        grid-row: 2 !important;
        text-align: start !important;
        padding: 0 !important;
        margin: 4px 0 0 !important;
        display: flex;
        align-items: center;
        gap: 10px;
        flex-wrap: wrap;
    }
    .wc-block-cart-item__total .wc-block-components-sale-badge { margin: 0 !important; }
    .wc-block-cart-item__remove-link { margin-top: 6px !important; }
}

/* ==========================================================================
   48. About "mission" band + Contact FAQ accordion
   ========================================================================== */
.eveen-mission { text-align: center; }
.eveen-mission__quote {
    font-family: var(--eveen-display);
    font-size: clamp(1.35rem, 2.8vw, 2.05rem);
    line-height: 1.55;
    color: var(--eveen-ink);
    max-width: 900px;
    margin: 14px auto 0;
    font-weight: 500;
}

.eveen-faq { max-width: 820px; margin: clamp(40px, 6vw, 72px) auto 0; }
.eveen-faq__list { display: flex; flex-direction: column; gap: 14px; margin-top: 26px; }
.eveen-faq__item {
    background: #fff;
    border: 1px solid var(--eveen-line);
    border-radius: var(--eveen-radius);
    padding: 4px 24px;
    transition: box-shadow .25s ease, border-color .25s ease;
}
.eveen-faq__item[open] { box-shadow: 0 20px 44px -30px rgba(59, 44, 52, .32); border-color: var(--eveen-line-2); }
.eveen-faq__item summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 0;
    font-family: var(--eveen-display);
    font-size: 1.16rem;
    font-weight: 600;
    color: var(--eveen-ink);
}
.eveen-faq__item summary::-webkit-details-marker { display: none; }
.eveen-faq__ic { flex: none; width: 22px; height: 22px; position: relative; }
.eveen-faq__ic::before,
.eveen-faq__ic::after {
    content: ""; position: absolute; background: var(--eveen-rose);
    left: 50%; top: 50%; transform: translate(-50%, -50%);
    transition: opacity .2s ease;
}
.eveen-faq__ic::before { width: 2px; height: 14px; }
.eveen-faq__ic::after { width: 14px; height: 2px; }
.eveen-faq__item[open] .eveen-faq__ic::before { opacity: 0; }
.eveen-faq__item p { margin: 0 0 20px; color: var(--eveen-ink-soft); line-height: 1.85; }

/* ==========================================================================
   49. Policy pages (Shipping / Returns) — designed layout
   ========================================================================== */
.eveen-policy .eveen-content-area { padding-top: clamp(24px, 4vw, 44px); padding-bottom: clamp(40px, 6vw, 72px); }
.eveen-policy .eveen-page-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto clamp(26px, 4vw, 44px);
}
.eveen-policy .eveen-page-header h1 {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    margin: 0 0 12px;
}
.eveen-policy .eveen-page-header::after {
    content: "";
    display: block;
    width: 64px; height: 3px;
    margin: 18px auto 0;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--eveen-rose), var(--eveen-rose-soft));
}
.eveen-policy .eveen-crumbs { justify-content: center; display: flex; gap: 6px; }

/* Content block */
.eveen-policy .eveen-prose { max-width: 820px; margin: 0 auto; }
.eveen-policy .eveen-prose > h2 {
    text-align: center;
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    margin: 0 0 10px;
}
.eveen-policy .eveen-prose > p {
    text-align: center;
    color: var(--eveen-ink-soft);
    font-size: 1.12rem;
    max-width: 640px;
    margin: 0 auto clamp(26px, 4vw, 38px);
}

/* Bullet points → elegant cards */
.eveen-policy .eveen-prose ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.eveen-policy .eveen-prose ul li {
    position: relative;
    margin: 0;
    background: #fff;
    border: 1px solid var(--eveen-line);
    border-radius: var(--eveen-radius);
    padding: 22px 24px;
    padding-inline-start: 30px;
    line-height: 1.7;
    color: var(--eveen-ink-soft);
    box-shadow: 0 20px 44px -34px rgba(59, 44, 52, .3);
    transition: transform .2s ease, box-shadow .2s ease;
}
.eveen-policy .eveen-prose ul li:hover { transform: translateY(-3px); box-shadow: 0 26px 54px -32px rgba(59, 44, 52, .34); }
.eveen-policy .eveen-prose ul li::before {
    content: "";
    position: absolute;
    inset-inline-start: 0;
    top: 20px;
    bottom: 20px;
    width: 4px;
    border-radius: 4px;
    background: linear-gradient(var(--eveen-rose), var(--eveen-rose-soft));
}
.eveen-policy .eveen-prose ul li strong {
    display: block;
    color: var(--eveen-ink);
    font-family: var(--eveen-display);
    font-size: 1.12rem;
    font-weight: 700;
    margin-bottom: 4px;
}

@media (max-width: 640px) {
    .eveen-policy .eveen-prose ul { grid-template-columns: 1fr; }
}

/* ==========================================================================
   50. Single product page — EVEEN brand styling
   ========================================================================== */
.single-product div.product {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(30px, 5vw, 64px);
    align-items: start;
    max-width: 1180px;
    margin: 0 auto;
}
.single-product div.product::before,
.single-product div.product::after { content: none; display: none; } /* kill float clears */

/* Gallery */
.single-product .woocommerce-product-gallery {
    width: 100% !important;
    float: none !important;
    margin: 0 !important;
}
.single-product .woocommerce-product-gallery__wrapper { margin: 0; }
.single-product .woocommerce-product-gallery__image img {
    border-radius: var(--eveen-radius-lg);
    box-shadow: 0 30px 70px -42px rgba(59, 44, 52, .38);
    background: #fff;
}
.single-product .woocommerce-product-gallery .flex-viewport,
.single-product .woocommerce-product-gallery__image { border-radius: var(--eveen-radius-lg); overflow: hidden; }
.single-product .woocommerce-product-gallery__trigger { top: 18px; inset-inline-start: 18px; background: #fff; box-shadow: 0 6px 16px -6px rgba(0,0,0,.25); }

/* Summary */
.single-product .summary.entry-summary {
    float: none !important;
    width: auto !important;
    margin: 0 !important;
    align-self: center;
}
.single-product .product_title.entry-title {
    font-family: var(--eveen-display);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.08;
    color: var(--eveen-ink);
    margin: 0 0 14px;
}
.single-product .summary .price {
    font-family: var(--eveen-display);
    color: var(--eveen-rose-dark);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    margin: 0 0 22px;
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 12px;
}
.single-product .summary .price del { color: var(--eveen-muted); font-size: .58em; font-weight: 500; order: 2; }
.single-product .summary .price ins { text-decoration: none; order: 1; }
.single-product .woocommerce-product-details__short-description {
    color: var(--eveen-ink-soft);
    font-size: 1.08rem;
    line-height: 1.75;
    margin: 0 0 24px;
    padding: 22px 0;
    border-top: 1px solid var(--eveen-line);
    border-bottom: 1px solid var(--eveen-line);
}

/* Showcase CTA (non-sellable products) */
.eveen-showcase-cta { margin: 4px 0 22px; }
.eveen-showcase-cta__note {
    color: var(--eveen-ink);
    font-weight: 600;
    margin: 0 0 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.eveen-showcase-cta__note::before { content: "🎁"; font-size: 1.1em; }

/* Meta */
.single-product .product_meta {
    color: var(--eveen-muted);
    font-size: 13.5px;
    padding-top: 8px;
}
.single-product .product_meta > span { display: block; margin-bottom: 5px; }
.single-product .product_meta a { color: var(--eveen-rose-dark); }

/* Sale badge */
.single-product .onsale {
    background: var(--eveen-rose) !important;
    color: #fff !important;
    border-radius: 999px !important;
    min-height: 0 !important;
    min-width: 0 !important;
    padding: 6px 16px !important;
    font-weight: 600 !important;
    line-height: 1 !important;
}

/* Tabs */
.single-product .woocommerce-tabs {
    margin: clamp(44px, 6vw, 76px) auto 0;
    max-width: 1180px;
}
.single-product .woocommerce-tabs ul.tabs {
    border: 0;
    padding: 0;
    margin: 0 0 6px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.single-product .woocommerce-tabs ul.tabs::before { display: none; }
.single-product .woocommerce-tabs ul.tabs li {
    background: var(--eveen-blush);
    border: 1px solid var(--eveen-line);
    border-radius: 999px !important;
    padding: 0;
    margin: 0;
}
.single-product .woocommerce-tabs ul.tabs li::before,
.single-product .woocommerce-tabs ul.tabs li::after { display: none; }
.single-product .woocommerce-tabs ul.tabs li a {
    color: var(--eveen-ink);
    font-weight: 600;
    padding: 11px 24px;
    display: block;
}
.single-product .woocommerce-tabs ul.tabs li.active {
    background: var(--eveen-rose);
    border-color: var(--eveen-rose);
}
.single-product .woocommerce-tabs ul.tabs li.active a { color: #fff; }
.single-product .woocommerce-Tabs-panel {
    padding: 26px 0 0;
    color: var(--eveen-ink-soft);
    line-height: 1.8;
}
.single-product .woocommerce-Tabs-panel h2 {
    font-family: var(--eveen-display);
    color: var(--eveen-ink);
    font-size: 1.5rem;
}

/* Related products heading */
.single-product .related > h2,
.single-product .upsells > h2 { font-family: var(--eveen-display); color: var(--eveen-ink); }

@media (max-width: 860px) {
    .single-product div.product { grid-template-columns: 1fr; gap: 26px; }
    .single-product .summary.entry-summary { align-self: auto; }
}
