/* ====================================================================
   EEYOM HOMEPAGE REDESIGN - Premium Resort Wear
   Consistent with existing site palette: 
   - Dark charcoal/black (#222, #333)
   - Gold accent from existing hero (#c9a96e → warm gold)
   - Warm amber CTA (#c06020) from product page
   - Clean whites and soft creams
   ==================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ─── CSS CUSTOM PROPERTIES ─── */
:root {
    --eeyom-gold: #c9a96e;
    --eeyom-gold-light: #dfc9a0;
    --eeyom-gold-dark: #a8884e;
    --eeyom-charcoal: #222222;
    --eeyom-dark: #1a1a1a;
    --eeyom-text: #333333;
    --eeyom-text-light: #666666;
    --eeyom-text-muted: #999999;
    --eeyom-cream: #faf8f5;
    --eeyom-cream-dark: #f5f0ea;
    --eeyom-white: #ffffff;
    --eeyom-border: #e8e3dc;
    --eeyom-border-light: #f0ece6;
    --eeyom-amber: #c06020;
    --eeyom-amber-light: #d4753a;
    --eeyom-success: #2a8a50;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, sans-serif;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 50px rgba(0, 0, 0, 0.15);
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: 0.2s ease;
}

/* ─── GLOBAL RESETS FOR HOMEPAGE ─── */
.eeyom-homepage {
    font-family: var(--font-body);
    color: var(--eeyom-text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

.eeyom-homepage img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ─── SECTION WRAPPER ─── */
.eeyom-section {
    padding: 60px 0;
    position: relative;
}

.eeyom-section--compact {
    padding: 40px 0;
}

.eeyom-section--flush {
    padding: 0;
}

.eeyom-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.eeyom-container--wide {
    max-width: 1440px;
}

.eeyom-container--narrow {
    max-width: 900px;
}

/* ─── SECTION HEADERS ─── */
.eeyom-section-header {
    text-align: center;
    margin-bottom: 48px;
}

.eeyom-section-header__eyebrow {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--eeyom-gold);
    margin-bottom: 12px;
    display: block;
}

.eeyom-section-header__title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 500;
    color: var(--eeyom-charcoal);
    margin: 0 0 16px;
    line-height: 1.2;
}

.eeyom-section-header__subtitle {
    font-size: 15px;
    color: var(--eeyom-text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.eeyom-section-header__divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--eeyom-gold-light), var(--eeyom-gold), var(--eeyom-gold-light));
    margin: 16px auto 0;
    border: none;
}

/* ═══════════════════════════════════════════════════
   1. HERO SLIDER - Luxury Editorial
   ═══════════════════════════════════════════════════ */
.eeyom-slider-hero {
    position: relative;
    height: 100vh;
    min-height: 750px;
    background: #FAF8F5; /* Base luxury neutral */
    overflow: hidden;
    color: #111111;
}

/* ── TRANSPARENT THEME HEADER ── */
.page-template-page-home-redesign .header-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: transparent !important;
}
.page-template-page-home-redesign .header-wrapper.header-sticky.act-scroll {
    position: fixed;
    background: #FAF8F5 !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* ── BACKGROUND TEXTURES ── */
.eeyom-slider-bg-text {
    position: absolute;
    top: 50%;
    left: 45%;
    transform: translate(-50%, -50%);
    font-family: var(--font-heading);
    font-size: 35vw;
    font-weight: 700;
    color: #111111;
    opacity: 0.03;
    pointer-events: none;
    z-index: 1;
    white-space: nowrap;
}

.eeyom-slider-texture {
    position: absolute;
    inset: 0;
    z-index: 2;
    background-image: url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.8" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)" opacity="0.05"/%3E%3C/svg%3E');
    pointer-events: none;
    mix-blend-mode: multiply;
}

/* ── SLIDER LAYOUT ── */
.eeyom-slider__track {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.eeyom-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1), visibility 1.2s;
}

.eeyom-slide.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 5;
}

.eeyom-slide__container {
    display: flex;
    height: 100%;
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 5%;
}

/* ── LEFT COLUMN ── */
.eeyom-slide__left {
    width: 42%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 40px;
}

.eeyom-slide__label {
    font-size: 11px;
    letter-spacing: 3px;
    color: #6F6F6F;
    margin-bottom: 24px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.8s ease;
}

.eeyom-slide__title {
    font-family: var(--font-heading);
    font-size: clamp(50px, 6vw, 85px);
    line-height: 1.05;
    font-weight: 400;
    margin: 0 0 24px;
    color: #111111;
    letter-spacing: -1px;
    transform: translateY(30px);
    opacity: 0;
    transition: all 1s ease 0.1s;
}

