/* ============================================================
   ILYSHA — Header, Footer, Pages (extension)
   Design: LA360 — Agence de communication à Marrakech
   ============================================================ */

/* ─── Reset accessibilité ──────────────────────────────────── */
.screen-reader-text { position:absolute; left:-9999px; top:auto; width:1px; height:1px; overflow:hidden; }
.screen-reader-text:focus { position:fixed; top:10px; left:10px; width:auto; height:auto; padding:10px; background:var(--gold); color:#000; z-index:99999; }

/* ─── Annonce ─────────────────────────────────────────────── */
.ilysha-announcement {
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
    color: #000;
    text-align: center;
    padding: 8px 16px;
    font-family: var(--font-sans);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 500;
}

/* ─── Header ──────────────────────────────────────────────── */
.ilysha-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(10,10,10,0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-light);
    transition: background 0.4s, border-color 0.4s;
}
.ilysha-header.scrolled {
    background: rgba(10,10,10,0.95);
    border-bottom-color: var(--border);
}
.ilysha-header__inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 18px 32px;
}
.ilysha-header__logo .custom-logo,
.ilysha-header__logo img { display: block; max-height: 50px; width: auto; }
.ilysha-logo-text { display: inline-flex; flex-direction: column; line-height: 1; text-decoration: none; }
.ilysha-logo-text__main { font-family: var(--font-serif); font-size: 26px; font-weight: 400; color: var(--text); letter-spacing: 0.04em; }
.ilysha-logo-text__sub { font-family: var(--font-sans); font-size: 9px; letter-spacing: 0.35em; color: var(--gold); text-transform: uppercase; margin-top: 4px; }

/* Menu */
.ilysha-header__nav { justify-self: center; }
.ilysha-menu {
    display: flex; gap: 36px;
    list-style: none; margin: 0; padding: 0;
}
.ilysha-menu li { position: relative; }
.ilysha-menu a {
    font-family: var(--font-sans);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text);
    padding: 6px 0;
    position: relative;
}
.ilysha-menu a::after {
    content: ''; position: absolute;
    bottom: 0; left: 50%;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width 0.3s, left 0.3s;
}
.ilysha-menu a:hover { color: var(--gold); }
.ilysha-menu a:hover::after { width: 100%; left: 0; }
.ilysha-menu .current-menu-item > a { color: var(--gold); }
.ilysha-menu .current-menu-item > a::after { width: 100%; left: 0; }

/* Sub-menu */
.ilysha-menu .sub-menu {
    position: absolute; top: 100%; left: 50%;
    transform: translateX(-50%);
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 12px 0;
    min-width: 200px;
    list-style: none; margin: 0;
    opacity: 0; visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}
.ilysha-menu li:hover > .sub-menu {
    opacity: 1; visibility: visible;
}
.ilysha-menu .sub-menu a { display: block; padding: 10px 24px; font-size: 10px; letter-spacing: 0.18em; }
.ilysha-menu .sub-menu a::after { display: none; }
.ilysha-menu .sub-menu a:hover { background: rgba(var(--gold-rgb),0.05); color: var(--gold); }

/* Actions */
.ilysha-header__actions { display: flex; align-items: center; gap: 6px; }
.ilysha-icon-btn {
    width: 40px; height: 40px;
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--text);
    border: 1px solid transparent;
    border-radius: 50%;
    transition: all 0.3s;
    position: relative;
    background: transparent;
    cursor: pointer;
}
.ilysha-icon-btn:hover { color: var(--gold); border-color: rgba(var(--gold-rgb),0.3); }

.ilysha-cart-btn .ilysha-cart-count {
    position: absolute; top: 4px; right: 4px;
    background: var(--gold); color: #000;
    font-family: var(--font-sans); font-weight: 600;
    font-size: 9px; line-height: 1;
    min-width: 16px; height: 16px;
    border-radius: 8px;
    display: inline-flex; align-items: center; justify-content: center;
    padding: 0 4px;
}

/* Search overlay */
.ilysha-search-overlay {
    position: fixed; inset: 0;
    background: rgba(10,10,10,0.97);
    backdrop-filter: blur(20px);
    z-index: 200;
    display: none;
    align-items: center; justify-content: center;
    flex-direction: column;
    padding: 32px;
}
.ilysha-search-overlay.active { display: flex; animation: ilyshaFadeIn 0.3s ease; }
.ilysha-search-close { position: absolute; top: 24px; right: 32px; background: none; border: none; color: var(--text); font-size: 36px; line-height: 1; cursor: pointer; transition: color 0.3s; }
.ilysha-search-close:hover { color: var(--gold); }
.ilysha-search-form { width: 100%; max-width: 600px; display: flex; flex-direction: column; gap: 16px; }
.ilysha-search-input {
    background: transparent; border: none;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    font-family: var(--font-serif);
    font-size: 32px; font-weight: 300;
    padding: 16px 0;
    text-align: center;
    outline: none;
    transition: border-color 0.3s;
}
.ilysha-search-input:focus { border-bottom-color: var(--gold); }
.ilysha-search-submit {
    background: var(--gold); color: #000;
    border: none; padding: 14px 32px;
    font-family: var(--font-sans); font-size: 11px; letter-spacing: 0.2em;
    text-transform: uppercase; cursor: pointer;
    align-self: center; transition: background 0.3s;
}
.ilysha-search-submit:hover { background: var(--gold-light); }

@keyframes ilyshaFadeIn { from { opacity: 0; } to { opacity: 1; } }

