/* EP — Shop, Women's, Product Details, Contact overrides */
html:has(body.ep-store),
body.ep-store {
    overflow-x: hidden !important;
    overflow-y: auto !important;
    height: auto !important;
}

body.ep-store .header,
body.ep-store footer.footer,
body.ep-store .offcanvas-menu-wrapper,
body.ep-store .offcanvas-menu-overlay,
body.ep-store #preloder {
    display: none !important;
    height: 0 !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    pointer-events: none !important;
}

/* Legacy template used fixed #page-scroll below 80px navbar — disable on EP pages */
body.ep-store #page-scroll {
    position: static !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    padding-top: 0 !important;
    overflow: visible !important;
}

body.ep-store #ep-header-mount {
    margin: 0;
    padding: 0;
    background-color: #0A1F17;
}

/* Legacy modals/search — must not appear in page flow after footer */
body.ep-store .quick-view-modal:not(.show):not(.active),
body.ep-store .search-model:not(.active) {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    overflow: hidden !important;
    pointer-events: none !important;
}

/* Women's hero */
body.ep-store .womens-hero {
    min-height: 420px;
    margin-top: 0;
}

body.ep-store .womens-hero__title {
    font-family: var(--ep-font-display, 'Playfair Display', serif);
}

body.ep-store .womens-hero__btn {
    display: inline-flex;
    padding: 14px 32px;
    background: var(--ep-gold, #b8952e);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.75rem;
    border-radius: 2px;
    transition: all 0.25s ease;
}

body.ep-store .womens-hero__btn:hover {
    background: var(--ep-gold-dark, #8a6f1f);
    color: #fff;
}

/* Category cards — women's page */
body.ep-store .categories__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

@media (min-width: 768px) {
    body.ep-store .categories__grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 20px;
    }
}

body.ep-store .category-card {
    border-radius: var(--ep-radius, 12px);
    overflow: hidden;
    box-shadow: var(--ep-shadow-sm, 0 2px 8px rgba(0, 0, 0, 0.06));
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

body.ep-store .category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--ep-shadow, 0 8px 30px rgba(0, 0, 0, 0.08));
}

body.ep-store .section-title h4 {
    font-family: var(--ep-font-display, 'Playfair Display', serif);
    font-size: 1.75rem;
}

/* Product cards — lux grid (womens + shop when DB renders) */
body.ep-store .womens-products__grid,
body.ep-store #productsGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 16px;
}

@media (min-width: 576px) {
    body.ep-store .womens-products__grid,
    body.ep-store #productsGrid {
        grid-template-columns: repeat(3, 1fr);
        gap: 28px 20px;
    }
}

@media (min-width: 992px) {
    body.ep-store .womens-products__grid,
    body.ep-store #productsGrid {
        grid-template-columns: repeat(4, 1fr);
    }

    body.shop-page #productsGrid.products-grid.is-single-result {
        grid-template-columns: minmax(300px, 380px) !important;
        justify-content: start;
        max-width: 100%;
    }
}

body.ep-store .product-card--lux,
body.ep-store #productsGrid .product-card {
    border: none;
    background: transparent;
    box-shadow: none;
    padding: 0;
}

body.ep-store .product-card--lux .product-card__media,
body.ep-store #productsGrid .product-card__image {
    border-radius: var(--ep-radius-sm, 8px);
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: var(--ep-cream, #f7f4ef);
    box-shadow: var(--ep-shadow-sm);
    transition: box-shadow 0.25s ease;
}

body.ep-store .product-card--lux:hover .product-card__media,
body.ep-store #productsGrid .product-card:hover .product-card__image {
    box-shadow: var(--ep-shadow);
}

body.ep-store .product-card--lux .product-card__img,
body.ep-store #productsGrid .product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

body.ep-store .product-card--lux:hover .product-card__img,
body.ep-store #productsGrid .product-card:hover img {
    transform: scale(1.05);
}

body.ep-store .product-card__brand {
    font-size: 0.6875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--ep-gold-dark, #8a6f1f);
    font-weight: 600;
}

body.ep-store .product-card__title,
body.ep-store #productsGrid .product-card h3 {
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.4;
}

body.ep-store .product-card__title a,
body.ep-store #productsGrid .product-card h3 a {
    color: var(--ep-text, #1f1f1f);
    text-decoration: none;
}