.eeyom-slide__title em {
    font-style: italic;
    color: #CFAE72;
}

.eeyom-slide__desc {
    font-size: 16px;
    line-height: 1.7;
    color: #6F6F6F;
    max-width: 420px;
    margin-bottom: 40px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.8s ease 0.2s;
}

.eeyom-slide__actions {
    display: flex;
    gap: 16px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.8s ease 0.3s;
    margin-bottom: 40px;
}

.eeyom-slider-btn {
    padding: 16px 36px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.4s ease;
    border-radius: 2px; /* sharper luxury feel */
}

.eeyom-slider-btn--primary {
    background: #111111;
    color: #FFFFFF;
}

.eeyom-slider-btn--primary:hover {
    background: #CFAE72;
    color: #FFFFFF;
}

.eeyom-slider-btn--secondary {
    border: 1px solid rgba(17, 17, 17, 0.2);
    color: #111111;
}

.eeyom-slider-btn--secondary:hover {
    border-color: #111111;
    background: rgba(17,17,17,0.03);
}

.eeyom-slide__trust {
    font-size: 12px;
    color: #6F6F6F;
    display: flex;
    align-items: center;
    gap: 8px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.8s ease 0.4s;
}

.eeyom-slide__trust .stars {
    color: #CFAE72;
    font-size: 14px;
    letter-spacing: 2px;
}

/* Trigger animations on active slide */
.eeyom-slide.is-active .eeyom-slide__label,
.eeyom-slide.is-active .eeyom-slide__title,
.eeyom-slide.is-active .eeyom-slide__desc,
.eeyom-slide.is-active .eeyom-slide__actions,
.eeyom-slide.is-active .eeyom-slide__trust {
    transform: translateY(0);
    opacity: 1;
}

/* ── RIGHT COLUMN ── */
.eeyom-slide__right {
    width: 58%;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.eeyom-slide__v1-wrapper {
    position: absolute;
    width: 380px;
    aspect-ratio: 9/16;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,0.1);
    left: 10%;
    top: 50%;
    margin-top: -320px; /* approx half height to center */
    z-index: 1;
    transform: scale(0.96);
    opacity: 0;
    transition: transform 1.5s cubic-bezier(0.2, 0.8, 0.2, 1) 0.2s, opacity 1s ease 0.2s;
}

.eeyom-slide__v2-wrapper {
    position: absolute;
    width: 280px;
    aspect-ratio: 9/16;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    right: 15%;
    bottom: 50%;
    margin-bottom: -280px;
    z-index: 2;
    transform: scale(0.96);
    opacity: 0;
    transition: transform 1.5s cubic-bezier(0.2, 0.8, 0.2, 1) 0.4s, opacity 1s ease 0.4s;
}

.eeyom-slide__v1-wrapper video,
.eeyom-slide__v1-wrapper img,
.eeyom-slide__v2-wrapper video,
.eeyom-slide__v2-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.eeyom-slide.is-active .eeyom-slide__v1-wrapper,
.eeyom-slide.is-active .eeyom-slide__v2-wrapper {
    transform: scale(1);
    opacity: 1;
}

@keyframes editorialFloat {
    0% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0); }
}

/* ── EXTRAS ── */
.eeyom-slider__progress {
    position: absolute;
    bottom: 40px;
    left: 5%;
    display: flex;
    gap: 12px;
    z-index: 10;
}

.eeyom-slider__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(17,17,17,0.2);
    cursor: pointer;
    transition: all 0.4s ease;
}

.eeyom-slider__dot.is-active {
    background: #111111;
    transform: scale(1.3);
}

.eeyom-slider__scroll {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 10;
}

.eeyom-slider__scroll span {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #6F6F6F;
}

.eeyom-slider__scroll .line {
    width: 1px;
    height: 40px;
    background: #111111;
    animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

.eeyom-slider__bottom-label {
    position: absolute;
    bottom: 40px;
    right: 5%;
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #6F6F6F;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    z-index: 10;
}

/* ─── BUTTONS ─── */
.eeyom-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.eeyom-btn--primary {
    background: var(--eeyom-gold);
    color: var(--eeyom-dark);
    border-radius: var(--radius-sm);
}

.eeyom-btn--primary:hover {
    background: var(--eeyom-gold-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--eeyom-white);
}

.eeyom-btn--outline {
    background: transparent;
    color: var(--eeyom-white);
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-sm);
}

.eeyom-btn--outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--eeyom-white);
    color: var(--eeyom-white);
}