/* Mobile toggle */
.ilysha-mobile-toggle { display: none; width: 40px; height: 40px; background: none; border: none; cursor: pointer; padding: 8px; flex-direction: column; gap: 5px; align-items: center; justify-content: center; }
.ilysha-mobile-toggle span { display: block; width: 22px; height: 1px; background: var(--text); transition: transform 0.3s, opacity 0.3s; }
.ilysha-mobile-toggle.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.ilysha-mobile-toggle.active span:nth-child(2) { opacity: 0; }
.ilysha-mobile-toggle.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile menu */
.ilysha-mobile-menu {
    position: fixed;
    top: 0; right: -100%;
    width: 80%; max-width: 360px; height: 100vh;
    background: var(--surface);
    border-left: 1px solid var(--border);
    z-index: 150;
    transition: right 0.4s ease;
    padding: 80px 32px 32px;
    overflow-y: auto;
}
.ilysha-mobile-menu.active { right: 0; }
.ilysha-mobile-menu__list, .ilysha-mobile-menu ul { list-style: none; margin: 0; padding: 0; }
.ilysha-mobile-menu a {
    display: block;
    padding: 18px 0;
    font-family: var(--font-serif);
    font-size: 22px;
    color: var(--text);
    border-bottom: 1px solid var(--border-light);
    transition: color 0.3s;
}
.ilysha-mobile-menu a:hover { color: var(--gold); }

.ilysha-backdrop { position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 140; opacity: 0; visibility: hidden; transition: opacity 0.4s, visibility 0.4s; }
.ilysha-backdrop.active { opacity: 1; visibility: visible; }

/* ─── Layout ──────────────────────────────────────────────── */
.ilysha-main { min-height: 50vh; }
.ilysha-container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.ilysha-section { padding: 100px 0; position: relative; }
.ilysha-section__title { font-family: var(--font-serif); font-size: clamp(32px, 5vw, 56px); font-weight: 300; color: var(--text); margin-bottom: 16px; }
.ilysha-eyebrow { font-family: var(--font-sans); font-size: 10px; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.ilysha-text-center { text-align: center; }
.ilysha-link { color: var(--gold); font-family: var(--font-sans); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; transition: opacity 0.3s; }
.ilysha-link:hover { opacity: 0.7; }

/* Page hero */
.ilysha-page-hero {
    padding: 120px 32px 80px;
    text-align: center;
    background: linear-gradient(180deg, var(--bg) 0%, var(--surface) 100%);
    border-bottom: 1px solid var(--border-light);
}
.ilysha-page-hero__inner { max-width: 800px; margin: 0 auto; }
.ilysha-page-hero__title { font-family: var(--font-serif); font-size: clamp(40px, 6vw, 72px); font-weight: 300; margin: 12px 0 24px; }
.ilysha-page-hero__desc { color: var(--text-muted); font-family: var(--font-sans); font-size: 15px; max-width: 560px; margin: 24px auto 0; }

/* Page content */
.ilysha-page-content { color: var(--text-muted); font-family: var(--font-sans); font-size: 15px; line-height: 1.85; max-width: 800px; }
.ilysha-page-content h2 { font-family: var(--font-serif); font-size: 32px; color: var(--text); margin: 48px 0 20px; font-weight: 400; }
.ilysha-page-content h3 { font-family: var(--font-serif); font-size: 24px; color: var(--text); margin: 36px 0 16px; font-weight: 400; }
.ilysha-page-content p { margin-bottom: 20px; }
.ilysha-page-content a { color: var(--gold); border-bottom: 1px solid rgba(var(--gold-rgb),0.3); }
.ilysha-page-content a:hover { border-bottom-color: var(--gold); }
.ilysha-page-content ul, .ilysha-page-content ol { margin: 0 0 20px 24px; }
.ilysha-page-content li { margin-bottom: 8px; }

/* Boutons supplémentaires */
.ilysha-btn--outline {
    background: transparent;
    color: var(--text);
    border: 1px solid rgba(var(--gold-rgb),0.4);
    padding: 14px 32px;
    font-family: var(--font-sans);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s;
    cursor: pointer;
}
.ilysha-btn--outline:hover {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    border-color: transparent;
    color: #000;
}

/* ─── Features (front-page) ───────────────────────────────── */
.ilysha-features { background: var(--surface); }
.ilysha-features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}
.ilysha-feature { text-align: center; padding: 24px; }
.ilysha-feature__icon { color: var(--gold); margin-bottom: 20px; }
.ilysha-feature__title { font-family: var(--font-serif); font-size: 22px; font-weight: 400; color: var(--text); margin-bottom: 8px; }
.ilysha-feature__text { color: var(--text-muted); font-family: var(--font-sans); font-size: 13px; }

/* ─── About ───────────────────────────────────────────────── */
.ilysha-about { background: var(--surface); }
.ilysha-about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.ilysha-about__image img { width: 100%; height: auto; border: 1px solid var(--border); }
.ilysha-about__content { padding: 24px 0; }
.ilysha-about__text { color: var(--text-muted); font-family: var(--font-sans); font-size: 14px; line-height: 1.85; margin: 24px 0 32px; }

