/**
 * Exclusive Floors – main stylesheet
 * Theme version 0.6
 * Premium flooring brand aesthetic (editorial serif, warm neutrals, minimal borders)
 */

/* ==========================================================================
   Design tokens
   ========================================================================== */

:root {
    --ef-bg: #f7f4ef;
    --ef-bg-dark: #12100e;
    --ef-surface: #fdfcfa;
    --ef-surface-warm: #f0ebe3;
    --ef-ink: #171411;
    --ef-text: #171411;
    --ef-muted: #6f655c;
    --ef-line: rgba(23, 20, 17, 0.1);
    --ef-line-strong: rgba(23, 20, 17, 0.18);
    --ef-accent: #b8874a;
    --ef-accent-light: #d4a862;
    --ef-accent-dark: #8a6330;
    --ef-dark: #12100e;
    --ef-radius: 4px;
    --ef-container: 1280px;
    --ef-font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
    --ef-font-display: "Cormorant Garamond", "Times New Roman", serif;
    --ef-header-height: 84px;
    --ef-shadow-soft: 0 12px 40px rgba(23, 20, 17, 0.06);
    --ef-shadow-medium: 0 18px 50px rgba(23, 20, 17, 0.1);
    --ef-transition: 0.22s ease;
    --ef-gutter: clamp(1rem, 3vw, 2rem);
}

/* ==========================================================================
   Reset & base
   ========================================================================== */

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

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

body {
    margin: 0;
    min-height: 100vh;
    font-family: var(--ef-font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--ef-ink);
    background: var(--ef-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
    height: auto;
}

button,
input,
select,
textarea {
    font: inherit;
    color: inherit;
}

a {
    color: var(--ef-accent-dark);
    text-decoration-thickness: 1px;
    text-underline-offset: 0.15em;
    transition: color var(--ef-transition);
}

a:hover {
    color: var(--ef-accent);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--ef-font-display);
    font-weight: 600;
    line-height: 1.12;
    color: var(--ef-ink);
}

p {
    margin: 0 0 1rem;
}

ul,
ol {
    margin: 0;
    padding: 0;
}

figure {
    margin: 0;
}

::selection {
    background: rgba(184, 135, 74, 0.22);
    color: var(--ef-ink);
}

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

/* ==========================================================================
   Skip link
   ========================================================================== */

.ef-skip-link {
    position: absolute;
    top: -100%;
    left: var(--ef-gutter);
    z-index: 9999;
    padding: 0.75rem 1.25rem;
    background: var(--ef-dark);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--ef-radius);
    transition: top var(--ef-transition);
}

.ef-skip-link:focus {
    top: 1rem;
}

/* ==========================================================================
   Layout – container & main
   ========================================================================== */

.ef-container {
    width: min(var(--ef-container), 100% - (var(--ef-gutter) * 2));
    margin-inline: auto;
}

.ef-container--narrow {
    width: min(760px, 100% - (var(--ef-gutter) * 2));
}

.ef-main {
    padding: clamp(2rem, 4vw, 3.5rem) 0 clamp(3rem, 6vw, 5rem);
}

.ef-main--home {
    padding: 0;
}

.ef-main--product {
    padding-top: clamp(1.25rem, 2vw, 2rem);
}

.ef-main--shop {
    padding-top: clamp(1.5rem, 3vw, 2.5rem);
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.ef-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.72rem 1.35rem;
    border: 1px solid transparent;
    border-radius: var(--ef-radius);
    font-family: var(--ef-font-body);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.2;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
    transition:
        background var(--ef-transition),
        border-color var(--ef-transition),
        color var(--ef-transition),
        box-shadow var(--ef-transition),
        transform var(--ef-transition);
}

.ef-btn:hover {
    transform: translateY(-1px);
}

.ef-btn:active {
    transform: translateY(0);
}

.ef-btn--primary {
    background: var(--ef-accent);
    border-color: var(--ef-accent);
    color: #fff;
}

.ef-btn--primary:hover {
    background: var(--ef-accent-dark);
    border-color: var(--ef-accent-dark);
    color: #fff;
}

.ef-btn--secondary {
    background: var(--ef-dark);
    border-color: var(--ef-dark);
    color: #fff;
}

.ef-btn--secondary:hover {
    background: #2a2622;
    border-color: #2a2622;
    color: #fff;
}

.ef-btn--outline {
    background: transparent;
    border-color: var(--ef-line-strong);
    color: var(--ef-ink);
}

.ef-btn--outline:hover {
    border-color: var(--ef-accent);
    color: var(--ef-accent-dark);
    background: rgba(184, 135, 74, 0.06);
}

.ef-btn--ghost {
    background: transparent;
    border-color: transparent;
    color: var(--ef-accent-dark);
    padding-inline: 0.5rem;
}

.ef-btn--ghost:hover {
    color: var(--ef-accent);
    background: rgba(184, 135, 74, 0.08);
}

.ef-btn--glass {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.35);
    color: #fff;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.ef-btn--glass:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.55);
    color: #fff;
}

.ef-btn--ghost-light {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.35);
    color: #fff;
}

.ef-btn--ghost-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.55);
    color: #fff;
}

.ef-btn--lg {
    padding: 0.95rem 1.75rem;
    font-size: 0.82rem;
}

/* ==========================================================================
   Site header
   ========================================================================== */

.ef-site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    height: var(--ef-header-height);
    background: rgba(253, 252, 250, 0.92);
    border-bottom: 1px solid var(--ef-line);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition:
        background var(--ef-transition),
        border-color var(--ef-transition),
        box-shadow var(--ef-transition);
}

.ef-site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    height: 100%;
}

/* Home – transparent fixed header over cinema hero */
.ef-body--home .ef-site-header {
    position: fixed;
    left: 0;
    right: 0;
    background: transparent;
    border-bottom-color: transparent;
    box-shadow: none;
}

.ef-body--home .ef-site-header .ef-brand,
.ef-body--home .ef-site-header .ef-nav__list a,
.ef-body--home .ef-site-header .ef-nav__phone-label,
.ef-body--home .ef-site-header .ef-nav__phone-value {
    color: #fff;
}

.ef-body--home .ef-site-header .ef-nav-toggle__bar {
    background: #fff;
}

.ef-body--home .ef-site-header .ef-nav__cta {
    border-color: rgba(255, 255, 255, 0.35);
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.ef-body--home .ef-site-header.is-scrolled {
    background: rgba(253, 252, 250, 0.96);
    border-bottom-color: var(--ef-line);
    box-shadow: var(--ef-shadow-soft);
}

.ef-body--home .ef-site-header.is-scrolled .ef-brand,
.ef-body--home .ef-site-header.is-scrolled .ef-nav__list a,
.ef-body--home .ef-site-header.is-scrolled .ef-nav__phone-label,
.ef-body--home .ef-site-header.is-scrolled .ef-nav__phone-value {
    color: var(--ef-ink);
}

.ef-body--home .ef-site-header.is-scrolled .ef-nav-toggle__bar {
    background: var(--ef-ink);
}

.ef-body--home .ef-site-header.is-scrolled .ef-nav__cta {
    border-color: var(--ef-accent);
    color: #fff;
    background: var(--ef-accent);
}

/* Brand */
.ef-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--ef-ink);
}

.ef-brand:hover {
    color: var(--ef-ink);
}

.ef-brand img {
    max-height: 52px;
    width: auto;
}

.ef-brand__mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: var(--ef-accent);
    color: #fff;
    font-family: var(--ef-font-display);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    border-radius: var(--ef-radius);
}

.ef-brand__text {
    display: flex;
    flex-direction: column;
    font-family: var(--ef-font-display);
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: 0.02em;
}

/* Navigation */
.ef-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.ef-nav__list {
    display: flex;
    align-items: center;
    gap: clamp(1rem, 2vw, 1.75rem);
    list-style: none;
    margin: 0;
    padding: 0;
}

.ef-nav__list a {
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-decoration: none;
    text-transform: uppercase;
    color: var(--ef-ink);
    transition: color var(--ef-transition);
}

.ef-nav__list a:hover,
.ef-nav__list .current-menu-item > a,
.ef-nav__list .current_page_item > a {
    color: var(--ef-accent);
}

.ef-nav__actions {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.ef-nav__phone {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-decoration: none;
    line-height: 1.2;
}

.ef-nav__phone-label {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ef-muted);
}

.ef-nav__phone-value {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--ef-ink);
}

.ef-nav__phone:hover .ef-nav__phone-value {
    color: var(--ef-accent);
}

.ef-nav__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.75rem;
    padding: 0.55rem 1rem;
    border: 1px solid var(--ef-accent);
    border-radius: var(--ef-radius);
    background: var(--ef-accent);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    transition:
        background var(--ef-transition),
        border-color var(--ef-transition);
}

.ef-nav__cta:hover {
    background: var(--ef-accent-dark);
    border-color: var(--ef-accent-dark);
    color: #fff;
}

/* Mobile nav toggle */
.ef-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 2.75rem;
    height: 2.75rem;
    padding: 0;
    border: 1px solid var(--ef-line);
    border-radius: var(--ef-radius);
    background: transparent;
    cursor: pointer;
}

.ef-nav-toggle__bar {
    display: block;
    width: 1.25rem;
    height: 2px;
    margin-inline: auto;
    background: var(--ef-ink);
    transition: transform var(--ef-transition), opacity var(--ef-transition);
}

/* ==========================================================================
   Hero – cinema
   ========================================================================== */

.ef-hero--cinema {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: clamp(520px, 88vh, 780px);
    padding-top: var(--ef-header-height);
    color: #fff;
    overflow: hidden;
}

.ef-hero__backdrop {
    position: absolute;
    inset: 0;
    background-image: var(--ef-hero-image);
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
}

.ef-hero__veil {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(18, 16, 14, 0.35) 0%, rgba(18, 16, 14, 0.15) 40%, rgba(18, 16, 14, 0.72) 100%),
        linear-gradient(90deg, rgba(18, 16, 14, 0.55) 0%, rgba(18, 16, 14, 0.1) 60%);
}

.ef-hero__content {
    position: relative;
    z-index: 2;
    padding-block: clamp(3rem, 8vw, 5.5rem) clamp(2rem, 4vw, 3rem);
}

.ef-hero__copy {
    max-width: 42rem;
}

.ef-hero__eyebrow {
    margin: 0 0 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ef-accent-light);
}

.ef-hero__title {
    margin: 0 0 1.25rem;
    font-family: var(--ef-font-display);
    font-size: clamp(2.5rem, 5.5vw, 4.25rem);
    font-weight: 600;
    line-height: 1.02;
    color: #fff;
}

.ef-hero__lead {
    margin: 0 0 2rem;
    max-width: 34rem;
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.82);
}

.ef-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.ef-hero__stats-wrap {
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(18, 16, 14, 0.55);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.ef-hero__stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 1.35rem 0;
}

.ef-hero__stats li {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.ef-hero__stats strong {
    font-family: var(--ef-font-display);
    font-size: clamp(1.35rem, 2vw, 1.75rem);
    font-weight: 600;
    color: #fff;
}

.ef-hero__stats span {
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.65);
}

/* ==========================================================================
   Section headings & featured blocks
   ========================================================================== */

.ef-section-head {
    margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
}

.ef-section-head--center {
    text-align: center;
    max-width: 40rem;
    margin-inline: auto;
    margin-bottom: 2rem;
}

.ef-section-head__eyebrow {
    margin: 0 0 0.5rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ef-accent-dark);
}

.ef-section-head__title {
    margin: 0;
    font-family: var(--ef-font-display);
    font-size: clamp(1.85rem, 3.5vw, 2.75rem);
    font-weight: 600;
    line-height: 1.05;
}

.ef-section-head__lead {
    max-width: 38rem;
    margin: 0.85rem 0 0;
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--ef-muted);
}

.ef-featured {
    padding: clamp(3rem, 6vw, 5rem) 0;
    background: var(--ef-bg);
}

.ef-featured--sale {
    background: var(--ef-bg-dark);
    color: rgba(255, 255, 255, 0.82);
}

.ef-featured--sale .ef-section-head__eyebrow {
    color: var(--ef-accent-light);
}

.ef-featured--sale .ef-section-head__title {
    color: #fff;
}

.ef-featured--sale .ef-product-card {
    border-color: rgba(255, 255, 255, 0.12);
}

.ef-featured--sale .ef-product-card__link {
    background: var(--ef-surface);
    border-color: rgba(255, 255, 255, 0.14);
}

.ef-featured--sale .ef-product-card__body {
    background: var(--ef-surface);
}

.ef-featured--sale .ef-product-card__title {
    color: var(--ef-ink);
}

.ef-featured--sale .ef-product-card__price {
    color: var(--ef-accent-dark);
}

.ef-featured--sale .ef-product-card__price del,
.ef-featured--sale .ef-product-card__price .ef-price-display__was-inline del {
    color: var(--ef-muted);
}

.ef-featured--sale .ef-product-card__unit,
.ef-featured--sale .ef-price-display__unit {
    color: var(--ef-muted);
}

.ef-featured--sale .ef-product-card__chip {
    background: rgba(184, 135, 74, 0.08);
    border-color: rgba(184, 135, 74, 0.22);
    color: var(--ef-accent-dark);
}

.ef-featured--sale .ef-btn--outline {
    border-color: rgba(255, 255, 255, 0.35);
    color: #fff;
}

.ef-featured--sale .ef-btn--outline:hover {
    border-color: var(--ef-accent-light);
    color: var(--ef-accent-light);
    background: rgba(255, 255, 255, 0.06);
}

.ef-featured--projects {
    background: var(--ef-surface-warm);
}

.ef-featured__more {
    margin: 2rem 0 0;
    text-align: center;
}

/* ==========================================================================
   Product grid & cards
   ========================================================================== */

.ef-product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1rem, 2vw, 1.5rem);
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Homepage – kompaktnější karty (elegantní náhledy, ne hero portréty) */
.ef-product-grid--home {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(0.85rem, 1.6vw, 1.15rem);
}

.ef-product-grid--home .ef-product-card__media {
    aspect-ratio: 4 / 3;
}

.ef-product-grid--home .ef-product-card__body {
    padding: 0.8rem 0.9rem 0.95rem;
    gap: 0.35rem;
}

.ef-product-grid--home .ef-product-card__title {
    font-size: 1rem;
    line-height: 1.25;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ef-product-grid--home .ef-product-card__chip {
    font-size: 0.6rem;
    padding: 0.16rem 0.42rem;
}

.ef-product-grid--home .ef-product-card__cta {
    padding: 0.5rem 0.75rem;
    font-size: 0.65rem;
}

.ef-product-grid--home .ef-badge {
    top: 0.55rem;
    left: 0.55rem;
    padding: 0.35rem 0.5rem;
}

.ef-product-grid--home .ef-badge__value {
    font-size: 0.82rem;
}

.ef-product-grid.products {
    margin: 0;
    padding: 0;
}

.ef-product-card {
    list-style: none;
}

.ef-product-card__shell {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid var(--ef-line);
    background: var(--ef-surface);
    border-radius: var(--ef-radius);
    overflow: hidden;
    transition:
        border-color var(--ef-transition),
        box-shadow var(--ef-transition),
        transform var(--ef-transition);
}

.ef-product-card__shell:hover {
    border-color: rgba(184, 135, 74, 0.35);
    box-shadow: var(--ef-shadow-soft);
    transform: translateY(-2px);
}

.ef-product-card__link {
    display: flex;
    flex-direction: column;
    flex: 1;
    text-decoration: none;
    color: inherit;
    border: none;
    background: transparent;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    transform: none;
}

.ef-product-card__link:hover {
    border-color: transparent;
    box-shadow: none;
    transform: none;
}

.ef-product-card__media {
    position: relative;
    display: block;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: var(--ef-surface-warm);
}

.ef-product-card__media img,
.ef-product-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.ef-product-card__link:hover .ef-product-card__media img,
.ef-product-card__link:hover .ef-product-card__img {
    transform: scale(1.04);
}

.ef-product-card__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 1rem;
    background: linear-gradient(180deg, transparent 40%, rgba(18, 16, 14, 0.55) 100%);
    opacity: 0;
    transition: opacity var(--ef-transition);
}

.ef-product-card__link:hover .ef-product-card__overlay {
    opacity: 1;
}

.ef-product-card__cta {
    padding: 0.55rem 1rem;
    background: #fff;
    color: var(--ef-ink);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: var(--ef-radius);
}

.ef-product-card__body {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    padding: 1rem 1.1rem 1.15rem;
    flex: 1;
}

.ef-product-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.ef-product-card__chip {
    display: inline-block;
    padding: 0.2rem 0.5rem;
    background: var(--ef-surface-warm);
    border: 1px solid var(--ef-line);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ef-muted);
    border-radius: var(--ef-radius);
}

.ef-product-card__title {
    margin: 0;
    font-family: var(--ef-font-display);
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.2;
    color: var(--ef-ink);
}

