@import url('/css/variables.css');

/* ========== GLOBAL RESET & BASE ========== */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-sans);
    background: var(--bg-body);
    color: var(--charcoal);
    margin: 0; padding: 0;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; transition: all 0.25s ease; }
img { max-width: 100%; display: block; }
::selection { background: var(--champagne); }

/* Smooth fade-up animation */
@keyframes fadeUp { from { opacity:0; transform: translateY(18px); } to { opacity:1; transform: translateY(0); } }
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }
.reveal { opacity:0; transform: translateY(18px); transition: all .7s cubic-bezier(.22,1,.36,1); }
.reveal.in { opacity:1; transform: translateY(0); }

/* ========== TOP ANNOUNCEMENT BAR ========== */
.ef-topbar {
    background: var(--charcoal);
    color: #F8F3E8;
    font-size: 11.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 500;
    padding: 8px 0;
    text-align: center;
}
.ef-topbar span { color: var(--light-gold); }
.ef-topbar a { color: var(--light-gold); text-decoration: underline; text-underline-offset: 3px; }

/* ========== HEADER ========== */
.ef-header {
    background: rgba(255,253,247,0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-gold);
    position: sticky; top: 0; z-index: 1020;
    transition: box-shadow .3s ease;
}
.ef-header.scrolled { box-shadow: 0 4px 24px rgba(51,51,51,0.06); }
.ef-header-inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 24px; padding: 14px 0;
    max-width: 1320px; margin: 0 auto; width: min(100% - 32px, 1320px);
}
.ef-logo {
    display: flex; align-items: center; gap: 12px; flex-shrink: 0;
}
.ef-logo-img {
    height: 75px; width: auto; object-fit: contain; display: block; transform: scale(1.2);
}
.ef-logo-img--footer {
    height: 48px;
    /* logo.png is designed for light background; on dark footer keep as-is if already light, otherwise uncomment filter */
    /* filter: brightness(0) invert(1); */
}
.ef-logo-mark {
    width: 46px; height: 46px; border-radius: 50%;
    border: 1.5px solid var(--primary-gold);
    display: flex; align-items: center; justify-content: center;
    position: relative;
}
.ef-logo-mark::after {
    content: ''; position: absolute; inset: 4px; border-radius: 50%;
    border: 1px solid rgba(200,155,60,0.3);
}
.ef-logo-mark i { color: var(--primary-gold); font-size: 16px; }
.ef-logo-text { line-height: 1; }
.ef-logo-text .brand-endless {
    font-family: var(--font-display);
    font-weight: 700; font-size: 18px; letter-spacing: 0.18em;
    color: var(--charcoal); display: block;
}
.ef-logo-text .brand-sub {
    font-size: 9.5px; letter-spacing: 0.32em; text-transform: uppercase;
    color: var(--primary-gold); font-weight: 600; margin-top: 3px; display: block;
}
.ef-nav { display: flex; align-items: center; gap: 28px; list-style: none; margin: 0; padding: 0; }
.ef-nav a {
    font-size: 12.5px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--charcoal); position: relative; padding: 4px 0;
}
.ef-nav a::after {
    content: ''; position: absolute; left: 0; bottom: -2px; width: 0; height: 1.5px;
    background: var(--primary-gold); transition: width .3s ease;
}
.ef-nav a:hover::after, .ef-nav a.active::after { width: 100%; }
.ef-nav a:hover, .ef-nav a.active { color: var(--primary-gold); }
.ef-header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.ef-icon-btn {
    width: 40px; height: 40px; border-radius: 50%;
    border: 1px solid var(--border-light);
    background: var(--white); display: flex; align-items: center; justify-content: center;
    color: var(--charcoal); font-size: 14px; transition: all .25s ease; cursor: pointer;
}
.ef-icon-btn:hover { border-color: var(--primary-gold); color: var(--primary-gold); transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.ef-icon-btn.cart { background: var(--charcoal); color: var(--white); border-color: var(--charcoal); }
.ef-icon-btn.cart:hover { background: var(--primary-gold); border-color: var(--primary-gold); color: #fff; }
.ef-badge {
    position: absolute; top: -4px; right: -4px; width: 16px; height: 16px; border-radius: 50%;
    background: var(--primary-gold); color: #fff; font-size: 9px; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
}
.ef-hamburger { display: none; }

/* Mobile drawer */
.ef-drawer {
    position: fixed; inset: 0; z-index: 1030; visibility: hidden; opacity: 0; transition: all .3s ease;
}
.ef-drawer.open { visibility: visible; opacity: 1; }
.ef-drawer-overlay { position: absolute; inset: 0; background: rgba(51,51,51,0.42); backdrop-filter: blur(2px); }
.ef-drawer-panel {
    position: absolute; top: 0; right: 0; width: min(380px, 86vw); height: 100%;
    background: var(--cream); padding: 28px; transform: translateX(100%); transition: transform .35s cubic-bezier(.22,1,.36,1);
    overflow-y: auto;
}
.ef-drawer.open .ef-drawer-panel { transform: translateX(0); }
.ef-drawer-nav { list-style: none; padding: 0; margin: 28px 0 0; }
.ef-drawer-nav li { border-bottom: 1px solid var(--border-light); }
.ef-drawer-nav a { display: block; padding: 16px 0; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--charcoal); font-weight: 500; }
.ef-drawer-nav a:hover { color: var(--primary-gold); padding-left: 6px; }

/* ========== HERO ========== */
.ef-hero {
    background: linear-gradient(180deg, #FFFEFB 0%, #F8F3E8 100%);
    position: relative; overflow: hidden;
    padding: clamp(28px, 5vw, 48px) 0 clamp(36px, 6vw, 64px);
}
.ef-hero::before {
    content: ''; position: absolute; right: -120px; top: -120px; width: 520px; height: 520px;
    border: 1px solid rgba(200,155,60,0.10); border-radius: 50%;
}
.ef-hero::after {
    content: ''; position: absolute; right: -80px; top: -80px; width: 440px; height: 440px;
    border: 1px solid rgba(200,155,60,0.07); border-radius: 50%;
}
.ef-hero-inner {
    max-width: 1320px; margin: 0 auto; width: min(100% - 32px, 1320px);
    display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; position: relative; z-index: 1;
}
.ef-kicker {
    display: inline-flex; align-items: center; gap: 12px;
    font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; font-weight: 600;
    color: var(--primary-gold); margin-bottom: 18px;
}
.ef-kicker::before { content: ''; width: 32px; height: 1px; background: var(--primary-gold); }
.ef-hero h1 {
    font-family: var(--font-display); font-weight: 400; line-height: 1.08;
    font-size: clamp(2.2rem, 4.2vw, 3.5rem); color: var(--charcoal); margin: 0;
}
.ef-hero h1 em { font-style: italic; font-weight: 400; color: var(--primary-gold); }
.ef-hero p {
    color: var(--text-muted); font-size: 15px; line-height: 1.85; margin: 18px 0 0; max-width: 520px;
}
.ef-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.ef-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 14px 28px; font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase;
    font-weight: 700; border-radius: 4px; border: 1px solid transparent; cursor: pointer;
    transition: all .3s ease; text-decoration: none;
}
.ef-btn-primary { background: var(--charcoal); color: var(--white); border-color: var(--charcoal); }
.ef-btn-primary:hover { background: var(--primary-gold); border-color: var(--primary-gold); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.ef-btn-outline { background: transparent; color: var(--charcoal); border-color: var(--charcoal); }
.ef-btn-outline:hover { background: var(--charcoal); color: #fff; }
.ef-btn-gold { background: var(--primary-gold); color: #fff; border-color: var(--primary-gold); }
.ef-btn-gold:hover { background: var(--dark-gold); border-color: var(--dark-gold); }

.ef-hero-visual { position: relative; }
.ef-hero-img-wrap {
    position: relative; border-radius: 18px; overflow: hidden;
    aspect-ratio: 4/4.2; background: var(--soft-beige);
    box-shadow: 0 24px 60px rgba(51,51,51,0.11);
}
.ef-hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.ef-hero-img-wrap:hover img { transform: scale(1.03); }
.ef-hero-img-wrap::after {
    content: ''; position: absolute; inset: 14px; border: 1px solid rgba(255,255,255,0.55); border-radius: 14px; pointer-events: none;
}
.ef-hero-card {
    position: absolute; bottom: 18px; left: -18px; background: var(--white);
    padding: 14px 18px; border-radius: 12px; box-shadow: var(--shadow-lg);
    display: flex; align-items: center; gap: 12px; max-width: 260px;
}
.ef-hero-card img { width: 48px; height: 48px; border-radius: 8px; object-fit: cover; }
.ef-hero-card strong { font-size: 12px; display: block; color: var(--charcoal); }
.ef-hero-card span { font-size: 11px; color: var(--text-muted); }
.ef-hero-deco {
    position: absolute; top: 12px; right: -10px; width: 90px; height: 90px;
    border: 1px solid rgba(200,155,60,0.22); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.ef-hero-deco::before { content: ''; position: absolute; inset: 10px; border: 1px solid rgba(200,155,60,0.12); border-radius: 50%; }
.ef-hero-deco i { color: var(--primary-gold); font-size: 18px; }

/* ========== SECTION GENERIC ========== */
.ef-section { padding: clamp(40px, 6vw, 72px) 0; }
.ef-section-alt { background: var(--ivory); }
.ef-container { max-width: 1320px; margin: 0 auto; width: min(100% - 32px, 1320px); }
.ef-section-head { text-align: center; max-width: 640px; margin: 0 auto 38px; }
.ef-eyebrow {
    font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; font-weight: 600;
    color: var(--primary-gold); margin-bottom: 12px; display: flex; align-items: center; justify-content: center; gap: 12px;
}
.ef-eyebrow::before, .ef-eyebrow::after { content: ''; width: 28px; height: 1px; background: var(--border-gold-strong); }
.ef-section-head h2 {
    font-family: var(--font-display); font-weight: 400; font-size: clamp(1.7rem, 3vw, 2.3rem);
    color: var(--charcoal); margin: 0; line-height: 1.2;
}
.ef-section-head h2 em { font-style: italic; color: var(--primary-gold); }
.ef-section-head p { color: var(--text-muted); font-size: 14px; line-height: 1.8; margin: 12px 0 0; }
.ef-divider { width: 48px; height: 1.5px; background: var(--primary-gold); margin: 16px auto 0; }

/* ========== CATEGORY CARDS ========== */
.ef-cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.ef-cat-card {
    background: var(--white); border: 1px solid var(--border-light); border-radius: 16px;
    overflow: hidden; transition: all .35s ease; cursor: pointer;
}
.ef-cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); border-color: var(--border-gold-strong); }
.ef-cat-img { aspect-ratio: 1.05/1; overflow: hidden; background: var(--champagne); position: relative; }
.ef-cat-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.ef-cat-card:hover .ef-cat-img img { transform: scale(1.07); }
.ef-cat-img::after { content: ''; position: absolute; inset: 10px; border: 1px solid rgba(255,255,255,0.0); border-radius: 10px; transition: border-color .3s ease; }
.ef-cat-card:hover .ef-cat-img::after { border-color: rgba(255,255,255,0.55); }
.ef-cat-body { padding: 16px 16px 18px; text-align: center; }
.ef-cat-body h3 { font-family: var(--font-display); font-size: 16px; font-weight: 600; margin: 0; color: var(--charcoal); }
.ef-cat-body p { font-size: 12px; color: var(--text-muted); margin: 6px 0 12px; line-height: 1.6; min-height: 36px; }
.ef-cat-link {
    font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700;
    color: var(--primary-gold); display: inline-flex; align-items: center; gap: 6px;
    border-bottom: 1px solid transparent; padding-bottom: 2px;
}
.ef-cat-link i { font-size: 10px; transition: transform .25s ease; }
.ef-cat-card:hover .ef-cat-link { border-color: var(--primary-gold); }
.ef-cat-card:hover .ef-cat-link i { transform: translateX(4px); }

/* ========== PRODUCT GRID (JEWELLERY) ========== */
.ef-product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.ef-product-card {
    background: var(--white); border: 1px solid var(--border-light); border-radius: 16px;
    overflow: hidden; transition: all .35s ease; display: flex; flex-direction: column;
}
.ef-product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); border-color: var(--border-gold-strong); }
.ef-prod-img { aspect-ratio: 1/1; overflow: hidden; background: radial-gradient(ellipse at 50% 40%, #FFF7E6 0%, #F8F3E8 65%); position: relative; }
.ef-prod-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.ef-product-card:hover .ef-prod-img img { transform: scale(1.06); }
.ef-wishlist {
    position: absolute; top: 10px; right: 10px; width: 34px; height: 34px; border-radius: 50%;
    background: rgba(255,255,255,0.92); border: 1px solid var(--border-light);
    display: flex; align-items: center; justify-content: center; color: var(--text-muted);
    cursor: pointer; transition: all .25s ease; z-index: 2;
}
.ef-wishlist:hover, .ef-wishlist.active { background: var(--primary-gold); color: #fff; border-color: var(--primary-gold); }
.ef-badge-new {
    position: absolute; top: 10px; left: 10px; background: var(--charcoal); color: var(--light-gold);
    font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700;
    padding: 5px 9px; border-radius: 20px;
}
.ef-prod-body { padding: 14px 14px 16px; flex: 1; display: flex; flex-direction: column; }
.ef-prod-name { font-family: var(--font-display); font-size: 14.5px; font-weight: 600; color: var(--charcoal); margin: 0; line-height: 1.35; }
.ef-prod-desc { font-size: 12px; color: var(--text-muted); margin: 5px 0 8px; line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 38px; }
.ef-prod-price { display: flex; align-items: baseline; gap: 8px; margin-top: auto; }
.ef-prod-price .now { font-weight: 700; font-size: 15px; color: var(--charcoal); }
.ef-prod-price .was { font-size: 12px; color: var(--text-light); text-decoration: line-through; }
.ef-prod-actions { display: flex; gap: 8px; margin-top: 12px; }
.ef-prod-actions .ef-btn { flex: 1; padding: 10px 8px; font-size: 10.5px; border-radius: 8px; }
.ef-prod-actions .ef-btn-outline { border-color: var(--border-light); }
.ef-prod-actions .ef-btn-outline:hover { border-color: var(--charcoal); }

/* ========== FEATURED COLLECTION EDITORIAL ========== */
.ef-featured-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.ef-feat-card {
    position: relative; border-radius: 16px; overflow: hidden; min-height: 340px;
    display: flex; align-items: flex-end; padding: 26px; cursor: pointer;
}
.ef-feat-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.ef-feat-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(51,51,51,0.72) 0%, rgba(51,51,51,0.0) 62%); z-index: 1; }
.ef-feat-card::after { content: ''; position: absolute; inset: 12px; border: 1px solid rgba(255,255,255,0.28); border-radius: 12px; z-index: 1; pointer-events: none; }
.ef-feat-card:hover img { transform: scale(1.05); }
.ef-feat-content { position: relative; z-index: 2; }
.ef-feat-content .kicker { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--light-gold); font-weight: 700; margin-bottom: 8px; display: block; }
.ef-feat-content h3 { font-family: var(--font-display); font-size: 22px; font-weight: 500; color: #fff; margin: 0 0 8px; line-height: 1.15; }
.ef-feat-content p { font-size: 12px; color: rgba(255,255,255,0.85); margin: 0 0 14px; line-height: 1.6; }
.ef-feat-content .ef-btn { padding: 10px 18px; font-size: 10px; background: var(--white); color: var(--charcoal); border-color: var(--white); }
.ef-feat-content .ef-btn:hover { background: var(--primary-gold); border-color: var(--primary-gold); color: #fff; }
.ef-feat-large { grid-column: span 7; }
.ef-feat-small { grid-column: span 5; }
.ef-feat-wide { grid-column: span 5; }
.ef-feat-wide2 { grid-column: span 7; }

/* ========== BRAND STORY ========== */
.ef-story { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.ef-story-visual { position: relative; border-radius: 18px; overflow: hidden; aspect-ratio: 4/3.2; background: var(--champagne); }
.ef-story-visual img { width: 100%; height: 100%; object-fit: cover; }
.ef-story-visual::after { content: ''; position: absolute; inset: 16px; border: 1px solid rgba(255,255,255,0.5); border-radius: 12px; }
.ef-story-badge {
    position: absolute; bottom: 18px; right: 18px; background: var(--white); padding: 12px 16px; border-radius: 10px;
    box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 10px; z-index: 2;
}
.ef-story-badge i { color: var(--primary-gold); font-size: 18px; }
.ef-story-badge strong { font-size: 22px; font-family: var(--font-display); color: var(--charcoal); line-height: 1; display: block; }
.ef-story-badge span { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); }
.ef-story-text .ef-kicker { justify-content: flex-start; }
.ef-story-text .ef-kicker::after { content: ''; width: 32px; height: 1px; background: var(--primary-gold); }
.ef-story-text h2 { font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.15rem); font-weight: 400; line-height: 1.2; margin: 0; color: var(--charcoal); }
.ef-story-text h2 em { font-style: italic; color: var(--primary-gold); }
.ef-story-text p { color: var(--text-muted); font-size: 14px; line-height: 1.85; margin: 16px 0 0; }
.ef-story-list { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 10px; }
.ef-story-list li { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--charcoal); }
.ef-story-list li i { color: var(--primary-gold); font-size: 12px; }

/* ========== WHY CHOOSE US ========== */
.ef-benefits { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.ef-benefit {
    background: var(--white); border: 1px solid var(--border-light); border-radius: 16px;
    padding: 26px 20px; text-align: center; transition: all .3s ease;
}
.ef-benefit:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--border-gold-strong); }
.ef-benefit-icon {
    width: 56px; height: 56px; border-radius: 50%; margin: 0 auto 14px;
    border: 1px solid var(--border-gold); display: flex; align-items: center; justify-content: center;
    color: var(--primary-gold); font-size: 20px; background: var(--cream);
}
.ef-benefit h4 { font-family: var(--font-display); font-size: 15px; font-weight: 600; margin: 0 0 8px; color: var(--charcoal); }
.ef-benefit p { font-size: 12.5px; color: var(--text-muted); line-height: 1.7; margin: 0; }

