/* ============================================================
   Zadvaoka / MyLens — Refinement Layer
   ------------------------------------------------------------
   Calm UI overrides. Site palette: slate ink + teal accent (tokens in
   :root). Loaded last so it wins over style.css / homepage.css / shop.
   ============================================================ */


/* ============================================================
   1.  Refined design tokens
   ------------------------------------------------------------
   The originals stay defined in style.css; we override only
   the values that drive the synthetic look. Everything else
   keeps cascading through.
   ============================================================ */
:root {
    /* Zadvaoka — warm neutral ink + teal (no blue-navy, no champagne gold) */
    --ml-primary:        #1c1917;
    --ml-primary-light:  #292524;
    --ml-primary-dark:   #0c0a09;

    /* Signature accent — teal */
    --ml-accent:         #0d9488;
    --ml-accent-hover:   #0f766e;
    --ml-accent-light:   #ccfbf1;

    /* Cool porcelain surfaces */
    --ml-surface:        #f1f6f6;
    --ml-surface-alt:    #e2ecec;
    --ml-card:           #ffffff;
    --ml-card-hover:     #ffffff;

    /* Text */
    --ml-text:           #1c1917;
    --ml-text-light:     #57534e;
    --ml-text-muted:     #78716c;

    /* Accent in alpha steps (RGB of #0d9488 = 13, 148, 136) */
    --ml-accent-a08: rgba(13, 148, 136, 0.08);
    --ml-accent-a10: rgba(13, 148, 136, 0.1);
    --ml-accent-a05: rgba(13, 148, 136, 0.05);
    --ml-accent-a12: rgba(13, 148, 136, 0.12);
    --ml-accent-a14: rgba(13, 148, 136, 0.14);
    --ml-accent-a16: rgba(13, 148, 136, 0.16);
    --ml-accent-a28: rgba(13, 148, 136, 0.28);
    --ml-accent-a35: rgba(13, 148, 136, 0.35);
    --ml-accent-a85: rgba(13, 148, 136, 0.85);

    /* Shadows & lines — warm stone ink */
    --ml-ink:            28, 25, 23;
    --ml-shadow-sm:      0 1px 2px rgba(var(--ml-ink), 0.04);
    --ml-shadow-md:      0 2px 6px rgba(var(--ml-ink), 0.05);
    --ml-shadow-lg:      0 8px 24px rgba(var(--ml-ink), 0.06);
    --ml-shadow-xl:      0 12px 40px rgba(var(--ml-ink), 0.08);
    --ml-shadow-gold:    none;

    --ml-transition-fast: 140ms ease;
    --ml-transition:      200ms ease;
    --ml-transition-slow: 260ms ease;

    --ml-radius-sm:  3px;
    --ml-radius-md:  6px;
    --ml-radius-lg:  10px;
    --ml-radius-xl:  14px;

    --ml-rhythm-sm:  16px;
    --ml-rhythm-md:  32px;
    --ml-rhythm-lg:  64px;
    --ml-rhythm-xl:  96px;

    --ml-line:       rgba(var(--ml-ink), 0.08);
    --ml-line-soft:  rgba(var(--ml-ink), 0.05);
}


/* ============================================================
   2.  Global base — typography, rhythm, focus
   ============================================================ */
.mylens-theme {
    font-family: var(--ml-font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--ml-text);
    background: var(--ml-surface);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.mylens-theme h1,
.mylens-theme h2,
.mylens-theme h3,
.mylens-theme h4,
.mylens-theme h5 {
    font-family: var(--ml-font-heading);
    font-weight: 700;
    color: var(--ml-primary);
    letter-spacing: -0.018em;
    line-height: 1.15;
}

.mylens-theme h1 { font-weight: 700; }
.mylens-theme h2 { font-weight: 700; }
.mylens-theme h3 { font-weight: 600; letter-spacing: -0.012em; }
.mylens-theme h4 { font-weight: 600; letter-spacing: -0.005em; }

.mylens-theme p {
    color: var(--ml-text);
    line-height: 1.7;
}

/* Honest focus rings everywhere. */
.mylens-theme :focus-visible {
    outline: 2px solid var(--ml-accent);
    outline-offset: 3px;
    border-radius: 3px;
}

/* Cancel any global all-caps "shouty" headings the parent theme
   may force on us. Headings should be sentence-case and serif. */
.mylens-theme h1,
.mylens-theme h2,
.mylens-theme h3,
.mylens-theme h4 {
    text-transform: none;
}


/* ============================================================
   3.  Section header — drop the decorative gold underline
   ------------------------------------------------------------
   The `::after` 60×3px gold bar under every <h2> made every
   section feel like a Bootstrap landing page. We replace it
   with an uppercase eyebrow above the heading, generated from
   the section header's <p> when there's no eyebrow markup.
   ============================================================ */
.mylens-theme .ml-section-header { margin-bottom: var(--ml-rhythm-lg); }

.mylens-theme .ml-section-header h2 {
    font-size: clamp(1.75rem, 3.4vw, 2.5rem);
    margin-bottom: 12px;
}
.mylens-theme .ml-section-header h2::after { display: none; }

.mylens-theme .ml-section-header p {
    color: var(--ml-text-light);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 560px;
    margin: 0 auto;
}

.mylens-theme .ml-section-header .ml-view-all {
    color: var(--ml-text);
    font-family: var(--ml-font-body);
    font-weight: 500;
    font-size: 13px;
    text-transform: none;
    letter-spacing: 0;
    margin-top: 18px;
    border-bottom: 1px solid var(--ml-line);
    padding-bottom: 2px;
}
.mylens-theme .ml-section-header .ml-view-all:hover {
    color: var(--ml-accent);
    border-color: var(--ml-accent);
    gap: 8px;
}


/* ============================================================
   4.  Buttons — calm, no glow, no jump
   ============================================================ */
.mylens-theme .ml-btn {
    font-family: var(--ml-font-body);
    font-weight: 500;
    font-size: 13.5px;
    text-transform: none;
    letter-spacing: 0;
    padding: 13px 26px;
    border-radius: 999px;
    transition: background-color var(--ml-transition),
                color var(--ml-transition),
                border-color var(--ml-transition);
    border-width: 1px;
    line-height: 1.2;
    box-shadow: none;
}

.mylens-theme .ml-btn-primary,
.mylens-theme .ml-hero__cta .ml-btn-primary {
    background: var(--ml-primary);
    color: #fff;
    border-color: var(--ml-primary);
    box-shadow: none;
}
.mylens-theme .ml-btn-primary:hover,
.mylens-theme .ml-hero__cta .ml-btn-primary:hover {
    background: var(--ml-accent);
    border-color: var(--ml-accent);
    color: #fff;
    transform: none;
    box-shadow: none;
}

.mylens-theme .ml-btn-outline {
    background: transparent;
    color: var(--ml-primary);
    border-color: var(--ml-primary);
}
.mylens-theme .ml-btn-outline:hover {
    background: var(--ml-primary);
    color: #fff;
    transform: none;
}

.mylens-theme .ml-btn-dark { background: var(--ml-primary); border-color: var(--ml-primary); box-shadow: none; }
.mylens-theme .ml-btn-dark:hover { background: var(--ml-accent); border-color: var(--ml-accent); transform: none; box-shadow: none; }

.mylens-theme .ml-btn-lg { padding: 16px 32px; font-size: 14px; }

/* Hero CTAs — bespoke styles in section 5 below. */


/* ============================================================
   5.  Hero — split editorial (warm stone, no mint/cyan wash)
   ------------------------------------------------------------
   Two-column layout: left-aligned copy + abstract optic rings.
   No frosted glass card; trust row is a simple divided strip.
   ============================================================ */

.mylens-theme .ml-hero {
    position: relative;
    min-height: clamp(520px, 85vh, 880px);
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
    background: #efedea;
}

.mylens-theme .ml-hero__bg {
    pointer-events: none;
}

.mylens-theme .ml-hero__gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 55% 45% at 88% 20%, rgba(13, 148, 136, 0.07), transparent 60%),
        radial-gradient(ellipse 40% 35% at 12% 88%, rgba(28, 25, 23, 0.04), transparent 55%),
        linear-gradient(165deg, #f7f5f2 0%, #ebe8e4 48%, #e3dfda 100%);
}

.mylens-theme .ml-hero__gradient::before,
.mylens-theme .ml-hero__gradient::after {
    display: none;
}

.mylens-theme .ml-hero__bg::after {
    display: none !important;
    content: none !important;
}

