/* EP Collections — Professional storefront design system */
:root {
    --ep-gold: #b8952e;
    --ep-gold-light: #e8d5a3;
    --ep-gold-dark: #8a6f1f;
    --ep-black: #141414;
    --ep-charcoal: #2a2a2a;
    --ep-cream: #f7f4ef;
    --ep-cream-dark: #ebe6dc;
    --ep-white: #ffffff;
    --ep-border: #e5e0d6;
    --ep-text: #1f1f1f;
    --ep-muted: #6d6d6d;
    --ep-sale: #c41e3a;
    --ep-success: #25d366;
    --ep-brand-green: #35644f;
    --ep-nav-bg: #0A1F17;
    --ep-header-height: 84px;
    --ep-container: 1240px;
    --ep-radius: 12px;
    --ep-radius-sm: 8px;
    --ep-shadow-sm: 0 2px 8px rgba(20, 20, 20, 0.06);
    --ep-shadow: 0 8px 30px rgba(20, 20, 20, 0.08);
    --ep-shadow-lg: 0 20px 50px rgba(20, 20, 20, 0.12);
    --ep-font-display: 'Playfair Display', Georgia, serif;
    --ep-font-body: 'Poppins', system-ui, sans-serif;
    --ep-transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.ep-store {
    font-family: var(--ep-font-body);
    color: var(--ep-text);
    background: var(--ep-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    margin: 0;
    overflow-x: hidden;
}

body.ep-store #preloder {
    display: none !important;
}

/* —— Announcement —— */
.ep-announce {
    background: linear-gradient(90deg, var(--ep-black) 0%, var(--ep-charcoal) 100%);
    color: rgba(255, 255, 255, 0.92);
    text-align: center;
    font-size: 0.8125rem;
    padding: 10px 20px;
    letter-spacing: 0.03em;
}

.ep-announce a {
    color: var(--ep-gold-light);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color var(--ep-transition);
}

.ep-announce a:hover {
    border-bottom-color: var(--ep-gold-light);
}

/* —— Header —— */
body.ep-store #ep-header-mount {
    min-height: var(--ep-header-height);
    background-color: #0A1F17;
}

.ep-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    background-color: #0A1F17;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    transition: box-shadow var(--ep-transition);
}

.ep-header.is-scrolled {
    box-shadow: var(--ep-shadow-sm);
}

.ep-header__inner {
    max-width: var(--ep-container);
    margin: 0 auto;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    min-height: var(--ep-header-height);
    background-color: #0A1F17;
}

.ep-header__logo {
    flex-shrink: 0;
    text-decoration: none;
    display: flex;
    align-items: center;
    min-width: 100px;
    background-color: #0A1F17;
}

.ep-header__logo img {
    height: 72px;
    max-height: 72px;
    width: auto;
    max-width: none;
    display: block;
    object-fit: contain;
    filter: sepia(100%) saturate(400%) hue-rotate(5deg) brightness(0.9) contrast(1.1);
    transition: transform var(--ep-transition), opacity var(--ep-transition);
}

.ep-header__logo:hover img {
    transform: scale(1.02);
    opacity: 0.92;
}

@media (max-width: 575px) {
    .ep-header__inner {
        min-height: 68px;
        padding: 10px 16px;
    }

    .ep-header__logo img {
        height: 56px;
        max-height: 56px;
    }
}

.ep-nav {
    flex: 1;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0;
}

@media (min-width: 992px) {
    .ep-nav {
        display: flex;
    }
}

.ep-nav__link {
    position: relative;
    z-index: 1;
    color: #ffffff;
    text-decoration: none;
    font-family: var(--ep-font-body);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    font-variant-ligatures: none;
    padding: 11px 16px;
    border-radius: 999px;
    white-space: nowrap;
    flex-shrink: 0;
    line-height: 1.2;
    text-align: center;
    transition:
        color 0.3s ease,
        transform 0.3s cubic-bezier(0.34, 1.4, 0.64, 1),
        box-shadow 0.3s ease;
}

.ep-nav__link::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, #fff 0%, var(--ep-cream) 55%, #f5edd8 100%);
    border: 1px solid rgba(184, 149, 46, 0.18);
    box-shadow: 0 2px 12px rgba(184, 149, 46, 0.12);
    opacity: 0;
    transform: scale(0.88);
    transition:
        opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.35s cubic-bezier(0.34, 1.4, 0.64, 1);
    z-index: -1;
}