/* ─── Catégories grid ─────────────────────────────────────── */
.ilysha-cat-grid {
    display: grid;
    grid-template-columns: repeat(var(--cols, 3), 1fr);
    gap: 24px;
    margin: 40px 0;
}
.ilysha-cat-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/5;
    border: 1px solid var(--border);
    display: block;
}
.ilysha-cat-card__image { width: 100%; height: 100%; }
.ilysha-cat-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.ilysha-cat-card:hover .ilysha-cat-card__image img { transform: scale(1.05); }
.ilysha-cat-card__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.85) 100%);
    display: flex; flex-direction: column;
    align-items: center; justify-content: flex-end;
    padding: 32px 24px;
    text-align: center;
}
.ilysha-cat-card__title { font-family: var(--font-serif); font-size: 28px; color: var(--text); margin: 0; transition: color 0.3s; }
.ilysha-cat-card__count { font-family: var(--font-sans); font-size: 11px; letter-spacing: 0.18em; color: var(--gold); margin-top: 6px; text-transform: uppercase; }
.ilysha-cat-card:hover .ilysha-cat-card__title { color: var(--gold); }

/* ─── Newsletter ──────────────────────────────────────────── */
.ilysha-newsletter {
    padding: 100px 0;
    background:
        radial-gradient(circle at 30% 20%, rgba(var(--gold-rgb),0.08), transparent 50%),
        var(--bg);
    text-align: center;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}
.ilysha-newsletter__title { font-family: var(--font-serif); font-size: clamp(28px, 4vw, 44px); font-weight: 300; margin-bottom: 16px; }
.ilysha-newsletter__text { color: var(--text-muted); font-family: var(--font-sans); font-size: 14px; max-width: 520px; margin: 0 auto 32px; }
.ilysha-newsletter__form {
    display: flex;
    gap: 12px;
    max-width: 480px;
    margin: 0 auto;
}
.ilysha-newsletter__input {
    flex: 1;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text);
    padding: 14px 18px;
    font-family: var(--font-sans);
    font-size: 13px;
    outline: none;
    transition: border-color 0.3s;
}
.ilysha-newsletter__input:focus { border-color: var(--gold); }

/* ─── Blog cards ──────────────────────────────────────────── */
.ilysha-blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.ilysha-blog-card { background: var(--card); border: 1px solid var(--border); transition: border-color 0.4s, transform 0.4s; }
.ilysha-blog-card:hover { border-color: rgba(var(--gold-rgb),0.35); transform: translateY(-4px); }
.ilysha-blog-card__image { display: block; overflow: hidden; aspect-ratio: 16/10; }
.ilysha-blog-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.ilysha-blog-card:hover .ilysha-blog-card__image img { transform: scale(1.05); }
.ilysha-blog-card__content { padding: 24px; }
.ilysha-blog-card__date { font-family: var(--font-sans); font-size: 10px; letter-spacing: 0.2em; color: var(--gold); text-transform: uppercase; margin-bottom: 8px; }
.ilysha-blog-card__title { font-family: var(--font-serif); font-size: 22px; font-weight: 400; margin-bottom: 12px; line-height: 1.3; }
.ilysha-blog-card__title a { color: var(--text); transition: color 0.3s; }
.ilysha-blog-card__title a:hover { color: var(--gold); }
.ilysha-blog-card__excerpt { color: var(--text-muted); font-size: 13px; margin-bottom: 16px; }

/* Article single */
.ilysha-post-thumb img { width: 100%; height: auto; border: 1px solid var(--border); margin-bottom: 32px; }
.ilysha-post-content { color: var(--text-muted); font-family: var(--font-sans); font-size: 15px; line-height: 1.85; }
.ilysha-post-footer { margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--border-light); }
.ilysha-tags { font-family: var(--font-sans); font-size: 11px; letter-spacing: 0.15em; color: var(--text-faint); text-transform: uppercase; }
.ilysha-tags a { color: var(--gold); }