.ef-product-card__price {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    margin-top: auto;
}

.ef-product-card__price .ef-price-display--card {
    gap: 0.15rem;
}

.ef-product-card__price del,
.ef-product-card__price .ef-price-display__was-inline del {
    opacity: 0.55;
    font-weight: 400;
    font-size: 0.82rem;
    text-decoration: line-through;
    color: var(--ef-muted);
}

.ef-product-card__price ins,
.ef-product-card__price .ef-price-display__current {
    text-decoration: none;
}

.ef-product-card__unit,
.ef-price-display__unit {
    font-size: 0.78rem;
    font-weight: 400;
    color: var(--ef-muted);
}

.ef-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 4;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.08rem;
    padding: 0.45rem 0.62rem 0.5rem;
    border-radius: calc(var(--ef-radius) - 2px);
    background: linear-gradient(145deg, #c89452 0%, #9a6830 100%);
    color: #fff;
    box-shadow:
        0 8px 18px rgba(18, 16, 14, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
    line-height: 1.05;
    pointer-events: none;
}

.ef-badge__label {
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    opacity: 0.92;
}

.ef-badge__value {
    font-family: var(--ef-font-display);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.ef-badge--gallery {
    top: 1rem;
    left: 1rem;
    padding: 0.55rem 0.72rem 0.58rem;
}

.ef-badge--gallery .ef-badge__value {
    font-size: 1.08rem;
}

.ef-featured--sale .ef-badge {
    box-shadow:
        0 10px 22px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.ef-badge--sale {
    background: linear-gradient(145deg, #c89452 0%, #9a6830 100%);
}

/* ==========================================================================
   Catalog collections
   ========================================================================== */

.ef-catalog-collections {
    display: flex;
    flex-direction: column;
    gap: clamp(2.5rem, 5vw, 4rem);
}

.ef-catalog-collection__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.35rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--ef-line);
}

.ef-catalog-collection__title {
    margin: 0;
    font-family: var(--ef-font-display);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 600;
    line-height: 1.05;
}

.ef-catalog-collection__lead {
    margin: 0.45rem 0 0;
    color: var(--ef-muted);
    max-width: 36rem;
}

.ef-link-arrow {
    flex: 0 0 auto;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--ef-accent-dark);
}

.ef-link-arrow:hover {
    color: var(--ef-accent);
}

.ef-link-arrow::after {
    content: " →";
}

.ef-product-grid--collection {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* ==========================================================================
   Shop layout, header & filters
   ========================================================================== */

.ef-shop-layout {
    display: block;
}

.ef-shop-layout__main {
    min-width: 0;
}

.ef-shop-header {
    margin-bottom: 2rem;
    padding: clamp(1.5rem, 3vw, 2.5rem);
    background: var(--ef-surface);
    border: 1px solid var(--ef-line);
    border-radius: var(--ef-radius);
}

.ef-main--shop .ef-shop-header {
    background: var(--ef-bg-dark);
    color: #fff;
    border: 0;
}

.ef-shop-header__eyebrow {
    margin: 0 0 0.5rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ef-accent-dark);
}

.ef-main--shop .ef-shop-header__eyebrow {
    color: var(--ef-accent-light);
}

.ef-shop-header__title {
    margin: 0 0 0.75rem;
    font-family: var(--ef-font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.05;
}

.ef-main--shop .ef-shop-header__title {
    color: #fff;
}

.ef-shop-header__lead {
    margin: 0;
    max-width: 48rem;
    color: var(--ef-muted);
    line-height: 1.65;
}

.ef-main--shop .ef-shop-header__lead {
    color: rgba(255, 255, 255, 0.78);
}

.ef-shop-filters {
    margin-bottom: 2rem;
    padding: 1.35rem 1.5rem;
    background: var(--ef-surface);
    border: 1px solid var(--ef-line);
    border-radius: var(--ef-radius);
}

.ef-shop-filters__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid var(--ef-line);
}

.ef-shop-filters__title {
    margin: 0;
    font-family: var(--ef-font-display);
    font-size: 1.25rem;
    font-weight: 600;
}

.ef-shop-filters__clear {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--ef-muted);
}

.ef-shop-filters__clear:hover {
    color: var(--ef-accent);
}

.ef-shop-filters__group {
    margin-bottom: 1.15rem;
}

.ef-shop-filters__group:last-child {
    margin-bottom: 0;
}

.ef-shop-filters__label {
    margin: 0 0 0.65rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ef-muted);
}

.ef-shop-filters__list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.ef-filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.45rem 0.85rem;
    border: 1px solid var(--ef-line);
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 500;
    text-decoration: none;
    color: var(--ef-ink);
    background: var(--ef-bg);
    transition:
        border-color var(--ef-transition),
        background var(--ef-transition),
        color var(--ef-transition);
}

.ef-filter-chip:hover {
    border-color: var(--ef-accent);
    color: var(--ef-accent-dark);
}

.ef-filter-chip.is-active {
    border-color: var(--ef-accent);
    background: rgba(184, 135, 74, 0.12);
    color: var(--ef-accent-dark);
    font-weight: 600;
}

.ef-filter-chip__count {
    font-size: 0.72rem;
    color: var(--ef-muted);
}

.ef-filter-chip.is-active .ef-filter-chip__count {
    color: var(--ef-accent-dark);
}

.ef-price-filter {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.ef-price-filter__fields {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.ef-price-filter__field {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    flex: 1;
    min-width: 120px;
}

.ef-price-filter__field span {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ef-muted);
}

.ef-price-filter__field input {
    width: 100%;
    padding: 0.55rem 0.75rem;
    border: 1px solid var(--ef-line);
    border-radius: var(--ef-radius);
    background: var(--ef-bg);
}

.ef-price-filter__field input:focus {
    outline: none;
    border-color: var(--ef-accent);
}

.ef-price-filter__submit {
    align-self: flex-start;
}

.ef-shop-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.85rem 1.25rem;
    margin: 0 0 1.5rem;
    padding: 0.85rem 1.1rem;
    background: var(--ef-surface);
    border: 1px solid var(--ef-line);
    border-radius: var(--ef-radius);
}

.ef-shop-toolbar__count {
    margin: 0;
    font-size: 0.88rem;
    color: var(--ef-muted);
}

.ef-shop-ordering {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin: 0;
}

.ef-shop-ordering__label {
    margin: 0;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ef-muted);
    white-space: nowrap;
}

.ef-shop-ordering__select-wrap {
    position: relative;
}

.ef-shop-ordering__select-wrap::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0.85rem;
    width: 0.45rem;
    height: 0.45rem;
    border-right: 2px solid var(--ef-muted);
    border-bottom: 2px solid var(--ef-muted);
    transform: translateY(-65%) rotate(45deg);
    pointer-events: none;
}

.ef-shop-ordering__select {
    appearance: none;
    min-width: 11.5rem;
    padding: 0.48rem 2.1rem 0.48rem 0.9rem;
    border: 1px solid var(--ef-line);
    border-radius: 999px;
    background: var(--ef-bg);
    font: inherit;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--ef-ink);
    cursor: pointer;
    transition:
        border-color var(--ef-transition),
        box-shadow var(--ef-transition);
}

.ef-shop-ordering__select:hover,
.ef-shop-ordering__select:focus {
    border-color: var(--ef-accent);
    outline: none;
    box-shadow: 0 0 0 3px rgba(184, 135, 74, 0.14);
}

.woocommerce-result-count,
.woocommerce-ordering {
    display: none !important;
}

/* ==========================================================================
   Project cards & grid
   ========================================================================== */

.ef-project-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1rem, 2vw, 1.5rem);
    list-style: none;
    margin: 0;
    padding: 0;
}

.ef-project-grid--compact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ef-project-card {
    list-style: none;
}

.ef-project-card__link {
    display: block;
    text-decoration: none;
    color: inherit;
    border: 1px solid var(--ef-line);
    background: var(--ef-surface);
    border-radius: var(--ef-radius);
    overflow: hidden;
    transition:
        border-color var(--ef-transition),
        box-shadow var(--ef-transition),
        transform var(--ef-transition);
}

.ef-project-card__link:hover {
    border-color: rgba(184, 135, 74, 0.35);
    box-shadow: var(--ef-shadow-soft);
    transform: translateY(-2px);
}

.ef-project-card__media {
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--ef-surface-warm);
    position: relative;
}

.ef-project-card__width {
    position: absolute;
    right: 0.65rem;
    bottom: 0.65rem;
    padding: 0.25rem 0.55rem;
    border-radius: 999px;
    background: rgba(18, 16, 14, 0.72);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.ef-project-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.ef-project-card__video-wrap {
    position: absolute;
    inset: 0;
    display: block;
}

.ef-project-card__video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #2a2420;
    pointer-events: none;
}

.ef-project-card__play {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 50%;
    background: rgba(255, 252, 248, 0.94);
    color: var(--ef-accent-dark, #8a6330);
    box-shadow: 0 8px 24px rgba(23, 20, 17, 0.18);
    transform: translate(-50%, -50%);
    pointer-events: none;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.ef-project-card__play svg {
    margin-left: 0.12rem;
}

.ef-project-card__link:hover .ef-project-card__play {
    transform: translate(-50%, -50%) scale(1.06);
    box-shadow: 0 10px 28px rgba(23, 20, 17, 0.22);
}

.ef-project-card__link:hover .ef-project-card__media img {
    transform: scale(1.04);
}

.ef-project-card__body {
    display: block;
    padding: 1rem 1.1rem;
}

.ef-project-card__title {
    margin: 0;
    font-family: var(--ef-font-display);
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.2;
    color: var(--ef-ink);
}

/* Project single */
.ef-project-single__figure {
    margin-bottom: 2rem;
    border-radius: var(--ef-radius);
    overflow: hidden;
}

.ef-project-single__figure img {
    width: 100%;
}

.ef-project-single__header {
    margin-bottom: 1.5rem;
}

.ef-project-single__title {
    margin: 0;
    font-family: var(--ef-font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.05;
}

.ef-project-single__excerpt {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--ef-muted);
}

.ef-project-single__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--ef-line);
}

.ef-linked-catalog {
    margin-top: clamp(2rem, 4vw, 3rem);
    padding-top: clamp(1.5rem, 3vw, 2.5rem);
    border-top: 1px solid var(--ef-line);
}

.ef-linked-catalog__head {
    margin-bottom: 1.25rem;
    max-width: 40rem;
}

.ef-linked-catalog__eyebrow {
    margin: 0 0 0.35rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ef-accent);
}

.ef-linked-catalog__title {
    margin: 0 0 0.45rem;
    font-family: var(--ef-font-display);
    font-size: clamp(1.45rem, 2.4vw, 1.9rem);
    font-weight: 600;
    line-height: 1.15;
}

.ef-linked-catalog__lead {
    margin: 0;
    color: var(--ef-muted);
    font-size: 0.95rem;
}

.ef-product-grid--single {
    grid-template-columns: minmax(0, 18rem);
}

.ef-linked-catalog__collection-link {
    display: inline-flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 1.1rem 1.25rem;
    border: 1px solid var(--ef-line);
    border-radius: var(--ef-radius);
    background: var(--ef-surface);
    text-decoration: none;
    color: inherit;
    transition:
        border-color var(--ef-transition),
        box-shadow var(--ef-transition),
        transform var(--ef-transition);
}

.ef-linked-catalog__collection-link:hover {
    border-color: rgba(184, 135, 74, 0.35);
    box-shadow: var(--ef-shadow-soft);
    transform: translateY(-2px);
}

.ef-linked-catalog__collection-name {
    font-family: var(--ef-font-display);
    font-size: 1.2rem;
    font-weight: 600;
}

.ef-linked-catalog__collection-cta {
    font-size: 0.9rem;
    color: var(--ef-accent-dark);
}

.ef-product-references {
    margin: clamp(2rem, 4vw, 3rem) 0 0;
    padding-top: clamp(1.5rem, 3vw, 2.5rem);
    border-top: 1px solid var(--ef-line);
}

.ef-product-references__head {
    margin-bottom: 1.25rem;
    max-width: 42rem;
}

.ef-product-references__eyebrow {
    margin: 0 0 0.35rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ef-accent);
}

.ef-product-references__title {
    margin: 0 0 0.45rem;
    font-family: var(--ef-font-display);
    font-size: clamp(1.45rem, 2.4vw, 1.9rem);
    font-weight: 600;
    line-height: 1.15;
}

.ef-product-references__lead {
    margin: 0;
    color: var(--ef-muted);
    font-size: 0.95rem;
}

.ef-product-references__more {
    margin: 0.85rem 0 0;
}

/* References page – hero, filters, portfolio cards */
.ef-references-hero {
    padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(2rem, 4vw, 3rem);
    background:
        linear-gradient(135deg, rgba(26, 22, 18, 0.92), rgba(26, 22, 18, 0.78)),
        var(--ef-references-hero-image, none) center / cover no-repeat;
    background-color: var(--ef-ink);
    color: #fff;
}

.ef-references-hero__grid {
    display: grid;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    align-items: end;
}

@media (min-width: 900px) {
    .ef-references-hero__grid {
        grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    }

    .ef-references-hero__trust {
        grid-column: 1;
    }
}

.ef-references-hero__title {
    margin: 0 0 1rem;
    font-family: var(--ef-font-display);
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 600;
    line-height: 1.05;
    color: #fff;
}

.ef-references-hero__lead {
    max-width: 42rem;
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.82);
}

.ef-references-hero .ef-page-hero__eyebrow {
    color: var(--ef-accent);
}

.ef-references-hero__trust {
    grid-column: 1 / -1;
    max-width: 42rem;
    margin: 1.25rem 0 0;
    font-size: 0.98rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.72);
}

.ef-references-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin: 0;
}

.ef-references-stats__item {
    padding: 1rem 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--ef-radius);
    background: rgba(255, 255, 255, 0.05);
}

.ef-references-stats__item dt {
    margin: 0 0 0.35rem;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.62);
}

.ef-references-stats__item dd {
    margin: 0;
    font-family: var(--ef-font-display);
    font-size: 1.35rem;
    font-weight: 600;
    color: #fff;
}

.ef-references-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin: clamp(1.75rem, 3vw, 2.5rem) 0 1.75rem;
}

.ef-references-filters__pill {
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 1rem;
    border: 1px solid var(--ef-line);
    border-radius: 999px;
    background: var(--ef-surface);
    color: var(--ef-muted);
    font-size: 0.92rem;
    font-weight: 500;
    text-decoration: none;
    transition:
        border-color var(--ef-transition),
        color var(--ef-transition),
        background var(--ef-transition);
}

.ef-references-filters__pill:hover,
.ef-references-filters__pill.is-active {
    border-color: rgba(184, 135, 74, 0.45);
    background: rgba(184, 135, 74, 0.08);
    color: var(--ef-ink);
}

.ef-project-grid--portfolio {
    margin-bottom: clamp(3rem, 6vw, 5rem);
}

.ef-project-card--portfolio .ef-project-card__body {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    min-height: 8.5rem;
}

.ef-project-card__category {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ef-accent);
}

.ef-project-card__excerpt {
    display: -webkit-box;
    overflow: hidden;
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--ef-muted);
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.ef-project-card__cta {
    margin-top: auto;
    padding-top: 0.35rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--ef-accent);
}

.ef-project-card__count {
    position: absolute;
    right: 0.75rem;
    bottom: 0.75rem;
    padding: 0.25rem 0.55rem;
    border-radius: 999px;
    background: rgba(26, 22, 18, 0.72);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
}

.ef-project-card__media {
    position: relative;
}

.ef-references-empty {
    display: grid;
    gap: 1rem;
    justify-items: start;
    padding: 2.5rem 0 4rem;
    color: var(--ef-muted);
}

.ef-references-pagination {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem 1.5rem;
    margin: 0 0 clamp(3rem, 6vw, 5rem);
    padding-top: 1.5rem;
    border-top: 1px solid var(--ef-line);
}

.ef-references-pagination__status {
    margin: 0;
    font-size: 0.92rem;
    color: var(--ef-muted);
}

.ef-references-pagination__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.4rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.ef-references-pagination__link,
.ef-references-pagination__current,
.ef-references-pagination__gap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    min-height: 2.5rem;
    padding: 0.35rem 0.75rem;
    border-radius: var(--ef-radius);
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1;
}

.ef-references-pagination__link {
    border: 1px solid var(--ef-line);
    background: var(--ef-surface);
    color: var(--ef-ink);
    text-decoration: none;
    transition:
        border-color var(--ef-transition),
        background var(--ef-transition),
        color var(--ef-transition);
}

.ef-references-pagination__link:hover {
    border-color: var(--ef-accent);
    color: var(--ef-accent-dark);
}

.ef-references-pagination__link--prev,
.ef-references-pagination__link--next {
    min-width: auto;
    padding-inline: 0.95rem;
}