.mylens-theme .ml-hero .ml-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
    padding-left: clamp(1.25rem, 4vw, 2rem);
    padding-right: clamp(1.25rem, 4vw, 2rem);
}

.mylens-theme .ml-hero__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.9fr);
    gap: clamp(2rem, 6vw, 4rem);
    align-items: center;
}

.mylens-theme .ml-hero__copy {
    text-align: left;
    max-width: 38rem;
    padding: clamp(1.5rem, 4vw, 2.5rem) 0;
    margin-left: 0;
}

/* Eyebrow — underline rule, no glass pill */
.mylens-theme .ml-hero__tag {
    display: inline-block;
    font-family: var(--ml-font-body);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--ml-accent-hover);
    background: none !important;
    border: 0 !important;
    border-radius: 0;
    padding: 0 0 10px 0;
    margin: 0 0 1.25rem 0;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-bottom: 2px solid var(--ml-accent);
}

.mylens-theme .ml-hero__tag::before {
    display: none !important;
}

.mylens-theme .ml-hero__title {
    font-family: var(--ml-font-heading);
    font-weight: 700;
    letter-spacing: -0.038em;
    line-height: 1.06;
    font-size: clamp(2.65rem, 6.2vw, 4rem);
    margin: 0 0 1.2rem;
    color: var(--ml-primary);
    text-wrap: balance;
    text-shadow: none;
}

.mylens-theme .ml-hero__title-accent {
    display: block;
    margin-top: 0.06em;
    font-style: italic;
    font-weight: 650;
    background: none !important;
    background-image: none !important;
    -webkit-background-clip: border-box !important;
    background-clip: border-box !important;
    -webkit-text-fill-color: #0f766e !important;
    color: #0f766e !important;
    animation: none !important;
    text-decoration: none !important;
    border: 0;
    padding: 0;
}

.mylens-theme .ml-hero__desc {
    color: var(--ml-text-light);
    font-size: 1.08rem;
    line-height: 1.72;
    margin: 0 0 1.75rem;
    max-width: 32rem;
    text-wrap: pretty;
}

.mylens-theme .ml-hero__cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 14px;
    margin-bottom: 0;
    justify-content: flex-start;
}

.mylens-theme .ml-hero__cta .ml-btn-primary {
    background: var(--ml-accent) !important;
    border: 1px solid var(--ml-accent-hover) !important;
    color: #fff !important;
    box-shadow: 0 2px 4px var(--ml-accent-a12), 0 10px 28px var(--ml-accent-a28);
}

.mylens-theme .ml-hero__cta .ml-btn-primary:hover {
    background: var(--ml-accent-hover) !important;
    border-color: var(--ml-accent-hover) !important;
    color: #fff !important;
    box-shadow: 0 4px 14px var(--ml-accent-a35);
    transform: translateY(-1px);
}

.mylens-theme .ml-hero .ml-btn-outline {
    background: transparent !important;
    color: var(--ml-primary) !important;
    border: 1px solid rgba(var(--ml-ink), 0.22) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
}

.mylens-theme .ml-hero .ml-btn-outline:hover {
    background: var(--ml-primary) !important;
    color: #fff !important;
    border-color: var(--ml-primary) !important;
    transform: translateY(-1px);
}

/* Trust — flat row with dividers (no mint pill) */
.mylens-theme .ml-hero__trust {
    list-style: none;
    margin: clamp(1.75rem, 4vw, 2.5rem) 0 0;
    padding: 1rem 0 0 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
    max-width: 100%;
    background: none !important;
    border: 0 !important;
    border-top: 1px solid rgba(var(--ml-ink), 0.1) !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.mylens-theme .ml-hero__trust-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px 0 0;
    margin: 0;
    font-family: var(--ml-font-body);
    font-size: 12.5px;
    font-weight: 500;
    color: var(--ml-text) !important;
    position: relative;
}

.mylens-theme .ml-hero__trust-item:not(:last-child) {
    border-right: 1px solid rgba(var(--ml-ink), 0.1);
    padding-right: 18px;
    margin-right: 18px;
}

.mylens-theme .ml-hero__trust-item:not(:last-child)::after {
    display: none;
}

.mylens-theme .ml-hero__trust-item svg {
    flex-shrink: 0;
    width: 17px;
    height: 17px;
    stroke: var(--ml-accent) !important;
    color: var(--ml-accent) !important;
    opacity: 1 !important;
}

/* Right column — abstract rings (replaces legacy floats) */
.mylens-theme .ml-hero__art {
    position: relative;
    justify-self: center;
    width: min(100%, 420px);
    aspect-ratio: 1;
    max-height: min(56vh, 420px);
}