.ep-nav__link::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 6px;
    width: 0;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--ep-gold-light), var(--ep-gold), var(--ep-gold-dark));
    transform: translateX(-50%);
    transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.ep-nav__link:hover {
    color: var(--ep-gold-light);
    font-weight: 600;
    transform: translateY(-1px);
}

.ep-nav__link:hover::before {
    opacity: 0;
    transform: scale(1);
}

.ep-nav__link:hover::after {
    width: 0;
}

.ep-nav__link.active {
    color: #ffffff;
    font-weight: 700;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
    text-decoration: none;
    transform: translateY(0);
    box-shadow: none;
}

.ep-nav__link.active::before {
    opacity: 0;
    animation: none;
}

.ep-nav__link.active::after {
    display: block;
    width: calc(100% - 28px);
    height: 2px;
    bottom: 4px;
    background: #ffffff;
    border-radius: 2px;
}

.ep-nav .ep-nav__divider {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.25);
    margin: 0 8px;
    padding: 0;
}

.ep-header__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
    background-color: #0A1F17;
}

.ep-nav {
    background-color: #0A1F17;
}

.ep-header__icon-btn {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--ep-text);
    text-decoration: none;
    border: 1px solid var(--ep-border);
    transition: all var(--ep-transition);
}

.ep-header__icon-btn:hover {
    border-color: var(--ep-gold);
    color: var(--ep-gold-dark);
    background: var(--ep-cream);
}

.ep-header__wa {
    display: none;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #fff;
    background: var(--ep-success);
    padding: 10px 18px;
    border-radius: 999px;
    text-decoration: none;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
    transition: transform var(--ep-transition), box-shadow var(--ep-transition);
}

.ep-header__wa:hover {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}

@media (min-width: 768px) {
    .ep-header__wa {
        display: inline-flex;
    }
}

.ep-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--ep-radius-sm);
    padding: 0;
    cursor: pointer;
}

@media (min-width: 992px) {
    .ep-menu-toggle {
        display: none;
    }
}

.ep-menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: #fff;
    margin: 0 auto;
    border-radius: 2px;
    transition: var(--ep-transition);
}

.ep-mobile-nav {
    display: none;
    background-color: #0A1F17;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 12px 16px 20px;
    max-height: 70vh;
    overflow-y: auto;
}