/* ========== TESTIMONIALS ========== */
.ef-test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.ef-test-card {
    background: var(--white); border: 1px solid var(--border-light); border-radius: 16px;
    padding: 26px 22px; text-align: center; transition: all .3s ease;
}
.ef-test-card:hover { box-shadow: var(--shadow-md); border-color: var(--border-gold-strong); }
.ef-stars { color: var(--primary-gold); font-size: 13px; letter-spacing: 2px; margin-bottom: 14px; }
.ef-test-card p { font-family: var(--font-display); font-style: italic; font-size: 15px; line-height: 1.7; color: var(--charcoal); margin: 0 0 16px; }
.ef-test-author { display: flex; align-items: center; justify-content: center; gap: 12px; }
.ef-test-author img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.ef-test-author strong { font-size: 12px; display: block; color: var(--charcoal); }
.ef-test-author span { font-size: 11px; color: var(--text-muted); }

/* ========== NEWSLETTER ========== */
.ef-newsletter {
    background: var(--charcoal); position: relative; overflow: hidden;
    padding: clamp(36px, 6vw, 64px) 0; text-align: center;
}
.ef-newsletter::before {
    content: ''; position: absolute; left: -80px; top: -80px; width: 300px; height: 300px;
    border: 1px solid rgba(217,182,111,0.12); border-radius: 50%;
}
.ef-newsletter h2 { font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.15rem); font-weight: 400; color: var(--white); margin: 0; }
.ef-newsletter h2 em { font-style: italic; color: var(--light-gold); }
.ef-newsletter p { color: rgba(255,255,255,0.65); font-size: 13px; margin: 10px auto 0; max-width: 520px; line-height: 1.7; }
.ef-news-form {
    display: flex; gap: 10px; max-width: 520px; margin: 26px auto 0; background: rgba(255,255,255,0.08);
    padding: 6px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.14);
}
.ef-news-form input {
    flex: 1; background: transparent; border: none; outline: none; color: #fff;
    padding: 12px 16px; font-size: 13px; font-family: var(--font-sans);
}
.ef-news-form input::placeholder { color: rgba(255,255,255,0.5); }
.ef-news-form button {
    background: var(--primary-gold); color: #fff; border: none; padding: 12px 22px;
    font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700;
    border-radius: 6px; cursor: pointer; transition: all .25s ease; white-space: nowrap;
}
.ef-news-form button:hover { background: var(--light-gold); color: var(--charcoal); }
.ef-news-note { font-size: 11px; color: rgba(255,255,255,0.45); margin-top: 10px; }