.eeyom-btn--dark {
    background: var(--eeyom-charcoal);
    color: var(--eeyom-white);
    border-radius: var(--radius-sm);
}

.eeyom-btn--dark:hover {
    background: var(--eeyom-charcoal);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--eeyom-white);
}

.eeyom-btn--solid-white {
    background: #ffffff;
    color: #111111;
    border: none;
    font-weight: 500;
}

.eeyom-btn--solid-white:hover {
    background: #f4f4f4;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.eeyom-btn--ghost {
    background: transparent;
    color: var(--eeyom-charcoal);
    border: 1.5px solid var(--eeyom-border);
    border-radius: var(--radius-sm);
}

.eeyom-btn--ghost:hover {
    border-color: var(--eeyom-charcoal);
    background: var(--eeyom-cream);
}

.eeyom-btn__arrow {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.eeyom-btn:hover .eeyom-btn__arrow {
    transform: translateX(4px);
}

/* ═══════════════════════════════════════════════════
   2. TRUST BAR - Minimal professional strip
   ═══════════════════════════════════════════════════ */
.eeyom-trust-bar {
    background: var(--eeyom-charcoal);
    padding: 0;
    border: none;
}

.eeyom-trust-bar__grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 0;
    flex-wrap: wrap;
}

.eeyom-trust-bar__item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    position: relative;
    color: rgba(255, 255, 255, 0.9);
}

.eeyom-trust-bar__item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 20px;
    width: 1px;
    background: rgba(255, 255, 255, 0.15);
}

.eeyom-trust-bar__svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--eeyom-gold-light);
    stroke: var(--eeyom-gold-light);
}

.eeyom-trust-bar__item span {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
}

/* ═══════════════════════════════════════════════════
   3. BESTSELLERS (Pinterest Vibe)
   ═══════════════════════════════════════════════════ */
.eeyom-bestsellers {
    background: var(--eeyom-cream-dark);
    position: relative;
    overflow: hidden;
}

/* Background floating SVGs for beach vibe */
.eeyom-bg-icon {
    position: absolute;
    color: var(--eeyom-gold);
    opacity: 0.12;
    z-index: 0;
    pointer-events: none;
}

.eeyom-bg-icon--shell1 {
    top: 10%;
    left: 5%;
    width: 120px;
    transform: rotate(-15deg);
}

.eeyom-bg-icon--starfish {
    bottom: 15%;
    right: 8%;
    width: 150px;
    transform: rotate(25deg);
}

.eeyom-bg-icon--shell2 {
    top: 40%;
    right: 4%;
    width: 90px;
    transform: rotate(45deg);
}

.eeyom-bestsellers__track-wrap {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    /* Break out of container */
    overflow: hidden;
    padding: 20px 0 60px;
}

.eeyom-bestsellers__track {
    display: flex;
    gap: 30px;
    width: max-content;
    will-change: transform;
    padding-left: 30px;
}

.eeyom-product-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--eeyom-white);
    transition: var(--transition);
    border: 1px solid var(--eeyom-border-light);
}

.eeyom-product-card--pinterest {
    flex: 0 0 280px;
    border: none;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    background: var(--eeyom-white);
    padding: 12px;
    /* Staggered height effect */
    transform: translateY(0);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.eeyom-product-card--pinterest:nth-child(even) {
    transform: translateY(30px);
}

.eeyom-product-card--pinterest:hover {
    transform: translateY(-10px) !important;
    box-shadow: var(--shadow-xl);
    z-index: 10;
}

.eeyom-product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.eeyom-product-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    background: var(--eeyom-charcoal);
    color: var(--eeyom-white);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: var(--radius-sm);
}

.eeyom-product-card__badge--sale {
    background: #c04040;
}

.eeyom-product-card__img-wrap {
    position: relative;
    padding-top: 130%;
    /* Taller aspect for Pinterest look */
    overflow: hidden;
    background: var(--eeyom-cream);
    border-radius: var(--radius-md);
}

.eeyom-product-card__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.eeyom-product-card:hover .eeyom-product-card__img {
    transform: scale(1.06);
}

/* Pinterest style "Save" button */
.eeyom-product-card__overlay-pin {
    position: absolute;
    top: 16px;
    right: 16px;
    opacity: 0;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 3;
}

.eeyom-product-card:hover .eeyom-product-card__overlay-pin {
    opacity: 1;
    transform: translateY(0);
}

.eeyom-btn--pin {
    background: #e60023;
    /* Pinterest red */
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 20px;
    text-decoration: none;
    border: none;
}

.eeyom-btn--pin:hover {
    background: #ad081b;
    color: white;
}