.mylens-theme .ml-hero__art-ring {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.mylens-theme .ml-hero__art-ring--outer {
    inset: 4%;
    border: 1px solid rgba(var(--ml-ink), 0.1);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

.mylens-theme .ml-hero__art-ring--mid {
    inset: 18%;
    border: 2px solid rgba(13, 148, 136, 0.35);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.4);
}

.mylens-theme .ml-hero__art-ring--glow {
    inset: 28%;
    background: radial-gradient(circle, var(--ml-accent-a14) 0%, transparent 68%);
    filter: blur(18px);
    opacity: 0.85;
}

/* Legacy floats — not rendered in new template */
.mylens-theme .ml-hero__float--1,
.mylens-theme .ml-hero__float--2 {
    display: none !important;
}

/* Kill legacy pseudo promotional cards from homepage.css */
.mylens-theme .ml-hero::before,
.mylens-theme .ml-hero::after,
.mylens-theme .ml-hero__content::after {
    display: none !important;
    content: none !important;
}

@media (max-width: 900px) {
    .mylens-theme .ml-hero__layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mylens-theme .ml-hero__art {
        order: -1;
        max-height: 280px;
        width: min(100%, 320px);
    }

    .mylens-theme .ml-hero__copy {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .mylens-theme .ml-hero__cta {
        justify-content: center;
    }

    .mylens-theme .ml-hero__trust {
        justify-content: center;
    }

    .mylens-theme .ml-hero__trust-item:not(:last-child) {
        border-right: none;
        padding-right: 0;
        margin-right: 0;
    }
}

@media (max-width: 620px) {
    .mylens-theme .ml-hero__trust {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .mylens-theme .ml-hero__trust-item {
        padding-right: 0 !important;
        border-right: 0 !important;
        margin-right: 0 !important;
    }

    .mylens-theme .ml-hero__copy {
        text-align: left;
    }

    .mylens-theme .ml-hero__cta {
        flex-direction: column;
        align-items: stretch;
    }

    .mylens-theme .ml-hero__cta .ml-btn {
        width: 100%;
        text-align: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .mylens-theme .ml-hero__cta .ml-btn-primary:hover,
    .mylens-theme .ml-hero .ml-btn-outline:hover {
        transform: none;
    }
}
.mylens-theme .ml-product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--ml-card);
    border-radius: var(--ml-radius-xl);
    border: 1px solid var(--ml-line);
    overflow: hidden;
    box-shadow:
        0 1px 2px rgba(var(--ml-ink), 0.04),
        0 12px 32px rgba(var(--ml-ink), 0.06);
    transition:
        transform var(--ml-transition),
        box-shadow var(--ml-transition),
        border-color var(--ml-transition);
}

.mylens-theme .ml-product-card:hover {
    transform: translateY(-5px);
    border-color: var(--ml-accent-a28);
    box-shadow:
        0 2px 4px rgba(var(--ml-ink), 0.05),
        0 22px 48px rgba(var(--ml-ink), 0.1),
        0 0 0 1px var(--ml-accent-a08);
}

.mylens-theme .ml-product-card__image {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: linear-gradient(165deg, var(--ml-surface-alt) 0%, #d5e3e3 100%);
    box-shadow: none;
}

.mylens-theme .ml-product-card__media-link {
    display: block;
    height: 100%;
    line-height: 0;
}

.mylens-theme .ml-product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.mylens-theme .ml-product-card:hover .ml-product-card__image img {
    transform: scale(1.045);
}

/* Badge stack — sale + new */
.mylens-theme .ml-product-card__badges {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    pointer-events: none;
}

.mylens-theme .ml-product-card__badge {
    display: inline-block;
    font-family: var(--ml-font-body);
    font-weight: 600;
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 999px;
    box-shadow: 0 2px 8px rgba(var(--ml-ink), 0.12);
}

.mylens-theme .ml-product-card__badge--sale {
    background: var(--ml-primary);
    color: #fff;
}

.mylens-theme .ml-product-card__badge--new {
    background: rgba(255, 255, 255, 0.92);
    color: var(--ml-accent-hover);
    border: 1px solid var(--ml-accent-a35);
}

/* Quick view strip — appears on hover (fine pointer) or stays faint on touch */
.mylens-theme .ml-product-card__quickview {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 14px 12px 12px;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(12, 10, 9, 0.45) 35%,
        rgba(12, 10, 9, 0.88) 100%
    );
    color: #fff;
    text-align: center;
    opacity: 0;
    transform: translateY(8px);
    transition:
        opacity var(--ml-transition),
        transform var(--ml-transition);
    z-index: 3;
}

.mylens-theme .ml-product-card__quickview a {
    color: #fff !important;
    font-family: var(--ml-font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-decoration: none;
    text-transform: none;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.mylens-theme .ml-product-card__quickview a:hover {
    color: #fff !important;
    text-decoration: underline;
    text-underline-offset: 3px;
}

@media (hover: hover) and (pointer: fine) {
    .mylens-theme .ml-product-card:hover .ml-product-card__quickview {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (hover: none), (pointer: coarse) {
    .mylens-theme .ml-product-card__quickview {
        opacity: 1;
        transform: translateY(0);
        padding: 10px 10px 8px;
        background: linear-gradient(
            180deg,
            rgba(12, 10, 9, 0.55) 0%,
            rgba(12, 10, 9, 0.9) 100%
        );
    }
    .mylens-theme .ml-product-card__quickview a {
        font-size: 11px;
    }
}

/* Info column + footer row (price + Shop CTA) */
.mylens-theme .ml-product-card__info {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 16px 18px 18px;
    text-align: left;
    background: linear-gradient(180deg, #fff 0%, #f4faf9 100%);
}

.mylens-theme .ml-product-card__brand {
    color: var(--ml-text-light);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 6px;
    line-height: 1.3;
}

.mylens-theme .ml-product-card__title {
    font-family: var(--ml-font-body);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.35;
    color: var(--ml-text);
    margin: 0 0 0;
    letter-spacing: -0.01em;
    flex: 1 1 auto;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mylens-theme .ml-product-card__title a {
    color: inherit;
    text-decoration: none;
    transition: color var(--ml-transition-fast);
}

.mylens-theme .ml-product-card__title a:hover {
    color: var(--ml-accent);
}

.mylens-theme .ml-product-card__footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--ml-line-soft);
}

.mylens-theme .ml-product-card__price {
    font-family: var(--ml-font-body);
    font-size: 1.0625rem;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    color: var(--ml-primary);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.mylens-theme .ml-product-card__price del {
    color: var(--ml-text-muted);
    font-weight: 500;
    margin-right: 6px;
    font-size: 0.8125rem;
}

.mylens-theme .ml-product-card__price ins {
    text-decoration: none;
    color: #0f766e;
}

.mylens-theme .ml-product-card__cta {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 999px;
    font-family: var(--ml-font-body);
    font-size: 12px;
    font-weight: 600;
    color: var(--ml-primary);
    background: #fff;
    border: 1px solid var(--ml-line);
    text-decoration: none;
    box-shadow: 0 1px 3px rgba(var(--ml-ink), 0.06);
    transition:
        background-color var(--ml-transition-fast),
        color var(--ml-transition-fast),
        border-color var(--ml-transition-fast),
        box-shadow var(--ml-transition-fast);
}

.mylens-theme .ml-product-card__cta-icon {
    transition: transform var(--ml-transition-fast);
}

.mylens-theme .ml-product-card__cta:hover {
    background: var(--ml-primary);
    color: #fff;
    border-color: var(--ml-primary);
    box-shadow: 0 4px 12px rgba(var(--ml-ink), 0.15);
}

.mylens-theme .ml-product-card__cta:hover .ml-product-card__cta-icon {
    transform: translateX(3px);
}

/* Wishlist / plugin chips */
.mylens-theme .ml-product-card__actions {
    gap: 6px;
    top: 10px;
    right: 10px;
    z-index: 5;
}

.mylens-theme .ml-product-card__actions .icon_above_image,
.mylens-theme .ml-product-card__actions .icon_after_add_to_cart {
    width: 38px;
    height: 38px;
    box-shadow: 0 2px 8px rgba(var(--ml-ink), 0.1);
    border-color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.95);
}

.mylens-theme .ml-product-card__actions .icon_above_image:hover,
.mylens-theme .ml-product-card__actions .icon_after_add_to_cart:hover {
    transform: none;
    background: #fff;
    box-shadow: 0 6px 16px rgba(var(--ml-ink), 0.14);
}

@media (prefers-reduced-motion: reduce) {
    .mylens-theme .ml-product-card,
    .mylens-theme .ml-product-card__image img,
    .mylens-theme .ml-product-card__quickview,
    .mylens-theme .ml-product-card__cta .ml-product-card__cta-icon {
        transition: none;
    }
    .mylens-theme .ml-product-card:hover {
        transform: none;
    }
    .mylens-theme .ml-product-card:hover .ml-product-card__image img {
        transform: none;
    }
}
/* ============================================================
   7.  Product grid — breathing room
   ============================================================ */
.mylens-theme .ml-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 32px 24px;
}
@media (max-width: 720px) {
    .mylens-theme .ml-product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 14px;
    }
}


/* ============================================================
   8.  Try-On (dark section) — readable type + human tone
   ------------------------------------------------------------
   Global `.mylens-theme h2` / `p` use ink colors for the light
   shell; this section sits on navy and must force light text.
   Also restyles CTAs and floating callouts for calmer contrast.
   ============================================================ */

.mylens-theme .ml-section-dark {
    background: linear-gradient(165deg, #0c0a09 0%, #1c1917 42%, #292524 100%);
}

.mylens-theme .ml-tryon {
    padding: clamp(3.5rem, 8vw, 5.5rem) 0;
    position: relative;
}

/* All copy in the try-on column: beat `.mylens-theme h2` / `p`. */
.mylens-theme .ml-tryon .ml-tryon__content h2 {
    color: #F7F5F2 !important;
    font-family: var(--ml-font-heading);
    font-weight: 700;
    font-size: clamp(1.85rem, 3.2vw, 2.6rem);
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin: 0 0 1rem;
    max-width: 16ch;
}

.mylens-theme .ml-tryon .ml-tryon__content > p {
    color: rgba(247, 245, 242, 0.82) !important;
    font-size: 1.0625rem;
    line-height: 1.65;
    margin: 0 0 1.75rem;
    max-width: 38em;
}

/* Eyebrow — not “AI product demo” */
.mylens-theme .ml-tryon__label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: 0;
    padding: 0;
    margin-bottom: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 10.5px;
    font-weight: 600;
    font-family: var(--ml-font-body);
    color: var(--ml-accent-light);
}
.mylens-theme .ml-tryon__label::before {
    content: '';
    width: 28px;
    height: 2px;
    background: var(--ml-accent);
    border-radius: 1px;
    flex-shrink: 0;
}

/* Feature list */
.mylens-theme .ml-tryon__feature strong {
    color: #F7F5F2 !important;
    font-weight: 600;
}
.mylens-theme .ml-tryon__feature span {
    color: rgba(247, 245, 242, 0.62) !important;
}

.mylens-theme .ml-tryon__feature-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.mylens-theme .ml-tryon__feature-icon svg {
    stroke: var(--ml-accent-light);
}

/* CTAs — real buttons on dark */
.mylens-theme .ml-tryon__cta {
    margin-top: 0.25rem;
}
.mylens-theme .ml-tryon .ml-tryon__cta .ml-btn-primary {
    background: var(--ml-accent);
    color: #fff;
    border: 1px solid var(--ml-accent);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}
.mylens-theme .ml-tryon .ml-tryon__cta .ml-btn-primary:hover {
    background: #fff;
    color: var(--ml-primary);
    border-color: #fff;
    transform: none;
}
.mylens-theme .ml-tryon .ml-tryon__cta .ml-btn-outline {
    background: transparent;
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.4);
}
.mylens-theme .ml-tryon .ml-tryon__cta .ml-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff !important;
    border-color: rgba(255, 255, 255, 0.65);
}

/* Grid balance */
.mylens-theme .ml-tryon__grid {
    align-items: center;
    gap: clamp(2rem, 5vw, 4rem);
}

/* Floating cards — readable, less “synthetic bounce” */
.mylens-theme .ml-tryon__float-card {
    background: rgba(28, 25, 23, 0.92);
    border: 1px solid rgba(13, 148, 136, 0.22);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--ml-radius-lg);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
    animation: none;
}
.mylens-theme .ml-tryon__float-card strong {
    color: #fff !important;
    font-weight: 600;
}
.mylens-theme .ml-tryon__float-card span {
    color: rgba(255, 255, 255, 0.68) !important;
}
.mylens-theme .ml-tryon__float-stat {
    background: none;
    -webkit-text-fill-color: currentColor;
    color: var(--ml-accent-light);
    font-family: var(--ml-font-heading);
    font-weight: 700;
}

@media (max-width: 900px) {
    .mylens-theme .ml-tryon__float-card {
        display: none !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .mylens-theme .ml-tryon__float-card {
        animation: none !important;
    }
}
/* Promo / sale strip — light “editorial” card (never dark glass + ink type) */
.mylens-theme .ml-promo-banner {
    position: relative;
    padding: clamp(3rem, 8vw, 5rem) 0;
    overflow: hidden;
    background: linear-gradient(
        180deg,
        var(--ml-surface) 0%,
        var(--ml-surface-alt) 48%,
        var(--ml-surface) 100%
    );
    color: var(--ml-primary);
}

.mylens-theme .ml-promo-banner__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 1;
    background:
        radial-gradient(ellipse 82% 65% at 50% -10%, var(--ml-accent-a16), transparent 58%),
        radial-gradient(ellipse 48% 45% at 98% 92%, var(--ml-accent-a10), transparent 52%),
        linear-gradient(180deg, transparent 0%, rgba(var(--ml-ink), 0.025) 100%);
}

.mylens-theme .ml-promo-banner__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(var(--ml-ink), 0.055) 1px, transparent 1px);
    background-size: 26px 26px;
    opacity: 0.4;
    mask-image: radial-gradient(ellipse 88% 72% at 50% 45%, #000 20%, transparent 78%);
    -webkit-mask-image: radial-gradient(ellipse 88% 72% at 50% 45%, #000 20%, transparent 78%);
}

.mylens-theme .ml-promo-banner .ml-container {
    position: relative;
    z-index: 2;
}

.mylens-theme .ml-promo-banner__content {
    position: relative;
    z-index: 2;
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    padding: clamp(2rem, 5vw, 2.85rem) clamp(1.5rem, 4vw, 2.75rem);
    border-radius: var(--ml-radius-xl);
    background: var(--ml-card);
    border: 1px solid var(--ml-line);
    box-shadow:
        var(--ml-shadow-lg),
        inset 0 1px 0 rgba(255, 255, 255, 0.92);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.mylens-theme .ml-promo-banner__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--ml-accent-hover);
    background: var(--ml-accent-a10);
    border: 1px solid var(--ml-accent-a16);
    padding: 0.55rem 1.15rem;
    border-radius: 999px;
    margin-bottom: 1.2rem;
}

