/* ===========================================================
   LuxuryBBQ - Standalone "Xtra-style" homepage stylesheet
   Scoped under .xtra-home to avoid affecting any other pages.
   =========================================================== */

html, body { margin: 0; padding: 0; }
body:has(.xtra-home) { background: #fff; }

.xtra-home, .xtra-home * { box-sizing: border-box; }

.xtra-home {
    --xh-blue: #1c2a8a;
    --xh-blue-dark: #131c5e;
    --xh-yellow: #ffe14a;
    --xh-yellow-hover: #ffd71a;
    --xh-red: #ff3b3b;
    --xh-bg: #ffffff;
    --xh-soft: #f5f6fa;
    --xh-text: #0f1430;
    --xh-muted: #6b6f86;
    --xh-border: #e7e9f1;
    --xh-radius: 18px;
    --xh-radius-sm: 12px;
    --xh-shadow: 0 6px 24px rgba(20, 28, 80, 0.08);

    font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--xh-text);
    background: var(--xh-bg);
    line-height: 1.45;
    -webkit-font-smoothing: antialiased;
}

.xtra-home a { color: inherit; text-decoration: none; }
.xtra-home img { max-width: 100%; display: block; }
.xtra-home button { font-family: inherit; cursor: pointer; border: none; }

.xh-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---------- Announcement bar ---------- */
.xh-announce {
    background: linear-gradient(90deg, #ff7ad9 0%, #ff5a8a 50%, #ff8a3c 100%);
    color: #fff;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 16px;
    letter-spacing: 0.2px;
}
.xh-announce .rocket { margin-right: 8px; }

/* ---------- Secondary bar (exchange / shipping) ---------- */
.xh-subbar {
    background: #fff;
    border-bottom: 1px solid var(--xh-border);
    text-align: center;
    font-size: 13px;
    color: var(--xh-muted);
    padding: 8px 16px;
}
.xh-subbar a { color: var(--xh-blue); font-weight: 600; text-decoration: underline; }

/* ---------- Main header ---------- */
.xh-header {
    background: var(--xh-blue);
    color: #fff;
    padding: 14px 0;
}
.xh-header-inner {
    display: flex;
    align-items: center;
    gap: 18px;
}
.xh-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.xh-logo img {
    height: 38px;
    width: auto;
    filter: brightness(0) invert(1);
}
.xh-logo-text {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
}

.xh-catalog-btn {
    background: var(--xh-yellow);
    color: var(--xh-text) !important;
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    transition: background 0.15s;
    text-shadow: none;
}
.xh-shop-btn, .xh-product-cta { color: var(--xh-text) !important; text-shadow: none; }
.xh-catalog-btn:hover { background: var(--xh-yellow-hover); }
.xh-catalog-btn .chev { font-size: 11px; }

.xh-search {
    flex: 1;
    position: relative;
    min-width: 0;
}
.xh-search input {
    width: 100%;
    height: 50px;
    border-radius: 999px;
    border: none;
    padding: 0 56px 0 24px;
    font-size: 15px;
    background: #fff;
    color: var(--xh-text);
    outline: none;
}
.xh-search button {
    position: absolute;
    right: 6px;
    top: 6px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: transparent;
    color: var(--xh-text);
    font-size: 16px;
}

.xh-trust {
    background: #fff;
    color: var(--xh-text);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 11px;
    line-height: 1.2;
    text-align: center;
    flex-shrink: 0;
}
.xh-trust .stars { color: #46b96a; font-size: 13px; letter-spacing: 1px; }
.xh-trust .lbl { font-weight: 700; font-size: 9px; display: block; color: #46b96a; }

.xh-icon-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    flex-shrink: 0;
    position: relative;
}
.xh-icon-link i { font-size: 18px; }

.xh-cart {
    position: relative;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.xh-cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--xh-yellow);
    color: var(--xh-text);
    font-size: 11px;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* ---------- Nav bar ---------- */
.xh-nav {
    background: #fff;
    border-bottom: 1px solid var(--xh-border);
    padding: 10px 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.xh-nav-inner {
    display: flex;
    align-items: center;
    gap: 28px;
    white-space: nowrap;
}
.xh-nav a {
    font-size: 14px;
    font-weight: 600;
    color: var(--xh-text);
    padding: 6px 2px;
    transition: color 0.15s;
}
.xh-nav a:hover { color: var(--xh-blue); }
.xh-nav .pill-sale {
    background: var(--xh-red);
    color: #fff;
    padding: 6px 14px;
    border-radius: 8px;
}
.xh-nav .pill-feature {
    background: var(--xh-blue);
    color: #fff;
    padding: 6px 14px;
    border-radius: 8px;
}

/* ---------- Hero grid ---------- */
.xh-hero {
    padding: 22px 0;
}
.xh-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.6fr;
    grid-template-rows: 1fr 1fr;
    gap: 14px;
    height: 540px;
}
.xh-card {
    position: relative;
    border-radius: var(--xh-radius);
    overflow: hidden;
    background: #ddd;
    box-shadow: var(--xh-shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.xh-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(20,28,80,0.15); }
.xh-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.xh-card:hover img { transform: scale(1.05); }

.xh-card-1 { grid-column: 1 / 2; grid-row: 1 / 2; background: linear-gradient(135deg, #c89f7a, #8a624a); }
.xh-card-2 { grid-column: 1 / 2; grid-row: 2 / 3; background: linear-gradient(135deg, #e9b748, #b9851e); }
.xh-card-3 { grid-column: 2 / 3; grid-row: 1 / 3; background: linear-gradient(135deg, #b8e6e8, #76c2c8); }
.xh-card-4 { grid-column: 3 / 4; grid-row: 1 / 3; background: linear-gradient(135deg, #9ad0e8, #6aa4ce); }

/* Dark scrim so text stays readable on any product photo */
.xh-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,0) 55%, rgba(0,0,0,0.75) 100%);
    z-index: 1;
    pointer-events: none;
}

.xh-card-overlay {
    position: absolute;
    inset: 0;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #fff;
    z-index: 2;
    text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

.xh-card-badge {
    background: var(--xh-blue);
    color: #fff;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    align-self: flex-start;
}

.xh-card-title {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 4px;
    line-height: 1.1;
}
.xh-card-3 .xh-card-title,
.xh-card-4 .xh-card-title { font-size: 38px; font-weight: 800; }

.xh-card-eyebrow { font-size: 13px; font-weight: 500; opacity: 0.85; }

.xh-shop-link {
    color: var(--xh-yellow);
    font-weight: 800;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

/* Product photos on hero cards: contain (not cover) on a tinted bg so cutouts look right */
.xh-card img {
    padding: 12px;
    object-fit: contain;
    background: transparent;
}
.xh-shop-btn {
    background: var(--xh-yellow);
    color: var(--xh-text);
    padding: 14px 30px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-self: flex-start;
    transition: background 0.15s;
}
.xh-shop-btn:hover { background: var(--xh-yellow-hover); }

/* ---------- Section heading ---------- */
.xh-section { padding: 36px 0; }
.xh-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin: 0 0 28px;
    padding: 18px 24px;
    background: linear-gradient(135deg, #0a1f44 0%, #14306b 100%);
    border-left: 6px solid #ff5a36;
    border-radius: 4px;
    box-shadow: 0 4px 14px rgba(10, 31, 68, 0.18);
}
.xh-section-title {
    font-size: 26px;
    font-weight: 900;
    color: #fff;
    margin: 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    line-height: 1.15;
}
.xtra-home a.xh-section-link {
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 14px;
    background: rgba(255,255,255,0.12);
    border-radius: 4px;
    white-space: nowrap;
    transition: background 0.2s;
}
.xh-section-link:hover { background: rgba(255,255,255,0.22); }

/* ---------- Collections grid ---------- */
.xh-collections {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.xh-collection {
    background: var(--xh-soft);
    border-radius: var(--xh-radius);
    padding: 28px 22px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    border: 1px solid transparent;
}
.xh-collection:hover {
    transform: translateY(-4px);
    background: #fff;
    border-color: var(--xh-border);
    box-shadow: var(--xh-shadow);
}
.xh-collection { padding: 14px 14px 18px; }
.xh-collection-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    margin: 0 auto 14px;
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.xh-collection-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.xh-collection:hover .xh-collection-img img { transform: scale(1.06); }
.xh-collection-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--xh-text);
    margin: 0;
}

/* ---------- Products grid ---------- */
.xh-products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.xh-product {
    background: #fff;
    border: 1px solid var(--xh-border);
    border-radius: var(--xh-radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s, box-shadow 0.2s;
}
.xh-product:hover { transform: translateY(-4px); box-shadow: var(--xh-shadow); }
.xh-product-img {
    aspect-ratio: 1 / 1;
    background: var(--xh-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}
.xh-product-img img { width: 100%; height: 100%; object-fit: contain; padding: 14px; }
.xh-product-discount {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--xh-red);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
}
.xh-product-body { padding: 14px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.xh-product-brand { font-size: 11px; color: var(--xh-muted); text-transform: uppercase; letter-spacing: 0.5px; font-weight: 600; }
.xh-product-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--xh-text);
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
    min-height: 38px;
}
.xh-product-price { margin-top: auto; display: flex; align-items: baseline; gap: 8px; padding-top: 6px; }
.xh-product-price .now { font-size: 18px; font-weight: 800; color: var(--xh-blue); }
.xh-product-price .was { font-size: 13px; color: var(--xh-muted); text-decoration: line-through; }
.xh-product-cta {
    margin: 0 14px 14px;
    background: var(--xh-yellow);
    color: var(--xh-text);
    padding: 10px 14px;
    border-radius: 999px;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    transition: background 0.15s;
}
.xh-product-cta:hover { background: var(--xh-yellow-hover); }

/* ---------- All products accordion ---------- */
.xh-accordion {
    background: var(--xh-soft);
    border-radius: var(--xh-radius);
    padding: 8px;
}
.xh-acc-item { border-bottom: 1px solid var(--xh-border); }
.xh-acc-item:last-child { border-bottom: none; }
.xh-acc-head {
    width: 100%;
    background: transparent;
    text-align: left;
    padding: 18px 20px;
    font-size: 16px;
    font-weight: 700;
    color: var(--xh-text);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.xh-acc-head .count {
    font-size: 12px;
    color: var(--xh-muted);
    font-weight: 500;
    background: #fff;
    padding: 4px 10px;
    border-radius: 999px;
}
.xh-acc-head .chev { transition: transform 0.2s; margin-left: 10px; }
.xh-acc-item.open .xh-acc-head .chev { transform: rotate(180deg); }
.xh-acc-body {
    display: none;
    padding: 4px 20px 20px;
    columns: 3;
    column-gap: 30px;
}
.xh-acc-item.open .xh-acc-body { display: block; }
.xh-acc-body a {
    display: block;
    padding: 6px 0;
    font-size: 13px;
    color: var(--xh-text);
    break-inside: avoid;
    border-bottom: 1px dotted var(--xh-border);
}
.xh-acc-body a:hover { color: var(--xh-blue); }

/* ---------- Promo strip ---------- */
.xh-promo {
    background: linear-gradient(135deg, var(--xh-blue) 0%, var(--xh-blue-dark) 100%);
    color: #fff;
    border-radius: var(--xh-radius);
    padding: 40px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    align-items: center;
}
.xh-promo h3 { font-size: 28px; margin: 0 0 8px; font-weight: 800; }
.xh-promo p { margin: 0 0 18px; opacity: 0.85; font-size: 15px; }
.xh-promo .xh-shop-btn { align-self: center; justify-self: end; }

/* ---------- 3-up category cards (Kids homewear style) ---------- */
.xh-cat3 {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 14px;
    height: 380px;
}
.xh-cat3-card {
    position: relative;
    border-radius: var(--xh-radius);
    overflow: hidden;
    height: 100%;
    box-shadow: var(--xh-shadow);
    transition: transform 0.25s, box-shadow 0.25s;
}
.xh-cat3-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(20,28,80,0.18); }
.xh-cat3-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.xh-cat3-card:hover img { transform: scale(1.05); }
.xh-cat3-card::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0) 35%, rgba(0,0,0,0.6) 100%);
}
.xh-cat3-overlay {
    position: absolute; inset: 0;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 16px; z-index: 2; color: #fff;
    text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.xh-cat3-title { font-size: 30px; font-weight: 800; margin: 0; text-align: center; }

/* ---------- Most sold carousel ---------- */
.xh-carousel {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
    align-items: center;
}
.xh-carousel-intro h2 { font-size: 26px; font-weight: 800; margin: 0 0 8px; }
.xh-carousel-intro p { color: var(--xh-muted); margin: 0 0 16px; font-size: 14px; }
.xh-carousel-intro a { color: var(--xh-blue); font-weight: 700; font-size: 14px; }
.xh-carousel-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
}
.xh-carousel-track::-webkit-scrollbar { height: 8px; }
.xh-carousel-track::-webkit-scrollbar-thumb { background: var(--xh-border); border-radius: 4px; }
.xh-carousel-track .xh-product { min-width: 220px; scroll-snap-align: start; }
.xh-badge-row { position: absolute; top: 10px; left: 10px; display: flex; gap: 6px; z-index: 2; }
.xh-badge { font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 6px; color: #fff; }
.xh-badge.sale { background: var(--xh-red); }
.xh-badge.info { background: var(--xh-blue); }
.xh-badge.deal { background: var(--xh-blue); }

/* ---------- 3-up promo cards (Plant terrariums style) ---------- */
.xh-promo3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.xh-promo3-card {
    background: #fff;
    border-radius: var(--xh-radius);
    overflow: hidden;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}
.xh-promo3-card:hover { transform: translateY(-4px); box-shadow: var(--xh-shadow); }
.xh-promo3-img {
    aspect-ratio: 16 / 10;
    background: var(--xh-soft);
    display: flex; align-items: center; justify-content: center;
    border-radius: var(--xh-radius);
    overflow: hidden;
}
.xh-promo3-img img { width: 100%; height: 100%; object-fit: contain; padding: 20px; }
.xh-promo3-body { padding: 18px 20px 22px; }
.xh-promo3-body h3 { font-size: 20px; font-weight: 800; margin: 0 0 6px; }
.xh-promo3-body p { color: var(--xh-muted); font-size: 14px; margin: 0 0 12px; }
.xh-promo3-body a { color: var(--xh-blue); font-weight: 700; font-size: 14px; }

/* ---------- Split banner (The perfect gifts) ---------- */
.xh-split {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    background: var(--xh-soft);
    border-radius: var(--xh-radius);
    overflow: hidden;
    min-height: 320px;
}
.xh-split-text {
    padding: 50px 60px;
    display: flex; flex-direction: column; justify-content: center;
}
.xh-split-text h2 { font-size: 34px; font-weight: 800; margin: 0 0 12px; }
.xh-split-text p { color: var(--xh-muted); font-size: 15px; margin: 0 0 22px; max-width: 420px; }
.xh-split-img { background: #d8e6dc; }
.xh-split-img img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Blog ---------- */
.xh-blog {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.xh-blog-card {
    background: #fff;
    border-radius: var(--xh-radius);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}
.xh-blog-card:hover { transform: translateY(-4px); box-shadow: var(--xh-shadow); }
.xh-blog-img { aspect-ratio: 16 / 10; overflow: hidden; }
.xh-blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.xh-blog-card:hover .xh-blog-img img { transform: scale(1.05); }
.xh-blog-body { padding: 18px 6px 4px; }
.xh-blog-meta { font-size: 12px; color: var(--xh-muted); margin-bottom: 6px; }
.xh-blog-body h3 { font-size: 18px; font-weight: 800; margin: 0 0 12px; line-height: 1.3; }
.xh-blog-body a.read { color: var(--xh-blue); font-weight: 700; font-size: 14px; }

@media (max-width: 980px) {
    .xh-cat3 { grid-template-columns: 1fr 1fr; height: auto; grid-auto-rows: 260px; }
    .xh-cat3-card:first-child { grid-column: 1 / -1; height: 320px; }
    .xh-carousel { grid-template-columns: 1fr; }
    .xh-promo3, .xh-blog { grid-template-columns: 1fr 1fr; }
    .xh-split { grid-template-columns: 1fr; }
    .xh-split-text { padding: 30px 26px; }
    .xh-split-img { aspect-ratio: 16 / 9; }
}
@media (max-width: 720px) {
    .xh-cat3 { grid-template-columns: 1fr; height: auto; grid-auto-rows: 240px; }
    .xh-cat3-card:first-child { height: 280px; }
    .xh-promo3, .xh-blog { grid-template-columns: 1fr; }
    .xh-split-text h2 { font-size: 26px; }
    .xh-cat3-title { font-size: 24px; }
}

/* ---------- SEO rich text with read-more ---------- */
.xh-seo {
    background: #fff;
    border-radius: var(--xh-radius);
    padding: 40px 50px;
    border: 1px solid var(--xh-border);
}
.xh-seo h2 { font-size: 28px; font-weight: 800; margin: 0 0 18px; color: var(--xh-text); }
.xh-seo h3 { font-size: 19px; font-weight: 700; margin: 26px 0 10px; color: var(--xh-text); }
.xh-seo p { font-size: 15px; line-height: 1.7; color: #2a304f; margin: 0 0 14px; }
.xh-seo ul { padding-left: 22px; margin: 0 0 18px; }
.xh-seo li { font-size: 15px; line-height: 1.7; color: #2a304f; margin-bottom: 8px; }
.xh-seo img { border-radius: var(--xh-radius-sm); margin: 14px auto; }

.xh-seo-collapsible {
    position: relative;
    max-height: 320px;
    overflow: hidden;
    transition: max-height 0.6s ease;
}
.xh-seo-collapsible.expanded { max-height: 8000px; }
.xh-seo-collapsible::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 160px;
    background: linear-gradient(180deg, rgba(255,255,255,0) 0%, #fff 90%);
    pointer-events: none;
    transition: opacity 0.4s;
}
.xh-seo-collapsible.expanded::after { opacity: 0; }

.xh-seo-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 18px auto 0;
    background: var(--xh-yellow);
    color: var(--xh-text) !important;
    padding: 12px 28px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: background 0.15s, transform 0.15s;
}
.xh-seo-toggle:hover { background: var(--xh-yellow-hover); transform: translateY(-1px); }
.xh-seo-toggle .arr { transition: transform 0.3s; }
.xh-seo-toggle.expanded .arr { transform: rotate(180deg); }
.xh-seo-toggle-wrap { text-align: center; }

@media (max-width: 720px) {
    .xh-seo { padding: 24px 22px; }
    .xh-seo h2 { font-size: 22px; }
}

/* ---------- Footer ---------- */
.xh-footer {
    background: var(--xh-text);
    color: #fff;
    padding: 40px 0 20px;
    margin-top: 60px;
}
.xh-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr;
    gap: 48px;
    padding-bottom: 12px;
}
.xh-footer .xh-footer-col h4 { margin-top: 0; }
.xh-footer .cols-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 24px;
}
.xh-footer .social-row {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}
.xh-footer .social-row a {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: inline-flex; align-items: center; justify-content: center;
    padding: 0;
    color: #fff;
    font-size: 15px;
    transition: background 0.15s, color 0.15s;
}
.xh-footer .social-row a:hover { background: var(--xh-yellow); color: var(--xh-text); }
.xh-footer .newsletter {
    display: flex; gap: 8px; margin-top: 14px;
}
.xh-footer .newsletter input {
    flex: 1;
    height: 42px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.05);
    color: #fff;
    padding: 0 18px;
    font-size: 14px;
    outline: none;
}
.xh-footer .newsletter input::placeholder { color: rgba(255,255,255,0.5); }
.xh-footer .newsletter button {
    background: var(--xh-yellow);
    color: var(--xh-text);
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 14px;
    height: 42px;
    cursor: pointer;
}
.xh-footer .payment {
    display: flex; gap: 8px; margin-top: 18px; flex-wrap: wrap;
    color: rgba(255,255,255,0.6); font-size: 22px;
}
.xh-footer h4 { font-size: 14px; margin: 0 0 14px; color: var(--xh-yellow); text-transform: uppercase; letter-spacing: 1px; }
.xh-footer a { display: block; padding: 4px 0; color: rgba(255,255,255,0.7); font-size: 14px; }
.xh-footer a:hover { color: var(--xh-yellow); }
.xh-footer .copy { text-align: center; padding-top: 24px; margin-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 13px; color: rgba(255,255,255,0.6); }

/* ---------- Mobile-first responsive ---------- */
@media (max-width: 980px) {
    .xh-hero-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 280px 280px 280px;
        height: auto;
    }
    .xh-card-1 { grid-column: 1; grid-row: 1; }
    .xh-card-2 { grid-column: 2; grid-row: 1; }
    .xh-card-3 { grid-column: 1; grid-row: 2; }
    .xh-card-4 { grid-column: 1 / 3; grid-row: 3; }
    .xh-card-3 .xh-card-title,
    .xh-card-4 .xh-card-title { font-size: 30px; }

    .xh-collections { grid-template-columns: repeat(3, 1fr); }
    .xh-products { grid-template-columns: repeat(3, 1fr); }
    .xh-footer-grid { grid-template-columns: 1.5fr 1.2fr 1fr; gap: 32px; }
    .xh-promo { grid-template-columns: 1fr; text-align: center; }
    .xh-promo .xh-shop-btn { justify-self: center; }
    .xh-acc-body { columns: 2; }
}

@media (max-width: 720px) {
    .xh-header-inner { flex-wrap: wrap; row-gap: 12px; }
    .xh-header-inner .xh-catalog-btn,
    .xh-header-inner .xh-trust,
    .xh-header-inner .desktop-only { display: none; }
    .xh-search { order: 5; flex-basis: 100%; }
    .xh-search input { height: 44px; }

    .xh-hero-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 280px);
    }
    .xh-card-1, .xh-card-2, .xh-card-3, .xh-card-4 {
        grid-column: 1;
    }
    .xh-card-1 { grid-row: 1; }
    .xh-card-2 { grid-row: 2; }
    .xh-card-3 { grid-row: 3; }
    .xh-card-4 { grid-row: 4; }

    .xh-collections { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .xh-collection { padding: 20px 14px; }
    .xh-products { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .xh-section-title { font-size: 20px; }
    .xh-acc-body { columns: 1; }
    .xh-footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 420px) {
    .xh-logo-text { font-size: 22px; }
}