.ep-mobile-nav.open {
    display: block;
    animation: ep-mobile-nav-in 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes ep-mobile-nav-in {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ep-mobile-nav .ep-nav__link {
    display: block;
    padding: 14px 16px;
    margin-bottom: 6px;
    border-radius: var(--ep-radius-sm);
    border: 1px solid transparent;
    color: #ffffff;
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    letter-spacing: 0.08em;
    transform: none;
    opacity: 0;
    animation: ep-mobile-link-in 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.ep-mobile-nav.open .ep-nav__link:nth-child(1) { animation-delay: 0.05s; }
.ep-mobile-nav.open .ep-nav__link:nth-child(2) { animation-delay: 0.1s; }
.ep-mobile-nav.open .ep-nav__link:nth-child(3) { animation-delay: 0.15s; }
.ep-mobile-nav.open .ep-nav__link:nth-child(4) { animation-delay: 0.2s; }
.ep-mobile-nav.open .ep-nav__link:nth-child(5) { animation-delay: 0.25s; }

@keyframes ep-mobile-link-in {
    from {
        opacity: 0;
        transform: translateX(-12px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.ep-mobile-nav .ep-nav__link::before {
    border-radius: var(--ep-radius-sm);
}

.ep-mobile-nav .ep-nav__link::after {
    display: none;
}

.ep-mobile-nav .ep-nav__link:hover {
    transform: translateX(4px);
}

.ep-mobile-nav .ep-nav__link.active {
    color: #ffffff;
    font-weight: 700;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
    text-decoration: none;
    border-color: transparent;
    background: transparent;
    padding-left: 16px;
    box-shadow: none;
    border-bottom: 2px solid #ffffff;
}

.ep-mobile-nav .ep-nav__link.active::before {
    opacity: 0;
    animation: none;
}

/* —— Page hero (inner pages) —— */
.ep-page-hero {
    background: linear-gradient(135deg, var(--ep-cream) 0%, var(--ep-white) 50%, var(--ep-cream-dark) 100%);
    padding: 48px 24px 40px;
    text-align: center;
    border-bottom: 1px solid var(--ep-border);
}

.ep-page-hero h1 {
    font-family: var(--ep-font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin: 0 0 10px;
    color: var(--ep-black);
    font-weight: 600;
}

.ep-page-hero p {
    margin: 0;
    color: var(--ep-muted);
    font-size: 1rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

/* —— Home hero —— */
.ep-hero {
    position: relative;
    min-height: min(85vh, 640px);
    background: var(--ep-black);
    overflow: hidden;
}

.ep-hero__slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
    opacity: 0;
    transition: opacity 1s ease;
    pointer-events: none;
    display: flex;
    align-items: flex-end;
}

.ep-hero__slide.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 1;
}

/* Bottom-heavy gradient: keeps the model's face clear, text readable below */
.ep-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(20, 20, 20, 0.85) 0%,
        rgba(20, 20, 20, 0.55) 32%,
        rgba(20, 20, 20, 0.18) 60%,
        rgba(20, 20, 20, 0.02) 100%
    );
}

/* Text block pinned to the bottom of the carousel (slide is flex-end) */
.ep-hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--ep-container);
    margin: 0 auto;
    padding: 24px 24px clamp(64px, 9vh, 88px);
    color: #fff;
}

.ep-hero__content > * {
    max-width: 580px;
}

.ep-hero__tag {
    display: inline-block;
    font-size: 0.6875rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--ep-gold-light);
    font-weight: 600;
    margin-bottom: 12px;
}

.ep-hero__title {
    font-family: var(--ep-font-display);
    font-size: clamp(2.25rem, 5.5vw, 3.5rem);
    margin: 0 0 16px;
    line-height: 1.12;
    font-weight: 600;
}

.ep-hero__desc {
    font-size: 1.0625rem;
    opacity: 0.92;
    margin-bottom: 28px;
    line-height: 1.65;
    font-weight: 300;
}

.ep-hero__dots {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 10px;
}

.ep-hero__dot {
    width: 10px;
    height: 10px;
    min-width: 10px;
    min-height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
    line-height: 1;
    appearance: none;
    -webkit-appearance: none;
    transition: var(--ep-transition);
}

.ep-hero__dot.active {
    background: var(--ep-gold);
    border-color: var(--ep-gold);
}

/* —— Buttons —— */
.ep-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 36px;
    background: var(--ep-gold);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    border-radius: 2px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.75rem;
    border: none;
    cursor: pointer;
    transition: background var(--ep-transition), transform var(--ep-transition), box-shadow var(--ep-transition);
    box-shadow: 0 4px 16px rgba(184, 149, 46, 0.35);
}

.ep-btn:hover {
    background: var(--ep-gold-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(184, 149, 46, 0.4);
}

.ep-btn--outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.9);
    color: #fff;
    box-shadow: none;
}

.ep-btn--outline:hover {
    background: #fff;
    color: var(--ep-black);
}

.ep-btn--dark {
    background: var(--ep-black);
    box-shadow: var(--ep-shadow-sm);
}

.ep-btn--dark:hover {
    background: var(--ep-charcoal);
}

/* —— Sections —— */
.ep-section {
    padding: clamp(56px, 8vw, 88px) 24px;
    max-width: var(--ep-container);
    margin: 0 auto;
}

.ep-section--cream {
    background: var(--ep-cream);
    max-width: none;
    width: 100%;
}

.ep-section--cream .ep-section__inner {
    max-width: var(--ep-container);
    margin: 0 auto;
}

.ep-section__head {
    text-align: center;
    margin-bottom: 48px;
}

.ep-section__eyebrow {
    display: inline-block;
    font-size: 0.6875rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--ep-gold-dark);
    font-weight: 600;
    margin-bottom: 10px;
}

.ep-section__eyebrow::before,
.ep-section__eyebrow::after {
    content: '—';
    margin: 0 10px;
    opacity: 0.4;
}

.ep-section__title {
    font-family: var(--ep-font-display);
    font-size: clamp(1.875rem, 3.5vw, 2.5rem);
    margin: 0 0 12px;
    color: var(--ep-black);
    font-weight: 600;
}

.ep-section__desc {
    color: var(--ep-muted);
    max-width: 540px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.7;
}

/* —— Collections —— */
.ep-collections {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    max-width: var(--ep-container);
    margin: 0 auto;
}

@media (min-width: 576px) {
    .ep-collections {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 14px;
    }
}

@media (min-width: 768px) {
    .ep-collections {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 16px;
    }
}

@media (min-width: 992px) {
    .ep-collections {
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 16px;
    }
}