.mylens-theme .ml-promo-banner__content h2 {
    font-family: var(--ml-font-heading);
    color: var(--ml-primary);
    font-size: clamp(1.85rem, 4.2vw, 2.7rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.12;
    margin: 0 0 0.9rem;
}

.mylens-theme .ml-promo-banner__content p {
    color: var(--ml-text-light);
    font-size: 1.0625rem;
    line-height: 1.68;
    margin: 0 auto 1.65rem;
    max-width: 38rem;
}

.mylens-theme .ml-promo-banner .ml-btn-primary {
    background: linear-gradient(180deg, var(--ml-accent) 0%, var(--ml-accent-hover) 100%);
    color: #fff !important;
    border-color: transparent;
    font-weight: 600;
    min-width: 220px;
    box-shadow:
        0 2px 4px var(--ml-accent-a12),
        0 10px 28px var(--ml-accent-a28);
}

.mylens-theme .ml-promo-banner .ml-btn-primary:hover {
    background: linear-gradient(180deg, #14b8a6 0%, var(--ml-accent) 100%);
    color: #fff !important;
    border-color: transparent;
    box-shadow: 0 4px 16px var(--ml-accent-a35);
}


/* ============================================================
   10. "How it works" — number-led, no decorative arrows
   ============================================================ */
.mylens-theme .ml-how-it-works .ml-step__number {
    font-family: var(--ml-font-heading);
    font-weight: 600;
    font-size: 22px;
    background: none;
    -webkit-text-fill-color: currentColor;
    color: var(--ml-accent);
    letter-spacing: 0;
    margin-bottom: 10px;
}
.mylens-theme .ml-how-it-works .ml-step__icon {
    background: var(--ml-card);
    border: 1px solid var(--ml-line);
    border-radius: 50%;
    width: 64px;
    height: 64px;
    box-shadow: none;
}
.mylens-theme .ml-how-it-works .ml-step h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--ml-primary);
}
.mylens-theme .ml-how-it-works .ml-step p {
    color: var(--ml-text-light);
    font-size: 14.5px;
    line-height: 1.6;
}
/* Decorative connector arrows between steps — hide on small,
   keep faint on desktop. */
.mylens-theme .ml-how-it-works .ml-step__connector { opacity: 0.35; }
@media (max-width: 900px) {
    .mylens-theme .ml-how-it-works .ml-step__connector { display: none; }
}


/* ============================================================
   11. Testimonials — quieter cards, no glow
   ============================================================ */
.mylens-theme .ml-testimonial {
    background: var(--ml-card);
    border: 1px solid var(--ml-line-soft);
    border-radius: var(--ml-radius-lg);
    box-shadow: none;
    padding: 28px 28px 24px;
    transition: border-color var(--ml-transition);
}
.mylens-theme .ml-testimonial:hover {
    border-color: var(--ml-line);
    transform: none;
    box-shadow: var(--ml-shadow-md);
}
.mylens-theme .ml-testimonial blockquote {
    color: var(--ml-text);
    font-family: var(--ml-font-body);
    font-size: 15.5px;
    line-height: 1.65;
    font-style: normal;
    margin: 14px 0 22px;
}
.mylens-theme .ml-testimonial__stars svg {
    fill: var(--ml-accent);
    stroke: var(--ml-accent);
    width: 14px;
    height: 14px;
}
.mylens-theme .ml-testimonial__avatar {
    background: var(--ml-surface);
    color: var(--ml-primary);
    width: 38px;
    height: 38px;
    font-family: var(--ml-font-heading);
    font-weight: 600;
    font-size: 14px;
    box-shadow: inset 0 0 0 1px var(--ml-line);
}
.mylens-theme .ml-testimonial__author strong { font-weight: 600; font-size: 14px; color: var(--ml-primary); }
.mylens-theme .ml-testimonial__author span   { color: var(--ml-text-muted); font-size: 12.5px; }


/* ============================================================
   12. Site header / nav (rendered by Divi parent) — humanise
   ============================================================ */
.mylens-theme #main-header,
.mylens-theme #et-top-navigation {
    box-shadow: none;
    border-bottom: 1px solid var(--ml-line-soft);
}
.mylens-theme #et-top-navigation .nav li a,
.mylens-theme .et_pb_menu .et-menu li a {
    font-family: var(--ml-font-body);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0;
    text-transform: none;
    color: var(--ml-text);
    transition: color var(--ml-transition-fast);
}
.mylens-theme #et-top-navigation .nav li a:hover,
.mylens-theme .et_pb_menu .et-menu li a:hover { color: var(--ml-accent); opacity: 1; }

/* Cleaner submenu */
.mylens-theme #et-top-navigation .nav li ul.sub-menu,
.mylens-theme .et_pb_menu .et-menu li ul.sub-menu {
    background: #fff;
    border: 1px solid var(--ml-line-soft);
    box-shadow: var(--ml-shadow-md);
    padding: 8px 0;
    border-radius: var(--ml-radius-md);
}
.mylens-theme #et-top-navigation .nav li ul.sub-menu li a,
.mylens-theme .et_pb_menu .et-menu li ul.sub-menu li a {
    padding: 8px 18px;
    font-size: 13.5px;
    font-weight: 400;
}

/* Mobile menu */
.mylens-theme #mobile_menu,
.mylens-theme .et_pb_menu .et_mobile_menu {
    background: #fff;
    border-top: 1px solid var(--ml-line-soft);
    box-shadow: var(--ml-shadow-md);
    padding: 8px 0;
}
.mylens-theme #mobile_menu li a,
.mylens-theme .et_pb_menu .et_mobile_menu li a {
    font-family: var(--ml-font-body);
    font-weight: 500;
    font-size: 15px;
    color: var(--ml-text);
    padding: 12px 22px;
    border-bottom: 1px solid var(--ml-line-soft);
    text-transform: none;
    letter-spacing: 0;
}