/* ─── Pagination ──────────────────────────────────────────── */
.ilysha-pagination { margin-top: 60px; }
.ilysha-pagination .nav-links { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; }
.ilysha-pagination a, .ilysha-pagination span {
    background: var(--card);
    border: 1px solid var(--border);
    color: var(--text-muted);
    font-family: var(--font-sans);
    font-size: 12px;
    padding: 10px 14px;
    transition: all 0.3s;
}
.ilysha-pagination a:hover, .ilysha-pagination .current { background: var(--gold); border-color: var(--gold); color: #000; }

/* ─── 404 ─────────────────────────────────────────────────── */
.ilysha-404 { padding: 140px 32px; }
.ilysha-404__title { font-family: var(--font-serif); font-size: clamp(48px, 8vw, 96px); font-weight: 300; margin: 16px 0 24px; }
.ilysha-404__text { color: var(--text-muted); font-size: 15px; max-width: 480px; margin: 24px auto 40px; }
.ilysha-404__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ─── No results ──────────────────────────────────────────── */
.ilysha-no-results { padding: 80px 0; }
.ilysha-no-results h2 { font-family: var(--font-serif); font-size: 36px; font-weight: 300; margin-bottom: 16px; }
.ilysha-no-results p { color: var(--text-muted); margin-bottom: 24px; }

/* ─── Footer ──────────────────────────────────────────────── */
.ilysha-footer {
    background: var(--surface);
    border-top: 1px solid var(--border);
    color: var(--text-muted);
}
.ilysha-footer__inner {
    max-width: 1400px; margin: 0 auto;
    padding: 80px 32px 48px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 64px;
}
.ilysha-footer__brand .ilysha-logo-text { margin-bottom: 20px; }
.ilysha-footer__brand .custom-logo { max-height: 50px; width: auto; margin-bottom: 20px; }
.ilysha-footer__tagline { font-family: var(--font-sans); font-size: 13px; color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; }
.ilysha-footer__social { display: flex; gap: 12px; }
.ilysha-social-link {
    width: 38px; height: 38px;
    display: inline-flex; align-items: center; justify-content: center;
    border: 1px solid var(--border);
    color: var(--text-muted);
    border-radius: 50%;
    transition: all 0.3s;
}
.ilysha-social-link:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.ilysha-footer__title {
    font-family: var(--font-sans);
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}
.ilysha-footer__list { list-style: none; margin: 0; padding: 0; }
.ilysha-footer__list li { margin-bottom: 10px; }
.ilysha-footer__list a {
    font-family: var(--font-sans);
    font-size: 13px;
    color: var(--text-muted);
    transition: color 0.3s;
}
.ilysha-footer__list a:hover { color: var(--gold); }
.ilysha-footer__contact li { color: var(--text-muted); font-size: 13px; }

.ilysha-footer__bottom { border-top: 1px solid var(--border-light); }
.ilysha-footer__bottom-inner {
    max-width: 1400px; margin: 0 auto;
    padding: 24px 32px;
    display: flex; flex-wrap: wrap;
    justify-content: space-between; align-items: center;
    gap: 12px;
}
.ilysha-footer__copyright,
.ilysha-footer__credit {
    font-family: var(--font-sans);
    font-size: 11px;
    color: var(--text-faint);
    margin: 0;
}
.ilysha-footer__credit-link {
    color: var(--text-muted);
    border-bottom: 1px dotted var(--border);
    transition: color 0.3s, border-color 0.3s;
}
.ilysha-footer__credit-link:hover { color: var(--gold); border-bottom-color: var(--gold); }

/* ─── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
    .ilysha-header__nav { display: none; }
    .ilysha-mobile-toggle { display: flex; }
    .ilysha-features__grid { grid-template-columns: 1fr; gap: 32px; }
    .ilysha-about__grid { grid-template-columns: 1fr; gap: 48px; }
    .ilysha-blog-grid { grid-template-columns: repeat(2, 1fr); }
    .ilysha-cat-grid { grid-template-columns: repeat(2, 1fr); }
    .ilysha-footer__inner { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 600px) {
    .ilysha-header__inner { padding: 14px 20px; gap: 12px; }
    .ilysha-section { padding: 60px 0; }
    .ilysha-page-hero { padding: 80px 20px 60px; }
    .ilysha-blog-grid, .ilysha-cat-grid { grid-template-columns: 1fr; }
    .ilysha-footer__inner { grid-template-columns: 1fr; gap: 40px; padding: 60px 24px 32px; }
    .ilysha-footer__bottom-inner { flex-direction: column; text-align: center; }
    .ilysha-newsletter__form { flex-direction: column; }
    .ilysha-search-input { font-size: 22px; }
    .ilysha-icon-btn { width: 36px; height: 36px; }
}

/* ─── Cards produits Ilysha (override) ───────────────────── */
.ilysha-products {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}
@media (max-width: 991px) { .ilysha-products { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .ilysha-products { grid-template-columns: 1fr; } }

.ilysha-product-card {
    background: var(--card) !important;
    border: 1px solid var(--border) !important;
    overflow: hidden;
    display: flex !important;
    flex-direction: column;
    transition: border-color 0.4s, transform 0.4s, box-shadow 0.4s !important;
    margin: 0 !important;
    padding: 0 !important;
    width: auto !important;
    float: none !important;
}
.ilysha-product-card:hover {
    border-color: rgba(var(--gold-rgb),0.35) !important;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5) !important;
    transform: translateY(-4px) !important;
}
.ilysha-product-card__image { display: block; overflow: hidden; aspect-ratio: 4/3; position: relative; }
.ilysha-product-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.ilysha-product-card:hover .ilysha-product-card__image img { transform: scale(1.05); }
.ilysha-product-card__body { padding: 18px 20px 4px; }
.ilysha-product-card .product-category-name {
    font-family: var(--font-sans); font-size: 10px;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold); display: block; margin-bottom: 4px;
}
.ilysha-product-card .woocommerce-loop-product__title {
    font-family: var(--font-serif) !important;
    font-size: 18px !important; font-weight: 400 !important;
    color: var(--text) !important; padding: 0 !important;
    margin: 0 0 6px !important;
}
.ilysha-product-card .woocommerce-loop-product__title a { color: var(--text); }
.ilysha-product-card .woocommerce-loop-product__title a:hover { color: var(--gold); }
.ilysha-product-card .price {
    font-family: var(--font-serif) !important;
    font-size: 18px !important; color: var(--gold) !important;
    padding: 0 !important; margin-bottom: 14px !important;
}
.ilysha-product-card .button {
    display: block !important;
    width: calc(100% - 40px) !important;
    margin: auto 20px 20px !important;
    text-align: center !important;
    background: transparent !important;
    border: 1px solid rgba(var(--gold-rgb),0.4) !important;
    color: var(--text) !important;
    font-family: var(--font-sans) !important;
    font-size: 10px !important; letter-spacing: 0.18em !important;
    text-transform: uppercase !important;
    padding: 10px !important;
    border-radius: 0 !important;
    transition: all 0.3s ease !important;
}
.ilysha-product-card .button:hover {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold)) !important;
    border-color: transparent !important;
    color: #000 !important;
}