/* ========== FOOTER ========== */
.ef-footer { background: var(--charcoal); color: rgba(255,255,255,0.72); padding: 48px 0 0; }
.ef-footer-grid { display: grid; grid-template-columns: 1.4fr 0.9fr 0.9fr 1.1fr; gap: 32px; padding-bottom: 36px; }
.ef-footer-brand .ef-logo-text .brand-endless { color: #fff; }
.ef-footer-brand p { font-size: 12.5px; line-height: 1.8; margin: 14px 0 0; color: rgba(255,255,255,0.55); max-width: 320px; }
.ef-footer h6 {
    font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 700;
    color: var(--light-gold); margin: 0 0 16px;
}
.ef-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.ef-footer ul a { font-size: 13px; color: rgba(255,255,255,0.65); }
.ef-footer ul a:hover { color: var(--light-gold); padding-left: 4px; }
.ef-footer-contact li { display: flex; gap: 10px; font-size: 13px; line-height: 1.6; }
.ef-footer-contact i { color: var(--light-gold); margin-top: 3px; font-size: 12px; }
.ef-footer-social { display: flex; gap: 10px; margin-top: 14px; }
.ef-footer-social a {
    width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.14);
    display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); font-size: 13px;
}
.ef-footer-social a:hover { background: var(--primary-gold); border-color: var(--primary-gold); color: #fff; }
.ef-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08); padding: 18px 0;
    display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap;
    font-size: 12px; color: rgba(255,255,255,0.45);
}
.ef-footer-bottom a { color: rgba(255,255,255,0.45); }
.ef-footer-bottom a:hover { color: var(--light-gold); }