.ef-references-pagination__current {
    background: var(--ef-accent);
    color: #fff;
}

.ef-references-pagination__gap {
    min-width: auto;
    padding-inline: 0.25rem;
    color: var(--ef-muted);
}

/* Project single – gallery */
.ef-project-single__category {
    margin: 0 0 0.65rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ef-accent);
}

.ef-project-single__lead {
    max-width: 42rem;
    margin: 0;
    font-size: 1.12rem;
    line-height: 1.65;
    color: var(--ef-muted);
}

.ef-project-gallery {
    margin-bottom: 2rem;
}

.ef-project-gallery__hero {
    margin: 0 0 1rem;
    overflow: hidden;
    border-radius: var(--ef-radius);
    background: var(--ef-surface-warm);
}

.ef-project-gallery__hero img,
.ef-project-gallery__hero-img {
    display: block;
    width: 100%;
    height: auto;
}

.ef-project-gallery__video {
    display: block;
    width: 100%;
    max-height: min(72vh, 720px);
    border-radius: var(--ef-radius-lg, 12px);
    background: #1a1510;
}

.ef-project-gallery__thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
    gap: 0.65rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.ef-project-gallery__thumb {
    display: block;
    width: 100%;
    padding: 0;
    border: 2px solid transparent;
    border-radius: calc(var(--ef-radius) - 2px);
    overflow: hidden;
    background: none;
    cursor: pointer;
    transition: border-color var(--ef-transition);
}

.ef-project-gallery__thumb.is-active,
.ef-project-gallery__thumb:hover {
    border-color: var(--ef-accent);
}

.ef-project-gallery__thumb-img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.ef-project-single__content {
    margin-top: 1.5rem;
}

.ef-project-related {
    margin-top: clamp(3rem, 6vw, 4.5rem);
    padding-top: 2.5rem;
    border-top: 1px solid var(--ef-line);
}

/* ==========================================================================
   Home sections – video, about, FAQ, reviews
   ========================================================================== */

.ef-home-video {
    padding: clamp(3rem, 6vw, 5rem) 0;
    background: var(--ef-surface);
}

.ef-home-video__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: clamp(1.5rem, 3vw, 3rem);
    align-items: center;
}

.ef-home-video__media {
    position: relative;
    aspect-ratio: 16 / 10;
    background: var(--ef-bg-dark);
    overflow: hidden;
    border-radius: var(--ef-radius);
}

.ef-home-video__media iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.ef-home-video__text {
    color: var(--ef-muted);
    margin-bottom: 1.25rem;
}

.ef-home-about {
    padding: clamp(3rem, 6vw, 5rem) 0;
    background: var(--ef-bg-dark);
    color: rgba(255, 255, 255, 0.82);
}

.ef-home-about__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(1.5rem, 3vw, 3rem);
    align-items: center;
}

.ef-home-about__media {
    overflow: hidden;
    border-radius: var(--ef-radius);
}

.ef-home-about__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 360px;
}

.ef-home-about .ef-section-head__eyebrow {
    color: var(--ef-accent-light);
}

.ef-home-about .ef-section-head__title {
    color: #fff;
}

.ef-home-about__lead {
    color: rgba(255, 255, 255, 0.78);
}

.ef-home-about__list {
    margin: 0 0 1.5rem;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.65rem;
}

.ef-home-about__list li {
    position: relative;
    padding-left: 1.25rem;
}

.ef-home-about__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 0.45rem;
    height: 0.45rem;
    background: var(--ef-accent);
}

/* ==========================================================================
   Customer portal (Zafaro)
   ========================================================================== */

.ef-customer-portal {
    padding: clamp(3rem, 6vw, 5rem) 0;
    background: var(--ef-bg);
}

.ef-customer-portal--compact {
    padding-top: clamp(2rem, 4vw, 3rem);
    background: transparent;
}

.ef-customer-portal__grid,
.ef-customer-portal__compact {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(1.75rem, 4vw, 3.5rem);
    align-items: center;
}

.ef-customer-portal__title {
    margin: 0 0 1rem;
    font-family: var(--ef-font-display);
    font-size: clamp(1.85rem, 3.4vw, 2.65rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--ef-text);
}

.ef-customer-portal__lead {
    margin: 0 0 1.5rem;
    max-width: 38rem;
    color: var(--ef-muted);
    line-height: 1.65;
}

.ef-customer-portal__features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
    margin-bottom: 1.5rem;
}

.ef-customer-portal__feature {
    padding: 1rem 1.1rem;
    background: var(--ef-surface);
    border: 1px solid var(--ef-line);
    border-radius: var(--ef-radius);
}

.ef-customer-portal__feature-title {
    margin: 0 0 0.35rem;
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--ef-text);
}

.ef-customer-portal__feature-text {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--ef-muted);
}

.ef-customer-portal__existing {
    margin-bottom: 1.35rem;
    padding: 1rem 1.15rem;
    background: rgba(184, 134, 11, 0.08);
    border: 1px solid rgba(184, 134, 11, 0.22);
    border-radius: var(--ef-radius);
}

.ef-customer-portal__existing-title {
    margin: 0 0 0.35rem;
    font-weight: 600;
    color: var(--ef-text);
}

.ef-customer-portal__existing-text {
    margin: 0;
    font-size: 0.94rem;
    line-height: 1.55;
    color: var(--ef-muted);
}

.ef-customer-portal__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.ef-customer-portal__zafaro {
    margin: 0;
    max-width: 34rem;
    font-size: 0.82rem;
    line-height: 1.55;
    color: var(--ef-muted);
}

.ef-customer-portal__zafaro a {
    color: var(--ef-accent-dark);
    font-weight: 600;
    text-decoration: none;
}

.ef-customer-portal__zafaro a:hover {
    text-decoration: underline;
}

.ef-customer-portal__bullets {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.55rem;
}

.ef-customer-portal__bullets li {
    position: relative;
    padding-left: 1.15rem;
    color: var(--ef-muted);
}

.ef-customer-portal__bullets li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 0.4rem;
    height: 0.4rem;
    border-radius: 50%;
    background: var(--ef-accent);
}

.ef-customer-portal__figure {
    margin: 0;
    overflow: hidden;
    border-radius: calc(var(--ef-radius) + 4px);
    border: 1px solid var(--ef-line);
    box-shadow: 0 24px 48px rgba(24, 20, 16, 0.12);
}

.ef-customer-portal__figure img {
    display: block;
    width: 100%;
    height: auto;
}

.ef-customer-portal__visual {
    display: flex;
    justify-content: center;
}

.ef-contact-card--portal {
    border-color: rgba(184, 134, 11, 0.35);
    background: linear-gradient(180deg, rgba(184, 134, 11, 0.06) 0%, var(--ef-surface) 100%);
}

.ef-contact-card__company {
    font-weight: 600;
    color: var(--ef-text) !important;
}

.ef-contact-card__legal-note {
    font-size: 0.88rem;
    line-height: 1.55;
}

.ef-customer-portal-inline {
    margin: 0.65rem 0 0;
    font-size: 0.94rem;
    line-height: 1.55;
    color: inherit;
}

.ef-customer-portal-inline a {
    font-weight: 600;
    color: inherit;
}

.ef-portal-mockup {
    width: min(100%, 320px);
    margin-inline: auto;
}

.ef-portal-mockup__bezel {
    padding: 0.65rem;
    border-radius: 28px;
    background: linear-gradient(145deg, #2a2622 0%, #12100e 100%);
    box-shadow: 0 28px 56px rgba(24, 20, 16, 0.22);
}

.ef-portal-mockup__notch {
    width: 34%;
    height: 0.45rem;
    margin: 0 auto 0.55rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
}

.ef-portal-mockup__screen {
    padding: 1rem 0.9rem 1.1rem;
    border-radius: 20px;
    background: linear-gradient(180deg, #faf8f5 0%, #f0ebe3 100%);
}

.ef-portal-mockup__brand {
    margin: 0 0 0.15rem;
    font-size: 0.62rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #8a8178;
}

.ef-portal-mockup__job {
    margin: 0 0 0.85rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: #2c2620;
}

.ef-portal-mockup__card {
    margin-bottom: 0.55rem;
    padding: 0.65rem 0.7rem;
    border-radius: 12px;
    background: #fff;
    border: 1px solid rgba(44, 38, 32, 0.08);
}

.ef-portal-mockup__card--accent {
    border-color: rgba(184, 134, 11, 0.35);
    background: rgba(184, 134, 11, 0.08);
}

.ef-portal-mockup__chip {
    display: inline-block;
    margin-bottom: 0.35rem;
    padding: 0.15rem 0.45rem;
    border-radius: 999px;
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #7a5a08;
    background: rgba(184, 134, 11, 0.18);
}

.ef-portal-mockup__card-title {
    margin: 0 0 0.2rem;
    font-size: 0.72rem;
    font-weight: 600;
    color: #2c2620;
}

.ef-portal-mockup__card-meta {
    margin: 0;
    font-size: 0.62rem;
    line-height: 1.45;
    color: #7a7268;
}

.ef-portal-mockup__btn {
    margin-top: 0.75rem;
    padding: 0.55rem 0.75rem;
    border-radius: 10px;
    text-align: center;
    font-size: 0.72rem;
    font-weight: 600;
    color: #fff;
    background: var(--ef-accent);
}

.ef-home-faq {
    padding: clamp(3.5rem, 6vw, 5.5rem) 0;
    background:
        linear-gradient(180deg, var(--ef-bg) 0%, rgba(240, 235, 227, 0.45) 100%);
}

.ef-home-faq__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: start;
}

.ef-home-faq__intro {
    position: sticky;
    top: calc(var(--ef-header-height) + 1.5rem);
}

.ef-home-faq__intro-card {
    position: relative;
    padding: clamp(1.5rem, 2.8vw, 2rem) clamp(1.35rem, 2.5vw, 1.85rem);
    background: var(--ef-surface);
    border: 1px solid var(--ef-line);
    border-radius: calc(var(--ef-radius) + 2px);
    box-shadow: var(--ef-shadow-soft);
}

.ef-home-faq__intro-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    border-radius: calc(var(--ef-radius) + 2px) calc(var(--ef-radius) + 2px) 0 0;
    background: linear-gradient(90deg, var(--ef-accent) 0%, var(--ef-accent-light) 100%);
}

.ef-home-faq__head {
    margin-bottom: 1rem;
}

.ef-home-faq__eyebrow {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.55rem 0.75rem;
    margin: 0 0 1rem;
}

.ef-home-faq__eyebrow-label {
    display: inline-flex;
    align-items: center;
    padding: 0.32rem 0.7rem;
    border: 1px solid rgba(184, 135, 74, 0.28);
    border-radius: 999px;
    background: rgba(184, 135, 74, 0.08);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ef-accent-dark);
}

.ef-home-faq__eyebrow-count {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--ef-muted);
}

.ef-home-faq__title {
    margin: 0;
    font-family: var(--ef-font-display);
    font-weight: 600;
    line-height: 1.02;
}

.ef-home-faq__title-main {
    display: block;
    font-size: clamp(2rem, 3.8vw, 2.85rem);
    color: var(--ef-ink);
}

.ef-home-faq__title-em {
    display: block;
    margin-top: 0.2rem;
    font-family: var(--ef-font-display);
    font-size: clamp(1.45rem, 2.8vw, 2rem);
    font-style: italic;
    font-weight: 500;
    color: var(--ef-accent-dark);
}

.ef-home-faq__lead {
    margin: 0;
    color: var(--ef-muted);
    line-height: 1.7;
    font-size: 0.98rem;
}

.ef-home-faq__highlights {
    margin: 1.25rem 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.65rem;
}

.ef-home-faq__highlights li {
    position: relative;
    padding-left: 1.35rem;
    color: var(--ef-ink);
    font-size: 0.9rem;
    line-height: 1.5;
}

.ef-home-faq__highlights li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.45em;
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 1px;
    background: var(--ef-accent);
    transform: rotate(45deg);
}

.ef-home-faq__actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
    margin-top: 1.5rem;
}

.ef-home-faq__contact {
    margin: 1.15rem 0 0;
    padding-top: 1.1rem;
    border-top: 1px solid var(--ef-line);
    font-size: 0.88rem;
    color: var(--ef-muted);
    line-height: 1.5;
}

.ef-home-faq__contact a {
    display: inline-block;
    margin-left: 0.25rem;
    font-weight: 700;
    color: var(--ef-accent-dark);
    text-decoration: none;
    white-space: nowrap;
}

.ef-home-faq__contact a:hover {
    color: var(--ef-accent);
}

.ef-faq__panel-head {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.35rem 1rem;
    margin-bottom: 0.85rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid var(--ef-line);
}

.ef-faq__panel-title {
    margin: 0;
    font-family: var(--ef-font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--ef-ink);
}

.ef-faq__panel-hint {
    margin: 0;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--ef-muted);
}

.ef-faq__panel {
    padding: clamp(1rem, 2vw, 1.35rem);
    background: var(--ef-surface);
    border: 1px solid var(--ef-line);
    border-radius: calc(var(--ef-radius) + 2px);
    box-shadow: var(--ef-shadow-soft);
}

.ef-faq__panel--page {
    max-width: 760px;
}

.ef-faq {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin: 0;
    padding: 0;
}

.ef-faq__item {
    border: 1px solid var(--ef-line);
    border-radius: var(--ef-radius);
    background: rgba(247, 244, 239, 0.55);
    overflow: hidden;
    transition:
        border-color 0.22s ease,
        box-shadow 0.22s ease,
        background 0.22s ease;
}

.ef-faq__item[open] {
    border-color: rgba(184, 135, 74, 0.32);
    background: #fff;
    box-shadow: 0 8px 24px rgba(23, 20, 17, 0.05);
}

.ef-faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
    padding: 1rem 1.1rem;
    cursor: pointer;
    list-style: none;
    font-family: var(--ef-font-body);
    font-size: 0.98rem;
    font-weight: 600;
    line-height: 1.45;
    color: var(--ef-ink);
    transition: color 0.2s ease;
    outline: none;
}

.ef-faq__question::-webkit-details-marker {
    display: none;
}

.ef-faq__question::marker {
    content: "";
}

.ef-faq__question-text {
    flex: 1;
    min-width: 0;
}

.ef-faq__toggle {
    position: relative;
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    border: 1px solid var(--ef-line-strong);
    border-radius: 50%;
    background: #fff;
    transition:
        border-color 0.2s ease,
        background 0.2s ease,
        transform 0.2s ease;
}

.ef-faq__toggle::before,
.ef-faq__toggle::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background: var(--ef-accent-dark);
    border-radius: 1px;
    transform: translate(-50%, -50%);
    transition: background 0.2s ease, transform 0.2s ease;
}

.ef-faq__toggle::before {
    width: 0.65rem;
    height: 1.5px;
}

.ef-faq__toggle::after {
    width: 1.5px;
    height: 0.65rem;
}

.ef-faq__item[open] > .ef-faq__question .ef-faq__toggle::after {
    transform: translate(-50%, -50%) scaleY(0);
}

.ef-faq__question:hover {
    color: var(--ef-accent-dark);
}

.ef-faq__question:hover .ef-faq__toggle {
    border-color: rgba(184, 135, 74, 0.45);
    background: rgba(184, 135, 74, 0.06);
}

.ef-faq__question:focus {
    outline: none;
}

.ef-faq__question:focus-visible {
    outline: none;
    color: var(--ef-accent-dark);
}

.ef-faq__question:focus-visible .ef-faq__toggle {
    border-color: var(--ef-accent);
    box-shadow: 0 0 0 3px rgba(184, 135, 74, 0.18);
}

.ef-faq__item[open] > .ef-faq__question {
    color: var(--ef-accent-dark);
}

.ef-faq__item[open] > .ef-faq__question .ef-faq__toggle {
    border-color: var(--ef-accent);
    background: rgba(184, 135, 74, 0.1);
}

.ef-faq__answer {
    color: var(--ef-muted);
    padding: 0 1.1rem 1.1rem;
    line-height: 1.7;
    border-top: 1px solid var(--ef-line);
    animation: ef-faq-open 0.22s ease;
}

@keyframes ef-faq-open {
    from {
        opacity: 0;
        transform: translateY(-0.25rem);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ef-faq__answer p {
    margin: 0.85rem 0 0;
    max-width: 58ch;
}

.ef-home-reviews {
    padding: clamp(3rem, 6vw, 5rem) 0;
    background:
        linear-gradient(180deg, rgba(240, 235, 227, 0.55) 0%, var(--ef-surface-warm) 100%);
}

.ef-home-reviews .ef-section-head--center {
    margin-bottom: clamp(2rem, 3.5vw, 2.75rem);
}

.ef-review-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1rem, 2vw, 1.5rem);
    list-style: none;
    margin: 0;
    padding: 0;
}