/* Single product Ilysha */
.ilysha-single-product {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
@media (max-width: 768px) { .ilysha-single-product { grid-template-columns: 1fr; gap: 32px; } }

.ilysha-breadcrumb {
    font-family: var(--font-sans);
    font-size: 11px; letter-spacing: 0.15em;
    color: var(--text-faint); text-transform: uppercase;
    margin-bottom: 32px;
}
.ilysha-breadcrumb a { color: var(--text-muted); transition: color 0.3s; }
.ilysha-breadcrumb a:hover { color: var(--gold); }

/* ============================================================
   ILYSHA — BLOCS LUXE RÉUTILISABLES (shortcodes-blocks.php)
   ============================================================ */

/* ─── Helpers communs ───────────────────────────────────────── */
.ilysha-section { padding: 100px 0; position: relative; }
@media (max-width: 768px) { .ilysha-section { padding: 60px 0; } }
.ilysha-section__head { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.ilysha-section__title { font-family: var(--font-serif); font-size: clamp(36px, 5vw, 56px); font-weight: 300; color: var(--text); margin: 12px 0 16px; letter-spacing: 0.01em; }
.ilysha-text-center { text-align: center; }

/* ─── Annonce strip (shortcode) ─────────────────────────────── */
.ilysha-announce-strip {
    background: linear-gradient(90deg, var(--gold-dark, #8a6914), var(--gold), var(--gold-dark, #8a6914));
    color: #000; text-align: center; padding: 10px 16px;
    font-family: var(--font-sans); font-size: 11px;
    letter-spacing: 0.2em; text-transform: uppercase; font-weight: 500;
}

/* ─── Garanties / Trust badges ──────────────────────────────── */
.ilysha-guarantees { padding: 50px 0; border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); background: rgba(255,255,255,0.015); }
.ilysha-guarantees__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 900px) { .ilysha-guarantees__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .ilysha-guarantees__grid { grid-template-columns: 1fr; } }
.ilysha-guarantee { display: flex; align-items: center; gap: 16px; padding: 20px; }
.ilysha-guarantee__icon { color: var(--gold); flex-shrink: 0; }
.ilysha-guarantee__title { font-family: var(--font-serif); font-size: 18px; color: var(--text); margin: 0 0 4px; font-weight: 500; }
.ilysha-guarantee__sub { font-family: var(--font-sans); font-size: 12px; color: var(--text-muted); margin: 0; letter-spacing: 0.04em; }

/* ─── Stats (chiffres clés) ─────────────────────────────────── */
.ilysha-stats { padding: 80px 0; background: linear-gradient(180deg, transparent, rgba(201,151,30,0.03), transparent); }
.ilysha-stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
@media (max-width: 768px) { .ilysha-stats__grid { grid-template-columns: repeat(2, 1fr); gap: 40px; } }
.ilysha-stat__num { font-family: var(--font-serif); font-size: clamp(40px, 5vw, 64px); font-weight: 300; color: var(--gold); line-height: 1; }
.ilysha-stat__label { font-family: var(--font-sans); font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--text-muted); margin-top: 12px; }

/* ─── Features (3 colonnes icônes) ──────────────────────────── */
.ilysha-features__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
@media (max-width: 900px) { .ilysha-features__grid { grid-template-columns: 1fr; } }
.ilysha-feature--card { background: rgba(255,255,255,0.02); border: 1px solid var(--border-light); padding: 48px 32px; text-align: center; transition: all 0.4s; position: relative; overflow: hidden; }
.ilysha-feature--card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); transform: translateX(-100%); transition: transform 0.6s; }
.ilysha-feature--card:hover { border-color: var(--gold); transform: translateY(-4px); }
.ilysha-feature--card:hover::before { transform: translateX(100%); }
.ilysha-feature__icon { width: 64px; height: 64px; margin: 0 auto 24px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--gold); border-radius: 50%; color: var(--gold); }
.ilysha-feature__title { font-family: var(--font-serif); font-size: 24px; color: var(--text); margin: 0 0 12px; font-weight: 400; }
.ilysha-feature__text { font-family: var(--font-sans); font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ─── Témoignages ───────────────────────────────────────────── */
.ilysha-testimonials { background: rgba(255,255,255,0.015); }
.ilysha-testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
@media (max-width: 900px) { .ilysha-testimonials__grid { grid-template-columns: 1fr; } }
.ilysha-testimonial { background: rgba(255,255,255,0.02); border: 1px solid var(--border-light); padding: 40px 32px; position: relative; transition: all 0.4s; }
.ilysha-testimonial:hover { border-color: var(--gold); }
.ilysha-testimonial__stars { color: var(--gold); font-size: 16px; letter-spacing: 4px; margin-bottom: 16px; }
.ilysha-testimonial__quote { font-family: var(--font-serif); font-style: italic; font-size: 18px; color: var(--text); line-height: 1.6; margin: 0 0 24px; position: relative; }
.ilysha-quote-mark { font-family: var(--font-serif); color: var(--gold); font-size: 48px; line-height: 0; position: relative; top: 12px; margin-right: 4px; }
.ilysha-testimonial__author { border-top: 1px solid var(--border-light); padding-top: 16px; }
.ilysha-testimonial__name { font-family: var(--font-serif); font-size: 17px; color: var(--text); }
.ilysha-testimonial__role { font-family: var(--font-sans); font-size: 11px; color: var(--text-muted); letter-spacing: 0.18em; text-transform: uppercase; margin-top: 4px; }

/* ─── Bannière CTA pleine largeur ───────────────────────────── */
.ilysha-banner-cta { padding: 140px 0; background-size: cover; background-position: center; position: relative; }
.ilysha-banner-cta--right .ilysha-banner-cta__content { margin-left: auto; text-align: right; }
.ilysha-banner-cta__content { max-width: 540px; }
.ilysha-banner-cta__title { font-family: var(--font-serif); font-size: clamp(36px, 5vw, 56px); font-weight: 300; color: var(--text); margin: 16px 0 20px; line-height: 1.1; }
.ilysha-banner-cta__title em { color: var(--gold); font-style: italic; }
.ilysha-banner-cta__text { font-family: var(--font-sans); font-size: 15px; color: var(--text-muted); line-height: 1.7; margin: 0 0 32px; }

/* ─── About (split) ─────────────────────────────────────────── */
.ilysha-about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.ilysha-about.is-reverse .ilysha-about__grid { direction: rtl; }
.ilysha-about.is-reverse .ilysha-about__grid > * { direction: ltr; }
@media (max-width: 900px) { .ilysha-about__grid { grid-template-columns: 1fr; gap: 40px; } .ilysha-about.is-reverse .ilysha-about__grid { direction: ltr; } }
.ilysha-about__image { position: relative; overflow: hidden; }
.ilysha-about__image::after { content: ''; position: absolute; inset: 0; border: 1px solid var(--gold); transform: translate(20px, 20px); pointer-events: none; }
.ilysha-about__image img { width: 100%; height: auto; display: block; transition: transform 0.8s; }
.ilysha-about__image:hover img { transform: scale(1.04); }
.ilysha-about__text { font-family: var(--font-sans); font-size: 15px; color: var(--text-muted); line-height: 1.8; margin: 16px 0 32px; }

/* ─── Brands ("VU DANS") ────────────────────────────────────── */
.ilysha-brands { padding: 50px 0; border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); }
.ilysha-brands__label { text-align: center; font-family: var(--font-sans); font-size: 10px; letter-spacing: 0.35em; color: var(--text-faint); text-transform: uppercase; margin: 0 0 24px; }
.ilysha-brands__strip { display: flex; justify-content: space-around; align-items: center; flex-wrap: wrap; gap: 32px; }
.ilysha-brand { font-family: var(--font-serif); font-size: 22px; color: var(--text-muted); letter-spacing: 0.08em; opacity: 0.6; transition: all 0.3s; font-style: italic; }
.ilysha-brand:hover { opacity: 1; color: var(--gold); }