/* ========== WHATSAPP FLOAT - luxury ========== */
.whatsapp-float {
    position: fixed; bottom: 22px; right: 22px; width: 54px; height: 54px; border-radius: 50%;
    background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center;
    font-size: 26px; box-shadow: 0 8px 24px rgba(37,211,102,0.35); z-index: 1000; transition: all .25s ease;
}
.whatsapp-float:hover { transform: scale(1.07); color: #fff; box-shadow: 0 12px 32px rgba(37,211,102,0.42); }

/* ========== LEGACY OVERRIDES (keep compatibility) ========== */
.navbar, .market-status-bar, .hero-section { display: none !important; } /* hide old if still present */
.section-header { text-align: center; margin-bottom: 32px; }
.section-title { font-family: var(--font-display); font-weight: 400; color: var(--charcoal); }
.section-title::after { background: var(--primary-gold); }
.veg-card, .client-card, .feature-card, .stats-section, .content-box, .blog-card { /* keep but restyle if used on other pages */ }
.logo { width: 100px; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .ef-cat-grid, .ef-product-grid, .ef-benefits { grid-template-columns: repeat(3, 1fr); }
    .ef-test-grid { grid-template-columns: repeat(2, 1fr); }
    .ef-footer-grid { grid-template-columns: 1fr 1fr; }
    .ef-hero-inner, .ef-story { grid-template-columns: 1fr; gap: 32px; }
    .ef-hero-visual { order: -1; }
    .ef-hero-card { left: 12px; bottom: 12px; }
}
@media (max-width: 768px) {
    .ef-logo-img { height: 42px; }
    .ef-logo-img--footer { height: 40px; }
    .ef-nav, .ef-header-actions .ef-icon-btn:not(.cart) { display: none; }
    .ef-hamburger { display: flex; }
    .ef-cat-grid, .ef-product-grid, .ef-benefits { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .ef-featured-grid { grid-template-columns: 1fr; }
    .ef-feat-large, .ef-feat-small, .ef-feat-wide, .ef-feat-wide2 { grid-column: span 12; min-height: 280px; }
    .ef-test-grid { grid-template-columns: 1fr; }
    .ef-footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .ef-header-inner { padding: 12px 0; }
    .ef-hero { padding: 22px 0 30px; }
    .ef-story-visual { aspect-ratio: 1.15/1; }
}
@media (max-width: 480px) {
    .ef-product-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .ef-cat-grid { grid-template-columns: repeat(2, 1fr); }
    .ef-product-card .ef-prod-actions { flex-direction: column; }
    .ef-news-form { flex-direction: column; background: transparent; border: none; padding: 0; }
    .ef-news-form input { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.14); border-radius: 8px; }
    .ef-header-inner { width: min(100% - 20px, 1320px); }
    .ef-container { width: min(100% - 20px, 1320px); }
}

/* Subtle hover gold underline animation for links */
.ef-underline { position: relative; }
.ef-underline::after { content: ''; position: absolute; left: 0; bottom: -2px; width: 0; height: 1px; background: var(--primary-gold); transition: width .3s ease; }
.ef-underline:hover::after { width: 100%; }

/* Keep existing generic helpers */
.page-shell { width: min(100% - 32px, 1320px); margin: 0 auto; }
.section-space { padding: 72px 0; }
.hero-section-veg, .stats-section { /* legacy - hidden by new design but keep functional */ }