.ef-review-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: clamp(1.35rem, 2.2vw, 1.75rem);
    background: var(--ef-surface);
    border: 1px solid rgba(23, 20, 17, 0.08);
    border-top: 3px solid var(--ef-accent);
    box-shadow: var(--ef-shadow-soft);
    border-radius: calc(var(--ef-radius) + 2px);
    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        border-color 0.22s ease;
}

.ef-review-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--ef-shadow-medium);
    border-color: rgba(184, 135, 74, 0.22);
}

.ef-review-card__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.85rem;
}

.ef-review-card__mark {
    font-family: var(--ef-font-display);
    font-size: clamp(2.5rem, 4vw, 3.25rem);
    font-weight: 600;
    line-height: 0.8;
    color: rgba(184, 135, 74, 0.28);
    user-select: none;
}

.ef-review-card__stars {
    display: inline-flex;
    gap: 0.18rem;
    margin-top: 0.35rem;
}

.ef-review-card__star {
    width: 0.82rem;
    height: 0.82rem;
    background: var(--ef-accent);
    clip-path: polygon(
        50% 0%,
        61% 35%,
        98% 35%,
        68% 57%,
        79% 91%,
        50% 70%,
        21% 91%,
        32% 57%,
        2% 35%,
        39% 35%
    );
}

.ef-review-card__quote {
    flex: 1;
    margin: 0;
    border: 0;
    padding: 0;
}

.ef-review-card__quote p {
    margin: 0;
    color: var(--ef-ink);
    font-size: 0.98rem;
    line-height: 1.7;
}

.ef-review-card__footer {
    margin-top: 1.35rem;
    padding-top: 1rem;
    border-top: 1px solid var(--ef-line);
}

.ef-review-card__author {
    display: block;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.74rem;
    color: var(--ef-accent-dark);
}

.ef-home-reviews__more {
    margin: clamp(1.75rem, 3vw, 2.25rem) 0 0;
    text-align: center;
}

.ef-home-reviews__more-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--ef-accent-dark);
    text-decoration: none;
    transition: color 0.2s ease, gap 0.2s ease;
}

.ef-home-reviews__more-link::after {
    content: "→";
    transition: transform 0.2s ease;
}

.ef-home-reviews__more-link:hover {
    color: var(--ef-accent);
}

.ef-home-reviews__more-link:hover::after {
    transform: translateX(3px);
}

.ef-home-content {
    padding: clamp(2rem, 4vw, 3rem) 0;
}

.ef-home-editorial {
    padding: clamp(3rem, 6vw, 4.5rem) 0 clamp(3.5rem, 6vw, 5rem);
    background: var(--ef-bg);
    border-top: 1px solid var(--ef-line);
}

.ef-home-editorial .ef-section-head--center {
    max-width: 46rem;
    margin-bottom: clamp(2rem, 3.5vw, 2.75rem);
}

.ef-home-editorial .ef-section-head__lead {
    margin: 0.75rem 0 0;
    color: var(--ef-muted);
    line-height: 1.65;
}

.ef-home-editorial__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1rem, 2vw, 1.35rem);
}

.ef-home-editorial__card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: clamp(1.35rem, 2.2vw, 1.65rem);
    background: var(--ef-surface);
    border: 1px solid var(--ef-line);
    border-radius: calc(var(--ef-radius) + 2px);
    box-shadow: var(--ef-shadow-soft);
}

.ef-home-editorial__card-title {
    margin: 0 0 0.75rem;
    font-family: var(--ef-font-display);
    font-size: clamp(1.2rem, 2vw, 1.4rem);
    font-weight: 600;
    line-height: 1.25;
    color: var(--ef-ink);
}

.ef-home-editorial__card-text {
    flex: 1;
    margin: 0;
    color: var(--ef-muted);
    font-size: 0.96rem;
    line-height: 1.7;
}

.ef-home-editorial__card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 1.15rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--ef-accent-dark);
    text-decoration: none;
    transition: color 0.2s ease, gap 0.2s ease;
}

.ef-home-editorial__card-link::after {
    content: "→";
    transition: transform 0.2s ease;
}

.ef-home-editorial__card-link:hover {
    color: var(--ef-accent);
}

.ef-home-editorial__card-link:hover::after {
    transform: translateX(3px);
}

.ef-home-editorial__hubs {
    margin-top: clamp(1.75rem, 3vw, 2.25rem);
    padding-top: clamp(1.25rem, 2.5vw, 1.75rem);
    border-top: 1px solid var(--ef-line);
}

.ef-home-editorial__hub-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.55rem 0.75rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ef-home-editorial__hub-link {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.85rem;
    border: 1px solid var(--ef-line-strong);
    border-radius: 999px;
    background: var(--ef-surface);
    color: var(--ef-text);
    font-size: 0.86rem;
    font-weight: 600;
    text-decoration: none;
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.ef-home-editorial__hub-link:hover {
    border-color: var(--ef-accent);
    color: var(--ef-accent-dark);
    background: rgba(184, 135, 74, 0.06);
}

/* ==========================================================================
   Single product – premium layout
   ========================================================================== */

.ef-product--premium {
    margin-top: 1rem;
}

.ef-product__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: clamp(1.5rem, 3vw, 3rem);
    align-items: start;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.ef-product__gallery {
    min-width: 0;
}

.ef-product__gallery .woocommerce-product-gallery {
    position: relative;
    /* WC startuje na opacity:0 a čeká na JS — bez wc-single-product by galerie zůstala neviditelná */
    opacity: 1 !important;
}

.ef-product__gallery .onsale,
.ef-product__gallery .ef-badge--gallery {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 4;
    margin: 0;
}

.ef-product__gallery .woocommerce-product-gallery__trigger {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 3;
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid var(--ef-line);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: var(--ef-ink);
    text-indent: -9999px;
    overflow: hidden;
    transition: border-color var(--ef-transition), background var(--ef-transition);
}

.ef-product__gallery .woocommerce-product-gallery__trigger:hover {
    border-color: var(--ef-accent);
    background: #fff;
}

.ef-product__gallery .woocommerce-product-gallery__trigger::before {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    width: 1rem;
    height: 1rem;
    background: currentColor;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='m21 21-4.3-4.3'/%3E%3C/svg%3E") center / contain no-repeat;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='m21 21-4.3-4.3'/%3E%3C/svg%3E") center / contain no-repeat;
}

.ef-product__gallery .woocommerce-product-gallery__wrapper {
    margin: 0;
}

.ef-product__gallery .woocommerce-product-gallery__image {
    border: 1px solid var(--ef-line);
    border-radius: var(--ef-radius);
    overflow: hidden;
    background: var(--ef-surface-warm);
}

.ef-product__gallery .woocommerce-product-gallery__image img {
    width: 100%;
    height: auto;
    display: block;
}

.ef-product__gallery .flex-control-thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0.85rem 0 0;
    padding: 0;
    list-style: none;
}

.ef-product__gallery .flex-control-thumbs li {
    width: calc(25% - 0.375rem);
    margin: 0;
}

.ef-product__gallery .flex-control-thumbs img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border: 1px solid var(--ef-line);
    border-radius: var(--ef-radius);
    cursor: pointer;
    opacity: 0.62;
    transition: opacity 0.2s ease, border-color 0.2s ease;
}

.ef-product__gallery .flex-control-thumbs img.flex-active,
.ef-product__gallery .flex-control-thumbs img:hover {
    opacity: 1;
    border-color: var(--ef-accent);
}

.ef-product-sidebar-gallery {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--ef-line);
}

.ef-product-sidebar-gallery__head {
    margin-bottom: 1rem;
}

.ef-product-sidebar-gallery__title {
    margin: 0 0 0.35rem;
    font-family: var(--ef-font-display);
    font-size: clamp(1.15rem, 2vw, 1.45rem);
    font-weight: 600;
    line-height: 1.15;
}

.ef-product-sidebar-gallery__lead {
    margin: 0;
    color: var(--ef-muted);
    font-size: 0.88rem;
    line-height: 1.55;
}

.ef-product-sidebar-gallery__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.ef-product-sidebar-gallery__link {
    display: block;
    overflow: hidden;
    border: 1px solid var(--ef-line);
    border-radius: var(--ef-radius);
    background: var(--ef-surface-warm);
    aspect-ratio: 4 / 3;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.ef-product-sidebar-gallery__link:hover {
    transform: translateY(-2px);
    border-color: var(--ef-accent);
    box-shadow: var(--ef-shadow-soft);
}

.ef-product-sidebar-gallery__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ef-product-sidebar-gallery__refs {
    margin-top: 1.15rem;
    padding-top: 1.15rem;
    border-top: 1px solid var(--ef-line);
}

.ef-product-sidebar-gallery__refs-title {
    margin: 0 0 0.75rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ef-accent);
}

.ef-product-sidebar-gallery__refs-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.ef-product-sidebar-gallery__refs-link {
    display: block;
    overflow: hidden;
    border: 1px solid var(--ef-line);
    border-radius: var(--ef-radius);
    background: var(--ef-surface);
    text-decoration: none;
    color: inherit;
    transition:
        border-color var(--ef-transition),
        box-shadow var(--ef-transition),
        transform var(--ef-transition);
}

.ef-product-sidebar-gallery__refs-link:hover {
    border-color: rgba(184, 135, 74, 0.35);
    box-shadow: var(--ef-shadow-soft);
    transform: translateY(-2px);
}

.ef-product-sidebar-gallery__refs-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}

.ef-product-sidebar-gallery__refs-label {
    display: block;
    padding: 0.55rem 0.65rem 0.65rem;
    font-size: 0.78rem;
    line-height: 1.35;
    color: var(--ef-muted);
}

.ef-product-sidebar-gallery__refs-more {
    margin: 0.85rem 0 0;
}

/* Fotogalerie pod popisem (tabs) */
.ef-product-detail-gallery {
    margin: clamp(2rem, 4vw, 3rem) 0 0;
    padding-top: clamp(1.5rem, 3vw, 2.5rem);
    border-top: 1px solid var(--ef-line);
}

.ef-product-detail-gallery__head {
    margin-bottom: 1.25rem;
    max-width: 40rem;
}

.ef-product-detail-gallery__title {
    margin: 0 0 0.35rem;
    font-family: var(--ef-font-display);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 600;
    line-height: 1.1;
}

.ef-product-detail-gallery__lead {
    margin: 0;
    color: var(--ef-muted);
}

.ef-product-detail-gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.ef-product-detail-gallery__link {
    display: block;
    overflow: hidden;
    border: 1px solid var(--ef-line);
    border-radius: var(--ef-radius);
    background: var(--ef-surface-warm);
    aspect-ratio: 4 / 3;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.ef-product-detail-gallery__link:hover {
    transform: translateY(-2px);
    border-color: var(--ef-accent);
    box-shadow: var(--ef-shadow-soft);
}

.ef-product-detail-gallery__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Související podlahy – horizontální posuv */
.ef-related-products {
    margin: clamp(2rem, 4vw, 3rem) 0 0;
    padding-top: clamp(1.5rem, 3vw, 2.5rem);
    border-top: 1px solid var(--ef-line);
}

.ef-related-products__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.25rem 2rem;
    margin-bottom: 1.25rem;
}

.ef-related-products__intro {
    max-width: 42rem;
}

.ef-related-products__eyebrow {
    margin: 0 0 0.35rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ef-accent-dark);
}

.ef-related-products__title {
    margin: 0 0 0.45rem;
    font-family: var(--ef-font-display);
    font-size: clamp(1.45rem, 2.4vw, 1.9rem);
    font-weight: 600;
    line-height: 1.12;
}

.ef-related-products__lead {
    margin: 0;
    color: var(--ef-muted);
    font-size: 0.95rem;
    line-height: 1.55;
}

.ef-related-products__actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.75rem;
    flex-shrink: 0;
}

.ef-related-products__nav {
    display: inline-flex;
    gap: 0.45rem;
}

.ef-related-products__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.35rem;
    height: 2.35rem;
    padding: 0;
    border: 1px solid var(--ef-line);
    border-radius: 999px;
    background: var(--ef-surface);
    color: var(--ef-ink);
    font-size: 1rem;
    line-height: 1;
    cursor: pointer;
    transition:
        border-color var(--ef-transition),
        background var(--ef-transition),
        color var(--ef-transition);
}

.ef-related-products__btn:hover,
.ef-related-products__btn:focus-visible {
    border-color: var(--ef-accent);
    background: rgba(184, 135, 74, 0.08);
    color: var(--ef-accent-dark);
}

.ef-related-products__track {
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(184, 135, 74, 0.45) transparent;
    padding-bottom: 0.35rem;
    margin: 0 -0.25rem;
    padding-inline: 0.25rem;
}

.ef-related-products__track:focus-visible {
    outline: 2px solid var(--ef-accent);
    outline-offset: 4px;
}

.ef-related-products__list {
    display: flex;
    gap: 1rem;
    list-style: none;
    margin: 0;
    padding: 0.15rem 0 0.5rem;
}

.ef-related-products__list > .ef-product-card,
.ef-related-products__list > li {
    flex: 0 0 clamp(11.5rem, 24vw, 15.5rem);
    scroll-snap-align: start;
    max-width: 15.5rem;
}

.ef-related-products .ef-product-card__link {
    box-shadow: none;
}

.ef-related-products .ef-product-card__link:hover {
    transform: translateY(-1px);
}

.ef-related-products .ef-product-card__media {
    aspect-ratio: 1 / 1;
}

.ef-related-products .ef-product-card__overlay {
    background: linear-gradient(180deg, transparent 55%, rgba(18, 16, 14, 0.5) 100%);
}

.ef-related-products .ef-product-card__body {
    padding: 0.85rem 0.9rem 1rem;
}

.ef-related-products .ef-product-card__title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    font-size: 0.92rem;
    line-height: 1.35;
}

.ef-related-products .ef-product-card__meta {
    margin-bottom: 0.35rem;
}

.ef-related-products .ef-product-card__chip {
    font-size: 0.72rem;
    padding: 0.2rem 0.45rem;
}

.ef-related-products .ef-product-card__price {
    font-size: 0.88rem;
}

.ef-related-products .ef-product-card__unit {
    display: block;
    margin-top: 0.1rem;
    font-size: 0.68rem;
}

.ef-product__below .related.products {
    display: none;
}

.ef-product-desc-text + .ef-product-desc-grid {
    margin-top: 1.75rem;
}

.ef-product-desc-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.ef-product-desc-grid__link {
    display: block;
    overflow: hidden;
    border: 1px solid var(--ef-line);
    border-radius: var(--ef-radius);
    aspect-ratio: 4 / 3;
    background: var(--ef-surface-warm);
}

.ef-product-desc-grid__link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ef-product__below .woocommerce-Tabs-panel--description img {
    max-width: 100%;
    height: auto;
}

.ef-product__summary {
    min-width: 0;
}

.ef-product__summary--sticky {
    position: sticky;
    top: calc(var(--ef-header-height) + 1.25rem);
}

.ef-product__summary .product_title {
    margin: 0 0 1rem;
    font-family: var(--ef-font-display);
    font-size: clamp(1.85rem, 3vw, 2.5rem);
    font-weight: 600;
    line-height: 1.08;
}

.ef-product-lead {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--ef-line);
}

.ef-product-lead .woocommerce-product-details__short-description {
    margin: 0;
    font-size: 0.95rem;
    color: var(--ef-muted);
    line-height: 1.7;
}

.ef-product-lead .woocommerce-product-details__short-description p {
    margin: 0 0 0.85rem;
}

.ef-product-lead .woocommerce-product-details__short-description p:last-child {
    margin-bottom: 0;
}

.ef-product-collection {
    display: inline-block;
    margin-bottom: 0.75rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--ef-accent-dark);
}

.ef-product-collection:hover {
    color: var(--ef-accent);
}

.ef-product-price-box {
    margin: 0 0 1.25rem;
    padding: 1.35rem 1.5rem;
    background: linear-gradient(180deg, rgba(184, 135, 74, 0.06) 0%, var(--ef-surface) 100%);
    border: 1px solid rgba(184, 135, 74, 0.18);
    border-radius: var(--ef-radius);
}

.ef-price-display {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.ef-price-display--detail .ef-price-display__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.15rem;
}

.ef-price-display__eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ef-accent);
}