/* ─── Instagram grid ────────────────────────────────────────── */
.ilysha-instagram__sub { font-family: var(--font-sans); font-size: 13px; color: var(--text-muted); margin-top: 8px; }
.ilysha-instagram__grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; }
@media (max-width: 900px) { .ilysha-instagram__grid { grid-template-columns: repeat(3, 1fr); } }
.ilysha-insta-tile { position: relative; aspect-ratio: 1/1; overflow: hidden; display: block; }
.ilysha-insta-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.ilysha-insta-overlay { position: absolute; inset: 0; background: rgba(10,10,10,0.7); color: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 24px; opacity: 0; transition: opacity 0.4s; }
.ilysha-insta-tile:hover img { transform: scale(1.08); }
.ilysha-insta-tile:hover .ilysha-insta-overlay { opacity: 1; }

/* ─── FAQ accordéon ─────────────────────────────────────────── */
.ilysha-faq__inner { max-width: 820px; }
.ilysha-faq__list { display: flex; flex-direction: column; gap: 8px; }
.ilysha-faq__item { background: rgba(255,255,255,0.02); border: 1px solid var(--border-light); transition: border-color 0.3s; }
.ilysha-faq__item[open] { border-color: var(--gold); }
.ilysha-faq__q { display: flex; justify-content: space-between; align-items: center; padding: 22px 28px; cursor: pointer; list-style: none; font-family: var(--font-serif); font-size: 18px; color: var(--text); transition: color 0.3s; }
.ilysha-faq__q::-webkit-details-marker { display: none; }
.ilysha-faq__q:hover { color: var(--gold); }
.ilysha-faq__icon { color: var(--gold); font-size: 22px; transition: transform 0.4s; line-height: 1; }
.ilysha-faq__item[open] .ilysha-faq__icon { transform: rotate(45deg); }
.ilysha-faq__a { padding: 0 28px 24px; font-family: var(--font-sans); font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.ilysha-faq__a p { margin: 0; }

/* ─── Équipe ────────────────────────────────────────────────── */
.ilysha-team__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
@media (max-width: 900px) { .ilysha-team__grid { grid-template-columns: 1fr; } }
.ilysha-team-card { text-align: center; }
.ilysha-team-card__photo { aspect-ratio: 4/5; overflow: hidden; margin-bottom: 20px; position: relative; }
.ilysha-team-card__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; filter: grayscale(0.2); }
.ilysha-team-card:hover .ilysha-team-card__photo img { transform: scale(1.05); filter: grayscale(0); }
.ilysha-team-card__name { font-family: var(--font-serif); font-size: 22px; color: var(--text); margin: 0 0 4px; font-weight: 400; }
.ilysha-team-card__role { font-family: var(--font-sans); font-size: 11px; color: var(--gold); letter-spacing: 0.22em; text-transform: uppercase; margin: 0; }

/* ─── Timeline ──────────────────────────────────────────────── */
.ilysha-timeline { background: rgba(255,255,255,0.015); }
.ilysha-timeline__list { max-width: 820px; margin: 0 auto; position: relative; padding-left: 60px; }
.ilysha-timeline__list::before { content: ''; position: absolute; left: 16px; top: 12px; bottom: 12px; width: 1px; background: linear-gradient(180deg, transparent, var(--gold), transparent); }
.ilysha-timeline__item { position: relative; padding: 0 0 48px; }
.ilysha-timeline__item:last-child { padding-bottom: 0; }
.ilysha-timeline__year { position: absolute; left: -60px; top: 0; width: 64px; height: 32px; display: flex; align-items: center; justify-content: center; font-family: var(--font-serif); font-size: 18px; color: var(--gold); background: var(--bg); border: 1px solid var(--gold); border-radius: 16px; }
.ilysha-timeline__line { display: none; }
.ilysha-timeline__title { font-family: var(--font-serif); font-size: 22px; color: var(--text); margin: 0 0 8px; font-weight: 400; }
.ilysha-timeline__text { font-family: var(--font-sans); font-size: 14px; color: var(--text-muted); line-height: 1.7; margin: 0; }