.ep-collection-card {
    position: relative;
    border-radius: var(--ep-radius-sm);
    overflow: hidden;
    aspect-ratio: 3 / 4;
    text-decoration: none;
    display: block;
    box-shadow: var(--ep-shadow-sm);
    transition: box-shadow var(--ep-transition), transform var(--ep-transition);
}

.ep-collection-card:hover {
    box-shadow: var(--ep-shadow);
    transform: translateY(-3px);
}

.ep-collection-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.ep-collection-card:hover img {
    transform: scale(1.05);
}

.ep-collection-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(20, 20, 20, 0.85) 0%, transparent 52%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 14px 12px;
    color: #fff;
}

.ep-collection-card h3 {
    font-family: var(--ep-font-display);
    font-size: clamp(0.8125rem, 1.1vw, 1rem);
    margin: 0;
    font-weight: 600;
    line-height: 1.3;
}

.ep-collection-card span {
    font-size: 0.8125rem;
    opacity: 0.88;
    letter-spacing: 0.02em;
}

/* —— Product cards —— */
.ep-product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 16px;
}

@media (min-width: 576px) {
    .ep-product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 28px 20px;
    }
}

@media (min-width: 992px) {
    .ep-product-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.ep-product-card {
    text-decoration: none;
    color: inherit;
    display: block;
    group: card;
}

.ep-product-card__img-wrap {
    position: relative;
    aspect-ratio: 3 / 4;
    background: var(--ep-cream);
    border-radius: var(--ep-radius-sm);
    overflow: hidden;
    margin-bottom: 14px;
    box-shadow: var(--ep-shadow-sm);
    transition: box-shadow var(--ep-transition);
}

.ep-product-card:hover .ep-product-card__img-wrap {
    box-shadow: var(--ep-shadow);
}

.ep-product-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ep-product-card:hover .ep-product-card__img-wrap img {
    transform: scale(1.05);
}

.ep-product-card__brand {
    font-size: 0.6875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--ep-gold-dark);
    font-weight: 600;
    margin-bottom: 4px;
}

.ep-product-card__title {
    font-size: 0.9375rem;
    font-weight: 500;
    margin: 0 0 8px;
    line-height: 1.45;
    color: var(--ep-text);
    display: block;
    overflow: visible;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: anywhere;
    min-width: 0;
}

.ep-product-card__price {
    font-size: 1rem;
    font-weight: 600;
    color: var(--ep-black);
}

.ep-product-card__price del {
    color: var(--ep-muted);
    font-weight: 400;
    font-size: 0.875rem;
    margin-left: 8px;
}

.ep-section__footer {
    text-align: center;
    margin-top: 40px;
}

/* Category blocks on home */
.ep-category-block {
    padding: clamp(48px, 6vw, 72px) 24px;
    max-width: var(--ep-container);
    margin: 0 auto;
}

.ep-category-block:nth-child(even) {
    background: var(--ep-cream);
    max-width: none;
    width: 100%;
}

.ep-category-block:nth-child(even) .ep-category-block__inner {
    max-width: var(--ep-container);
    margin: 0 auto;
}

/* —— Trust —— */
.ep-trust {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    padding: 56px 24px;
    max-width: var(--ep-container);
    margin: 0 auto;
    background: var(--ep-white);
}

@media (min-width: 768px) {
    .ep-trust {
        grid-template-columns: repeat(4, 1fr);
    }
}

.ep-trust-item {
    text-align: center;
    padding: 24px 16px;
    border-radius: var(--ep-radius);
    background: var(--ep-cream);
    transition: transform var(--ep-transition);
}

.ep-trust-item:hover {
    transform: translateY(-3px);
}

.ep-trust-item i {
    font-size: 1.75rem;
    color: var(--ep-gold);
    margin-bottom: 12px;
    display: block;
}

.ep-trust-item strong {
    display: block;
    font-size: 0.875rem;
    margin-bottom: 6px;
    color: var(--ep-black);
}

.ep-trust-item span {
    font-size: 0.8125rem;
    color: var(--ep-muted);
}

/* —— Promo —— */
.ep-promo {
    position: relative;
    min-height: 360px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.ep-promo__overlay {
    position: absolute;
    inset: 0;
    background: rgba(20, 20, 20, 0.5);
}

.ep-promo__content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
    padding: 100px 24px;
    max-width: 640px;
    margin: 0 auto;
}

/* —— Testimonials —— */
.ep-section--testimonials {
    max-width: none;
    width: 100%;
    background: linear-gradient(180deg, var(--ep-cream) 0%, var(--ep-white) 45%, var(--ep-cream) 100%);
    padding-left: 0;
    padding-right: 0;
}