/* ============================================================
   13. Shop archive — calmer toolbar + cleaner grid
   ============================================================ */
.mylens-theme.woocommerce .woocommerce-products-header__title.page-title,
.mylens-theme .term-description ~ .woocommerce-products-header__title {
    font-family: var(--ml-font-heading);
    font-weight: 700;
    font-size: clamp(1.75rem, 3.4vw, 2.5rem);
    color: var(--ml-primary);
    text-align: left;
    letter-spacing: -0.018em;
}

.mylens-theme.woocommerce .woocommerce-result-count,
.mylens-theme.woocommerce-page .woocommerce-result-count {
    color: var(--ml-text-muted);
    font-size: 13px;
    margin-bottom: 0;
}
.mylens-theme.woocommerce .woocommerce-ordering select {
    background: #fff;
    border: 1px solid var(--ml-line);
    border-radius: var(--ml-radius-md);
    padding: 9px 36px 9px 14px;
    font-size: 13.5px;
    font-family: var(--ml-font-body);
    color: var(--ml-text);
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%231F2024' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    cursor: pointer;
}

/* Native WC product grid (when not using mylens_render_product_card). */
.mylens-theme.woocommerce ul.products li.product .woocommerce-loop-product__title,
.mylens-theme.woocommerce-page ul.products li.product .woocommerce-loop-product__title {
    font-family: var(--ml-font-body);
    font-weight: 500;
    font-size: 15px;
    color: var(--ml-text);
    padding: 12px 0 4px;
    text-transform: none;
    letter-spacing: 0;
}
.mylens-theme.woocommerce ul.products li.product .price,
.mylens-theme.woocommerce-page ul.products li.product .price {
    font-family: var(--ml-font-body);
    font-weight: 600;
    font-size: 15px;
    color: var(--ml-primary);
}
.mylens-theme.woocommerce ul.products li.product img,
.mylens-theme.woocommerce-page ul.products li.product img {
    border-radius: var(--ml-radius-md);
    background: var(--ml-surface-alt);
}

/* Pagination */
.mylens-theme.woocommerce nav.woocommerce-pagination ul,
.mylens-theme.woocommerce-page nav.woocommerce-pagination ul {
    border: 0;
    display: inline-flex;
    gap: 6px;
    background: transparent;
}
.mylens-theme.woocommerce nav.woocommerce-pagination ul li,
.mylens-theme.woocommerce-page nav.woocommerce-pagination ul li { border: 0; }
.mylens-theme.woocommerce nav.woocommerce-pagination ul li a,
.mylens-theme.woocommerce nav.woocommerce-pagination ul li span {
    border: 1px solid var(--ml-line);
    border-radius: var(--ml-radius-md);
    padding: 8px 14px;
    background: #fff;
    color: var(--ml-text);
    font-weight: 500;
    font-size: 13.5px;
    transition: border-color var(--ml-transition-fast), color var(--ml-transition-fast);
}
.mylens-theme.woocommerce nav.woocommerce-pagination ul li a:hover {
    border-color: var(--ml-primary);
    color: var(--ml-primary);
}
.mylens-theme.woocommerce nav.woocommerce-pagination ul li span.current {
    background: var(--ml-primary);
    color: #fff;
    border-color: var(--ml-primary);
}


/* ============================================================
   14. Single product page — calm spacing, prominent CTA
   ============================================================ */
.mylens-theme.single-product .product {
    padding-top: 24px;
}
.mylens-theme.single-product div.product .woocommerce-product-gallery {
    background: var(--ml-surface);
    border-radius: var(--ml-radius-md);
    padding: 8px;
    border: 1px solid var(--ml-line-soft);
}
.mylens-theme.single-product div.product .woocommerce-product-gallery__image img {
    border-radius: var(--ml-radius-sm);
}

.mylens-theme.single-product div.product .summary {
    padding: 8px 0 0;
}
.mylens-theme.single-product div.product .summary .product_title.entry-title {
    font-family: var(--ml-font-heading);
    font-weight: 700;
    font-size: clamp(1.75rem, 3.5vw, 2.4rem);
    color: var(--ml-primary);
    letter-spacing: -0.018em;
    line-height: 1.15;
    margin: 0 0 12px;
}

.mylens-theme.single-product div.product .summary .price {
    font-family: var(--ml-font-body);
    font-weight: 600;
    color: var(--ml-primary);
    font-size: 1.5rem;
    margin: 0 0 22px;
}
.mylens-theme.single-product div.product .summary .price del {
    color: var(--ml-text-muted);
    font-weight: 400;
    font-size: 1.05rem;
    margin-right: 10px;
}
.mylens-theme.single-product div.product .summary .price ins {
    text-decoration: none;
    background: transparent;
}

.mylens-theme.single-product div.product .summary .woocommerce-product-details__short-description {
    color: var(--ml-text);
    font-size: 15.5px;
    line-height: 1.7;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--ml-line-soft);
}

/* Quantity + Add to cart row */
.mylens-theme.single-product div.product form.cart {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin: 18px 0 26px;
}
.mylens-theme.single-product div.product form.cart .quantity {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--ml-line);
    border-radius: 999px;
    background: #fff;
    overflow: hidden;
}
.mylens-theme.single-product div.product form.cart .quantity input.qty {
    border: 0;
    width: 48px;
    text-align: center;
    font-weight: 500;
    font-family: var(--ml-font-body);
    background: transparent;
    height: 44px;
    padding: 0;
}
.mylens-theme.single-product div.product form.cart button.single_add_to_cart_button,
.mylens-theme.single-product div.product form.cart .single_add_to_cart_button {
    background: var(--ml-primary);
    color: #fff;
    border: 0;
    padding: 14px 30px;
    border-radius: 999px;
    font-family: var(--ml-font-body);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.01em;
    text-transform: none;
    box-shadow: none;
    transition: background-color var(--ml-transition);
    flex: 1 1 auto;
    min-width: 220px;
    line-height: 1.2;
}
.mylens-theme.single-product div.product form.cart button.single_add_to_cart_button:hover {
    background: var(--ml-accent);
    color: #fff;
    transform: none;
    box-shadow: none;
}

/* Trust strip injected via refine.js below the add to cart form */
.mylens-theme .ml-trust-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin: 18px 0 28px;
    padding: 18px 0;
    border-top: 1px solid var(--ml-line-soft);
    border-bottom: 1px solid var(--ml-line-soft);
}
.mylens-theme .ml-trust-strip__item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12.5px;
    color: var(--ml-text-light);
    line-height: 1.35;
}
.mylens-theme .ml-trust-strip__item svg {
    flex: 0 0 auto;
    width: 22px;
    height: 22px;
    color: var(--ml-accent);
    stroke: var(--ml-accent);
}
@media (max-width: 600px) {
    .mylens-theme .ml-trust-strip { grid-template-columns: 1fr; gap: 10px; padding: 14px 0; }
}

/* Tabs — simpler, no Divi pill chrome. */
.mylens-theme.single-product div.product .woocommerce-tabs ul.tabs {
    border: 0;
    border-bottom: 1px solid var(--ml-line);
    margin-bottom: 28px;
    padding: 0;
}
.mylens-theme.single-product div.product .woocommerce-tabs ul.tabs::before { display: none; }
.mylens-theme.single-product div.product .woocommerce-tabs ul.tabs li {
    background: transparent;
    border: 0;
    border-radius: 0;
    margin: 0 24px 0 0;
    padding: 0;
}
.mylens-theme.single-product div.product .woocommerce-tabs ul.tabs li::before,
.mylens-theme.single-product div.product .woocommerce-tabs ul.tabs li::after { display: none; }
.mylens-theme.single-product div.product .woocommerce-tabs ul.tabs li a {
    font-family: var(--ml-font-body);
    font-weight: 500;
    font-size: 13.5px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ml-text-muted);
    padding: 14px 0;
    text-shadow: none;
    border-bottom: 2px solid transparent;
    transition: color var(--ml-transition-fast), border-color var(--ml-transition-fast);
}
.mylens-theme.single-product div.product .woocommerce-tabs ul.tabs li.active a,
.mylens-theme.single-product div.product .woocommerce-tabs ul.tabs li a:hover {
    color: var(--ml-primary);
    border-bottom-color: var(--ml-primary);
}