/* ─── Lookbook ──────────────────────────────────────────────── */
.ilysha-lookbook__grid { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 280px 280px; gap: 12px; }
@media (max-width: 900px) { .ilysha-lookbook__grid { grid-template-columns: 1fr 1fr; grid-template-rows: 220px 220px 220px; } }
.ilysha-lookbook__cell { overflow: hidden; position: relative; }
.ilysha-lookbook__cell--big { grid-row: 1 / span 2; }
.ilysha-lookbook__cell--wide { grid-column: 2 / span 2; }
@media (max-width: 900px) { .ilysha-lookbook__cell--big { grid-row: 1; grid-column: 1 / span 2; } .ilysha-lookbook__cell--wide { grid-row: 3; grid-column: 1 / span 2; } }
.ilysha-lookbook__cell img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.ilysha-lookbook__cell:hover img { transform: scale(1.05); }

/* ─── Contact form ──────────────────────────────────────────── */
.ilysha-contact-form-section { background: rgba(255,255,255,0.015); }
.ilysha-contact-form-section__inner { max-width: 720px; }
.ilysha-contact-form__head { text-align: center; margin-bottom: 40px; }
.ilysha-contact-form__sub { font-family: var(--font-sans); font-size: 14px; color: var(--text-muted); margin-top: 8px; }
.ilysha-contact-form { display: flex; flex-direction: column; gap: 16px; }
.ilysha-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .ilysha-form-row { grid-template-columns: 1fr; } }
.ilysha-input { background: rgba(0,0,0,0.4); border: 1px solid var(--border-light); padding: 16px 20px; font-family: var(--font-sans); font-size: 14px; color: var(--text); width: 100%; transition: border-color 0.3s; }
.ilysha-input:focus { outline: none; border-color: var(--gold); }
.ilysha-input::placeholder { color: var(--text-faint); letter-spacing: 0.05em; }
.ilysha-textarea { resize: vertical; min-height: 140px; font-family: var(--font-sans); }
.ilysha-contact-form .ilysha-btn { align-self: center; margin-top: 8px; }

/* ─── Contact info cards ────────────────────────────────────── */
.ilysha-contact-info__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 900px) { .ilysha-contact-info__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .ilysha-contact-info__grid { grid-template-columns: 1fr; } }
.ilysha-contact-card { background: rgba(255,255,255,0.02); border: 1px solid var(--border-light); padding: 32px 20px; text-align: center; transition: all 0.4s; }
.ilysha-contact-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.ilysha-contact-card__icon { color: var(--gold); display: flex; justify-content: center; margin-bottom: 12px; }
.ilysha-contact-card__label { font-family: var(--font-sans); font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--text-muted); margin: 0 0 8px; }
.ilysha-contact-card__value { font-family: var(--font-serif); font-size: 17px; color: var(--text); text-decoration: none; word-break: break-word; }
.ilysha-contact-card__value:hover { color: var(--gold); }

/* ─── Process / How it works ────────────────────────────────── */
.ilysha-process__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
@media (max-width: 900px) { .ilysha-process__grid { grid-template-columns: repeat(2, 1fr); gap: 32px; } }
@media (max-width: 540px) { .ilysha-process__grid { grid-template-columns: 1fr; } }
.ilysha-process__step { text-align: center; padding: 32px 20px; position: relative; }
.ilysha-process__num { width: 56px; height: 56px; margin: 0 auto 20px; border: 1px solid var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-serif); font-size: 22px; color: var(--gold); }
.ilysha-process__title { font-family: var(--font-serif); font-size: 20px; color: var(--text); margin: 0 0 8px; font-weight: 400; }
.ilysha-process__text { font-family: var(--font-sans); font-size: 13px; color: var(--text-muted); line-height: 1.7; margin: 0; }

/* ─── Eyebrow utilitaire ────────────────────────────────────── */
.ilysha-eyebrow { font-family: var(--font-sans); font-size: 11px; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); margin: 0 0 8px; font-weight: 500; }

/* ─── Btn outline ───────────────────────────────────────────── */
.ilysha-btn--outline { background: transparent; color: var(--gold); border: 1px solid var(--gold); padding: 14px 32px; font-family: var(--font-sans); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; transition: all 0.3s; display: inline-block; text-decoration: none; cursor: pointer; }
.ilysha-btn--outline:hover { background: var(--gold); color: #0a0a0a; }

/* ============================================================
   NOUVEAUX BLOCS — USP bar / Countdown / Gallery / Press / Popup
   ============================================================ */

/* ─── USP bar défilante ─────────────────────────────────────── */
.ilysha-usp-bar { background: rgba(255,255,255,0.02); border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); overflow: hidden; padding: 14px 0; }
.ilysha-usp-bar__track { display: flex; gap: 60px; animation: ilyshaScroll 28s linear infinite; white-space: nowrap; }
.ilysha-usp-bar__item { font-family: var(--font-sans); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text); flex-shrink: 0; }
@keyframes ilyshaScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─── Countdown ─────────────────────────────────────────────── */
.ilysha-countdown { background: linear-gradient(180deg, transparent, rgba(201,151,30,0.04), transparent); }
.ilysha-countdown__inner { text-align: center; max-width: 720px; }
.ilysha-countdown__clock { display: flex; justify-content: center; gap: 24px; margin: 32px 0 40px; }
.ilysha-countdown__cell { background: rgba(255,255,255,0.02); border: 1px solid var(--gold); padding: 20px 24px; min-width: 90px; text-align: center; }
.ilysha-countdown__cell b { font-family: var(--font-serif); font-size: 36px; font-weight: 300; color: var(--gold); display: block; line-height: 1; }
.ilysha-countdown__cell span { font-family: var(--font-sans); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); margin-top: 8px; display: block; }
@media (max-width: 600px) {
    .ilysha-countdown__clock { gap: 8px; }
    .ilysha-countdown__cell { padding: 14px 10px; min-width: 64px; }
    .ilysha-countdown__cell b { font-size: 24px; }
}