.eeyom-product-card__info {
    padding: 16px;
}

.eeyom-product-card__title {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--eeyom-charcoal);
    margin: 0 0 6px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.eeyom-product-card__title a {
    color: inherit;
    text-decoration: none;
}

.eeyom-product-card__price {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.eeyom-product-card__price-current {
    font-size: 16px;
    font-weight: 600;
    color: var(--eeyom-charcoal);
}

/* WooCommerce price HTML overrides inside product cards */
.eeyom-product-card__price .woocommerce-Price-amount {
    font-size: 16px;
    font-weight: 600;
    color: var(--eeyom-charcoal);
}

.eeyom-product-card__price del .woocommerce-Price-amount {
    font-size: 13px;
    font-weight: 400;
    color: var(--eeyom-text-muted);
}

.eeyom-product-card__price ins {
    text-decoration: none;
}

.eeyom-product-card__price-original {
    font-size: 13px;
    color: var(--eeyom-text-muted);
    text-decoration: line-through;
}

.eeyom-product-card__rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 6px;
    font-size: 12px;
    color: var(--eeyom-text-muted);
}

.eeyom-product-card__rating .stars {
    color: #e0a020;
    font-size: 12px;
}

/* ═══════════════════════════════════════════════════
   5. CATEGORIES
   ═══════════════════════════════════════════════════ */

.eeyom-split__features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.eeyom-split__features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--eeyom-text);
}

.eeyom-split__features li::before {
    content: '✦';
    color: var(--eeyom-gold);
    font-size: 10px;
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════
   5. CATEGORIES - Visual category cards
   ═══════════════════════════════════════════════════ */
.eeyom-categories {
    background: var(--eeyom-white);
}

.eeyom-categories__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 960px;
    margin: 0 auto;
}

.eeyom-category-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
    text-decoration: none;
    display: block;
}

.eeyom-category-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.eeyom-category-card:hover .eeyom-category-card__img {
    transform: scale(1.08);
}

.eeyom-category-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(26, 26, 26, 0.65) 0%,
            rgba(26, 26, 26, 0.15) 50%,
            transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    transition: var(--transition);
}

.eeyom-category-card:hover .eeyom-category-card__overlay {
    background: linear-gradient(to top,
            rgba(26, 26, 26, 0.75) 0%,
            rgba(26, 26, 26, 0.25) 60%,
            transparent 100%);
}

.eeyom-category-card__name {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 500;
    color: var(--eeyom-white);
    margin: 0 0 4px;
}

.eeyom-category-card__count {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.eeyom-category-card__arrow {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    color: var(--eeyom-white);
    font-size: 16px;
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--transition);
}

.eeyom-category-card:hover .eeyom-category-card__arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ═══════════════════════════════════════════════════
   6. TESTIMONIALS
   ═══════════════════════════════════════════════════ */
.eeyom-testimonials {
    background: var(--eeyom-cream);
    position: relative;
    overflow: hidden;
}

.eeyom-testimonials::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-heading);
    font-size: 200px;
    color: var(--eeyom-gold-light);
    opacity: 0.12;
    pointer-events: none;
    line-height: 1;
}

.eeyom-testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.eeyom-testimonial-card {
    background: var(--eeyom-white);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--eeyom-border-light);
    transition: var(--transition);
    position: relative;
}

.eeyom-testimonial-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--eeyom-gold-light);
}

.eeyom-testimonial-card__stars {
    color: #e0a020;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.eeyom-testimonial-card__text {
    font-size: 14px;
    color: var(--eeyom-text);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.eeyom-testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--eeyom-border-light);
}

.eeyom-testimonial-card__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--eeyom-gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--eeyom-charcoal);
    flex-shrink: 0;
}

.eeyom-testimonial-card__name {
    font-size: 13px;
    font-weight: 600;
    color: var(--eeyom-charcoal);
}

.eeyom-testimonial-card__product {
    font-size: 11px;
    color: var(--eeyom-text-muted);
    margin-top: 2px;
}

.eeyom-testimonial-card__verified {
    font-size: 11px;
    color: var(--eeyom-success);
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ═══════════════════════════════════════════════════
   7. VIDEO LOOKBOOK - Full-width banner
   ═══════════════════════════════════════════════════ */
.eeyom-lookbook {
    position: relative;
    height: 450px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.eeyom-lookbook__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.eeyom-lookbook__overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 26, 0.50);
}

.eeyom-lookbook__content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.eeyom-lookbook__title {
    font-family: var(--font-heading);
    font-size: clamp(30px, 4vw, 48px);
    color: var(--eeyom-white);
    margin: 0 0 8px;
    font-weight: 400;
}