body.ep-store .price-current {
    font-weight: 600;
    color: var(--ep-black, #141414);
}

body.ep-store .index-section-header,
body.ep-store .index-section-title {
    font-family: var(--ep-font-display, 'Playfair Display', serif);
}

/* Shop page layout */
body.ep-store.shop-page .shop-toolbar {
    border-bottom: 1px solid var(--ep-border, #e5e0d6);
    padding-bottom: 16px;
    margin-bottom: 24px;
}

body.ep-store.shop-page .results-count {
    font-weight: 500;
    color: var(--ep-muted);
}

body.ep-store.shop-page .shop-products {
    padding-top: 24px;
}

/* Product details */
body.ep-store.product-page .product-details-section {
    background: var(--ep-cream, #f7f4ef);
    padding-top: 32px;
}

body.ep-store.product-page .product-title {
    font-family: var(--ep-font-display, 'Playfair Display', serif);
}

body.ep-store.product-page .product-brand {
    color: var(--ep-gold-dark);
    letter-spacing: 0.15em;
}

body.ep-store.product-page .price-current {
    font-size: 1.75rem;
    font-weight: 600;
}

body.ep-store.product-page .product-details-whatsapp,
body.ep-store.product-page .order-btn {
    background: var(--ep-success, #25d366) !important;
    border: none !important;
    border-radius: var(--ep-radius-sm, 8px) !important;
    font-weight: 600 !important;
    letter-spacing: 0.04em !important;
    padding: 16px 24px !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

body.ep-store.product-page .product-details-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

body.ep-store.product-page .size-btn.active {
    background: var(--ep-black, #141414) !important;
    border-color: var(--ep-black) !important;
    color: #fff !important;
}

body.ep-store.product-page .gallery-main-frame {
    border-radius: var(--ep-radius, 12px);
    overflow: hidden;
    box-shadow: var(--ep-shadow);
}

body.ep-store.product-page .related-products-section .section-title {
    font-family: var(--ep-font-display, 'Playfair Display', serif);
    text-align: center;
    margin-bottom: 32px;
}

body.ep-store.product-page .related-products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (min-width: 768px) {
    body.ep-store.product-page .related-products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Contact page */
body.ep-store.contact-page {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

body.ep-store.contact-page .ep-page-hero {
    display: none !important;
}

/* About page — no extra banner below header (same as Shop/Womens/Contact) */
body.ep-store.about-page .ep-page-hero {
    display: none !important;
}

body.ep-store .ep-about {
    overflow: hidden;
}

/* —— About hero —— */
body.ep-store .ep-about-hero {
    position: relative;
    min-height: clamp(280px, 42vh, 420px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

body.ep-store .ep-about-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 30%;
    transform: scale(1.02);
}

body.ep-store .ep-about-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(20, 20, 20, 0.82) 0%,
        rgba(20, 20, 20, 0.55) 50%,
        rgba(20, 20, 20, 0.4) 100%
    );
}

body.ep-store .ep-about-hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 48px 24px;
    max-width: 640px;
    color: #fff;
}

body.ep-store .ep-about-hero__tag {
    display: inline-block;
    font-size: 0.6875rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--ep-gold-light, #e8d5a3);
    margin-bottom: 14px;
    padding: 6px 14px;
    border: 1px solid rgba(232, 213, 163, 0.35);
    border-radius: 999px;
    background: rgba(184, 149, 46, 0.12);
}

body.ep-store .ep-about-hero__title {
    font-family: var(--ep-font-display, 'Playfair Display', serif);
    font-size: clamp(2.25rem, 5vw, 3.25rem);
    font-weight: 600;
    margin: 0 0 14px;
    line-height: 1.15;
    letter-spacing: 0.02em;
}

body.ep-store .ep-about-hero__lead {
    margin: 0;
    font-size: clamp(1rem, 2vw, 1.125rem);
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 300;
}

/* —— About body sections —— */
body.ep-store .ep-about-body {
    max-width: var(--ep-container, 1240px);
    margin: 0 auto;
    padding: clamp(48px, 7vw, 80px) 24px clamp(64px, 8vw, 96px);
}

body.ep-store .ep-about-eyebrow {
    display: inline-block;
    font-size: 0.6875rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--ep-gold-dark, #8a6f1f);
    margin-bottom: 12px;
}

body.ep-store .ep-about-section-head {
    text-align: center;
    max-width: 560px;
    margin: 0 auto clamp(36px, 5vw, 52px);
}

body.ep-store .ep-about-section-head h2 {
    font-family: var(--ep-font-display, 'Playfair Display', serif);
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    font-weight: 600;
    color: var(--ep-black, #141414);
    margin: 0 0 12px;
    line-height: 1.2;
}

body.ep-store .ep-about-section-head p {
    margin: 0;
    color: var(--ep-muted, #6d6d6d);
    font-size: 1rem;
    line-height: 1.65;
}

/* —— Story split —— */
body.ep-store .ep-about-story {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: clamp(56px, 8vw, 88px);
}

@media (min-width: 900px) {
    body.ep-store .ep-about-story {
        grid-template-columns: 0.95fr 1.05fr;
        gap: clamp(40px, 5vw, 72px);
    }
}

body.ep-store .ep-about-story__media {
    position: relative;
    border-radius: calc(var(--ep-radius, 12px) + 4px);
    overflow: hidden;
    box-shadow: var(--ep-shadow-lg, 0 20px 50px rgba(20, 20, 20, 0.12));
}

body.ep-store .ep-about-story__media img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

body.ep-store .ep-about-story__accent {
    position: absolute;
    bottom: -12px;
    right: -12px;
    width: 45%;
    height: 45%;
    border: 2px solid var(--ep-gold, #b8952e);
    border-radius: var(--ep-radius, 12px);
    z-index: -1;
    opacity: 0.45;
}

body.ep-store .ep-about-story__text h2 {
    font-family: var(--ep-font-display, 'Playfair Display', serif);
    font-size: clamp(1.625rem, 3vw, 2.125rem);
    font-weight: 600;
    color: var(--ep-black, #141414);
    margin: 0 0 20px;
    line-height: 1.25;
}

body.ep-store .ep-about-story__text p {
    color: var(--ep-muted, #6d6d6d);
    font-size: 1.0625rem;
    line-height: 1.75;
    margin: 0 0 16px;
}

body.ep-store .ep-about-story__text p strong {
    color: var(--ep-text, #1f1f1f);
    font-weight: 600;
}

body.ep-store .ep-about-story__list {
    list-style: none;
    margin: 24px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

body.ep-store .ep-about-story__list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9375rem;
    color: var(--ep-text, #1f1f1f);
    line-height: 1.5;
}

body.ep-store .ep-about-story__list li i {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(184, 149, 46, 0.12);
    color: var(--ep-gold-dark, #8a6f1f);
    font-size: 0.625rem;
    margin-top: 2px;
}

/* —— Values cards —— */
body.ep-store .ep-about-values {
    margin-bottom: clamp(48px, 7vw, 72px);
    padding: clamp(40px, 6vw, 56px) clamp(20px, 4vw, 40px);
    background: linear-gradient(180deg, var(--ep-cream, #f7f4ef) 0%, var(--ep-white, #fff) 100%);
    border-radius: calc(var(--ep-radius, 12px) + 8px);
    border: 1px solid var(--ep-border, #e5e0d6);
}

body.ep-store .ep-about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    body.ep-store .ep-about-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

body.ep-store .ep-about-card {
    background: var(--ep-white, #fff);
    border: 1px solid var(--ep-border, #e5e0d6);
    border-radius: var(--ep-radius, 12px);
    padding: 32px 24px 28px;
    text-align: center;
    transition: transform var(--ep-transition, 0.25s ease), box-shadow var(--ep-transition, 0.25s ease), border-color var(--ep-transition, 0.25s ease);
    box-shadow: var(--ep-shadow-sm, 0 2px 8px rgba(20, 20, 20, 0.06));
}

body.ep-store .ep-about-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--ep-shadow, 0 8px 30px rgba(20, 20, 20, 0.08));
    border-color: rgba(184, 149, 46, 0.35);
}

body.ep-store .ep-about-card__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(184, 149, 46, 0.14) 0%, rgba(232, 213, 163, 0.25) 100%);
    border: 1px solid rgba(184, 149, 46, 0.2);
}

body.ep-store .ep-about-card__icon i {
    font-size: 1.375rem;
    color: var(--ep-gold-dark, #8a6f1f);
}

body.ep-store .ep-about-card h3 {
    font-family: var(--ep-font-display, 'Playfair Display', serif);
    font-size: 1.25rem;
    margin: 0 0 10px;
    color: var(--ep-black, #141414);
}

body.ep-store .ep-about-card p {
    margin: 0;
    font-size: 0.9375rem;
    color: var(--ep-muted, #6d6d6d);
    line-height: 1.65;
}

/* —— Stats strip —— */
body.ep-store .ep-about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    margin-bottom: clamp(48px, 7vw, 72px);
    border-radius: var(--ep-radius, 12px);
    overflow: hidden;
    background: var(--ep-border, #e5e0d6);
    box-shadow: var(--ep-shadow-sm, 0 2px 8px rgba(20, 20, 20, 0.06));
}

@media (min-width: 768px) {
    body.ep-store .ep-about-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

body.ep-store .ep-about-stats__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 28px 16px;
    background: linear-gradient(160deg, var(--ep-black, #141414) 0%, var(--ep-charcoal, #2a2a2a) 100%);
    gap: 6px;
}

body.ep-store .ep-about-stats__num {
    font-family: var(--ep-font-display, 'Playfair Display', serif);
    font-size: clamp(1.25rem, 2.5vw, 1.625rem);
    font-weight: 600;
    color: var(--ep-gold-light, #e8d5a3);
    line-height: 1.2;
}

body.ep-store .ep-about-stats__label {
    font-size: 0.6875rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 500;
}

/* —— Visit cards —— */
body.ep-store .ep-about-visit {
    margin-bottom: clamp(48px, 7vw, 72px);
}

body.ep-store .ep-about-visit .ep-about-section-head {
    margin-bottom: clamp(32px, 5vw, 44px);
}

body.ep-store .ep-about-visit__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(20px, 3vw, 28px);
}

@media (min-width: 768px) {
    body.ep-store .ep-about-visit__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: clamp(24px, 3.5vw, 36px);
    }
}

body.ep-store .ep-about-visit__card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 0;
    border-radius: calc(var(--ep-radius, 12px) + 4px);
    border: 1px solid var(--ep-border, #e5e0d6);
    background: var(--ep-white, #fff);
    box-shadow:
        0 4px 6px rgba(20, 20, 20, 0.04),
        0 12px 32px rgba(20, 20, 20, 0.07);
    overflow: hidden;
    transition:
        transform var(--ep-transition, 0.25s ease),
        border-color var(--ep-transition, 0.25s ease),
        box-shadow var(--ep-transition, 0.25s ease);
}

body.ep-store .ep-about-visit__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--ep-gold-dark, #8a6f1f) 0%, var(--ep-gold, #b8952e) 50%, var(--ep-gold-light, #e8d5a3) 100%);
    z-index: 1;
}

body.ep-store .ep-about-visit__card--wa::before {
    background: linear-gradient(90deg, #128c3e 0%, #25d366 50%, #5fe89a 100%);
}

body.ep-store .ep-about-visit__card:hover {
    transform: translateY(-6px);
    border-color: rgba(184, 149, 46, 0.4);
    box-shadow:
        0 8px 16px rgba(20, 20, 20, 0.06),
        0 20px 48px rgba(184, 149, 46, 0.14);
}

body.ep-store .ep-about-visit__card--wa:hover {
    border-color: rgba(37, 211, 102, 0.45);
    box-shadow:
        0 8px 16px rgba(20, 20, 20, 0.06),
        0 20px 48px rgba(37, 211, 102, 0.16);
}

body.ep-store .ep-about-visit__card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 28px 28px 0;
}

body.ep-store .ep-about-visit__icon {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(232, 213, 163, 0.45) 0%, rgba(184, 149, 46, 0.18) 100%);
    border: 1px solid rgba(184, 149, 46, 0.28);
    box-shadow:
        0 4px 14px rgba(184, 149, 46, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.65);
    transition: transform var(--ep-transition, 0.25s ease), box-shadow var(--ep-transition, 0.25s ease);
}

body.ep-store .ep-about-visit__card:hover .ep-about-visit__icon {
    transform: scale(1.05);
    box-shadow:
        0 6px 20px rgba(184, 149, 46, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

body.ep-store .ep-about-visit__card--wa .ep-about-visit__icon {
    background: linear-gradient(145deg, rgba(95, 232, 154, 0.35) 0%, rgba(37, 211, 102, 0.18) 100%);
    border-color: rgba(37, 211, 102, 0.35);
    box-shadow:
        0 4px 14px rgba(37, 211, 102, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

body.ep-store .ep-about-visit__card--wa:hover .ep-about-visit__icon {
    box-shadow:
        0 6px 20px rgba(37, 211, 102, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

body.ep-store .ep-about-visit__icon i {
    font-size: 1.5rem;
    color: var(--ep-gold-dark, #8a6f1f);
}

body.ep-store .ep-about-visit__card--wa .ep-about-visit__icon i {
    color: #128c3e;
    font-size: 1.625rem;
}

body.ep-store .ep-about-visit__badge {
    display: inline-block;
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ep-gold-dark, #8a6f1f);
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(184, 149, 46, 0.1);
    border: 1px solid rgba(184, 149, 46, 0.22);
}

body.ep-store .ep-about-visit__badge--wa {
    color: #128c3e;
    background: rgba(37, 211, 102, 0.1);
    border-color: rgba(37, 211, 102, 0.25);
}

body.ep-store .ep-about-visit__body {
    flex: 1;
    padding: 22px 28px 24px;
}

body.ep-store .ep-about-visit__card h3 {
    font-family: var(--ep-font-display, 'Playfair Display', serif);
    font-size: clamp(1.25rem, 2vw, 1.4375rem);
    margin: 0 0 14px;
    color: var(--ep-black, #141414);
    line-height: 1.25;
}

body.ep-store .ep-about-visit__card address,
body.ep-store .ep-about-visit__body > p:not(.ep-about-visit__meta) {
    margin: 0 0 16px;
    font-style: normal;
    font-size: 0.9375rem;
    color: var(--ep-muted, #6d6d6d);
    line-height: 1.7;
}

body.ep-store .ep-about-visit__meta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 !important;
    padding: 8px 14px;
    font-size: 0.8125rem !important;
    font-weight: 500;
    color: var(--ep-text, #1f1f1f) !important;
    background: var(--ep-cream, #f7f4ef);
    border-radius: var(--ep-radius-sm, 8px);
    border: 1px solid var(--ep-border, #e5e0d6);
}

body.ep-store .ep-about-visit__meta i {
    color: var(--ep-gold, #b8952e);
    font-size: 0.875rem;
}

body.ep-store .ep-about-visit__card--wa .ep-about-visit__meta i {
    color: #25d366;
}

body.ep-store .ep-about-visit__footer {
    padding: 0 28px 28px;
    margin-top: auto;
}

body.ep-store .ep-about-visit__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 22px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff !important;
    background: linear-gradient(135deg, var(--ep-gold, #b8952e) 0%, var(--ep-gold-dark, #8a6f1f) 100%);
    border-radius: var(--ep-radius-sm, 8px);
    border: none;
    box-shadow: 0 4px 16px rgba(184, 149, 46, 0.35);
    transition:
        transform var(--ep-transition, 0.25s ease),
        box-shadow var(--ep-transition, 0.25s ease),
        gap var(--ep-transition, 0.25s ease);
}

body.ep-store .ep-about-visit__btn i {
    font-size: 0.875rem;
    transition: transform var(--ep-transition, 0.25s ease);
}

body.ep-store .ep-about-visit__btn:hover {
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(184, 149, 46, 0.45);
    gap: 14px;
}

body.ep-store .ep-about-visit__btn:hover i {
    transform: translateX(3px);
}

body.ep-store .ep-about-visit__btn--wa {
    background: linear-gradient(135deg, #25d366 0%, #128c3e 100%);
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
}

body.ep-store .ep-about-visit__btn--wa:hover {
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
}

body.ep-store .ep-about-visit__card--wa {
    background: linear-gradient(180deg, rgba(37, 211, 102, 0.04) 0%, var(--ep-white, #fff) 38%);
}

/* —— CTA band —— */
body.ep-store .ep-about-cta-band {
    border-radius: calc(var(--ep-radius, 12px) + 8px);
    overflow: hidden;
    background: linear-gradient(
        135deg,
        var(--ep-cream-dark, #ebe6dc) 0%,
        var(--ep-cream, #f7f4ef) 40%,
        rgba(232, 213, 163, 0.35) 100%
    );
    border: 1px solid var(--ep-border, #e5e0d6);
}

body.ep-store .ep-about-cta-band__inner {
    text-align: center;
    padding: clamp(40px, 6vw, 56px) 24px;
    max-width: 560px;
    margin: 0 auto;
}

body.ep-store .ep-about-cta-band__inner h2 {
    font-family: var(--ep-font-display, 'Playfair Display', serif);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    color: var(--ep-black, #141414);
    margin: 0 0 12px;
    line-height: 1.25;
}

body.ep-store .ep-about-cta-band__inner > p {
    margin: 0 0 28px;
    color: var(--ep-muted, #6d6d6d);
    font-size: 1rem;
    line-height: 1.65;
}

body.ep-store .ep-about-cta-band__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    margin-bottom: 20px;
}

body.ep-store .ep-about-cta-band__outline {
    border-color: var(--ep-gold, #b8952e) !important;
    color: var(--ep-gold-dark, #8a6f1f) !important;
    background: transparent !important;
    box-shadow: none !important;
}

body.ep-store .ep-about-cta-band__outline:hover {
    background: var(--ep-gold, #b8952e) !important;
    color: #fff !important;
    border-color: var(--ep-gold, #b8952e) !important;
}

body.ep-store .ep-about-cta-band__note {
    margin: 0 !important;
    font-size: 0.9375rem !important;
    color: var(--ep-muted, #6d6d6d) !important;
}

body.ep-store .ep-about-cta-band__note a {
    color: var(--ep-gold-dark, #8a6f1f) !important;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(138, 111, 31, 0.35);
    transition: border-color var(--ep-transition, 0.25s ease);
}

body.ep-store .ep-about-cta-band__note a:hover {
    border-bottom-color: var(--ep-gold, #b8952e);
}

/* Women's page — compact product grid + load more */
body.ep-store.womens-page section.womens-products {
    padding-top: 48px;
    padding-bottom: 56px;
}

body.ep-store.womens-page section.womens-products .womens-products__grid--compact,
body.ep-store.womens-page section.womens-products .womens-products__grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px 12px !important;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 576px) {
    body.ep-store.womens-page section.womens-products .womens-products__grid--compact,
    body.ep-store.womens-page section.womens-products .womens-products__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        gap: 16px 14px !important;
    }
}

@media (min-width: 768px) {
    body.ep-store.womens-page section.womens-products .womens-products__grid--compact,
    body.ep-store.womens-page section.womens-products .womens-products__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
        gap: 18px 16px !important;
    }
}

@media (min-width: 1100px) {
    body.ep-store.womens-page section.womens-products .womens-products__grid--compact,
    body.ep-store.womens-page section.womens-products .womens-products__grid {
        grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
        gap: 20px 16px !important;
    }
}

body.ep-store.womens-page section.womens-products .product-card--lux {
    border-radius: 8px !important;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06) !important;
}

body.ep-store.womens-page section.womens-products .product-card--lux:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.09) !important;
}

body.ep-store.womens-page section.womens-products .product-card__media {
    aspect-ratio: 3 / 4 !important;
}

body.ep-store.womens-page section.womens-products .product-card__content {
    padding: 10px 10px 12px !important;
}

body.ep-store.womens-page section.womens-products .product-card__brand {
    font-size: 0.5625rem !important;
    letter-spacing: 0.12em !important;
    margin-bottom: 4px !important;
}

body.ep-store.womens-page section.womens-products .product-card__title {
    font-size: 0.8125rem !important;
    line-height: 1.35 !important;
    margin-bottom: 6px !important;
}

body.ep-store.womens-page section.womens-products .product-card__title a {
    display: inline;
    overflow: visible;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

body.ep-store.womens-page section.womens-products .product-card__price-row .price-current {
    font-size: 0.875rem !important;
    font-weight: 600 !important;
}

body.ep-store.womens-page .womens-products__empty,
body.ep-store.womens-page .womens-products__grid .ep-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px 16px;
    color: var(--ep-muted);
}

body.ep-store.womens-page .womens-products__actions {
    text-align: center;
    margin-top: 36px;
    padding-bottom: 8px;
    display: block;
}

body.ep-store.womens-page .womens-products__actions[hidden],
body.ep-store.womens-page .womens-products__actions.womens-products__actions--hidden {
    display: none !important;
}

/* Show only first 10 until Load More is clicked */
body.ep-store.womens-page #womensProductsGrid:not(.is-fully-loaded) > .product-card:nth-child(n+11) {
    display: none !important;
}

body.ep-store.womens-page .ep-load-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 220px;
    padding: 14px 36px;
    background: transparent;
    border: 2px solid var(--ep-black, #141414);
    border-radius: 999px;
    font-family: var(--ep-font-body, 'Poppins', sans-serif);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ep-black, #141414);
    cursor: pointer;
    transition: background var(--ep-transition), color var(--ep-transition), transform var(--ep-transition), box-shadow var(--ep-transition);
}

body.ep-store.womens-page .ep-load-more:hover {
    background: var(--ep-black, #141414);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(20, 20, 20, 0.18);
}

body.ep-store.womens-page .ep-load-more .fa {
    font-size: 0.75rem;
    transition: transform var(--ep-transition);
}

body.ep-store.womens-page .ep-load-more:hover .fa {
    transform: translateY(2px);
}

/* —— Footer: match homepage (override template style.css) —— */
body.ep-store footer.ep-footer {
    background: var(--ep-black, #111) !important;
    color: rgba(255, 255, 255, 0.72) !important;
}

body.ep-store footer.ep-footer .ep-footer__heading {
    color: #fff !important;
}

body.ep-store footer.ep-footer .ep-footer__tagline {
    color: rgba(255, 255, 255, 0.62) !important;
}

body.ep-store footer.ep-footer a {
    color: rgba(255, 255, 255, 0.75) !important;
}

body.ep-store footer.ep-footer a:hover {
    color: var(--ep-gold-light, #d4af6a) !important;
}

body.ep-store footer.ep-footer .ep-footer__contact-list li,
body.ep-store footer.ep-footer .ep-footer__contact-list span {
    color: rgba(255, 255, 255, 0.62) !important;
}

body.ep-store footer.ep-footer .ep-footer__contact-list a {
    color: rgba(255, 255, 255, 0.85) !important;
}

body.ep-store footer.ep-footer .ep-footer__social a {
    color: rgba(255, 255, 255, 0.9) !important;
}

body.ep-store footer.ep-footer .ep-footer__social a:hover {
    color: var(--ep-gold-light, #d4af6a) !important;
    padding-left: 0 !important;
}

body.ep-store footer.ep-footer .ep-footer__copy {
    color: rgba(255, 255, 255, 0.4) !important;
}

body.ep-store #ep-footer-mount,
body.ep-store #ep-footer-mount .ep-footer__inner,
body.ep-store #ep-footer-mount .ep-footer__grid,
body.ep-store #ep-footer-mount .ep-footer__col {
    max-width: none !important;
}

/* —— Nav: identical on every EP page (home, shop, women's, about, contact, product) —— */
body.ep-store #ep-header-mount .ep-header,
body.ep-store.shop-page #ep-header-mount .ep-header,
body.ep-store.womens-page #ep-header-mount .ep-header,
body.ep-store.about-page #ep-header-mount .ep-header,
body.ep-store.contact-page #ep-header-mount .ep-header,
body.ep-store.product-page #ep-header-mount .ep-header {
    background-color: #0A1F17 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
}

body.ep-store #ep-header-mount .ep-header__inner,
body.ep-store #ep-header-mount .ep-header__logo,
body.ep-store #ep-header-mount .ep-header__actions,
body.ep-store #ep-header-mount .ep-nav {
    background-color: #0A1F17 !important;
}

body.ep-store #ep-header-mount .ep-mobile-nav {
    background-color: #0A1F17 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.12) !important;
}

body.ep-store #ep-header-mount .ep-nav,
body.ep-store #ep-header-mount .ep-nav__link {
    max-width: none !important;
}

body.ep-store #ep-header-mount .ep-nav .ep-nav__link,
body.ep-store #ep-header-mount .ep-mobile-nav .ep-nav__link {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    text-decoration: none !important;
    background: transparent !important;
    white-space: nowrap !important;
    text-transform: uppercase !important;
    letter-spacing: 0.12em !important;
    font-family: var(--ep-font-body, 'Poppins', system-ui, sans-serif) !important;
    font-size: 0.875rem !important;
    font-weight: 600 !important;
    padding: 11px 16px !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35) !important;
    font-variant-ligatures: none !important;
    font-feature-settings: normal !important;
}

body.ep-store #ep-header-mount .ep-nav .ep-nav__link::before,
body.ep-store #ep-header-mount .ep-nav .ep-nav__link::after {
    display: block !important;
}

body.ep-store #ep-header-mount .ep-nav .ep-nav__link:hover,
body.ep-store #ep-header-mount .ep-mobile-nav .ep-nav__link:hover {
    color: var(--ep-gold-light, #e8d5a3) !important;
    font-weight: 600 !important;
    background: transparent !important;
}

body.ep-store #ep-header-mount .ep-nav .ep-nav__link.active {
    color: #ffffff !important;
    font-weight: 700 !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35) !important;
    -webkit-text-fill-color: #ffffff !important;
    text-decoration: none !important;
    background: transparent !important;
}

body.ep-store #ep-header-mount .ep-nav .ep-nav__link.active::before {
    opacity: 0 !important;
    animation: none !important;
}

body.ep-store #ep-header-mount .ep-nav .ep-nav__link.active::after {
    display: block !important;
    width: calc(100% - 28px) !important;
    height: 2px !important;
    bottom: 4px !important;
    background: #ffffff !important;
    border-radius: 2px !important;
}

body.ep-store #ep-header-mount .ep-mobile-nav .ep-nav__link.active {
    color: #ffffff !important;
    font-weight: 700 !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35) !important;
    -webkit-text-fill-color: #ffffff !important;
    text-decoration: none !important;
    border-color: transparent !important;
    border-bottom: 2px solid #ffffff !important;
    background: transparent !important;
    box-shadow: none !important;
}

/* —— Logo: match Contact page gold treatment (override template style.css) —— */
body.ep-store .ep-header__logo img,
body.ep-store .ep-footer__logo img {
    height: 72px !important;
    max-height: 72px !important;
    width: auto !important;
    max-width: none !important;
    filter: sepia(100%) saturate(400%) hue-rotate(5deg) brightness(0.9) contrast(1.1) !important;
}

@media (max-width: 575px) {
    body.ep-store .ep-header__logo img {
        height: 56px !important;
        max-height: 56px !important;
    }

    body.ep-store .ep-footer__logo img {
        height: 56px !important;
        max-height: 56px !important;
    }
}

/* —— Product names: full readable titles (desktop + mobile) —— */
body.ep-store .product-card,
body.index-page .product-card,
body.womens-page .product-card,
body.shop-page .product-card,
body.ep-store .related-products-grid .product-card {
    overflow: visible !important;
    height: auto !important;
    min-width: 0 !important;
}

body.ep-store .product-card__body,
body.ep-store .product-card__content,
body.index-page .product-card__content,
body.womens-page .product-card__content,
body.shop-page .product-card__body,
body.ep-store .related-products-grid .product-card__body {
    overflow: visible !important;
    flex: 1 1 auto !important;
    min-width: 0 !important;
    min-height: 0 !important;
}

body.ep-store .product-card h3,
body.ep-store .product-card__title,
body.ep-store .product-card__title a,
body.ep-store .product-card__body h3,
body.ep-store .product-card__body h3 a,
body.ep-store .product-card__content h3,
body.ep-store .product-card__content .product-card__title,
body.ep-store .product-card__content .product-card__title a,
body.ep-store #productsGrid .product-card h3,
body.ep-store #productsGrid .product-card h3 a,
body.ep-store .ep-product-card__title,
body.ep-store .related-products-grid .product-card__body h3,
body.ep-store .related-products-grid .product-card__body h3 a,
body.index-page .product-card__title,
body.index-page .product-card__title a,
body.womens-page .product-card__title,
body.womens-page .product-card__title a,
body.shop-page .product-card__body h3,
body.shop-page .product-card__body h3 a,
body.shop-page #productsGrid .product-card h3,
body.shop-page #productsGrid .product-card h3 a {
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: clip !important;
    display: block !important;
    -webkit-line-clamp: unset !important;
    line-clamp: unset !important;
    -webkit-box-orient: unset !important;
    word-wrap: break-word !important;
    overflow-wrap: anywhere !important;
    word-break: normal !important;
    hyphens: auto;
    min-width: 0 !important;
    min-height: auto !important;
    max-height: none !important;
}

body.ep-store .product-card h3 a,
body.ep-store .product-card__title a,
body.ep-store .product-card__body h3 a,
body.index-page .product-card__title a,
body.womens-page .product-card__title a,
body.shop-page .product-card__body h3 a {
    display: inline !important;
}

/* —— Nav lock: Women's & About must match Home (wins over page-specific CSS) —— */
body.ep-store.womens-page #ep-header-mount .ep-header .ep-nav .ep-nav__link,
body.ep-store.about-page #ep-header-mount .ep-header .ep-nav .ep-nav__link,
body.ep-store.womens-page #ep-header-mount .ep-mobile-nav .ep-nav__link,
body.ep-store.about-page #ep-header-mount .ep-mobile-nav .ep-nav__link {
    color: #ffffff !important;
    font-weight: 600 !important;
    font-size: 0.875rem !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3) !important;
    -webkit-text-fill-color: #ffffff !important;
    font-family: var(--ep-font-body, 'Poppins', system-ui, sans-serif) !important;
}

body.ep-store.womens-page #ep-header-mount .ep-header .ep-nav .ep-nav__link:hover,
body.ep-store.about-page #ep-header-mount .ep-header .ep-nav .ep-nav__link:hover,
body.ep-store.womens-page #ep-header-mount .ep-mobile-nav .ep-nav__link:hover,
body.ep-store.about-page #ep-header-mount .ep-mobile-nav .ep-nav__link:hover {
    color: var(--ep-gold-light, #e8d5a3) !important;
    -webkit-text-fill-color: var(--ep-gold-light, #e8d5a3) !important;
    font-weight: 600 !important;
}

body.ep-store.womens-page #ep-header-mount .ep-header .ep-nav .ep-nav__link.active,
body.ep-store.about-page #ep-header-mount .ep-header .ep-nav .ep-nav__link.active {
    color: #ffffff !important;
    font-weight: 700 !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35) !important;
    -webkit-text-fill-color: #ffffff !important;
    text-decoration: none !important;
}

body.ep-store.womens-page #ep-header-mount .ep-header .ep-nav .ep-nav__link.active::before,
body.ep-store.about-page #ep-header-mount .ep-header .ep-nav .ep-nav__link.active::before {
    opacity: 0 !important;
    animation: none !important;
}

body.ep-store.womens-page #ep-header-mount .ep-header .ep-nav .ep-nav__link.active::after,
body.ep-store.about-page #ep-header-mount .ep-header .ep-nav .ep-nav__link.active::after {
    display: block !important;
    width: calc(100% - 28px) !important;
    height: 2px !important;
    bottom: 4px !important;
    background: #ffffff !important;
}

body.ep-store.womens-page #ep-header-mount .ep-mobile-nav .ep-nav__link.active,
body.ep-store.about-page #ep-header-mount .ep-mobile-nav .ep-nav__link.active {
    color: #ffffff !important;
    font-weight: 700 !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35) !important;
    -webkit-text-fill-color: #ffffff !important;
    text-decoration: none !important;
    border-color: transparent !important;
    border-bottom: 2px solid #ffffff !important;
    background: transparent !important;
    box-shadow: none !important;
}