/* ─── Gallery grid ──────────────────────────────────────────── */
.ilysha-gallery__grid { display: grid; grid-template-columns: repeat(var(--cols, 3), 1fr); gap: 16px; }
@media (max-width: 900px) { .ilysha-gallery__grid { grid-template-columns: repeat(2, 1fr); } }
.ilysha-gallery__cell { aspect-ratio: 1/1; overflow: hidden; }
.ilysha-gallery__cell img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.ilysha-gallery__cell:hover img { transform: scale(1.06); }

/* ─── Press quote ───────────────────────────────────────────── */
.ilysha-press { padding: 80px 0; text-align: center; background: rgba(255,255,255,0.015); }
.ilysha-press__quote { font-family: var(--font-serif); font-style: italic; font-size: clamp(22px, 3vw, 32px); color: var(--text); max-width: 820px; margin: 0 auto 16px; line-height: 1.5; font-weight: 300; }
.ilysha-press__src { font-family: var(--font-sans); font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin: 0; }

/* ─── Popup newsletter ──────────────────────────────────────── */
.ilysha-popup { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: center; justify-content: center; padding: 20px; }
.ilysha-popup__overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.85); backdrop-filter: blur(4px); }
.ilysha-popup__box { position: relative; background: var(--bg); border: 1px solid var(--gold); padding: 50px 40px; max-width: 460px; width: 100%; text-align: center; animation: ilyshaPop 0.4s ease-out; }
@keyframes ilyshaPop { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } }
.ilysha-popup__close { position: absolute; top: 14px; right: 16px; background: transparent; border: 0; color: var(--text-muted); font-size: 28px; cursor: pointer; line-height: 1; }
.ilysha-popup__close:hover { color: var(--gold); }
.ilysha-popup__title { font-family: var(--font-serif); font-size: 32px; color: var(--text); margin: 12px 0 12px; font-weight: 400; }
.ilysha-popup__text { font-family: var(--font-sans); font-size: 14px; color: var(--text-muted); margin: 0 0 24px; line-height: 1.6; }
.ilysha-popup__form { display: flex; flex-direction: column; gap: 12px; }

/* ─── Form success message ──────────────────────────────────── */
.ilysha-form-success { background: rgba(201,151,30,0.08); border: 1px solid var(--gold); color: var(--gold); padding: 14px 18px; text-align: center; font-family: var(--font-sans); font-size: 13px; letter-spacing: 0.05em; margin-bottom: 24px; }

/* ─── Header phone (optionnel) ──────────────────────────────── */
.ilysha-header__phone { font-family: var(--font-sans); font-size: 12px; letter-spacing: 0.12em; color: var(--gold); text-decoration: none; margin-right: 8px; padding: 4px 10px; border: 1px solid transparent; transition: all 0.3s; }
.ilysha-header__phone:hover { border-color: var(--gold); }
@media (max-width: 768px) { .ilysha-header__phone { display: none; } }

/* ════════════════════════════════════════════════════════════
   ELEMENTOR — Widgets génériques (Card, Heading, etc.)
   ════════════════════════════════════════════════════════════ */

/* ─── Carte générique ───────────────────────────────────────── */
.ilysha-card { background: var(--bg-alt); border: 1px solid var(--border); display: flex; flex-direction: column; transition: border-color 0.3s, transform 0.4s; }
.ilysha-card:hover { border-color: rgba(var(--gold-rgb), 0.4); transform: translateY(-4px); }
.ilysha-card__image { aspect-ratio: 4/3; overflow: hidden; }
.ilysha-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.ilysha-card:hover .ilysha-card__image img { transform: scale(1.05); }
.ilysha-card__body { padding: 28px 24px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.ilysha-card__title { font-family: var(--font-serif); font-size: 24px; color: var(--text); margin: 0; font-weight: 400; }
.ilysha-card__text { font-family: var(--font-sans); font-size: 14px; color: var(--text-muted); margin: 0; line-height: 1.6; flex: 1; }
.ilysha-card__body .ilysha-btn { align-self: flex-start; margin-top: auto; }

/* ─── Section subtitle (Heading widget) ─────────────────────── */
.ilysha-section__subtitle { font-family: var(--font-sans); font-size: 16px; color: var(--text-muted); margin: 16px auto 0; max-width: 640px; line-height: 1.7; }

/* ─── Outline button variant ────────────────────────────────── */
.ilysha-btn--outline { background: transparent; color: var(--gold); border: 1px solid var(--gold); padding: 14px 32px; font-family: var(--font-sans); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; text-decoration: none; display: inline-block; transition: all 0.3s; }
.ilysha-btn--outline:hover { background: var(--gold); color: var(--bg); }

/* ─── Repeater preview compatibilité (Elementor editor) ─────── */
.elementor-editor-active .ilysha-section,
.elementor-editor-active .ilysha-hero3d { min-height: 100px; }