.eeyom-lookbook__subtitle {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 28px;
    font-weight: 300;
}

/* ═══════════════════════════════════════════════════
   8. FAQ ACCORDION
   ═══════════════════════════════════════════════════ */
.eeyom-faq {
    background: var(--eeyom-white);
}

.eeyom-faq__list {
    max-width: 760px;
    margin: 0 auto;
}

.eeyom-faq__item {
    border-bottom: 1px solid var(--eeyom-border);
}

.eeyom-faq__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    color: var(--eeyom-charcoal);
    text-align: left;
    transition: color var(--transition-fast);
}

.eeyom-faq__question:hover {
    color: var(--eeyom-gold-dark);
}

.eeyom-faq__icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--eeyom-cream);
    font-size: 14px;
    color: var(--eeyom-text-light);
    flex-shrink: 0;
    transition: var(--transition);
}

.eeyom-faq__item.active .eeyom-faq__icon {
    background: var(--eeyom-gold);
    color: var(--eeyom-white);
    transform: rotate(45deg);
}

.eeyom-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.eeyom-faq__item.active .eeyom-faq__answer {
    max-height: 300px;
    padding-bottom: 20px;
}

.eeyom-faq__answer p {
    font-size: 14px;
    color: var(--eeyom-text-light);
    line-height: 1.8;
    margin: 0;
}

/* ═══════════════════════════════════════════════════
   9. NEWSLETTER
   ═══════════════════════════════════════════════════ */
.eeyom-newsletter {
    background: var(--eeyom-charcoal);
    color: var(--eeyom-white);
    text-align: center;
    padding: 60px 0;
}

.eeyom-newsletter__title {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 400;
    margin: 0 0 8px;
    color: var(--eeyom-white);
}

.eeyom-newsletter__text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 28px;
}