.ep-section--testimonials .ep-section__head,
.ep-section--testimonials .ep-testimonials {
    max-width: var(--ep-container);
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

.ep-section--testimonials .ep-section__desc {
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.ep-testimonials {
    display: grid;
    gap: 20px;
}

@media (min-width: 640px) {
    .ep-testimonials {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (min-width: 1100px) {
    .ep-testimonials {
        gap: 28px;
    }
}

.ep-testimonial {
    display: flex;
    flex-direction: column;
    background: var(--ep-white);
    padding: 28px 28px 24px;
    border: 1px solid rgba(229, 224, 214, 0.9);
    border-radius: var(--ep-radius);
    box-shadow: 0 4px 24px rgba(20, 20, 20, 0.06);
    position: relative;
    overflow: hidden;
    transition: transform var(--ep-transition), box-shadow var(--ep-transition), border-color var(--ep-transition);
}

.ep-testimonial::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--ep-gold) 0%, var(--ep-gold-light) 50%, var(--ep-gold) 100%);
}

.ep-testimonial:hover {
    transform: translateY(-4px);
    box-shadow: var(--ep-shadow);
    border-color: var(--ep-gold-light);
}

.ep-testimonial__quote-mark {
    position: absolute;
    top: 18px;
    right: 22px;
    font-size: 1.5rem;
    color: var(--ep-gold-light);
    opacity: 0.85;
    line-height: 1;
}

.ep-testimonial__stars {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
    color: var(--ep-gold);
    font-size: 0.8125rem;
}

.ep-testimonial__text {
    flex: 1;
    margin: 0 0 22px;
    padding: 0;
    border: none;
    font-size: 0.9375rem;
    font-style: normal;
    color: var(--ep-text);
    line-height: 1.7;
    font-weight: 400;
}

.ep-testimonial__author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 0;
    padding-top: 20px;
    border-top: 1px solid var(--ep-border);
}

.ep-testimonial__avatar {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--ep-gold-dark);
    background: linear-gradient(135deg, var(--ep-gold-light) 0%, #fff 100%);
    border: 1px solid rgba(184, 149, 46, 0.25);
    box-shadow: 0 2px 8px rgba(184, 149, 46, 0.15);
}

.ep-testimonial__author cite {
    display: block;
    font-style: normal;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--ep-black);
    margin-bottom: 4px;
}

.ep-testimonial__badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--ep-muted);
}

.ep-testimonial__badge .fa-check-circle {
    color: var(--ep-gold);
    font-size: 0.75rem;
}

/* —— Newsletter + Footer (unified dark band) —— */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

#ep-footer-mount {
    margin: 0;
    padding: 0;
}

.ep-newsletter {
    text-align: center;
    padding: clamp(48px, 6vw, 72px) 24px clamp(40px, 5vw, 56px);
    background: linear-gradient(165deg, #1e1e1e 0%, var(--ep-charcoal) 55%, var(--ep-black) 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.ep-newsletter::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(184, 149, 46, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.ep-newsletter__inner {
    position: relative;
    z-index: 1;
    max-width: 560px;
    margin: 0 auto;
}

.ep-newsletter__eyebrow {
    display: inline-block;
    font-size: 0.6875rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--ep-gold-light);
    font-weight: 600;
    margin-bottom: 12px;
}

.ep-newsletter h3 {
    font-family: var(--ep-font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin: 0 0 12px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.ep-newsletter p {
    color: rgba(255, 255, 255, 0.78);
    margin: 0 0 28px;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.ep-newsletter__form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 480px;
    margin: 0 auto;
}

@media (min-width: 520px) {
    .ep-newsletter__form {
        flex-direction: row;
        align-items: stretch;
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.14);
        border-radius: 4px;
        padding: 6px;
        gap: 6px;
    }
}

.ep-newsletter__field {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 14px;
    min-width: 0;
}

.ep-newsletter__field .fa-envelope-o {
    color: rgba(255, 255, 255, 0.45);
    font-size: 1rem;
    flex-shrink: 0;
}

.ep-newsletter input {
    flex: 1;
    min-width: 0;
    width: 100%;
    padding: 12px 0;
    border: none;
    border-radius: 0;
    background: transparent;
    color: #fff;
    font-size: 0.9375rem;
    outline: none;
}

@media (max-width: 519px) {
    .ep-newsletter__field {
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.14);
        border-radius: 4px;
        padding: 12px 16px;
    }
}