/* Sticky add-to-cart on mobile (markup injected by refine.js). */
.mylens-theme .ml-sticky-cart {
    position: fixed;
    inset: auto 0 0 0;
    background: #fff;
    border-top: 1px solid var(--ml-line);
    box-shadow: 0 -8px 24px rgba(var(--ml-ink), 0.08);
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 90;
    transform: translateY(110%);
    transition: transform var(--ml-transition);
}
.mylens-theme .ml-sticky-cart.is-visible { transform: translateY(0); }
.mylens-theme .ml-sticky-cart__price {
    font-family: var(--ml-font-body);
    font-weight: 600;
    font-size: 16px;
    color: var(--ml-primary);
}
.mylens-theme .ml-sticky-cart__btn {
    flex: 1;
    background: var(--ml-primary);
    color: #fff;
    border: 0;
    border-radius: 999px;
    padding: 13px 22px;
    font-family: var(--ml-font-body);
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: background-color var(--ml-transition);
    text-decoration: none;
    text-align: center;
}
.mylens-theme .ml-sticky-cart__btn:hover { background: var(--ml-accent); color: #fff; }

@media (min-width: 781px) {
    .mylens-theme .ml-sticky-cart { display: none !important; }
}


/* ============================================================
   15. Cart / checkout / my-account — neutral typography
   ============================================================ */
.mylens-theme.woocommerce-cart .cart_totals h2,
.mylens-theme.woocommerce-checkout .woocommerce-checkout h3,
.mylens-theme.woocommerce-account .woocommerce h2,
.mylens-theme.woocommerce-account .woocommerce h3 {
    font-family: var(--ml-font-heading);
    color: var(--ml-primary);
    letter-spacing: -0.012em;
}

.mylens-theme.woocommerce table.shop_table,
.mylens-theme.woocommerce-page table.shop_table {
    border: 1px solid var(--ml-line);
    border-radius: var(--ml-radius-md);
    border-collapse: separate;
    background: #fff;
}
.mylens-theme.woocommerce table.shop_table th,
.mylens-theme.woocommerce-page table.shop_table th {
    background: var(--ml-surface-alt);
    color: var(--ml-text);
    font-weight: 600;
    font-size: 12.5px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.mylens-theme.woocommerce table.shop_table td,
.mylens-theme.woocommerce-page table.shop_table td {
    border-top: 1px solid var(--ml-line-soft);
    padding: 16px;
    font-size: 14px;
}

.mylens-theme.woocommerce #payment .form-row input,
.mylens-theme.woocommerce-page form .form-row input.input-text,
.mylens-theme.woocommerce-page form .form-row textarea,
.mylens-theme.woocommerce-page form .form-row select {
    border: 1px solid var(--ml-line);
    border-radius: var(--ml-radius-md);
    padding: 11px 14px;
    background: #fff;
    font-family: var(--ml-font-body);
    font-size: 14px;
    color: var(--ml-text);
    transition: border-color var(--ml-transition-fast), box-shadow var(--ml-transition-fast);
}
.mylens-theme.woocommerce-page form .form-row input.input-text:focus,
.mylens-theme.woocommerce-page form .form-row textarea:focus {
    border-color: var(--ml-primary);
    box-shadow: 0 0 0 3px rgba(var(--ml-ink), 0.06);
    outline: none;
}

/* Generic Woo button */
.mylens-theme.woocommerce a.button,
.mylens-theme.woocommerce button.button,
.mylens-theme.woocommerce input.button,
.mylens-theme.woocommerce-page a.button,
.mylens-theme.woocommerce-page button.button,
.mylens-theme.woocommerce-page input.button {
    background: var(--ml-primary);
    color: #fff;
    border: 0;
    border-radius: 999px;
    padding: 12px 24px;
    font-family: var(--ml-font-body);
    font-weight: 500;
    font-size: 13.5px;
    letter-spacing: 0;
    text-transform: none;
    box-shadow: none;
    transition: background-color var(--ml-transition);
}
.mylens-theme.woocommerce a.button:hover,
.mylens-theme.woocommerce button.button:hover,
.mylens-theme.woocommerce input.button:hover,
.mylens-theme.woocommerce-page a.button:hover,
.mylens-theme.woocommerce-page button.button:hover,
.mylens-theme.woocommerce-page input.button:hover {
    background: var(--ml-accent);
    color: #fff;
    transform: none;
    box-shadow: none;
}

.mylens-theme.woocommerce a.button.alt,
.mylens-theme.woocommerce button.button.alt,
.mylens-theme.woocommerce-page a.button.alt,
.mylens-theme.woocommerce-page button.button.alt {
    background: var(--ml-primary);
    color: #fff;
}

/* Notices */
.mylens-theme.woocommerce .woocommerce-message,
.mylens-theme.woocommerce .woocommerce-info,
.mylens-theme.woocommerce-page .woocommerce-message,
.mylens-theme.woocommerce-page .woocommerce-info {
    background: #fff;
    border: 1px solid var(--ml-line);
    border-left: 3px solid var(--ml-accent);
    border-radius: var(--ml-radius-md);
    padding: 14px 18px;
    color: var(--ml-text);
    font-size: 14px;
    box-shadow: var(--ml-shadow-sm);
}
.mylens-theme.woocommerce .woocommerce-message::before,
.mylens-theme.woocommerce-page .woocommerce-message::before { color: var(--ml-accent); }


/* ============================================================
   16. Sections — relax the "rounded gold-bar everywhere" feel
   ============================================================ */
.mylens-theme .ml-section {
    padding: var(--ml-rhythm-xl) 0;
}

.mylens-theme .ml-section-alt {
    background: var(--ml-surface-alt);
}


/* ============================================================
   17. Newsletter / footer CTA blocks — drop the gold gradients
   ============================================================ */
.mylens-theme .ml-newsletter,
.mylens-theme .ml-footer-cta {
    background: var(--ml-primary) !important;
}

/* ============================================================
   18. Small utilities + reduced-motion respect
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
    .mylens-theme *,
    .mylens-theme *::before,
    .mylens-theme *::after {
        animation-duration: 0ms !important;
        animation-delay: 0ms !important;
        transition-duration: 100ms !important;
    }
}

/* ============================================================
   19. Divi global header / menu / buttons (Customizer “blue & gold”)
   ------------------------------------------------------------
   Theme Builder + Customizer often hard-code accent (#c9a96e) and
   heading (#1b1b2f). Force neutral ink + teal on key chrome only.
   Scoped to .mylens-theme so we do not touch wp-admin.
   ============================================================ */
body.mylens-theme .et-menu-nav li a,
body.mylens-theme #top-menu-nav .et-menu-nav > li > a,
body.mylens-theme .et_pb_menu__menu a,
body.mylens-theme nav.et-menu-nav > ul > li > a {
    color: var(--ml-primary) !important;
}

body.mylens-theme .et-menu-nav li a:hover,
body.mylens-theme .et-menu-nav li.current-menu-item > a,
body.mylens-theme #top-menu-nav .et-menu-nav > li > a:hover,
body.mylens-theme .et_pb_menu__menu a:hover,
body.mylens-theme nav.et-menu-nav > ul > li > a:hover,
body.mylens-theme nav.et-menu-nav > ul > li.current-menu-item > a {
    color: var(--ml-accent) !important;
    opacity: 1 !important;
}

/* Primary filled buttons rendered by Divi modules */
body.mylens-theme .et_pb_button,
body.mylens-theme a.et_pb_button,
body.mylens-theme .et_pb_promo_button.et_pb_button {
    background-color: var(--ml-primary) !important;
    border-color: var(--ml-primary) !important;
    color: #fff !important;
}

body.mylens-theme .et_pb_button:hover,
body.mylens-theme a.et_pb_button:hover {
    background-color: var(--ml-accent) !important;
    border-color: var(--ml-accent) !important;
    color: #fff !important;
}

body.mylens-theme .logo_container a,
body.mylens-theme .et_pb_menu__logo a,
body.mylens-theme .et_pb_fullwidth_menu .et_pb_menu__logo a {
    color: var(--ml-primary) !important;
}

/* ============================================================
   20. Defeat `zadvaoka-rebrand` (mu-plugin) + Divi default blue
   ------------------------------------------------------------
   That stylesheet loads with heavy `!important` (optic navy + champagne)
   and often linked *after* this file. Matching importance + loading
   refine *last* (see functions.php deps) restores stone ink + teal.
   ============================================================ */
:root {
    --zv-primary: #1c1917 !important;
    --zv-primary-hover: #292524 !important;
    --zv-primary-dark: #0c0a09 !important;
    --zv-primary-soft: #e7e5e4 !important;
    --zv-secondary: #0d9488 !important;
    --zv-secondary-hover: #0f766e !important;
    --zv-secondary-soft: #ccfbf1 !important;
    --zv-accent: #0d9488 !important;
    --zv-accent-hover: #0f766e !important;
    --zv-accent-soft: #f0fdfa !important;
    --zv-accent-light: #ccfbf1 !important;
    --zv-bg-mist: #f1f6f6 !important;
    --zv-bg-fog: #e2ecec !important;
    --zv-bg-ink: #1c1917 !important;
    --zv-text: #1c1917 !important;
    --zv-text-secondary: #57534e !important;
    --zv-text-muted: #78716c !important;
    --zv-border: rgba(28, 25, 23, 0.1) !important;
    --zv-shadow-sm: 0 1px 2px rgba(28, 25, 23, 0.04) !important;
    --zv-shadow-md: 0 2px 8px rgba(28, 25, 23, 0.06) !important;
    --zv-shadow-lg: 0 12px 32px rgba(28, 25, 23, 0.08) !important;
}

body.mylens-homepage,
body.mylens-theme,
.mylens-homepage-wrap,
#main-content,
.et-l--body,
body.woocommerce,
body.woocommerce-page {
    --ml-primary: #1c1917 !important;
    --ml-primary-light: #292524 !important;
    --ml-primary-dark: #0c0a09 !important;
    --ml-accent: #0d9488 !important;
    --ml-accent-hover: #0f766e !important;
    --ml-accent-light: #ccfbf1 !important;
    --ml-surface: #f1f6f6 !important;
    --ml-surface-alt: #e2ecec !important;
    --ml-text: #1c1917 !important;
    --ml-text-light: #57534e !important;
    --ml-text-muted: #78716c !important;
    --ml-shadow-gold: none !important;
    --ml-shadow-sm: 0 1px 3px rgba(28, 25, 23, 0.06), 0 1px 2px rgba(28, 25, 23, 0.04) !important;
    --ml-shadow-md: 0 4px 6px rgba(28, 25, 23, 0.05), 0 2px 4px rgba(28, 25, 23, 0.04) !important;
    --ml-shadow-lg: 0 10px 25px rgba(28, 25, 23, 0.08), 0 4px 10px rgba(28, 25, 23, 0.04) !important;
    --ml-shadow-xl: 0 20px 40px rgba(28, 25, 23, 0.1), 0 8px 16px rgba(28, 25, 23, 0.06) !important;
}

body.mylens-homepage,
body.mylens-theme,
body.mylens-about,
body.mylens-contact,
body.mylens-faq,
body.mylens-shop,
body.mylens-product,
body.mylens-brand {
    background-color: var(--ml-surface) !important;
}

/* Divi core link accent (#2ea3f2) — neutral ink + teal hover */
body.mylens-theme a {
    color: var(--ml-primary) !important;
}
body.mylens-theme a:hover {
    color: var(--ml-accent) !important;
}
body.mylens-theme .et_pb_bg_layout_dark a,
body.mylens-theme .et_pb_bg_layout_dark_tablet a,
body.mylens-theme .et_pb_bg_layout_dark_phone a,
body.mylens-theme .ml-section-dark a {
    color: #ffffff !important;
}
body.mylens-theme .et_pb_bg_layout_dark a:hover,
body.mylens-theme .et_pb_bg_layout_dark_tablet a:hover,
body.mylens-theme .et_pb_bg_layout_dark_phone a:hover,
body.mylens-theme .ml-section-dark a:hover {
    color: var(--ml-accent-light) !important;
}

/* Product card quick-view sits on a dark image strip — beat global `a` ink color */
body.mylens-theme .ml-product-card__quickview a,
body.mylens-theme .ml-product-card__quickview a:hover {
    color: #fff !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
}

body.mylens-theme .et_pb_module .et_pb_bg_layout_light.et_pb_button,
body.mylens-theme .et_pb_bg_layout_light.et_pb_button,
body.mylens-theme .et_pb_bg_layout_light_tablet.et_pb_button,
body.mylens-theme .et_pb_bg_layout_light_phone.et_pb_button,
body.mylens-theme .et_pb_more_button {
    color: var(--ml-accent) !important;
}

/* Homepage hero — lock split editorial past rebrand `!important` */
body.mylens-theme .ml-hero {
    background: #efedea !important;
}
body.mylens-theme .ml-hero__gradient {
    background:
        radial-gradient(ellipse 55% 45% at 88% 20%, rgba(13, 148, 136, 0.07), transparent 60%),
        radial-gradient(ellipse 40% 35% at 12% 88%, rgba(28, 25, 23, 0.04), transparent 55%),
        linear-gradient(165deg, #f7f5f2 0%, #ebe8e4 48%, #e3dfda 100%) !important;
}
body.mylens-theme .ml-hero__title {
    color: var(--ml-primary) !important;
    text-shadow: none !important;
}
body.mylens-theme .ml-hero__desc {
    color: var(--ml-text-light) !important;
}
body.mylens-theme .ml-hero__title-accent {
    background: none !important;
    background-image: none !important;
    -webkit-background-clip: border-box !important;
    background-clip: border-box !important;
    -webkit-text-fill-color: #0f766e !important;
    color: #0f766e !important;
    animation: none !important;
    text-decoration: none !important;
}
body.mylens-theme .ml-hero__title-accent::after {
    display: none !important;
    content: none !important;
}
body.mylens-theme .ml-hero__tag {
    color: var(--ml-accent-hover) !important;
    background: none !important;
    border: 0 !important;
    border-bottom: 2px solid var(--ml-accent) !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}
body.mylens-theme .ml-hero__tag::before {
    display: none !important;
}
body.mylens-theme .ml-hero__cta .ml-btn-primary {
    background: var(--ml-accent) !important;
    border: 1px solid var(--ml-accent-hover) !important;
    color: #fff !important;
}
body.mylens-theme .ml-hero__cta .ml-btn-primary:hover {
    background: var(--ml-accent-hover) !important;
    border-color: var(--ml-accent-hover) !important;
    color: #fff !important;
}
body.mylens-theme .ml-hero .ml-btn-outline {
    background: transparent !important;
    color: var(--ml-primary) !important;
    border: 1px solid rgba(28, 25, 23, 0.22) !important;
}
body.mylens-theme .ml-hero .ml-btn-outline:hover {
    background: var(--ml-primary) !important;
    color: #fff !important;
    border-color: var(--ml-primary) !important;
}

body.mylens-theme .ml-hero__trust {
    /* split layout strip — no mint pill */
    background: none !important;
    border: 0 !important;
    border-top: 1px solid rgba(28, 25, 23, 0.1) !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}
body.mylens-theme .ml-hero__trust-item {
    color: var(--ml-text) !important;
}

body.mylens-theme .ml-hero__float--1 {
    display: none !important;
}
body.mylens-theme .ml-hero__float--2 {
    display: none !important;
}

body.mylens-theme .ml-tryon {
    background: linear-gradient(165deg, #0c0a09 0%, #1c1917 42%, #292524 100%) !important;
}
body.mylens-theme .mylens-homepage-wrap .ml-section-dark {
    background: linear-gradient(165deg, #0c0a09 0%, #1c1917 42%, #292524 100%) !important;
}
body.mylens-theme .mylens-homepage-wrap .ml-section-alt {
    background:
        radial-gradient(ellipse 120% 70% at 50% 0%, var(--ml-accent-a08), transparent 48%),
        linear-gradient(180deg, var(--ml-surface-alt) 0%, var(--ml-surface) 50%, var(--ml-surface-alt) 100%) !important;
}
/* Promo: keep light layer (mu-plugin + old homepage use dark `!important` here) */
body.mylens-theme .ml-promo-banner {
    background: linear-gradient(
        180deg,
        var(--ml-surface) 0%,
        var(--ml-surface-alt) 48%,
        var(--ml-surface) 100%
    ) !important;
}
body.mylens-theme .ml-promo-banner__bg {
    background:
        radial-gradient(ellipse 82% 65% at 50% -10%, var(--ml-accent-a16), transparent 58%),
        radial-gradient(ellipse 48% 45% at 98% 92%, var(--ml-accent-a10), transparent 52%),
        linear-gradient(180deg, var(--ml-surface) 0%, var(--ml-surface-alt) 52%, var(--ml-surface) 100%) !important;
    opacity: 1 !important;
}
body.mylens-theme .ml-promo-banner__content {
    background: var(--ml-card) !important;
    border: 1px solid var(--ml-line) !important;
    color: var(--ml-primary) !important;
    box-shadow:
        var(--ml-shadow-lg),
        inset 0 1px 0 rgba(255, 255, 255, 0.92) !important;
}
body.mylens-theme .ml-promo-banner__content h2 {
    color: var(--ml-primary) !important;
}
body.mylens-theme .ml-promo-banner__content p {
    color: var(--ml-text-light) !important;
}
body.mylens-theme .ml-promo-banner .ml-btn-primary {
    background: linear-gradient(180deg, var(--ml-accent) 0%, var(--ml-accent-hover) 100%) !important;
    color: #fff !important;
    border-color: transparent !important;
}
body.mylens-theme .ml-promo-banner .ml-btn-primary:hover {
    background: linear-gradient(180deg, #14b8a6 0%, var(--ml-accent) 100%) !important;
    color: #fff !important;
}
body.mylens-theme .ml-seo-block {
    background:
        radial-gradient(ellipse 90% 55% at 12% 18%, var(--ml-accent-a10), transparent 52%),
        radial-gradient(ellipse 65% 45% at 90% 72%, rgba(var(--ml-ink), 0.04), transparent 48%),
        linear-gradient(175deg, var(--ml-surface-alt) 0%, #d5e3e3 40%, #c5d9d9 100%) !important;
    border-top-color: rgba(var(--ml-ink), 0.06) !important;
}
body.mylens-theme .ml-seo-block p {
    border-left-color: var(--ml-accent) !important;
    color: var(--ml-text) !important;
    box-shadow:
        0 2px 0 rgba(255, 255, 255, 0.9) inset,
        0 1px 0 rgba(var(--ml-ink), 0.06),
        0 14px 36px rgba(var(--ml-ink), 0.06),
        0 32px 72px rgba(var(--ml-ink), 0.05),
        0 6px 16px var(--ml-accent-a08) !important;
}
body.mylens-theme .mylens-homepage-wrap .ml-product-card__image {
    background: linear-gradient(165deg, var(--ml-surface-alt) 0%, #d5e3e3 100%) !important;
}

body.mylens-theme .ml-page-hero__bg {
    background:
        radial-gradient(circle at 30% 50%, var(--ml-accent-a12), transparent 50%),
        radial-gradient(circle at 70% 50%, var(--ml-accent-a08), transparent 40%),
        linear-gradient(160deg, #0c0a09 0%, #1c1917 50%, #292524 100%) !important;
}
body.mylens-theme .ml-page-hero__bg::after {
    background-image: radial-gradient(var(--ml-accent-a08) 1px, transparent 1px) !important;
}

/* Dark hero + bottom CTA: global heading/body/link tokens are ink-colored for
   light sections; restore high-contrast light text on dark banners (shop,
   category/brand archives, About / FAQ / Contact, FAQ “Still have questions”). */
body.mylens-theme .ml-page-hero h1 {
    color: #f5f5f4 !important;
}
body.mylens-theme .ml-page-hero h1 .ml-text-accent {
    color: var(--ml-accent) !important;
}
body.mylens-theme .ml-page-hero .ml-page-hero__sub {
    color: rgba(255, 255, 255, 0.82) !important;
}
body.mylens-theme .ml-page-hero .ml-breadcrumb {
    color: rgba(255, 255, 255, 0.5) !important;
}
body.mylens-theme .ml-page-hero .ml-breadcrumb a {
    color: rgba(255, 255, 255, 0.78) !important;
}
body.mylens-theme .ml-page-hero .ml-breadcrumb a:hover {
    color: var(--ml-accent-light) !important;
}

body.mylens-theme .ml-page-cta h2 {
    color: #f5f5f4 !important;
}
body.mylens-theme .ml-page-cta .ml-page-cta__content > p {
    color: rgba(255, 255, 255, 0.78) !important;
}

/* Shop filters — active pill is an <a>; global link color (ink + !important)
   overrides shop.css and yields unreadable text on the filled background. */
body.mylens-theme .ml-shop-filters a.ml-filter-pill--active,
body.mylens-theme .ml-shop-filters a.ml-filter-pill--active:hover {
    color: #fff !important;
}

body.mylens-theme .ml-page-cta__bg {
    background:
        radial-gradient(ellipse at 50% 50%, var(--ml-accent-a14), transparent 60%),
        linear-gradient(160deg, #0c0a09 0%, #1c1917 100%) !important;
}
body.mylens-theme .ml-about-page .ml-page-hero__bg {
    background:
        radial-gradient(ellipse 85% 90% at 18% 25%, var(--ml-accent-a16), transparent 55%),
        radial-gradient(circle at 88% 18%, rgba(255, 255, 255, 0.08), transparent 42%),
        radial-gradient(circle at 50% 100%, var(--ml-accent-a08), transparent 45%),
        linear-gradient(168deg, #0c0a09 0%, #1c1917 42%, #44403c 100%) !important;
}
body.mylens-theme .ml-about-page .ml-page-cta__bg {
    background:
        radial-gradient(ellipse 70% 55% at 50% 20%, var(--ml-accent-a14), transparent 58%),
        linear-gradient(168deg, #0c0a09 0%, #1c1917 55%, #292524 100%) !important;
}
body.mylens-theme .ml-about-page .ml-about-story__text {
    border-left-color: var(--ml-accent) !important;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.9) inset,
        0 14px 40px rgba(var(--ml-ink), 0.07),
        0 4px 14px var(--ml-accent-a12) !important;
}
body.mylens-theme .ml-about-page .ml-about-value:hover {
    border-color: var(--ml-accent-a35) !important;
    box-shadow:
        0 20px 48px rgba(var(--ml-ink), 0.09),
        0 6px 16px var(--ml-accent-a14) !important;
}
body.mylens-theme .ml-about-page .ml-about-story__image img {
    box-shadow:
        0 24px 60px rgba(var(--ml-ink), 0.12),
        0 8px 24px var(--ml-accent-a16),
        inset 0 1px 0 rgba(255, 255, 255, 0.95) !important;
}

body.mylens-theme .ml-brand-page .ml-shop-products {
    background:
        radial-gradient(ellipse 90% 55% at 50% 0%, var(--ml-accent-a08), transparent 58%),
        linear-gradient(180deg, var(--ml-surface) 0%, var(--ml-surface-alt) 100%) !important;
}

/* Related products (single PDP): WebToffee wishlist row — no left rule,
   centered with title/price, readable type */
body.mylens-theme.single-product .et_pb_wc_related_products section.related ul.products li.product .icon_after_add_to_cart {
    margin: 0 !important;
    padding: 4px 18px 16px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100%;
    box-sizing: border-box;
    border: 0 !important;
    border-left: none !important;
    border-top: none !important;
    background: transparent !important;
    box-shadow: none !important;
}

body.mylens-theme.single-product .et_pb_wc_related_products section.related ul.products li.product .icon_after_add_to_cart > a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-left: none !important;
    box-shadow: none !important;
    background: transparent !important;
    font-family: var(--ml-font-body, system-ui, sans-serif) !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    line-height: 1.35 !important;
    letter-spacing: 0.01em;
    color: var(--ml-primary) !important;
    text-decoration: none !important;
}

body.mylens-theme.single-product .et_pb_wc_related_products section.related ul.products li.product .icon_after_add_to_cart > a:hover {
    color: var(--ml-accent-hover) !important;
}

body.mylens-theme.single-product .et_pb_wc_related_products section.related ul.products li.product .icon_after_add_to_cart > a:focus-visible {
    outline: 2px solid var(--ml-accent);
    outline-offset: 3px;
    border-radius: 4px;
}

body.mylens-theme.single-product .et_pb_wc_related_products section.related ul.products li.product .icon_after_add_to_cart span.wbte_wishlist,
body.mylens-theme.single-product .et_pb_wc_related_products section.related ul.products li.product .icon_after_add_to_cart span.wbte_wishlist_remove {
    border: 0 !important;
    border-left: none !important;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    font: inherit !important;
    color: inherit !important;
}

body.mylens-theme.single-product .et_pb_wc_related_products section.related ul.products li.product .icon_after_add_to_cart .wishlist_text_icon_image {
    width: 18px !important;
    height: 18px !important;
    max-width: 18px !important;
    max-height: 18px !important;
    margin: 0 !important;
    flex-shrink: 0;
    object-fit: contain !important;
}

@media (max-width: 767px) {
    body.mylens-theme.single-product .et_pb_wc_related_products section.related ul.products li.product .icon_after_add_to_cart {
        padding: 2px 12px 14px !important;
    }
}

::selection {
    background: var(--ml-accent) !important;
    color: #fff !important;
}