.eeyom-newsletter__form {
    display: flex;
    max-width: 460px;
    margin: 0 auto;
    gap: 0;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.eeyom-newsletter__input {
    flex: 1;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: none;
    color: var(--eeyom-white);
    font-family: var(--font-body);
    font-size: 14px;
    outline: none;
}

.eeyom-newsletter__input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.eeyom-newsletter__submit {
    padding: 14px 28px;
    background: var(--eeyom-gold);
    color: var(--eeyom-dark);
    border: none;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
}

.eeyom-newsletter__submit:hover {
    background: var(--eeyom-gold-dark);
    color: var(--eeyom-white);
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE DESIGN
   ═══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .eeyom-products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .eeyom-split {
        grid-template-columns: 1fr;
    }

    .eeyom-split__media {
        height: 350px;
    }

    .eeyom-split__content {
        padding: 40px 32px;
    }
}

@media (max-width: 768px) {
    .eeyom-section {
        padding: 40px 0;
    }

    .eeyom-hero {
        height: 80vh;
        min-height: 500px;
    }

    .eeyom-hero__content {
        padding: 0 24px;
    }

    .eeyom-hero__cta-group {
        flex-direction: column;
        align-items: flex-start;
    }

    .eeyom-section-header__title {
        font-size: 28px;
    }

    .eeyom-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .eeyom-product-card__info {
        padding: 12px;
    }

    .eeyom-product-card__title {
        font-size: 13px;
    }

    .eeyom-product-card__price-current {
        font-size: 14px;
    }



    .eeyom-categories__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .eeyom-category-card {
        aspect-ratio: 16/9;
    }

    .eeyom-testimonials__grid {
        grid-template-columns: 1fr;
    }

    .eeyom-lookbook {
        height: 300px;
    }

    .eeyom-newsletter__form {
        flex-direction: column;
    }

    .eeyom-newsletter__input,
    .eeyom-newsletter__submit {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .eeyom-hero {
        height: 70vh;
    }

    .eeyom-hero__title {
        font-size: 36px;
    }



    .eeyom-section-header {
        margin-bottom: 32px;
    }

    .eeyom-split__content {
        padding: 32px 20px;
    }
}

/* ═══════════════════════════════════════════════════
   INTERSECTION OBSERVER ANIMATIONS
   ═══════════════════════════════════════════════════ */
.eeyom-animate {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.eeyom-animate.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.eeyom-animate--delay-1 {
    transition-delay: 0.1s;
}

.eeyom-animate--delay-2 {
    transition-delay: 0.2s;
}

.eeyom-animate--delay-3 {
    transition-delay: 0.3s;
}

.eeyom-animate--delay-4 {
    transition-delay: 0.4s;
}

/* ═══════════════════════════════════════════════════
   VIDEO CAROUSEL — Cinematic Film Strip
   ═══════════════════════════════════════════════════ */
.eeyom-video-cinematic {
    background: #111;
    /* Very dark cinematic background */
    position: relative;
    overflow: hidden;
    padding: 80px 0 100px;
}

.eeyom-cinematic-marquee-wrap {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    overflow: hidden;
    padding: 40px 0;
    position: relative;
}

/* Fade edges to black */
.eeyom-cinematic-marquee-wrap::before,
.eeyom-cinematic-marquee-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 250px;
    z-index: 2;
    pointer-events: none;
}

.eeyom-cinematic-marquee-wrap::before {
    left: 0;
    background: linear-gradient(to right, #111, transparent);
}

.eeyom-cinematic-marquee-wrap::after {
    right: 0;
    background: linear-gradient(to left, #111, transparent);
}

.eeyom-cinematic-marquee {
    display: flex;
    width: max-content;
    padding: 20px 0;
}

.eeyom-cinematic-marquee:hover .eeyom-cinematic-track {
    animation-play-state: paused;
    /* Pause on hover */
}

@keyframes cinematicScroll {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-100%, 0, 0);
    }

    /* Track moves its entire width */
}

.eeyom-cinematic-track {
    display: flex;
    gap: 40px;
    /* Wider gap for larger cards */
    padding-right: 40px;
    /* Match gap for seamless loop */
    will-change: transform;
    /* Hardware accelerated CSS infinite scrolling */
    animation: cinematicScroll 30s linear infinite;
}

@media (max-width: 768px) {
    .eeyom-cinematic-track:nth-child(2) {
        display: none !important;
    }
    .eeyom-cinematic-marquee {
        width: 100%;
        padding: 0;
    }
    .eeyom-cinematic-track {
        animation: none !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding: 20px;
        padding-bottom: 40px;
        gap: 20px;
        width: 100%;
        -webkit-overflow-scrolling: touch;
    }
    .eeyom-cinematic-track::-webkit-scrollbar {
        display: none;
    }
    .eeyom-cinematic-card {
        flex: 0 0 75%;
        scroll-snap-align: center;
        transform: none !important; /* disable wave stagger effect */
    }
    .eeyom-cinematic-marquee-wrap::before,
    .eeyom-cinematic-marquee-wrap::after {
        width: 40px; /* smaller fade on mobile */
    }
}

.eeyom-cinematic-card {
    position: relative;
    flex: 0 0 350px;
    /* Much larger videos */
    aspect-ratio: 9/16;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.6s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Wave staggering effect */
.eeyom-cinematic-card--up {
    transform: translateY(-30px);
}

.eeyom-cinematic-card--center {
    transform: translateY(0);
}

.eeyom-cinematic-card--down {
    transform: translateY(30px);
}

/* Hover Parallax effect */
.eeyom-cinematic-card:hover {
    transform: translateY(0) scale(1.08) !important;
    z-index: 10;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(200, 165, 122, 0.2);
    border-color: rgba(200, 165, 122, 0.4);
    /* Gold edge glow */
}

.eeyom-cinematic-card__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.85) contrast(1.1);
    transition: filter 0.6s ease, transform 6s linear;
}

.eeyom-cinematic-card:hover .eeyom-cinematic-card__video {
    filter: brightness(1.1) contrast(1.0);
}

/* Subtle Play Icon Overlay */
.eeyom-cinematic-card__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2);
    opacity: 1; /* Show by default to indicate it's a video */
    transition: opacity 0.4s ease;
    pointer-events: none;
    /* Let video be interacted with if needed */
}

.eeyom-cinematic-card:hover .eeyom-cinematic-card__overlay {
    opacity: 0; /* Hide when playing (hovered) */
}

.eeyom-cinematic-card__play {
    color: rgba(255, 255, 255, 0.9);
    font-size: 24px;
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform: scale(0.8);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.eeyom-cinematic-card:hover .eeyom-cinematic-card__play {
    transform: scale(1);
}

/* ═══════════════════════════════════════════════════
   INSTAGRAM GALLERY
   ═══════════════════════════════════════════════════ */
.eeyom-instagram {
    background: var(--eeyom-cream);
}

.eeyom-instagram__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 6px;
}

.eeyom-instagram__item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: var(--radius-sm);
    display: block;
}

.eeyom-instagram__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.eeyom-instagram__item:hover img {
    transform: scale(1.08);
}

.eeyom-instagram__overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 26, 0.0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.eeyom-instagram__item:hover .eeyom-instagram__overlay {
    background: rgba(26, 26, 26, 0.35);
}