.ef-price-display__badge {
    padding: 0.25rem 0.55rem;
    border-radius: 999px;
    background: var(--ef-accent);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.ef-price-display__was {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.35rem 0.65rem;
    margin: 0;
    font-size: 0.88rem;
    color: var(--ef-muted);
}

.ef-price-display__was-label {
    font-weight: 500;
}

.ef-price-display__was-values {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.35rem;
}

.ef-price-display__was-values del,
.ef-price-display__was-inline del {
    text-decoration: line-through;
    opacity: 0.75;
}

.ef-price-display__was-sep {
    opacity: 0.45;
}

.ef-price-display__was-gross {
    font-size: 0.84rem;
}

.ef-price-display__primary {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.45rem 0.65rem;
    margin: 0;
    line-height: 1;
}

.ef-price-display__from {
    font-family: var(--ef-font-display);
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    font-weight: 600;
    font-style: italic;
    color: var(--ef-accent-dark);
}

.ef-price-display__gross .ef-price-display__from {
    font-size: 0.95em;
}

.ef-price-display__current .ef-price-display__from {
    font-size: 0.92em;
}

.ef-price-display__note {
    margin: 0.5rem 0 0;
    font-size: 0.84rem;
    line-height: 1.55;
    color: var(--ef-muted);
}

.ef-price-display--piece .ef-price-display__eyebrow {
    color: var(--ef-accent-dark);
}

.ef-price-display__amount {
    font-family: var(--ef-font-display);
    font-size: clamp(1.85rem, 3vw, 2.35rem);
    font-weight: 600;
    color: var(--ef-accent-dark);
}

.ef-price-display__amount .woocommerce-Price-amount {
    color: inherit;
}

.ef-price-display__net-label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--ef-muted);
    letter-spacing: 0.02em;
}

.ef-price-display__gross {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--ef-ink);
}

.ef-price-display__gross span,
.ef-price-display__gross-inline span {
    color: var(--ef-muted);
    font-weight: 400;
}

.ef-price-display--card {
    gap: 0.12rem;
}

.ef-price-display__was-inline {
    display: block;
    line-height: 1.2;
}

.ef-price-display__current {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--ef-accent-dark);
    line-height: 1.25;
}

.ef-price-display__gross-inline {
    display: block;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--ef-muted);
    line-height: 1.3;
}

.ef-price-display--sale .ef-price-display__amount {
    color: #9a5a12;
}

.ef-product-unit-note {
    margin: 0.15rem 0 0;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--ef-muted);
}

/* Poptávkový formulář */
.ef-product-inquiry {
    margin: 0 0 1.5rem;
    padding: 1.35rem 1.5rem;
    background: var(--ef-surface);
    border: 1px solid var(--ef-line);
    border-radius: var(--ef-radius);
}

.ef-product-inquiry__notice {
    margin: 0 0 1rem;
    padding: 0.85rem 1rem;
    border-radius: var(--ef-radius);
    font-size: 0.9rem;
    line-height: 1.5;
}

.ef-product-inquiry__notice--success {
    background: rgba(0, 117, 24, 0.08);
    border: 1px solid rgba(0, 117, 24, 0.18);
    color: #0f5a1f;
}

.ef-product-inquiry__notice--error {
    background: rgba(170, 0, 0, 0.06);
    border: 1px solid rgba(170, 0, 0, 0.15);
    color: #8a1111;
}

.ef-product-inquiry__head {
    margin-bottom: 1.25rem;
}

.ef-product-inquiry__title {
    margin: 0 0 0.35rem;
    font-family: var(--ef-font-display);
    font-size: clamp(1.35rem, 2vw, 1.65rem);
    font-weight: 600;
    line-height: 1.1;
}

.ef-product-inquiry__lead {
    margin: 0;
    font-size: 0.88rem;
    color: var(--ef-muted);
    line-height: 1.55;
}

.ef-product-inquiry__section {
    margin: 0 0 1.15rem;
    padding: 0;
    border: 0;
}

.ef-product-inquiry__section legend {
    margin-bottom: 0.75rem;
    padding: 0;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ef-muted);
}

.ef-product-inquiry__grid {
    display: grid;
    gap: 0.85rem;
}

.ef-product-inquiry__grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ef-product-inquiry__field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.ef-product-inquiry__field--full {
    grid-column: 1 / -1;
}

.ef-product-inquiry__field label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--ef-ink);
}

.ef-product-inquiry__req {
    color: var(--ef-accent-dark);
}

.ef-product-inquiry__hint {
    margin-top: -0.15rem;
    font-size: 0.75rem;
    color: var(--ef-muted);
}

.ef-product-inquiry__field input,
.ef-product-inquiry__field textarea {
    width: 100%;
    padding: 0.65rem 0.85rem;
    border: 1px solid var(--ef-line);
    border-radius: var(--ef-radius);
    background: #fff;
    font: inherit;
    color: var(--ef-ink);
    transition: border-color var(--ef-transition), box-shadow var(--ef-transition);
}

.ef-product-inquiry__field input:focus,
.ef-product-inquiry__field textarea:focus {
    outline: none;
    border-color: var(--ef-accent);
    box-shadow: 0 0 0 3px rgba(184, 135, 74, 0.12);
}

.ef-product-inquiry__field input[readonly] {
    background: var(--ef-surface-warm);
    color: var(--ef-accent-dark);
    font-weight: 600;
}

.ef-product-inquiry__field textarea {
    min-height: 5.5rem;
    resize: vertical;
}

.ef-product-inquiry__options {
    margin: 0.25rem 0 0.85rem;
}

.ef-product-inquiry__options-label {
    display: block;
    margin-bottom: 0.55rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--ef-ink);
}

.ef-product-inquiry__checks {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 1rem;
}

.ef-product-inquiry__check {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.88rem;
    color: var(--ef-ink);
    cursor: pointer;
}

.ef-product-inquiry__check input {
    width: 1rem;
    height: 1rem;
    accent-color: var(--ef-accent);
}

.ef-product-inquiry__actions {
    margin-top: 0.5rem;
}

.ef-product-inquiry__submit {
    width: 100%;
    min-height: 3rem;
    justify-content: center;
}

.ef-product-inquiry__privacy {
    margin: 0.75rem 0 0;
    font-size: 0.75rem;
    line-height: 1.5;
    color: var(--ef-muted);
}

.ef-product-inquiry__hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.ef-product__summary .woocommerce-product-details__short-description {
    margin-bottom: 1.25rem;
    color: var(--ef-muted);
    line-height: 1.65;
}

.ef-product__summary form.cart {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.ef-product__summary .quantity {
    display: flex;
    align-items: center;
}

.ef-product__summary .quantity input.qty {
    width: 4rem;
    padding: 0.65rem 0.5rem;
    border: 1px solid var(--ef-line);
    border-radius: var(--ef-radius);
    text-align: center;
    background: var(--ef-bg);
}

.ef-product__summary .single_add_to_cart_button {
    flex: 1;
    min-width: 180px;
}

.ef-product-specs {
    margin: 0 0 1.5rem;
    padding: 0;
}

.ef-product-specs__row {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 0.75rem;
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--ef-line);
}

.ef-product-specs__row:first-child {
    border-top: 1px solid var(--ef-line);
}

.ef-product-specs__row dt {
    margin: 0;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--ef-muted);
}

.ef-product-specs__row dd {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: right;
    color: var(--ef-ink);
}

.ef-trust-strip {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    margin: 0 0 1rem;
    padding: 0;
    list-style: none;
}

.ef-trust-strip li {
    position: relative;
    padding-left: 1.15rem;
    font-size: 0.85rem;
    color: var(--ef-muted);
}

.ef-trust-strip li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 0.35rem;
    height: 0.35rem;
    background: var(--ef-accent);
    border-radius: 50%;
}

.ef-product-actions-secondary {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.ef-product-downloads {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--ef-line);
}

.ef-product-downloads__label {
    margin: 0 0 0.65rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ef-muted);
}

.ef-product-downloads__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.ef-link-download {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.88rem;
    font-weight: 500;
    text-decoration: none;
    color: var(--ef-accent-dark);
}

.ef-link-download::before {
    content: "↓";
    font-size: 0.85rem;
}

.ef-link-download:hover {
    color: var(--ef-accent);
}

.ef-product__below {
    margin-top: 1rem;
}

.ef-product__below .woocommerce-tabs {
    background: var(--ef-surface);
    border: 1px solid var(--ef-line);
    padding: 1.25rem 1.5rem;
    border-radius: var(--ef-radius);
}

.ef-product__below .woocommerce-tabs ul.tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0 0 1.25rem;
    padding: 0;
    border: 0;
    list-style: none;
}

.ef-product__below .woocommerce-tabs ul.tabs::before,
.ef-product__below .woocommerce-tabs ul.tabs::after {
    display: none;
}

.ef-product__below .woocommerce-tabs ul.tabs li {
    margin: 0;
    padding: 0;
    border: 0;
    background: none;
}

.ef-product__below .woocommerce-tabs ul.tabs li a {
    display: inline-flex;
    padding: 0.5rem 0.85rem;
    border: 1px solid var(--ef-line);
    border-radius: var(--ef-radius);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--ef-ink);
    background: var(--ef-bg);
}

.ef-product__below .woocommerce-tabs ul.tabs li.active a {
    border-color: var(--ef-accent);
    background: rgba(184, 135, 74, 0.1);
    color: var(--ef-accent-dark);
}

.ef-product__below .woocommerce-Tabs-panel {
    color: var(--ef-muted);
    line-height: 1.65;
}

.ef-product__below .woocommerce-Tabs-panel h2 {
    display: none;
}

.ef-product__below table.shop_attributes {
    width: 100%;
    border-collapse: collapse;
}

.ef-product__below table.shop_attributes th,
.ef-product__below table.shop_attributes td {
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--ef-line);
    text-align: left;
}

.ef-product__below table.shop_attributes th {
    font-weight: 500;
    color: var(--ef-muted);
    width: 40%;
}

/* Recenze produktu */
.ef-product__below .woocommerce-noreviews {
    margin: 0 0 1.25rem;
    padding: 0.85rem 1rem;
    background: var(--ef-surface-warm);
    border: 1px solid var(--ef-line);
    border-radius: var(--ef-radius);
    font-size: 0.9rem;
    color: var(--ef-muted);
}

.ef-product__below #review_form_wrapper {
    margin-top: 0.5rem;
}

.ef-product__below #review_form {
    padding: 1.35rem 1.5rem;
    background: linear-gradient(180deg, rgba(184, 135, 74, 0.05) 0%, var(--ef-surface) 100%);
    border: 1px solid rgba(184, 135, 74, 0.16);
    border-radius: var(--ef-radius);
}

.ef-review-form__title {
    margin: 0 0 0.5rem;
    font-family: var(--ef-font-display);
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--ef-ink);
}

.ef-review-form__intro {
    margin: 0 0 1.15rem;
    font-size: 0.88rem;
    line-height: 1.55;
    color: var(--ef-muted);
}

.ef-review-form__field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-bottom: 0.85rem;
}

.ef-review-form__field label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--ef-ink);
}

.ef-review-form__field .required {
    color: var(--ef-accent-dark);
}

.ef-review-form__field input,
.ef-review-form__field textarea {
    width: 100%;
    padding: 0.65rem 0.85rem;
    border: 1px solid var(--ef-line);
    border-radius: var(--ef-radius);
    background: #fff;
    font: inherit;
    color: var(--ef-ink);
    transition: border-color var(--ef-transition), box-shadow var(--ef-transition);
}

.ef-review-form__field input:focus,
.ef-review-form__field textarea:focus {
    outline: none;
    border-color: var(--ef-accent);
    box-shadow: 0 0 0 3px rgba(184, 135, 74, 0.12);
}

.ef-review-form__field textarea {
    min-height: 7rem;
    resize: vertical;
}

.ef-review-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
}

.ef-review-form__grid .ef-review-form__field {
    margin-bottom: 0;
}

.ef-review-form__rating {
    margin-bottom: 0.85rem;
}

.ef-review-form__rating > label {
    display: block;
    margin-bottom: 0.45rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--ef-ink);
}

.ef-review-form__rating select#rating {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.ef-product__below #respond p.stars,
.ef-product__below #respond p.stars.ef-review-stars {
    display: inline-flex;
    gap: 0.2rem;
    margin: 0;
    line-height: 1;
}

.ef-product__below #respond p.stars span {
    display: inline-flex;
    gap: 0.2rem;
}

.ef-product__below #respond p.stars a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.35rem;
    height: 2.35rem;
    border: 1px solid var(--ef-line);
    border-radius: var(--ef-radius);
    text-decoration: none;
    font-size: 0;
    line-height: 1;
    transition: border-color var(--ef-transition), background var(--ef-transition), transform var(--ef-transition);
}

.ef-product__below #respond p.stars a::before {
    content: "★";
    font-size: 1.15rem;
    color: rgba(184, 135, 74, 0.28);
    transition: color var(--ef-transition);
}

.ef-product__below #respond p.stars a:hover,
.ef-product__below #respond p.stars a:focus-visible {
    border-color: var(--ef-accent);
    background: rgba(184, 135, 74, 0.06);
    outline: none;
}

.ef-product__below #respond p.stars a:hover::before,
.ef-product__below #respond p.stars a:focus-visible::before {
    color: var(--ef-accent);
}

.ef-product__below #respond p.stars a.active {
    border-color: var(--ef-accent);
    background: rgba(184, 135, 74, 0.08);
}

.ef-product__below #respond p.stars a.active::before {
    color: var(--ef-accent);
}

.ef-product__below #respond .comment-form-cookies-consent {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    margin: 0.25rem 0 1rem;
    font-size: 0.78rem;
    line-height: 1.5;
    color: var(--ef-muted);
}

.ef-product__below #respond .comment-form-cookies-consent input {
    margin-top: 0.2rem;
    accent-color: var(--ef-accent);
}

.ef-product__below #respond .form-submit {
    margin: 0;
}

.ef-product__below #respond .ef-review-form__submit {
    min-width: 12rem;
    min-height: 2.85rem;
    padding: 0.85rem 1.35rem;
    border: 1px solid var(--ef-accent);
    border-radius: var(--ef-radius);
    background: var(--ef-accent);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background var(--ef-transition), border-color var(--ef-transition);
}

.ef-product__below #respond .ef-review-form__submit:hover {
    background: var(--ef-accent-dark);
    border-color: var(--ef-accent-dark);
}

.ef-product__below .commentlist {
    margin: 0 0 1.25rem;
    padding: 0;
    list-style: none;
}

.ef-product__below .commentlist .comment {
    margin: 0 0 0.85rem;
    padding: 1rem 1.1rem;
    border: 1px solid var(--ef-line);
    border-radius: var(--ef-radius);
    background: #fff;
}

.ef-product__below .commentlist .star-rating {
    float: none;
    margin: 0 0 0.45rem;
    color: var(--ef-accent);
}

.ef-product__below .commentlist .meta {
    margin-bottom: 0.45rem;
    font-size: 0.78rem;
    color: var(--ef-muted);
}

.ef-product__below .commentlist .description p {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--ef-ink);
}

/* ==========================================================================
   Breadcrumb
   ========================================================================== */

.ef-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 1.25rem;
    font-size: 0.78rem;
    color: var(--ef-muted);
}

.ef-breadcrumb a {
    text-decoration: none;
    color: var(--ef-muted);
}

.ef-breadcrumb a:hover {
    color: var(--ef-accent);
}

.ef-breadcrumb__current {
    color: var(--ef-ink);
    font-weight: 500;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ==========================================================================
   Page hero & prose
   ========================================================================== */

.ef-page-hero {
    margin-bottom: clamp(2rem, 4vw, 3rem);
    padding-bottom: clamp(1.5rem, 3vw, 2rem);
    border-bottom: 1px solid var(--ef-line);
}

.ef-page-hero--compact {
    margin-bottom: 1.75rem;
    padding-bottom: 1.25rem;
}

.ef-page-hero__eyebrow {
    margin: 0 0 0.5rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ef-accent-dark);
}

.ef-page-hero__title {
    margin: 0 0 0.75rem;
    font-family: var(--ef-font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.05;
}

.ef-page-hero--compact .ef-page-hero__title {
    margin-bottom: 0;
}

.ef-page-hero__lead {
    margin: 0;
    max-width: 42rem;
    color: var(--ef-muted);
    font-size: 1.05rem;
    line-height: 1.65;
}

.ef-page-title {
    margin: 0 0 1.5rem;
    font-family: var(--ef-font-display);
    font-size: clamp(1.85rem, 3vw, 2.5rem);
    font-weight: 600;
}

.ef-prose {
    max-width: 68ch;
    color: var(--ef-ink);
    line-height: 1.7;
}

.ef-prose > *:first-child {
    margin-top: 0;
}

.ef-prose > *:last-child {
    margin-bottom: 0;
}

.ef-prose h2,
.ef-prose h3,
.ef-prose h4 {
    margin: 2rem 0 0.75rem;
    font-family: var(--ef-font-display);
}

.ef-prose h2 {
    font-size: 1.75rem;
}

.ef-prose h3 {
    font-size: 1.35rem;
}

.ef-prose ul,
.ef-prose ol {
    margin: 0 0 1.25rem;
    padding-left: 1.35rem;
}

.ef-prose li {
    margin-bottom: 0.35rem;
}

.ef-prose a {
    color: var(--ef-accent-dark);
}

.ef-prose blockquote {
    margin: 1.5rem 0;
    padding: 1rem 1.25rem;
    border-left: 3px solid var(--ef-accent);
    background: var(--ef-surface-warm);
    font-family: var(--ef-font-display);
    font-size: 1.15rem;
    font-style: italic;
}

.ef-prose img {
    margin: 1.5rem 0;
    border-radius: var(--ef-radius);
}

.ef-prose table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.92rem;
}