.ep-newsletter input::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.ep-newsletter button {
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--ep-gold) 0%, var(--ep-gold-dark) 100%);
    border: none;
    border-radius: 2px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    white-space: nowrap;
    transition: transform var(--ep-transition), box-shadow var(--ep-transition);
    box-shadow: 0 4px 16px rgba(184, 149, 46, 0.35);
}

.ep-newsletter button:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 22px rgba(184, 149, 46, 0.45);
}

.ep-newsletter + #ep-footer-mount .ep-footer {
    padding-top: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* —— Footer —— */
.ep-footer {
    background: var(--ep-black);
    color: rgba(255, 255, 255, 0.72);
    padding: clamp(48px, 6vw, 64px) 24px 0;
}

.ep-footer__inner {
    max-width: var(--ep-container);
    margin: 0 auto;
}

.ep-footer__grid {
    display: grid;
    gap: 36px 32px;
}

@media (min-width: 640px) {
    .ep-footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .ep-footer__grid {
        grid-template-columns: 1.4fr 0.9fr 0.9fr 1.1fr;
        gap: 40px;
    }
}

.ep-footer__logo {
    display: inline-block;
    margin-bottom: 18px;
}

.ep-footer__logo img {
    height: 68px;
    max-height: 68px;
    width: auto;
    max-width: none;
    display: block;
    object-fit: contain;
    filter: sepia(100%) saturate(400%) hue-rotate(5deg) brightness(0.9) contrast(1.1);
    transition: opacity var(--ep-transition);
}

.ep-footer__logo:hover img {
    opacity: 0.9;
}

.ep-footer__tagline {
    font-size: 0.9rem;
    line-height: 1.75;
    margin: 0;
    max-width: 320px;
    color: rgba(255, 255, 255, 0.62);
}

.ep-footer__heading {
    color: #fff !important;
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin: 0 0 18px;
    font-weight: 600;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(184, 149, 46, 0.35);
    display: inline-block;
    min-width: 120px;
}

.ep-footer a {
    color: rgba(255, 255, 255, 0.75) !important;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--ep-transition), padding-left var(--ep-transition);
}

.ep-footer a:hover {
    color: var(--ep-gold-light) !important;
}

.ep-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ep-footer__links li {
    margin-bottom: 12px;
}

.ep-footer__links a:hover {
    padding-left: 4px;
}

.ep-footer__contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ep-footer__contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.875rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.62);
}

.ep-footer__contact-list .fa {
    color: var(--ep-gold);
    font-size: 1rem;
    margin-top: 3px;
    flex-shrink: 0;
    width: 16px;
    text-align: center;
}

.ep-footer__contact-list a {
    color: rgba(255, 255, 255, 0.85) !important;
}

.ep-footer__social {
    display: flex;
    gap: 10px;
    margin-top: 22px;
}

.ep-footer__social a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.04);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.9) !important;
    transition: background var(--ep-transition), border-color var(--ep-transition), color var(--ep-transition), transform var(--ep-transition);
}

.ep-footer__social a:hover {
    border-color: var(--ep-gold);
    background: rgba(184, 149, 46, 0.15);
    color: var(--ep-gold-light) !important;
    transform: translateY(-2px);
    padding-left: 0;
}

.ep-footer__bottom {
    margin-top: 48px;
    padding: 22px 0 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ep-footer__copy {
    text-align: center;
    margin: 0;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.02em;
}

.ep-loading {
    text-align: center;
    padding: 48px 24px;
    color: var(--ep-muted);
    font-size: 0.9375rem;
}

.ep-loading::after {
    content: '';
    display: block;
    width: 32px;
    height: 32px;
    margin: 16px auto 0;
    border: 2px solid var(--ep-border);
    border-top-color: var(--ep-gold);
    border-radius: 50%;
    animation: ep-spin 0.8s linear infinite;
}

@keyframes ep-spin {
    to {
        transform: rotate(360deg);
    }
}

/* —— WhatsApp float —— */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    text-decoration: none;
    transition: transform var(--ep-transition);
}

.whatsapp-float:hover {
    transform: scale(1.08);
}

.whatsapp-float i,
.whatsapp-float .my-float {
    font-size: 28px !important;
    color: #fff !important;
    background: var(--ep-success) !important;
    width: 58px !important;
    height: 58px !important;
    line-height: 58px !important;
    text-align: center !important;
    border-radius: 50% !important;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45) !important;
    display: block !important;
}