.eeyom-instagram__icon {
    color: var(--eeyom-white);
    font-size: 24px;
    opacity: 0;
    transform: scale(0.7);
    transition: var(--transition);
}

.eeyom-instagram__item:hover .eeyom-instagram__icon {
    opacity: 1;
    transform: scale(1);
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE OVERRIDES for new sections
   ═══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .eeyom-slide__left { width: 50%; padding-right: 20px; }
    .eeyom-slide__right { width: 50%; }
    .eeyom-slide__title { font-size: clamp(40px, 5vw, 60px); }
    .eeyom-slide__v1-wrapper { width: 300px; margin-top: -250px; left: 5%; }
    .eeyom-slide__v2-wrapper { width: 220px; margin-bottom: -220px; right: 5%; }

    .eeyom-instagram__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .eeyom-video-carousel__slide {
        flex: 0 0 240px;
    }

    .eeyom-split {
        max-height: none;
    }
}

@media (max-width: 768px) {
    .eeyom-slider-hero { padding: 0; height: calc(100vh - 65px); position: relative; display: block; }
    .eeyom-slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 1; visibility: visible; display: none; }
    .eeyom-slide.is-active { display: block; }
    .eeyom-slide__container { display: flex; flex-direction: column; justify-content: flex-end; height: 100%; padding-bottom: 30px; }
    
    .eeyom-slide__right { position: absolute !important; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; display: block; }
    .eeyom-slide__v1-wrapper { position: absolute !important; top: 0 !important; left: 0 !important; width: 100%; height: 100%; border-radius: 0; z-index: 1; box-shadow: none; margin: 0 !important; transform: none !important; }
    .eeyom-slide__v1-wrapper video { border-radius: 0 !important; object-fit: cover; object-position: center 20%; width: 100%; height: 100%; animation: none !important; }
    .eeyom-slide__v2-wrapper { display: none !important; }
    .eeyom-slide__right::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 45%); z-index: 2; }
    
    .eeyom-slide__left { position: relative; z-index: 10; width: 100%; text-align: center; padding: 0 15px; color: #ffffff; margin: 0; align-items: center; }
    
    .eeyom-slide__label { color: rgba(255,255,255,0.8); margin-bottom: 6px; font-size: 10px; }
    .eeyom-slide__title { color: #ffffff; font-size: 32px; line-height: 1.1; margin-bottom: 8px; }
    .eeyom-slide__title em { color: var(--eeyom-gold-light); }
    .eeyom-slide__desc { color: rgba(255,255,255,0.9); font-size: 13px; text-shadow: 0 1px 4px rgba(0,0,0,0.5); margin-bottom: 16px; padding: 0 10px; }
    .eeyom-slide__trust { color: rgba(255,255,255,0.8); }
    
    .eeyom-slide__actions { display: flex; flex-direction: column; gap: 8px; width: 100%; max-width: 320px; margin: 0 auto 16px; justify-content: center; }
    .eeyom-slider-btn { width: 100%; text-align: center; justify-content: center; }
    .eeyom-slider-btn--primary { background: #ffffff; color: #111111; }
    .eeyom-slider-btn--primary:hover { background: #e0e0e0; }
    .eeyom-slider-btn--secondary { border-color: rgba(255,255,255,0.5); color: #ffffff; background: rgba(0,0,0,0.25); backdrop-filter: blur(4px); }
    .eeyom-slider-btn--secondary:hover { border-color: #ffffff; background: rgba(0,0,0,0.4); }
    
    .eeyom-slider__scroll { display: none; }
    .eeyom-slider__progress { z-index: 20; bottom: 10px; left: 50%; transform: translateX(-50%); }
    .eeyom-slider__dot { background: rgba(255,255,255,0.3); }
    .eeyom-slider__dot.is-active { background: #ffffff; }

    /* Make the theme header solid and sit above the hero on mobile */
    .page-template-page-home-redesign .header-wrapper {
        position: relative !important;
        background: #FAF8F5 !important;
    }

    .eeyom-trust-bar__grid {
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow: hidden;
        width: 100%;
    }

    .eeyom-trust-bar__item {
        flex: 0 0 auto;
        padding: 10px 20px;
    }

    .eeyom-trust-bar__item::after {
        display: none !important;
    }

    /* Hide scrollbar for cleaner look */
    .eeyom-trust-bar__grid::-webkit-scrollbar {
        display: none;
    }

    .eeyom-trust-bar__grid {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .eeyom-trust-bar__item {
        flex: 0 0 auto;
        scroll-snap-align: start;
        padding: 10px 0;
    }

    .eeyom-trust-bar__item:not(:last-child)::after {
        display: block;
        /* Keep dividers on mobile scroll */
    }

    .eeyom-trust-bar__item span {
        font-size: 11px;
        letter-spacing: 0.5px;
    }

    .eeyom-instagram__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 4px;
    }

    .eeyom-video-carousel__slide {
        flex: 0 0 200px;
    }

    .eeyom-video-card {
        aspect-ratio: 9/14;
    }

    .eeyom-split {
        max-height: none;
    }
}

@media (max-width: 480px) {
    .eeyom-instagram__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .eeyom-video-carousel__slide {
        flex: 0 0 180px;
    }
}

/* ═══════════════════════════════════════════════════
   AD PREP OPTIONS CSS
   ═══════════════════════════════════════════════════ */
.eeyom-option-badge {
    background: var(--eeyom-charcoal);
    color: var(--eeyom-white);
    display: inline-block;
    padding: 6px 12px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.eeyom-option {
    margin: 40px 0;
    padding: 60px 0;
}

/* OPTION 1: CURATED EDITS */
.eeyom-categories__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.eeyom-category-card {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    display: block;
    border-radius: 4px;
    text-decoration: none !important;
}

.eeyom-category-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.eeyom-category-card:hover .eeyom-category-card__img {
    transform: scale(1.05);
}

.eeyom-category-card__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 30px 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: #fff;
    display: flex;
    flex-direction: column;
}

.eeyom-category-card__name {
    font-size: 28px;
    font-family: var(--font-heading);
    margin: 0 0 5px;
    color: #fff;
    font-weight: 400;
}

.eeyom-category-card__count {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.eeyom-category-card__arrow {
    position: absolute;
    bottom: 30px;
    right: 30px;
    color: #fff;
    font-size: 24px;
    opacity: 0;
    transform: translateX(-15px);
    transition: all 0.3s ease;
}

.eeyom-category-card:hover .eeyom-category-card__arrow {
    opacity: 1;
    transform: translateX(0);
}

/* OPTION 2: THE EEYOM PROMISE */
.eeyom-promise {
    background: #FDF9F5;
}

.eeyom-promise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.eeyom-promise-card {
    text-align: center;
    padding: 40px 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.eeyom-promise-card__icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    color: var(--eeyom-gold);
}

.eeyom-promise-card__title {
    font-size: 20px;
    font-family: var(--font-heading);
    margin-bottom: 15px;
    color: var(--eeyom-charcoal);
}

.eeyom-promise-card__text {
    font-size: 15px;
    color: var(--eeyom-text-light);
    line-height: 1.6;
    margin: 0;
}

/* OPTION 3: SHOP THE LOOK */
.eeyom-shop-look-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.eeyom-shop-look-card {
    position: relative;
    aspect-ratio: 2/3;
    overflow: hidden;
    border-radius: 4px;
}

.eeyom-shop-look-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.eeyom-shop-look-card__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.eeyom-shop-look-card:hover .eeyom-shop-look-card__overlay {
    opacity: 1;
}

.eeyom-shop-look-card__content {
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.eeyom-shop-look-card:hover .eeyom-shop-look-card__content {
    transform: translateY(0);
}

.eeyom-shop-look-card__title {
    color: #fff;
    font-size: 22px;
    font-family: var(--font-heading);
    margin: 0 0 20px;
}

@media (max-width: 991px) {

    .eeyom-categories__grid,
    .eeyom-promise-grid,
    .eeyom-shop-look-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .eeyom-categories__grid,
    .eeyom-promise-grid,
    .eeyom-shop-look-grid {
        grid-template-columns: 1fr;
    }

    /* Make bestsellers marquee touch scrollable */
    .eeyom-bestsellers__track-wrap {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        padding-bottom: 20px;
    }
    
    .eeyom-bestsellers__track-wrap::-webkit-scrollbar {
        display: none;
    }
    
    .eeyom-bestsellers__track {
        transform: none !important;
        padding-right: 30px;
    }
    
    .eeyom-product-card--pinterest {
        scroll-snap-align: start;
        min-width: 75vw;
    }
    
    /* Make trust bar marquee touch scrollable */
    .eeyom-trust-bar__grid {
        transform: none !important;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        justify-content: flex-start;
        padding-bottom: 10px;
    }
    
    .eeyom-trust-bar__grid::-webkit-scrollbar {
        display: none;
    }
    
    .eeyom-trust-bar__item {
        scroll-snap-align: start;
        flex: 0 0 auto;
    }
}