.ef-prose table th,
.ef-prose table td {
    padding: 0.65rem 0.85rem;
    border: 1px solid var(--ef-line);
    text-align: left;
}

.ef-prose table th {
    background: var(--ef-surface-warm);
    font-weight: 600;
}

/* ==========================================================================
   Video & document grids
   ========================================================================== */

.ef-video-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1.25rem, 2.5vw, 2rem);
    list-style: none;
    margin: 0;
    padding: 0;
}

.ef-video-card {
    list-style: none;
}

.ef-video-card__embed {
    position: relative;
    aspect-ratio: 16 / 9;
    margin-bottom: 0.85rem;
    background: var(--ef-bg-dark);
    border-radius: var(--ef-radius);
    overflow: hidden;
}

.ef-video-card__embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.ef-video-card__title {
    margin: 0;
    font-family: var(--ef-font-display);
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.25;
}

.ef-video-card__title a {
    text-decoration: none;
    color: var(--ef-ink);
}

.ef-video-card__title a:hover {
    color: var(--ef-accent);
}

.ef-doc-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    list-style: none;
    margin: 0 0 2rem;
    padding: 0;
}

.ef-doc-card {
    list-style: none;
}

.ef-doc-card__link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.15rem;
    border: 1px solid var(--ef-line);
    border-radius: var(--ef-radius);
    background: var(--ef-surface);
    text-decoration: none;
    color: inherit;
    transition:
        border-color var(--ef-transition),
        box-shadow var(--ef-transition);
}

.ef-doc-card__link:hover {
    border-color: var(--ef-accent);
    box-shadow: var(--ef-shadow-soft);
}

.ef-doc-card__icon {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    background: var(--ef-bg-dark);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    border-radius: var(--ef-radius);
}

.ef-doc-card__body {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
}

.ef-doc-card__title {
    font-weight: 600;
    color: var(--ef-ink);
}

.ef-doc-card__file {
    font-size: 0.78rem;
    color: var(--ef-muted);
}

.ef-doc-list {
    margin-bottom: 2rem;
    color: var(--ef-muted);
}

.ef-doc-note {
    margin: 0;
}

/* ==========================================================================
   Blog posts
   ========================================================================== */

.ef-post-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1rem, 2vw, 1.5rem);
    list-style: none;
    margin: 0;
    padding: 0;
}

.ef-post-card {
    list-style: none;
}

.ef-post-card__link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
    border: 1px solid var(--ef-line);
    background: var(--ef-surface);
    border-radius: var(--ef-radius);
    overflow: hidden;
    transition:
        border-color var(--ef-transition),
        box-shadow var(--ef-transition);
}

.ef-post-card__link:hover {
    border-color: rgba(184, 135, 74, 0.35);
    box-shadow: var(--ef-shadow-soft);
}

.ef-post-card__media {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--ef-surface-warm);
}

.ef-post-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.ef-post-card__link:hover .ef-post-card__media img {
    transform: scale(1.03);
}

.ef-post-card__body {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    padding: 1rem 1.1rem 1.15rem;
    flex: 1;
}

.ef-post-card__date {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ef-muted);
}

.ef-post-card__title {
    font-family: var(--ef-font-display);
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.2;
    color: var(--ef-ink);
}

.ef-post-card__excerpt {
    font-size: 0.88rem;
    color: var(--ef-muted);
    line-height: 1.55;
}

.ef-article__header {
    margin-bottom: 1.5rem;
}

.ef-article__meta {
    margin: 0 0 0.5rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ef-muted);
}

.ef-article__title {
    margin: 0;
    font-family: var(--ef-font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 600;
    line-height: 1.08;
}

.ef-article__figure {
    margin: 0 0 2rem;
    border-radius: var(--ef-radius);
    overflow: hidden;
}

/* ==========================================================================
   Contact page
   ========================================================================== */

.ef-contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(1.5rem, 3vw, 3rem);
    align-items: start;
}

.ef-contact-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ef-contact-card {
    padding: 1.25rem 1.35rem;
    background: var(--ef-surface);
    border: 1px solid var(--ef-line);
    border-radius: var(--ef-radius);
}

.ef-contact-card h2 {
    margin: 0 0 0.5rem;
    font-family: var(--ef-font-display);
    font-size: 1.15rem;
    font-weight: 600;
}

.ef-contact-card p {
    margin: 0;
    color: var(--ef-muted);
    line-height: 1.55;
}

.ef-contact-card a {
    color: var(--ef-accent-dark);
    text-decoration: none;
    font-weight: 600;
}

.ef-contact-card a:hover {
    color: var(--ef-accent);
}

.ef-contact-content {
    max-width: none;
}

/* ==========================================================================
   Vyvzorování – stránka a výběr vzorků
   ========================================================================== */

.ef-page-hero--sampling {
    max-width: 46rem;
}

.ef-sampling-pricing {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
    margin-bottom: 1.5rem;
}

.ef-sampling-pricing__card {
    padding: 1.15rem 1.25rem;
    background: linear-gradient(180deg, rgba(184, 135, 74, 0.07) 0%, var(--ef-surface) 100%);
    border: 1px solid rgba(184, 135, 74, 0.16);
    border-radius: var(--ef-radius);
}

.ef-sampling-pricing__title {
    margin: 0 0 0.35rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ef-muted);
}

.ef-sampling-pricing__value {
    margin: 0 0 0.45rem;
    font-family: var(--ef-font-display);
    font-size: 1.35rem;
    font-weight: 600;
    line-height: 1.1;
    color: var(--ef-accent-dark);
}

.ef-sampling-pricing__note {
    margin: 0;
    font-size: 0.84rem;
    line-height: 1.55;
    color: var(--ef-muted);
}

.ef-sampling-benefits {
    display: grid;
    gap: 0.55rem;
    margin: 0 0 2rem;
    padding: 0;
    list-style: none;
}

.ef-sampling-benefits li {
    position: relative;
    padding-left: 1.15rem;
    font-size: 0.92rem;
    color: var(--ef-muted);
    line-height: 1.55;
}

.ef-sampling-benefits li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 0.35rem;
    height: 0.35rem;
    border-radius: 50%;
    background: var(--ef-accent);
}

.ef-sampling-form-wrap {
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.ef-sampling-form {
    padding: 1.5rem;
    background: var(--ef-surface);
    border: 1px solid var(--ef-line);
    border-radius: var(--ef-radius);
}

.ef-sampling-form__notice {
    margin: 0 0 1rem;
    padding: 0.85rem 1rem;
    border-radius: var(--ef-radius);
    font-size: 0.9rem;
    line-height: 1.5;
}

.ef-sampling-form__notice--success {
    background: rgba(0, 117, 24, 0.08);
    border: 1px solid rgba(0, 117, 24, 0.18);
    color: #0f5a1f;
}

.ef-sampling-form__notice--error {
    background: rgba(170, 0, 0, 0.06);
    border: 1px solid rgba(170, 0, 0, 0.15);
    color: #8a1111;
}

.ef-sampling-form__section {
    margin: 0 0 1.35rem;
    padding: 0;
    border: 0;
}

.ef-sampling-form__section legend {
    margin-bottom: 0.75rem;
    padding: 0;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ef-muted);
}

.ef-sampling-form__grid {
    display: grid;
    gap: 0.85rem;
}

.ef-sampling-form__grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ef-sampling-form__field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.ef-sampling-form__field--full {
    grid-column: 1 / -1;
}

.ef-sampling-form__field label {
    font-size: 0.82rem;
    font-weight: 600;
}

.ef-sampling-form__req {
    color: var(--ef-accent-dark);
}

.ef-sampling-form__field input,
.ef-sampling-form__field textarea {
    width: 100%;
    padding: 0.65rem 0.85rem;
    border: 1px solid var(--ef-line);
    border-radius: var(--ef-radius);
    background: #fff;
    font: inherit;
    color: var(--ef-ink);
}

.ef-sampling-form__field input:focus,
.ef-sampling-form__field textarea:focus {
    outline: none;
    border-color: var(--ef-accent);
    box-shadow: 0 0 0 3px rgba(184, 135, 74, 0.12);
}

.ef-sampling-form__picker-lead {
    margin: 0 0 0.5rem;
    font-size: 0.88rem;
    color: var(--ef-muted);
    line-height: 1.55;
}

.ef-sampling-form__picker-hint {
    margin: 0 0 1rem;
    padding: 0.75rem 0.9rem;
    background: rgba(184, 135, 74, 0.06);
    border-left: 3px solid var(--ef-accent);
    border-radius: 0 var(--ef-radius) var(--ef-radius) 0;
    font-size: 0.84rem;
    line-height: 1.55;
    color: var(--ef-ink);
}

.ef-sampling-picker__selected {
    margin-bottom: 1rem;
    padding: 0.85rem 1rem;
    background: var(--ef-surface-warm);
    border: 1px solid var(--ef-line);
    border-radius: var(--ef-radius);
}

.ef-sampling-picker__selected-label {
    margin: 0 0 0.55rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ef-muted);
}

.ef-sampling-picker__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ef-sampling-picker__chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.55rem 0.35rem 0.75rem;
    background: #fff;
    border: 1px solid var(--ef-line);
    border-radius: 999px;
    font-size: 0.78rem;
}

.ef-sampling-picker__chip button {
    border: 0;
    background: transparent;
    color: var(--ef-muted);
    font-size: 1rem;
    line-height: 1;
    cursor: pointer;
}

.ef-sampling-picker__toolbar {
    display: grid;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
}

.ef-sampling-picker__search {
    width: 100%;
    padding: 0.7rem 0.9rem;
    border: 1px solid var(--ef-line);
    border-radius: var(--ef-radius);
    background: #fff;
    font: inherit;
}

.ef-sampling-picker__filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.ef-sampling-picker__filter {
    padding: 0.45rem 0.75rem;
    border: 1px solid var(--ef-line);
    border-radius: 999px;
    background: #fff;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--ef-muted);
    cursor: pointer;
    transition: border-color var(--ef-transition), color var(--ef-transition), background var(--ef-transition);
}

.ef-sampling-picker__filter.is-active,
.ef-sampling-picker__filter:hover {
    border-color: var(--ef-accent);
    color: var(--ef-accent-dark);
    background: rgba(184, 135, 74, 0.08);
}

.ef-sampling-picker__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.65rem;
    max-height: 28rem;
    overflow: auto;
    padding-right: 0.15rem;
}

.ef-sampling-picker__item {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    border: 1px solid var(--ef-line);
    border-radius: var(--ef-radius);
    background: #fff;
    text-align: left;
    cursor: pointer;
    overflow: hidden;
    transition: border-color var(--ef-transition), box-shadow var(--ef-transition), transform var(--ef-transition);
}

.ef-sampling-picker__item:hover:not(:disabled) {
    border-color: var(--ef-accent);
    transform: translateY(-1px);
}

.ef-sampling-picker__item.is-selected {
    border-color: var(--ef-accent);
    box-shadow: 0 0 0 2px rgba(184, 135, 74, 0.18);
}

.ef-sampling-picker__item:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.ef-sampling-picker__item img,
.ef-sampling-picker__placeholder {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    background: var(--ef-surface-warm);
}

.ef-sampling-picker__item-body {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    padding: 0.65rem 0.75rem 0.75rem;
}

.ef-sampling-picker__item-body strong {
    font-size: 0.82rem;
    line-height: 1.35;
    color: var(--ef-ink);
}

.ef-sampling-picker__item-body small {
    font-size: 0.72rem;
    color: var(--ef-muted);
}

.ef-sampling-picker__empty {
    margin: 0.75rem 0 0;
    font-size: 0.88rem;
    color: var(--ef-muted);
}

.ef-sampling-form__actions {
    margin-top: 0.5rem;
}

.ef-sampling-form__submit {
    width: 100%;
    min-height: 3rem;
    justify-content: center;
}

.ef-sampling-form__privacy {
    margin: 0.75rem 0 0;
    font-size: 0.75rem;
    line-height: 1.5;
    color: var(--ef-muted);
}

.ef-sampling-form__hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* ==========================================================================
   Search, empty state, pagination
   ========================================================================== */

.ef-search-results {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ef-search-item {
    list-style: none;
    border-bottom: 1px solid var(--ef-line);
}

.ef-search-item a {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0;
    text-decoration: none;
    color: inherit;
    transition: color var(--ef-transition);
}

.ef-search-item a:hover {
    color: var(--ef-accent);
}

.ef-search-item__title {
    font-family: var(--ef-font-display);
    font-size: 1.15rem;
    font-weight: 600;
}

.ef-search-item__type {
    flex: 0 0 auto;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ef-muted);
}

.ef-empty-state {
    text-align: center;
    padding: clamp(2.5rem, 5vw, 4rem) 1rem;
}

.ef-empty-state__code {
    margin: 0 0 0.5rem;
    font-family: var(--ef-font-display);
    font-size: clamp(4rem, 10vw, 6rem);
    font-weight: 600;
    line-height: 1;
    color: var(--ef-accent);
    opacity: 0.35;
}

.ef-empty-state__title {
    margin: 0 0 0.75rem;
    font-family: var(--ef-font-display);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 600;
}

.ef-empty-state__text {
    margin: 0 auto 1.5rem;
    max-width: 28rem;
    color: var(--ef-muted);
}

.ef-empty-state__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.ef-pagination {
    margin-top: 2.5rem;
}

.ef-pagination .nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.35rem;
}

.ef-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.25rem;
    height: 2.25rem;
    padding: 0 0.5rem;
    border: 1px solid var(--ef-line);
    border-radius: var(--ef-radius);
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--ef-ink);
    background: var(--ef-surface);
    transition:
        border-color var(--ef-transition),
        background var(--ef-transition);
}

.ef-pagination .page-numbers:hover,
.ef-pagination .page-numbers.current {
    border-color: var(--ef-accent);
    background: rgba(184, 135, 74, 0.1);
    color: var(--ef-accent-dark);
}

.woocommerce-pagination {
    margin-top: 2.5rem;
    width: 100%;
    clear: both;
}

.woocommerce-pagination ul.page-numbers {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.woocommerce-pagination ul.page-numbers li {
    margin: 0;
    padding: 0;
    list-style: none;
}

.woocommerce-pagination ul.page-numbers a.page-numbers,
.woocommerce-pagination ul.page-numbers span.page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.25rem;
    height: 2.25rem;
    padding: 0 0.5rem;
    border: 1px solid var(--ef-line);
    border-radius: var(--ef-radius);
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--ef-ink);
    background: var(--ef-surface);
    transition:
        border-color var(--ef-transition),
        background var(--ef-transition);
}

.woocommerce-pagination ul.page-numbers a.page-numbers:hover,
.woocommerce-pagination ul.page-numbers span.page-numbers.current {
    border-color: var(--ef-accent);
    background: rgba(184, 135, 74, 0.1);
    color: var(--ef-accent-dark);
}

.woocommerce-pagination ul.page-numbers a.next.page-numbers,
.woocommerce-pagination ul.page-numbers a.prev.page-numbers {
    min-width: auto;
    padding-inline: 0.75rem;
}

/* ==========================================================================
   WooCommerce – cart, checkout, account
   ========================================================================== */

.ef-woocommerce {
    color: var(--ef-ink);
}

.ef-woocommerce .woocommerce-message,
.ef-woocommerce .woocommerce-info,
.ef-woocommerce .woocommerce-error {
    margin-bottom: 1.25rem;
    padding: 0.85rem 1rem;
    border-radius: var(--ef-radius);
    list-style: none;
}

.ef-woocommerce .woocommerce-message {
    background: rgba(184, 135, 74, 0.1);
    border: 1px solid rgba(184, 135, 74, 0.25);
}

.ef-woocommerce .woocommerce-info {
    background: var(--ef-surface-warm);
    border: 1px solid var(--ef-line);
}

.ef-woocommerce .woocommerce-error {
    background: rgba(180, 40, 40, 0.06);
    border: 1px solid rgba(180, 40, 40, 0.2);
}

.ef-woocommerce table.shop_table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
    font-size: 0.92rem;
}

.ef-woocommerce table.shop_table th,
.ef-woocommerce table.shop_table td {
    padding: 0.85rem 0.65rem;
    border-bottom: 1px solid var(--ef-line);
    text-align: left;
    vertical-align: middle;
}

.ef-woocommerce table.shop_table th {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ef-muted);
}

.ef-woocommerce table.shop_table .product-thumbnail img {
    width: 72px;
    border-radius: var(--ef-radius);
}

