/*
 * Empire Mobile Fixes — priority 999 (loads last, beats all !important)
 * Covers: topbar, hamburger, hero, block spacing, carousels, footer.
 */

/* ── 1. TOP BAR MESSAGES — show only one at a time ─────────────────────── */
/* All hidden; JS adds .active to first on load, rotates every 4s */
.top-bar-msg {
  display: none !important;
}
.top-bar-msg.active {
  display: inline !important;
}

/* ── 2. TOP BAR — force accent bg, always visible ──────────────────────── */
html body .col-full.topbar-wrapper,
html body .col-full.topbar-wrapper.hide-on-mobile {
  display: block !important;
  background-color: var(--empire-accent, #CC2936) !important;
}
html body .col-full.topbar-wrapper .top-bar,
html body .col-full.topbar-wrapper .widget,
html body .col-full.topbar-wrapper * {
  color: #ffffff !important;
}

/* Mobile topbar: single line, minimal height */
@media (max-width: 767px) {
  .site-topbar,
  .topbar-wrapper {
    min-height: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .topbar-wrapper .col-full,
  .site-topbar .col-full {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 22px !important;
    padding-top: 1px !important;
    padding-bottom: 1px !important;
  }
  /* Hide left & right topbar widgets on mobile — show center only */
  .shoptimizer-topbar-col.shoptimizer-topbar-left,
  .shoptimizer-topbar-col.shoptimizer-topbar-right,
  .top-bar-left,
  .top-bar-right {
    display: none !important;
  }
  .shoptimizer-topbar-col.shoptimizer-topbar-center,
  .top-bar-center {
    flex: 1 !important;
    text-align: center !important;
  }
  /* Prevent widget from wrapping to multiple lines */
  .topbar-wrapper .widget {
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;
  }
}

/* ── 3. HAMBURGER — white on dark header ────────────────────────────────── */
@media (max-width: 992px) {
  /* Menu toggle button */
  .menu-toggle,
  button.menu-toggle {
    color: #ffffff !important;
  }
  /* Hamburger lines (span/div-based) */
  .hamburger-inner,
  .hamburger-inner::before,
  .hamburger-inner::after,
  .menu-toggle .hamburger-inner,
  .menu-toggle .hamburger-inner::before,
  .menu-toggle .hamburger-inner::after {
    background-color: #ffffff !important;
  }
  /* SVG or font-icon hamburgers */
  .menu-toggle svg,
  .menu-toggle svg path,
  .menu-toggle i,
  .menu-toggle span:not(.menu-text) {
    color: #ffffff !important;
    fill: #ffffff !important;
    stroke: #ffffff !important;
  }
  /* Nav links inside open hamburger menu */
  .main-navigation a,
  .main-navigation ul li a {
    color: #222222 !important;
  }
  .main-navigation ul li a:hover { color: var(--empire-accent, #CC2936) !important; }
  /* Search bar bg on mobile matches header */
  .m-search-bh .site-search,
  .m-search-toggled .site-search {
    background-color: #1C1A17 !important;
  }
}

/* ── 4. HERO — centered, compact, responsive (matches grillisland mobile) ── */
@media (max-width: 767px) {
  .entry-content .wp-block-group.empire-hero, .entry-content section.empire-hero {
    padding-top: 44px !important;
    padding-bottom: 40px !important;
    padding-left: 24px !important;
    padding-right: 24px !important;
    text-align: center !important;
  }
  /* Center eyebrow, H1, subtitle */
  .empire-hero p,
  .empire-hero h1,
  .empire-hero h2 {
    text-align: center !important;
  }
  /* Compact H1 size */
  .empire-hero h1 {
    font-size: clamp(1.9rem, 9vw, 2.6rem) !important;
    margin-bottom: 14px !important;
  }
  /* Compact subtitle */
  .empire-hero > .wp-block-group > p,
  .empire-hero p {
    font-size: 15px !important;
    margin-bottom: 16px !important;
  }
  /* Trust line smaller */
  .empire-hero p:last-of-type { font-size: 12px !important; margin-bottom: 20px !important; }
  /* Buttons centered, side-by-side */
  .empire-hero .wp-block-buttons {
    justify-content: center !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
  }
  .empire-hero .wp-block-button__link {
    font-size: 12px !important;
    padding: 12px 18px !important;
    letter-spacing: 0.3px !important;
  }
  /* Outline button fix */
  .empire-hero .wp-block-button.is-style-outline .wp-block-button__link {
    border-color: rgba(255,255,255,0.5) !important;
    color: #ffffff !important;
  }
}

/* ── 5. BLOCK PADDING — CRO-standard mobile: tight vertical rhythm ──────── */
@media (max-width: 767px) {
  .entry-content .wp-block-group {
    padding-top: 32px !important;
    padding-bottom: 32px !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  /* Brand marquee wrapper — stays compact */
  .entry-content .wp-block-group:has(.empire-brands-marquee) {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }
  /* Trust bar / last compact block */
  .entry-content .wp-block-group:last-child {
    padding-top: 14px !important;
    padding-bottom: 14px !important;
  }
  /* Section headings: tighter bottom margin */
  .entry-content .wp-block-group h2 {
    font-size: clamp(1.4rem, 6.5vw, 1.9rem) !important;
    margin-bottom: 10px !important;
    margin-top: 2px !important;
  }
  /* Paragraphs: keep tight, don't increase from inline 8px */
  .entry-content .wp-block-group p {
    margin-bottom: 8px !important;
  }
  /* Subtitle (after H2): allow a bit more room before product grid */
  .entry-content .wp-block-group h2 + p {
    margin-bottom: 20px !important;
  }
  .entry-content .wp-block-group .wp-block-buttons {
    margin-top: 4px !important;
  }
  /* Brand marquee text size */
  .empire-brand-item {
    font-size: 10px !important;
  }
}

/* ── 6. PRODUCT GRIDS → edge-to-edge scroll carousel ────────────────────── */
@media (max-width: 767px) {
  .woocommerce ul.products.columns-2,
  .woocommerce ul.products.columns-3,
  .woocommerce ul.products.columns-4,
  .woocommerce ul.products.columns-5,
  .woocommerce ul.products.columns-6 {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory !important;
    gap: 12px !important;
    padding: 4px 16px 16px !important;
    margin-left: -16px !important;
    margin-right: -16px !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
  }
  .woocommerce ul.products::-webkit-scrollbar { display: none !important; }
  /* 38%: 2 cards fully visible + ~32px peek of 3rd on all screen sizes */
  .woocommerce ul.products li.product {
    flex: 0 0 38% !important;
    max-width: 38% !important;
    scroll-snap-align: start !important;
    margin: 0 !important;
    width: auto !important;
  }
  /* WC block rendered ul.products */
  .wp-block-woocommerce-product-best-sellers ul.products,
  .wp-block-woocommerce-product-new ul.products,
  .wp-block-woocommerce-products ul.products,
  .wc-block-grid__products {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    gap: 12px !important;
    padding: 4px 16px 16px !important;
    margin: 0 -16px !important;
    scrollbar-width: none !important;
  }
  .wp-block-woocommerce-product-best-sellers ul.products li.product,
  .wp-block-woocommerce-product-new ul.products li.product,
  .wc-block-grid__product {
    flex: 0 0 38% !important;
    max-width: 38% !important;
    scroll-snap-align: start !important;
  }
  /* Carousel card button: brand accent instead of WC default green */
  .woocommerce ul.products li.product .button,
  .wc-block-grid__product .wp-block-button__link,
  .wc-block-grid__product .button {
    background-color: var(--empire-accent) !important;
    border-color: var(--empire-accent) !important;
    color: #fff !important;
    width: 100% !important;
    text-align: center !important;
    font-size: 0.73rem !important;
    padding: 8px 6px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }
}

/* ── 7. REVIEWS, BLOG, BRANDS → edge-to-edge carousel ───────────────────── */
@media (max-width: 767px) {
  .empire-reviews-grid,
  .empire-blog-grid {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    gap: 12px !important;
    padding: 4px 16px 16px !important;
    margin-left: -16px !important;
    margin-right: -16px !important;
    scrollbar-width: none !important;
  }
  .empire-reviews-grid::-webkit-scrollbar,
  .empire-blog-grid::-webkit-scrollbar { display: none !important; }
  .empire-reviews-grid > div,
  .empire-blog-grid > div {
    flex: 0 0 80% !important;
    min-width: 0 !important;
    scroll-snap-align: start !important;
    box-sizing: border-box !important;
  }

  /* Brands grid → horizontal scroll carousel (like grillisland) */
  .empire-brands-grid {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    gap: 12px !important;
    padding: 4px 16px 16px !important;
    margin: 0 -16px !important;
    scrollbar-width: none !important;
  }
  .empire-brands-grid::-webkit-scrollbar { display: none !important; }
  .empire-brands-grid > div {
    flex: 0 0 78% !important;
    scroll-snap-align: start !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
  }

  /* Category grid: 2-col, max 4 visible */
  .empire-category-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
  }
  .empire-category-grid > div:nth-child(n+5) {
    display: none !important;
  }
  .empire-category-grid.empire-cat-expanded > div:nth-child(n+5) {
    display: block !important;
  }
  /* "See more" button injected by JS */
  .empire-cat-seemore {
    display: block;
    width: 100%;
    margin-top: 14px;
    padding: 11px 0;
    font-family: Inter, system-ui, sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--empire-accent, #CC2936);
    background: transparent;
    border: 1.5px solid var(--empire-accent, #CC2936);
    border-radius: 6px;
    cursor: pointer;
    text-align: center;
  }
}

/* ── 8. WHY-BUY — 2×2 on mobile, no paragraph, icon + title only ────────── */
@media (max-width: 767px) {
  .empire-why-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
  }
  .empire-why-grid > div {
    padding: 16px 10px !important;
  }
  /* Hide paragraph text — keep icon + H3 only */
  .empire-why-grid > div p { display: none !important; }
  /* Show only 4 items */
  .empire-why-grid > div:nth-child(n+5) { display: none !important; }
  /* Newsletter form: stack vertically so button stays in viewport */
  .entry-content form {
    flex-direction: column !important;
    gap: 10px !important;
  }
  .entry-content form input[type="email"] {
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .entry-content form button {
    width: 100% !important;
    white-space: normal !important;
  }
}

/* ── 9. FAQ — show as accordion (native details/summary) ────────────────── */
.empire-faq details {
  border-bottom: 1px solid #E5DED5;
  padding: 0;
}
.empire-faq details summary {
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  padding: 14px 28px 14px 0;
  position: relative;
  user-select: none;
  color: #1C1A17 !important;
}
.empire-faq details summary::-webkit-details-marker { display: none; }
.empire-faq details summary::after {
  content: '+';
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  font-weight: 300;
  color: var(--empire-accent, #CC2936);
}
.empire-faq details[open] summary::after { content: '−'; }
.empire-faq details div {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
  padding: 0 0 14px;
}
@media (max-width: 767px) {
  .empire-faq details summary { font-size: 14px; }
}

/* ── 10. POPULAR SEARCHES — compact height ───────────────────────────────── */
@media (max-width: 767px) {
  .empire-popular-searches {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }
  .empire-popular-searches .ekd-tags {
    gap: 8px !important;
  }
  .empire-popular-searches a {
    font-size: 12px !important;
    padding: 6px 12px !important;
  }
}

/* ── 11. FOOTER PAYMENT BLOCK ────────────────────────────────────────────── */
.empire-footer-trust {
  background: #111111;
  padding: 24px 40px;
  text-align: center;
  border-top: 1px solid #222;
}
.empire-footer-trust .eft-payments {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px 20px;
  margin-bottom: 16px;
}
.empire-footer-trust .eft-badge {
  font-family: Inter, system-ui, sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #9CA3AF;
  background: #1C1A17;
  border: 1px solid #2A2724;
  border-radius: 4px;
  padding: 6px 14px;
  letter-spacing: 0.5px;
}
.empire-footer-trust .eft-badge.eft-card {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.empire-footer-trust .eft-trust-line {
  font-family: Inter, system-ui, sans-serif;
  font-size: 11px;
  color: #FFFFFF;
  margin-bottom: 8px;
}
.empire-footer-trust .eft-trust-line span {
  color: #FFFFFF;
  margin: 0 8px;
}
.empire-footer-trust .eft-copyright {
  font-family: Inter, system-ui, sans-serif;
  font-size: 11px;
  color: rgba(255,255,255,.85);
}
@media (max-width: 767px) {
  .empire-footer-trust { padding: 20px 16px; }
  .empire-footer-trust .eft-payments { gap: 8px 12px; }
}

/* ── 12. FOOTER ACCORDION on mobile ─────────────────────────────────────── */

/* Remove Shoptimizer default copyright/payment block globally */
.site-info { display: none !important; }

@media (max-width: 767px) {
  #colophon .col-full,
  .site-footer .col-full {
    background-color: var(--empire-footer-bg, #1C1A17);
    padding: 0 16px;
  }
  .site-footer {
    background-color: var(--empire-footer-bg, #1C1A17);
    color: #9CA3AF;
  }

  /* Col 2/3/4 titles get accordion toggle — col-1 stays open, no cursor */
  .empire-footer-col:not(:first-child) .widget-title,
  .empire-footer-col:not(:first-child) .gamma {
    color: #ffffff !important;
    font-size: 13px !important;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 14px 28px 14px 0;
    margin: 0 !important;
    border-bottom: 1px solid var(--empire-footer-border, #2A2724);
    cursor: pointer;
    position: relative;
    display: block;
  }
  /* Col-1 title: styled but no toggle */
  .empire-footer-col:first-child .widget-title,
  .empire-footer-col:first-child .gamma {
    color: #ffffff !important;
    font-size: 13px !important;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 14px 0 10px;
    margin: 0 !important;
    display: block;
    cursor: default;
  }
  .empire-footer-col:not(:first-child) .widget-title::after,
  .empire-footer-col:not(:first-child) .gamma::after {
    content: '+';
    position: absolute;
    right: 0; top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    font-weight: 300;
    color: var(--empire-accent, #CC2936);
    transition: transform 0.2s;
  }
  .empire-footer-col:not(:first-child) .widget-title.empire-open::after,
  .empire-footer-col:not(:first-child) .gamma.empire-open::after { content: '−'; }

  /* Col 2/3/4: hide content by default */
  .empire-footer-col:not(:first-child) .widget .menu,
  .empire-footer-col:not(:first-child) .widget .textwidget,
  .empire-footer-col:not(:first-child) .widget .custom-html-widget { display: none; padding-bottom: 12px; }
  /* Col 2/3/4: show when empire-open toggled */
  .empire-footer-col:not(:first-child) .widget.empire-open .menu,
  .empire-footer-col:not(:first-child) .widget.empire-open .textwidget,
  .empire-footer-col:not(:first-child) .widget.empire-open .custom-html-widget { display: block; }

  /* Col-1: always visible */
  .empire-footer-col:first-child .widget .textwidget,
  .empire-footer-col:first-child .widget .custom-html-widget { display: block !important; }

  .site-footer .widget { border-bottom: 1px solid var(--empire-footer-border, #2A2724); padding: 0; margin: 0; }
  .site-footer a { color: #9CA3AF; font-size: 14px; line-height: 2.2; }
  .site-footer a:hover { color: var(--empire-accent, #CC2936); }
}

/* ── 13. BLOCK BACKGROUNDS — break adjacent same-color blocks ───────────── */
@media (max-width: 767px) {
  /* Specialty CTA sits between two dark blocks → switch to accent color */
  .empire-specialty-cta {
    background: var(--empire-accent, #CC2936) !important;
  }
  .empire-specialty-cta::before { display: none !important; }
  .empire-specialty-cta h2 { color: #fff !important; }
  .empire-specialty-cta p { color: rgba(255,255,255,0.85) !important; }
  .empire-specialty-cta .ekd-eyebrow { color: rgba(255,255,255,0.7) !important; }
  .empire-specialty-cta .ekd-cta {
    background: #fff !important;
    color: var(--empire-accent, #CC2936) !important;
  }
  .empire-specialty-cta .ekd-badge {
    background: rgba(255,255,255,0.15) !important;
    border-color: rgba(255,255,255,0.25) !important;
    color: #fff !important;
  }
  /* White SEO block between two white blocks → warm light bg to differentiate */
  .empire-blog-grid + * { background-color: #F5F0EB !important; }
}

/* ── 14. TRUST STATS — 2×2 grid on mobile ───────────────────────────────── */
@media (max-width: 767px) {
  .empire-trust-stats .wp-block-columns {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    overflow: visible;
  }
}

/* ── 14. PRODUCT CARD IMAGES — square ratio ──────────────────────────────── */
@media (max-width: 767px) {
  .woocommerce ul.products li.product img {
    aspect-ratio: 1/1;
    object-fit: cover;
  }
}

/* ── 15. SECTION HEADINGS scale on mobile ────────────────────────────────── */
@media (max-width: 480px) {
  .wp-block-heading { word-break: break-word; }
}

/* ── 16. HIDE/SHOW UTILITIES ─────────────────────────────────────────────── */
@media (max-width: 767px) { .hide-on-mobile { display: none !important; } }
@media (min-width: 768px) { .show-on-mobile-only { display: none !important; } }

/* ── 17. MINI-CART BAG ICON — inherit accent ─────────────────────────────── */
.site-header .cart-contents,
.site-header .cart-contents svg,
.site-header .cart-contents svg path,
.site-header .cart-contents .count,
.commercekit-header-cart a,
.commercekit-header-cart svg,
.commercekit-header-cart svg path {
  color: #ffffff !important;
  fill: #ffffff !important;
  stroke: #ffffff !important;
}
/* Empty cart in mini-cart panel */
.woocommerce .woocommerce-mini-cart__empty-message svg,
.widget_shopping_cart .empty svg {
  color: var(--empire-accent, #CC2936) !important;
  fill: var(--empire-accent, #CC2936) !important;
}

/* ── SPECIALTY CTA — PHF doesn't offer gym design, hide it ──────────────── */
.empire-specialty-cta { display: none !important; }


/* ── REVIEWS — white bg, cards visually stand out ───────────────────────── */
.entry-content .wp-block-group:has(.empire-reviews-grid),
.entry-content .empire-reviews-section {
  background-color: #ffffff !important;
}
.entry-content .wp-block-group:has(.empire-reviews-grid) h2,
.empire-reviews-section h2 { color: #1C1A17 !important; }
/* Cards: light bg + shadow so they pop on warm background */
.empire-reviews-grid > div {
  background: #ffffff !important;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07) !important;
}
/* Text: override inline dark colors */
.empire-reviews-grid > div p { color: #374151 !important; }
.empire-reviews-grid > div > div:last-child > div:first-child { color: #1C1A17 !important; }
.empire-reviews-grid > div > div:last-child > div:last-child { color: #6B7280 !important; }

/* ── TRUST BAR — light background; mobile: horizontal scroll ─────────────── */
.entry-content .wp-block-group:last-child.has-background,
.entry-content .wp-block-group:has(.empire-trust-bar) {
  background-color: #F5F0EB !important;
  border-top-color: #E5DED5 !important;
}
.empire-trust-bar span,
.entry-content .wp-block-group:last-child .wp-block-html div span {
  color: #6B7280 !important;
}
@media (max-width: 767px) {
  .empire-trust-bar,
  .entry-content .wp-block-group:last-child .wp-block-html div {
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    justify-content: flex-start !important;
    gap: 20px !important;
    padding-bottom: 4px !important;
    scrollbar-width: none !important;
  }
  .empire-trust-bar::-webkit-scrollbar,
  .entry-content .wp-block-group:last-child .wp-block-html div::-webkit-scrollbar { display: none !important; }
  .empire-trust-bar span,
  .entry-content .wp-block-group:last-child .wp-block-html div span {
    white-space: nowrap !important;
    flex-shrink: 0 !important;
    font-size: 12px !important;
  }
}

/* ── FAQ — white background ──────────────────────────────────────────────── */
.entry-content .wp-block-group:has(.empire-faq) {
  background-color: #ffffff !important;
}

/* ── FEATURED PRODUCT — mobile: hide image col, keep title + CTA only ───── */
@media (max-width: 767px) {
  .entry-content .wp-block-group:has(.wp-block-columns) .wp-block-column:first-child {
    display: none !important;
  }
  /* Hide description and specs grid */
  .entry-content .wp-block-group:has(.wp-block-columns) .wp-block-column p[style*="#D1D5DB"],
  .entry-content .wp-block-group:has(.wp-block-columns) .wp-block-column p[style*="#9CA3AF"] {
    display: none !important;
  }
  .entry-content .wp-block-group:has(.wp-block-columns) .wp-block-column div[style*="grid-template-columns:1fr 1fr"] {
    display: none !important;
  }
}

/* ── COMMERCIAL GYM BLOCK — go to essentials ─────────────────────────────── */
.empire-pro-trade .ept-desc { display: none !important; }
.empire-pro-trade .ept-features > div:nth-child(n+3) { display: none !important; }
@media (max-width: 767px) {
  .empire-pro-trade { padding: 40px 20px !important; }
}

/* ── FEATURED PRODUCT — compact image placeholder ────────────────────────── */
.entry-content .wp-block-group:has(.wp-block-columns) > .wp-block-columns
  .wp-block-column:first-child > div {
  min-height: 280px !important;
}
.entry-content .wp-block-group:has(.wp-block-columns) .wp-block-columns {
  gap: 40px !important;
}

/* ── Hamburger Shoptimizer (.bar spans) — blanc sur header sombre ─────── */
.menu-toggle .bar,
.menu-toggle .bar::before,
.menu-toggle .bar::after {
    background-color: #ffffff !important;
}
.menu-toggle .bar-text,
button.menu-toggle .bar-text {
    color: #ffffff !important;
}
.menu-toggle:hover .bar,
.menu-toggle:focus .bar,
.menu-toggle.is-active .bar {
    background-color: var(--empire-accent, #B8870B) !important;
}

/* ── Hero plugin empire-blocks (section markup) — mobile fix ─────────────── */
@media (max-width: 767px) {
  section.empire-hero { padding: 44px 24px 40px !important; text-align: center; }
  section.empire-hero .empire-hero__inner { display: flex; flex-direction: column; align-items: center; }
  section.empire-hero .empire-hero__ctas { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-top: 18px; }
  section.empire-hero + * { margin-top: 0 !important; clear: both; }
  /* Empêche brand-scroller de remonter sur CTAs */
  .empire-brand-scroller { margin-top: 20px; position: relative; z-index: 1; }
}