.ef-woocommerce table.shop_table .product-name a {
    font-weight: 600;
    text-decoration: none;
    color: var(--ef-ink);
}

.ef-woocommerce table.shop_table .product-name a:hover {
    color: var(--ef-accent);
}

.ef-woocommerce .coupon {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.ef-woocommerce .coupon input.input-text {
    flex: 1;
    min-width: 160px;
    padding: 0.65rem 0.85rem;
    border: 1px solid var(--ef-line);
    border-radius: var(--ef-radius);
    background: var(--ef-bg);
}

.ef-woocommerce .cart-collaterals {
    margin-top: 2rem;
}

.ef-woocommerce .cart_totals,
.ef-woocommerce .woocommerce-checkout-review-order {
    padding: 1.35rem 1.5rem;
    background: var(--ef-surface);
    border: 1px solid var(--ef-line);
    border-radius: var(--ef-radius);
}

.ef-woocommerce .cart_totals h2,
.ef-woocommerce #order_review_heading {
    margin: 0 0 1rem;
    font-family: var(--ef-font-display);
    font-size: 1.35rem;
    font-weight: 600;
}

.ef-woocommerce .woocommerce-billing-fields h3,
.ef-woocommerce .woocommerce-shipping-fields h3,
.ef-woocommerce .woocommerce-additional-fields h3 {
    font-family: var(--ef-font-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.ef-woocommerce form .form-row {
    margin-bottom: 0.85rem;
}

.ef-woocommerce form .form-row label {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--ef-ink);
}

.ef-woocommerce form .form-row .required {
    color: var(--ef-accent);
}

.ef-woocommerce form .input-text,
.ef-woocommerce form select,
.ef-woocommerce form textarea {
    width: 100%;
    padding: 0.65rem 0.85rem;
    border: 1px solid var(--ef-line);
    border-radius: var(--ef-radius);
    background: var(--ef-bg);
    transition: border-color var(--ef-transition);
}

.ef-woocommerce form .input-text:focus,
.ef-woocommerce form select:focus,
.ef-woocommerce form textarea:focus {
    outline: none;
    border-color: var(--ef-accent);
}

.ef-woocommerce .select2-container--default .select2-selection--single {
    height: auto;
    padding: 0.45rem 0.65rem;
    border: 1px solid var(--ef-line);
    border-radius: var(--ef-radius);
}

.ef-woocommerce #payment {
    padding: 1.25rem 1.35rem;
    background: var(--ef-surface-warm);
    border: 1px solid var(--ef-line);
    border-radius: var(--ef-radius);
}

.ef-woocommerce #payment ul.payment_methods {
    list-style: none;
    margin: 0 0 1rem;
    padding: 0;
}

.ef-woocommerce #payment ul.payment_methods li {
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--ef-line);
}

.ef-woocommerce #payment ul.payment_methods li:last-child {
    border-bottom: 0;
}

.ef-woocommerce .woocommerce-MyAccount-navigation ul {
    list-style: none;
    margin: 0 0 1.5rem;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.ef-woocommerce .woocommerce-MyAccount-navigation a {
    display: inline-flex;
    padding: 0.5rem 0.85rem;
    border: 1px solid var(--ef-line);
    border-radius: var(--ef-radius);
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--ef-ink);
    background: var(--ef-surface);
}

.ef-woocommerce .woocommerce-MyAccount-navigation .is-active a {
    border-color: var(--ef-accent);
    background: rgba(184, 135, 74, 0.1);
    color: var(--ef-accent-dark);
}

.ef-woocommerce .woocommerce-Button,
.ef-woocommerce button.button,
.ef-woocommerce input.button,
.ef-woocommerce a.button,
.ef-woocommerce .single_add_to_cart_button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.72rem 1.35rem;
    border: 1px solid var(--ef-accent);
    border-radius: var(--ef-radius);
    background: var(--ef-accent);
    color: #fff !important;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: background var(--ef-transition), border-color var(--ef-transition);
}

.ef-woocommerce .woocommerce-Button:hover,
.ef-woocommerce button.button:hover,
.ef-woocommerce input.button:hover,
.ef-woocommerce a.button:hover,
.ef-woocommerce .single_add_to_cart_button:hover {
    background: var(--ef-accent-dark);
    border-color: var(--ef-accent-dark);
    color: #fff !important;
}

.ef-woocommerce a.button.alt,
.ef-woocommerce button.button.alt {
    background: var(--ef-dark);
    border-color: var(--ef-dark);
}

.ef-woocommerce a.button.alt:hover,
.ef-woocommerce button.button.alt:hover {
    background: #2a2622;
    border-color: #2a2622;
}

.ef-woocommerce--checkout .col2-set {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.ef-woocommerce--checkout #order_review_heading {
    margin-top: 2rem;
}

/* ==========================================================================
   CTA band
   ========================================================================== */

.ef-cta-band {
    padding: clamp(2.5rem, 5vw, 3.5rem) 0;
    background: var(--ef-bg-dark);
    color: rgba(255, 255, 255, 0.82);
}

.ef-cta-band__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    flex-wrap: wrap;
}

.ef-cta-band__title {
    margin: 0 0 0.5rem;
    font-family: var(--ef-font-display);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 600;
    color: #fff;
}

.ef-cta-band__text {
    margin: 0;
    max-width: 32rem;
    color: rgba(255, 255, 255, 0.72);
}

.ef-cta-band__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

/* ==========================================================================
   Site footer
   ========================================================================== */

.ef-site-footer {
    background: var(--ef-bg-dark);
    color: rgba(255, 255, 255, 0.72);
    padding-top: clamp(2.5rem, 5vw, 3.5rem);
}

.ef-site-footer__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(1.5rem, 3vw, 2.5rem);
    padding-bottom: clamp(2rem, 4vw, 2.5rem);
}

.ef-site-footer__brand {
    margin: 0 0 0.65rem;
    font-family: var(--ef-font-display);
    font-size: 1.35rem;
    font-weight: 600;
    color: #fff;
}

.ef-site-footer__text {
    margin: 0;
    line-height: 1.65;
    max-width: 22rem;
}

.ef-site-footer__label {
    margin: 0 0 0.75rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ef-accent-light);
}

.ef-site-footer a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}

.ef-site-footer a:hover {
    color: var(--ef-accent-light);
}

.ef-site-footer__links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.ef-site-footer__bottom {
    padding: 1.15rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.45);
}

.ef-site-footer__bottom-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem 2rem;
}

.ef-site-footer__bottom p {
    margin: 0;
}

.ef-company-legal-footer {
    max-width: 42rem;
    line-height: 1.55;
}

.ef-company-legal-footer__operator {
    margin: 0 0 0.2rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.ef-company-legal-footer__address,
.ef-company-legal-footer__ids,
.ef-company-legal-footer__register {
    margin: 0;
}

.ef-company-legal-footer__ids {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 1rem;
    margin-top: 0.15rem;
}

.ef-company-legal-footer__register {
    margin-top: 0.25rem;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.42);
}

@media (max-width: 640px) {
    .ef-site-footer__bottom-inner {
        flex-direction: column;
    }

    .ef-company-legal-footer__ids {
        flex-direction: column;
        gap: 0.15rem;
    }
}

/* ==========================================================================
   WooCommerce notices (global)
   ========================================================================== */

.woocommerce-notices-wrapper {
    margin-bottom: 1rem;
}

.woocommerce-notices-wrapper .woocommerce-message,
.woocommerce-notices-wrapper .woocommerce-info,
.woocommerce-notices-wrapper .woocommerce-error {
    margin-bottom: 0.75rem;
    padding: 0.85rem 1rem;
    border-radius: var(--ef-radius);
    list-style: none;
}

/* ==========================================================================
   Responsive – 980px
   ========================================================================== */

@media (max-width: 1100px) {
    .ef-product-grid--collection {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .ef-product-grid--home {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 980px) {
    .ef-nav-toggle {
        display: flex;
    }

    .ef-nav {
        position: fixed;
        inset: var(--ef-header-height) 0 auto 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 1.25rem var(--ef-gutter) 1.5rem;
        background: var(--ef-surface);
        border-bottom: 1px solid var(--ef-line);
        box-shadow: var(--ef-shadow-medium);
        transform: translateY(-110%);
        opacity: 0;
        visibility: hidden;
        transition:
            transform var(--ef-transition),
            opacity var(--ef-transition),
            visibility var(--ef-transition);
    }

    .ef-nav.is-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .ef-nav__list {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        width: 100%;
        padding-bottom: 1rem;
        border-bottom: 1px solid var(--ef-line);
    }

    .ef-nav__list a {
        display: block;
        width: 100%;
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--ef-line);
    }

    .ef-nav__list li:last-child a {
        border-bottom: 0;
    }

    .ef-nav__actions {
        justify-content: space-between;
        width: 100%;
        padding-top: 1rem;
    }

    .ef-hero__stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ef-references-stats {
        grid-template-columns: 1fr;
    }

    .ef-product-grid,
    .ef-project-grid,
    .ef-post-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ef-home-video__grid,
    .ef-home-about__grid,
    .ef-customer-portal__grid,
    .ef-customer-portal__compact,
    .ef-home-faq__grid,
    .ef-review-grid,
    .ef-home-editorial__grid,
    .ef-product-grid--collection,
    .ef-project-grid--compact {
        grid-template-columns: 1fr 1fr;
    }

    .ef-product__grid {
        grid-template-columns: 1fr;
    }

    .ef-product__summary--sticky {
        position: static;
    }

    .ef-related-products__head {
        flex-direction: column;
        align-items: stretch;
    }

    .ef-related-products__actions {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .ef-product-detail-gallery__grid,
    .ef-product-desc-grid,
    .ef-product-inquiry__grid--2,
    .ef-sampling-form__grid--2,
    .ef-sampling-pricing,
    .ef-sampling-picker__grid,
    .ef-review-form__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ef-catalog-collection__head {
        flex-direction: column;
        align-items: flex-start;
    }

    .ef-contact-grid {
        grid-template-columns: 1fr;
    }

    .ef-video-grid,
    .ef-doc-grid {
        grid-template-columns: 1fr;
    }

    .ef-site-footer__grid {
        grid-template-columns: 1fr 1fr;
    }

    .ef-cta-band__inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .ef-woocommerce--checkout .col2-set {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Responsive – 640px
   ========================================================================== */

@media (max-width: 640px) {
    :root {
        --ef-header-height: 72px;
    }

    .ef-hero--cinema {
        min-height: clamp(460px, 85vh, 620px);
    }

    .ef-hero__stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .ef-hero__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .ef-hero__actions .ef-btn {
        width: 100%;
        justify-content: center;
    }

    .ef-home-faq__intro {
        position: static;
    }

    .ef-home-faq__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .ef-home-faq__actions .ef-btn {
        width: 100%;
        justify-content: center;
    }

    .ef-product-grid,
    .ef-project-grid,
    .ef-post-grid,
    .ef-product-detail-gallery__grid,
    .ef-product-desc-grid,
    .ef-product-inquiry__grid--2,
    .ef-sampling-form__grid--2,
    .ef-sampling-pricing,
    .ef-sampling-picker__grid,
    .ef-review-form__grid,
    .ef-customer-portal__features {
        grid-template-columns: 1fr;
    }

    .ef-home-video__grid,
    .ef-home-about__grid,
    .ef-customer-portal__grid,
    .ef-customer-portal__compact,
    .ef-home-faq__grid,
    .ef-review-grid,
    .ef-home-editorial__grid,
    .ef-product-grid--collection,
    .ef-project-grid--compact {
        grid-template-columns: 1fr;
    }

    .ef-site-footer__grid {
        grid-template-columns: 1fr;
    }

    .ef-shop-filters__head {
        flex-direction: column;
        align-items: flex-start;
    }

    .ef-product-specs__row {
        grid-template-columns: 1fr;
        gap: 0.15rem;
    }

    .ef-product-specs__row dd {
        text-align: left;
        padding-bottom: 0.35rem;
    }

    .ef-cta-band__actions {
        width: 100%;
        flex-direction: column;
    }

    .ef-cta-band__actions .ef-btn {
        width: 100%;
        justify-content: center;
    }

    .ef-empty-state__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .ef-empty-state__actions .ef-btn {
        width: 100%;
    }
}

/* ==========================================================================
   Internal links (SEO hubs)
   ========================================================================== */

.ef-internal-links {
    margin: clamp(2rem, 4vw, 3rem) 0 0;
    padding: clamp(1.25rem, 2.5vw, 1.75rem);
    border: 1px solid var(--ef-line);
    border-radius: var(--ef-radius-lg);
    background: var(--ef-surface-soft, #faf8f5);
}

.ef-internal-links--compact {
    margin-top: clamp(1.5rem, 3vw, 2rem);
    background: transparent;
    border: 0;
    padding: 0;
}

.ef-internal-links__title {
    margin: 0 0 1rem;
    font-family: var(--ef-font-display);
    font-size: clamp(1.15rem, 2vw, 1.35rem);
    font-weight: 600;
    line-height: 1.2;
}

.ef-internal-links__list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem 0.75rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ef-internal-links__link {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.85rem;
    border: 1px solid var(--ef-line);
    border-radius: 999px;
    background: #fff;
    color: var(--ef-text);
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.ef-internal-links__link:hover {
    border-color: var(--ef-accent);
    color: var(--ef-accent-dark);
    background: #fff;
}

/* Tmavá sekce homepage – ghost pill místo bílých „prázdných“ tlačítek */
.ef-home-about__links {
    margin-top: clamp(1.5rem, 3vw, 2.5rem);
    padding-top: clamp(1.25rem, 2.5vw, 1.75rem);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.ef-home-about .ef-internal-links--compact {
    margin-top: 0;
}

.ef-home-about .ef-internal-links__title {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1rem, 1.8vw, 1.15rem);
}

.ef-home-about .ef-internal-links__link {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.35);
    color: rgba(255, 255, 255, 0.92);
}

.ef-home-about .ef-internal-links__link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--ef-accent-light);
    color: #fff;
}

.ef-home-about__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.ef-faq-page__intro {
    margin-bottom: 1.5rem;
}

.ef-page-faq {
    margin-bottom: 2rem;
}

.ef-care-page h2 {
    margin-top: 2rem;
}

.ef-blog-hub-cta {
    margin-top: 2rem;
    padding: 1.25rem 1.5rem;
    border-left: 3px solid var(--ef-accent);
    background: var(--ef-surface-soft, #faf8f5);
    border-radius: 0 var(--ef-radius-md) var(--ef-radius-md) 0;
}

.ef-inspire-intro {
    margin-bottom: 2rem;
}

.ef-main--product .ef-internal-links,
.ef-main--shop .ef-internal-links {
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

/* === v0.6 – kolekce, homepage, produkt === */

/* ==========================================================================
   Můj výběr — toggle, lišta, stránka, sdílení
   ========================================================================== */

.ef-btn--sm {
    padding: 0.55rem 0.95rem;
    font-size: 0.82rem;
}

.ef-btn--block {
    display: block;
    width: 100%;
}

.ef-product-card__price .ef-price-display--card {
    margin-top: auto;
}

.ef-product-card__footer {
    padding: 0 1.1rem 1rem;
    margin-top: auto;
}

.ef-selection-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-height: 2.65rem;
    padding: 0.55rem 0.95rem;
    border: 1px solid var(--ef-line);
    border-radius: var(--ef-radius);
    background: var(--ef-surface-warm);
    color: var(--ef-ink);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: none;
    cursor: pointer;
    box-shadow: none;
    transition:
        background var(--ef-transition),
        border-color var(--ef-transition),
        color var(--ef-transition),
        transform var(--ef-transition),
        box-shadow var(--ef-transition);
}

.ef-selection-toggle--card {
    position: static;
    width: 100%;
}

.ef-selection-toggle--detail {
    width: auto;
    margin-top: 0.35rem;
    padding: 0.65rem 1.1rem;
    font-size: 0.82rem;
}

.ef-selection-toggle:hover {
    transform: translateY(-1px);
    border-color: rgba(184, 135, 74, 0.55);
    background: #fff;
}

.ef-selection-toggle.is-selected,
.ef-selection-toggle.is-selected:hover {
    background: var(--ef-accent);
    border-color: var(--ef-accent);
    color: #fff;
}

.ef-selection-toggle.is-pulse {
    animation: ef-selection-toggle-pulse 0.45s ease-out;
}

.ef-selection-toggle__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ef-selection-toggle__svg {
    display: block;
}

.ef-selection-toggle.is-selected .ef-selection-toggle__svg-outline {
    opacity: 0;
}

.ef-selection-toggle.is-selected .ef-selection-toggle__svg-fill {
    opacity: 1;
}

@keyframes ef-selection-toggle-pulse {
    0% {
        transform: scale(1);
    }

    45% {
        transform: scale(1.03);
    }

    100% {
        transform: scale(1);
    }
}

.ef-selection-toast-host {
    position: fixed;
    left: 50%;
    bottom: calc(var(--ef-cta-height, 64px) + 1rem + env(safe-area-inset-bottom, 0px));
    z-index: 100090;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    width: min(92vw, 24rem);
    transform: translateX(-50%);
    pointer-events: none;
}

body.ef-has-selection-bar-chip .ef-selection-toast-host {
    bottom: calc(var(--ef-cta-height, 64px) + 4.5rem + env(safe-area-inset-bottom, 0px));
}

body.ef-has-selection-bar:not(.ef-has-selection-bar-chip) .ef-selection-toast-host {
    bottom: calc(var(--ef-cta-height, 64px) + 6rem + env(safe-area-inset-bottom, 0px));
}

.ef-selection-toast {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0.8rem 0.95rem;
    border-radius: calc(var(--ef-radius) + 2px);
    background: rgba(24, 21, 18, 0.96);
    color: #fff;
    box-shadow: 0 16px 36px rgba(18, 16, 14, 0.28);
    pointer-events: auto;
    animation: ef-selection-toast-in 0.24s ease-out;
}

.ef-selection-toast__text {
    flex: 1;
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.35;
}

.ef-selection-toast__link {
    flex-shrink: 0;
    color: var(--ef-accent);
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
}

.ef-selection-toast__link:hover,
.ef-selection-toast__link:focus {
    color: #fff;
}

.ef-selection-toast.is-leaving {
    animation: ef-selection-toast-out 0.2s ease-in forwards;
}

@keyframes ef-selection-toast-in {
    from {
        opacity: 0;
        transform: translateY(0.65rem);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes ef-selection-toast-out {
    to {
        opacity: 0;
        transform: translateY(0.45rem);
    }
}

.ef-selection-coach {
    margin: 0 0 1.15rem;
}

.ef-selection-coach__inner {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 0.95rem 1rem;
    border: 1px solid rgba(184, 135, 74, 0.28);
    border-radius: calc(var(--ef-radius) + 2px);
    background: linear-gradient(135deg, rgba(184, 135, 74, 0.1), rgba(255, 255, 255, 0.92));
}

.ef-selection-coach__title {
    margin: 0 0 0.25rem;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--ef-ink);
}

.ef-selection-coach__text {
    margin: 0;
    font-size: 0.86rem;
    line-height: 1.45;
    color: var(--ef-muted);
}

.ef-selection-coach__close {
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.75);
    color: var(--ef-ink);
    font-size: 1.2rem;
    line-height: 1;
    cursor: pointer;
}

.ef-product-selection-actions {
    margin: 1rem 0 0.5rem;
}

.ef-product-selection-actions__hint {
    margin: 0.55rem 0 0;
    font-size: 0.88rem;
    line-height: 1.5;
    color: var(--ef-muted);
}

.ef-selection-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: calc(var(--ef-cta-height, 64px) + 0.5rem);
    z-index: 100001;
    padding: 0.65rem clamp(0.75rem, 3vw, 1.25rem) calc(0.65rem + env(safe-area-inset-bottom, 0px));
    background: linear-gradient(180deg, transparent 0%, rgba(18, 16, 14, 0.08) 24%, rgba(18, 16, 14, 0.18) 100%);
    pointer-events: none;
}

.ef-selection-bar__inner {
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.85rem;
    max-width: 56rem;
    margin: 0 auto;
    padding: 0.75rem 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: calc(var(--ef-radius) + 4px);
    background: rgba(24, 21, 18, 0.94);
    color: rgba(255, 255, 255, 0.88);
    box-shadow: 0 18px 40px rgba(18, 16, 14, 0.28);
    backdrop-filter: blur(10px);
    position: relative;
}

.ef-selection-bar__collapse {
    display: none;
}

.ef-selection-bar__main {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 0;
    text-decoration: none;
    color: inherit;
}

.ef-selection-bar__badge {
    display: grid;
    place-items: center;
    min-width: 2rem;
    height: 2rem;
    padding: 0 0.45rem;
    border-radius: 999px;
    background: var(--ef-accent);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
}

.ef-selection-bar__text {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    min-width: 0;
}

.ef-selection-bar__text strong {
    font-size: 0.92rem;
}

.ef-selection-bar__text small {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.76rem;
}

.ef-selection-bar__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.ef-selection-bar .ef-btn--outline {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.35);
}

.ef-selection-page__import-notice {
    margin: 0 0 1.5rem;
    padding: 0.85rem 1rem;
    border-radius: var(--ef-radius);
    background: rgba(184, 134, 11, 0.1);
    border: 1px solid rgba(184, 134, 11, 0.25);
    color: var(--ef-text);
}

.ef-selection-page__toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.ef-selection-page__count {
    margin: 0;
    font-weight: 600;
    color: var(--ef-text);
}

.ef-selection-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem 1.15rem;
    margin-bottom: 2rem;
}

.ef-selection-grid--readonly {
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 200px), 1fr));
}

.ef-selection-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    border: 1px solid var(--ef-line);
    border-radius: var(--ef-radius);
    background: var(--ef-surface);
    overflow: hidden;
    transition:
        border-color var(--ef-transition),
        box-shadow var(--ef-transition);
}

.ef-selection-card:hover {
    border-color: rgba(184, 135, 74, 0.35);
    box-shadow: var(--ef-shadow-soft);
}

.ef-selection-card__media {
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--ef-surface-warm);
}

.ef-selection-card__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ef-selection-card__placeholder {
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--ef-surface-warm), var(--ef-line));
}

.ef-selection-card__body {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.75rem 0.85rem 0.85rem;
    flex: 1;
}

.ef-selection-card__meta {
    margin: 0;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ef-muted);
}

.ef-selection-card__title {
    margin: 0;
    font-family: var(--ef-font-display);
    font-size: 0.98rem;
    line-height: 1.25;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ef-selection-card__title a {
    color: inherit;
    text-decoration: none;
}

.ef-selection-card__price {
    margin: 0;
    font-size: 0.88rem;
    color: var(--ef-muted);
}

.ef-selection-card__remove {
    margin-top: auto;
    padding: 0;
    border: 0;
    background: none;
    color: var(--ef-accent-dark);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
}

.ef-selection-page__panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(1.25rem, 3vw, 2rem);
    padding: clamp(1.25rem, 3vw, 1.75rem);
    border: 1px solid var(--ef-line);
    border-radius: calc(var(--ef-radius) + 2px);
    background: var(--ef-surface);
}

.ef-selection-page__field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1rem;
}

.ef-selection-page__field > span {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--ef-text);
}

.ef-selection-page__field select,
.ef-selection-page__field textarea,
.ef-selection-page__field input[type="text"] {
    width: 100%;
    padding: 0.7rem 0.8rem;
    border: 1px solid var(--ef-line);
    border-radius: var(--ef-radius);
    background: #fff;
    font: inherit;
    color: var(--ef-text);
}

.ef-selection-page__share h2 {
    margin: 0 0 0.45rem;
    font-family: var(--ef-font-display);
    font-size: 1.35rem;
}

.ef-selection-page__share p {
    margin: 0 0 1rem;
    color: var(--ef-muted);
    line-height: 1.55;
}

.ef-selection-page__copy-row {
    display: flex;
    gap: 0.5rem;
}

.ef-selection-page__copy-row input {
    flex: 1;
    min-width: 0;
}

.ef-selection-page__share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 0.75rem;
}

.ef-selection-page__sampling {
    display: inline-flex;
    margin-top: 1rem;
}

.ef-selection-page__empty {
    padding: clamp(2rem, 5vw, 3rem);
    text-align: center;
    border: 1px dashed var(--ef-line);
    border-radius: calc(var(--ef-radius) + 2px);
    background: var(--ef-surface);
}

.ef-selection-page__empty h2 {
    margin: 0 0 0.75rem;
    font-family: var(--ef-font-display);
}

.ef-selection-page__empty p {
    max-width: 34rem;
    margin: 0 auto 1.25rem;
    color: var(--ef-muted);
    line-height: 1.6;
}

.ef-selection-share__room {
    margin: 0.75rem 0 0;
    color: var(--ef-muted);
}

.ef-selection-share__room span {
    font-weight: 600;
    color: var(--ef-text);
}

.ef-selection-share__note {
    margin: 1rem 0 0;
    padding: 1rem 1.15rem;
    border-left: 3px solid var(--ef-accent);
    background: var(--ef-surface);
    border-radius: 0 var(--ef-radius) var(--ef-radius) 0;
    font-style: normal;
    color: var(--ef-text);
}

.ef-selection-share__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 2rem 0 1rem;
}

.ef-selection-share__footer {
    margin: 0;
    color: var(--ef-muted);
    line-height: 1.6;
}

.ef-selection-share__footer a {
    font-weight: 600;
    color: var(--ef-accent-dark);
    text-decoration: none;
}

.ef-selection-dialog {
    position: fixed;
    inset: 0;
    z-index: 100100;
}

.ef-selection-dialog__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(18, 16, 14, 0.55);
}

.ef-selection-dialog__panel {
    position: relative;
    width: min(92vw, 28rem);
    max-height: min(88vh, 720px);
    overflow: auto;
    margin: max(1rem, 4vh) auto;
    padding: 1.15rem 1.25rem 1.35rem;
    border-radius: calc(var(--ef-radius) + 4px);
    background: #fff;
    box-shadow: 0 28px 60px rgba(18, 16, 14, 0.28);
    -webkit-overflow-scrolling: touch;
}

.ef-selection-dialog__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.ef-selection-dialog__head h2 {
    margin: 0;
    font-family: var(--ef-font-display);
    font-size: 1.35rem;
}

.ef-selection-dialog__close {
    border: 0;
    background: none;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    color: var(--ef-muted);
}

.ef-selection-dialog__lead {
    margin: 0 0 1rem;
    color: var(--ef-muted);
    line-height: 1.55;
}

.ef-selection-dialog__count {
    margin: 0 0 0.85rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--ef-text);
}

.ef-selection-dialog__error {
    margin: 0.85rem 0 0;
    color: #a33;
    font-size: 0.88rem;
}

body.ef-selection-dialog-open {
    overflow: hidden;
}

/* Při otevřeném dialogu lištu schovat — jinak překryje formulář (z-index lišty je vyšší). */
body.ef-selection-dialog-open .ef-selection-bar {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

body.ef-selection-dialog-open .ef-sticky-cta {
    display: none !important;
}

/* Na stránce Můj výběr lištu neukazovat — překrývá formulář sdílení (hlavně mobil). */
body:has(.ef-main--selection) .ef-selection-bar,
.ef-main--selection ~ .ef-selection-bar {
    display: none !important;
}

body:has(.ef-selection-bar:not([hidden])) {
    padding-bottom: calc(var(--ef-cta-height, 64px) + 5.5rem + env(safe-area-inset-bottom, 0px));
}

body.ef-has-selection-bar-chip {
    padding-bottom: calc(var(--ef-cta-height, 64px) + env(safe-area-inset-bottom, 0px));
}

body:has(.ef-main--selection) {
    padding-bottom: calc(var(--ef-cta-height, 64px) + env(safe-area-inset-bottom, 0px));
}

@media (min-width: 768px) {
    .ef-selection-bar {
        left: auto;
        right: 20px;
        bottom: 20px;
        width: min(420px, calc(100vw - 40px));
    }

    .ef-selection-bar.ef-selection-bar--collapsed {
        left: auto;
        right: 20px;
        bottom: 20px;
        width: min(420px, calc(100vw - 40px));
        padding: 0.65rem clamp(0.75rem, 3vw, 1.25rem) calc(0.65rem + env(safe-area-inset-bottom, 0px));
        background: linear-gradient(180deg, transparent 0%, rgba(18, 16, 14, 0.08) 24%, rgba(18, 16, 14, 0.18) 100%);
    }

    .ef-selection-bar.ef-selection-bar--collapsed .ef-selection-bar__inner {
        flex-direction: row;
        align-items: center;
        padding: 0.75rem 0.95rem;
        border-radius: calc(var(--ef-radius) + 4px);
        cursor: default;
    }

    .ef-selection-bar.ef-selection-bar--collapsed .ef-selection-bar__actions {
        display: flex;
    }

    .ef-selection-bar.ef-selection-bar--collapsed .ef-selection-bar__text small {
        display: block;
    }

    .ef-selection-bar.ef-selection-bar--collapsed .ef-selection-bar__main {
        pointer-events: auto;
    }

    body:has(.ef-selection-bar:not([hidden])) {
        padding-bottom: calc(var(--ef-cta-height, 64px) + 8px);
    }
}

@media (max-width: 1100px) {
    .ef-selection-grid:not(.ef-selection-grid--readonly) {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .ef-selection-page__toolbar {
        flex-wrap: wrap;
        align-items: flex-start;
        gap: 0.65rem;
    }

    .ef-selection-page__panel {
        grid-template-columns: minmax(0, 1fr);
        gap: 1.25rem;
        padding: 1.1rem 1rem 1.25rem;
    }

    .ef-selection-page__share .ef-btn,
    .ef-selection-page__sampling {
        width: 100%;
        justify-content: center;
    }

    .ef-selection-page__copy-row {
        flex-direction: column;
    }

    .ef-selection-page__copy-row .ef-btn {
        width: 100%;
    }

    .ef-selection-bar__inner {
        flex-direction: column;
        align-items: stretch;
    }

    .ef-selection-grid:not(.ef-selection-grid--readonly) {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.75rem;
    }

    .ef-selection-card__price {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        font-size: 0.8rem;
        line-height: 1.35;
    }

    .ef-selection-bar__actions {
        width: 100%;
    }

    .ef-selection-bar__actions .ef-btn {
        flex: 1;
        justify-content: center;
    }

    /* Mobil: výchozí kompaktní chip — celá lišta až po klepnutí */
    .ef-selection-bar.ef-selection-bar--collapsed {
        left: auto;
        right: 0.65rem;
        bottom: calc(var(--ef-cta-height, 64px) + 0.65rem);
        width: auto;
        padding: 0;
        background: none;
        pointer-events: auto;
    }

    .ef-selection-bar.ef-selection-bar--collapsed .ef-selection-bar__inner {
        flex-direction: row;
        align-items: center;
        gap: 0.55rem;
        padding: 0.45rem 0.85rem 0.45rem 0.45rem;
        border-radius: 999px;
        cursor: pointer;
    }

    .ef-selection-bar.ef-selection-bar--collapsed .ef-selection-bar__actions,
    .ef-selection-bar.ef-selection-bar--collapsed .ef-selection-bar__collapse,
    .ef-selection-bar.ef-selection-bar--collapsed .ef-selection-bar__text small {
        display: none;
    }

    .ef-selection-bar.ef-selection-bar--collapsed .ef-selection-bar__text strong {
        font-size: 0.84rem;
        white-space: nowrap;
    }

    .ef-selection-bar.ef-selection-bar--collapsed .ef-selection-bar__main {
        pointer-events: none;
    }

    .ef-selection-bar:not(.ef-selection-bar--collapsed) {
        animation: ef-selection-bar-expand 0.22s ease-out;
    }

    .ef-selection-bar:not(.ef-selection-bar--collapsed) .ef-selection-bar__collapse {
        display: grid;
        place-items: center;
        position: absolute;
        top: 0.35rem;
        right: 0.35rem;
        width: 1.65rem;
        height: 1.65rem;
        padding: 0;
        border: 0;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.12);
        color: rgba(255, 255, 255, 0.88);
        font-size: 1.1rem;
        line-height: 1;
        cursor: pointer;
    }

    .ef-selection-bar:not(.ef-selection-bar--collapsed) .ef-selection-bar__inner {
        padding-top: 1.85rem;
    }

    .ef-selection-bar.ef-selection-bar--peek .ef-selection-bar__inner {
        animation: ef-selection-bar-pulse 0.45s ease-out;
    }

    @keyframes ef-selection-bar-expand {
        from {
            opacity: 0.72;
            transform: translateY(0.35rem);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes ef-selection-bar-pulse {
        0% {
            transform: scale(1);
        }

        45% {
            transform: scale(1.04);
        }

        100% {
            transform: scale(1);
        }
    }

    .ef-selection-dialog__panel {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        max-width: none;
        max-height: min(92dvh, calc(100dvh - env(safe-area-inset-top, 0px) - 0.75rem));
        margin: 0;
        border-radius: calc(var(--ef-radius) + 4px) calc(var(--ef-radius) + 4px) 0 0;
        padding-bottom: calc(1.35rem + env(safe-area-inset-bottom, 0px));
    }
}

@media (max-width: 480px) {
    .ef-selection-grid:not(.ef-selection-grid--readonly) {
        grid-template-columns: minmax(0, 1fr);
    }

    .ef-selection-page__empty {
        padding: 1.5rem 1.1rem;
    }

    .ef-main--selection {
        padding-top: 1.35rem;
        padding-bottom: 5.5rem;
    }
}

