/* ═══════════════════════════════════════════════════════
   GiftB360x Homepage — tigc.in design language
   Scoped to .gb-page — does NOT leak into Astra theme
═══════════════════════════════════════════════════════ */

.gb-page {
    --gb-black:    #111111;
    --gb-white:    #ffffff;
    --gb-red:      #e63329;
    --gb-red-d:    #c42820;
    --gb-gray-50:  #f8f8f8;
    --gb-gray-100: #f0f0f0;
    --gb-gray-200: #e0e0e0;
    --gb-gray-400: #999999;
    --gb-gray-600: #555555;
    --gb-font:     'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-family: var(--gb-font);
    color: var(--gb-black);
    background: var(--gb-white);
    -webkit-font-smoothing: antialiased;
    font-size: 14px;
    line-height: 1.5;
}
.gb-page *, .gb-page *::before, .gb-page *::after { box-sizing: border-box; margin: 0; padding: 0; }
.gb-page a { color: inherit; text-decoration: none; }
.gb-page img { display: block; max-width: 100%; }

/* ── Shared layout ── */
.gb-container { max-width: 480px; margin: 0 auto; padding: 0 16px; }
.gb-section-inner { max-width: 480px; margin: 0 auto; padding: 36px 16px; }

.gb-section-header {
    display: flex; align-items: baseline; justify-content: space-between;
    margin-bottom: 24px;
}
.gb-section-title {
    font-size: 0.85rem; font-weight: 800;
    letter-spacing: 0.1em; text-transform: uppercase; color: var(--gb-black);
}
.gb-link-all {
    font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em;
    text-transform: uppercase; color: var(--gb-gray-600);
    border-bottom: 1px solid var(--gb-gray-400); padding-bottom: 1px;
    transition: color 0.15s;
}
.gb-link-all:hover { color: var(--gb-black); border-color: var(--gb-black); }

/* ── Buttons ── */
.gb-btn-black {
    background: var(--gb-black); color: var(--gb-white); border: 2px solid var(--gb-black);
    padding: 11px 28px; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.06em;
    text-transform: uppercase; border-radius: 2px; transition: all 0.18s;
    display: inline-block; font-family: var(--gb-font); cursor: pointer;
}
.gb-btn-black:hover { background: var(--gb-white); color: var(--gb-black); }

.gb-btn-red {
    background: var(--gb-red); color: var(--gb-white); border: 2px solid var(--gb-red);
    padding: 11px 28px; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.06em;
    text-transform: uppercase; border-radius: 2px; transition: all 0.18s;
    display: inline-block; font-family: var(--gb-font); cursor: pointer;
}
.gb-btn-red:hover { background: var(--gb-red-d); border-color: var(--gb-red-d); }

/* ══════════════════════════════════════════════════════
   1. ANNOUNCEMENT BAR (marquee)
   — rendered by class-gift-hooks.php render_store_header()
   — override global.css static-bar styles here
══════════════════════════════════════════════════════ */
.gb-announcement {
    background: var(--gb-black) !important; color: var(--gb-white) !important;
    height: 36px !important; overflow: hidden !important;
    display: flex !important; align-items: center !important;
    padding: 0 !important; text-align: left !important;
}
.gb-announcement.is-hidden { display: none !important; }
.gb-marquee-track { display: flex; animation: gb-marquee 28s linear infinite; white-space: nowrap; }
.gb-marquee-track span { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.04em; padding: 0 40px; flex-shrink: 0; }
@keyframes gb-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ══════════════════════════════════════════════════════
   2. CATEGORY QUICK-NAV (icon strip below header)
   — shows exactly 4 items on screen, rest scroll
══════════════════════════════════════════════════════ */
.gb-cat-nav {
    background: var(--gb-white); border-bottom: 1px solid var(--gb-gray-200);
    overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.gb-cat-nav::-webkit-scrollbar { display: none; }
.gb-cat-nav__track {
    display: flex; gap: 0; padding: 10px 0;
    width: max-content; min-width: 100%;
}
.gb-cat-nav__item {
    display: flex; flex-direction: column; align-items: center; gap: 6px;
    padding: 4px 10px 6px; cursor: pointer; flex-shrink: 0;
    text-decoration: none; color: var(--gb-black);
    min-width: 90px;
}
.gb-cat-nav__icon {
    width: 72px; height: 72px; background: var(--gb-gray-50);
    border: 1.5px solid var(--gb-gray-200); border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden; transition: border-color 0.15s;
}
.gb-cat-nav__item:hover .gb-cat-nav__icon { border-color: var(--gb-black); }
.gb-cat-nav__icon img { width: 100%; height: 100%; object-fit: cover; }
.gb-cat-nav__emoji { font-size: 1.4rem; line-height: 1; }
.gb-cat-nav__label {
    font-size: 0.58rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.03em; color: var(--gb-gray-600); text-align: center;
    line-height: 1.2; width: 62px; white-space: nowrap;
    overflow: hidden; text-overflow: ellipsis;
}

/* ══════════════════════════════════════════════════════
   3. HERO — full-bleed background image, beyoung.in style
   Text + CTA centred at bottom of slide
══════════════════════════════════════════════════════ */
.gb-hero { position: relative; }

.gb-hero__slide {
    display: none;
    position: relative;
    height: 560px;          /* desktop height */
    overflow: hidden;
    background: var(--gb-gray-100);
}
.gb-hero__slide.is-active { display: block; }

/* Full-bleed background image */
.gb-hero__bg {
    position: absolute; inset: 0;
}
.gb-hero__bg img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center top;
    display: block;
}

/* Dark gradient overlay so text is readable on any image */
.gb-hero__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 30%, rgba(0,0,0,0.45) 100%);
}
/* No image → no overlay needed */
.gb-hero__slide:not(.has-image) .gb-hero__overlay { display: none; }

/* Text block: absolute, centred horizontally, anchored to bottom */
.gb-hero__content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 48px 24px 68px;  /* 68px bottom leaves room for dots */
    text-align: center;
    z-index: 2;
}

.gb-hero__eyebrow {
    font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--gb-red);
    margin-bottom: 10px;
    display: flex; align-items: center; justify-content: center; gap: 8px;
}
.gb-hero__eyebrow::before,
.gb-hero__eyebrow::after { content: ''; width: 22px; height: 2px; background: var(--gb-red); flex-shrink: 0; }
/* On image slide: white eyebrow */
.gb-hero__slide.has-image .gb-hero__eyebrow { color: #fff; }
.gb-hero__slide.has-image .gb-hero__eyebrow::before,
.gb-hero__slide.has-image .gb-hero__eyebrow::after { background: #fff; }

.gb-hero__headline {
    font-size: clamp(1.9rem, 4.5vw, 3.2rem);
    font-weight: 800; line-height: 1.1; letter-spacing: -0.03em;
    color: var(--gb-black); margin-bottom: 12px;
}
.gb-hero__slide.has-image .gb-hero__headline { color: #fff; }

.gb-hero__sub {
    font-size: 0.95rem; color: var(--gb-gray-600); margin-bottom: 22px;
}
.gb-hero__slide.has-image .gb-hero__sub { color: rgba(255,255,255,0.88); }

/* Hero CTA: yellow background, black text */
.gb-btn-hero {
    background: #FFD000; color: #111111;
    border: 2px solid #FFD000;
    padding: 12px 40px; font-size: 0.82rem; font-weight: 800;
    letter-spacing: 0.08em; text-transform: uppercase;
    border-radius: 2px; display: inline-block; transition: all 0.18s;
    font-family: var(--gb-font); cursor: pointer;
}
.gb-btn-hero:hover { background: #e6bc00; border-color: #e6bc00; color: #111; }

/* Slider dots */
.gb-hero__dots {
    position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
    display: flex; gap: 6px; z-index: 3;
}
.gb-hero__dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: rgba(255,255,255,0.55);
    cursor: pointer; transition: all 0.2s; border: none; padding: 0; font-size: 0;
}
.gb-hero__dot.is-active { background: #fff; width: 20px; border-radius: 3px; }
/* No-image slide: dark dots */
.gb-hero__slide:not(.has-image) ~ .gb-hero__dots .gb-hero__dot { background: var(--gb-gray-400); }
.gb-hero__slide:not(.has-image) ~ .gb-hero__dots .gb-hero__dot.is-active { background: var(--gb-black); }

/* ══════════════════════════════════════════════════════
   4. TRUST BADGES — 3-col icon-above-text (tigc.in style)
══════════════════════════════════════════════════════ */
.gb-badges {
    border-top: 1px solid var(--gb-gray-200);
    border-bottom: 1px solid var(--gb-gray-200);
    background: var(--gb-white);
}
.gb-badges__inner {
    max-width: 960px; margin: 0 auto;
    display: flex; align-items: stretch;
    padding: 0;
}
.gb-badge {
    flex: 1;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 6px; padding: 14px 8px;
    border-right: 1px solid var(--gb-gray-200);
    text-align: center; min-width: 0;
}
.gb-badge:last-child { border-right: none; }
.gb-badge__emoji { font-size: 1.6rem; line-height: 1; }
.gb-badge__text { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.02em; line-height: 1.4; color: var(--gb-black); }

/* ══════════════════════════════════════════════════════
   5. PRODUCTS GRID (New Arrivals + Bestsellers)
   — override global.css aspect-ratio: 1 !important conflict
══════════════════════════════════════════════════════ */
.gb-products { background: var(--gb-white); }
.gb-products__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gb-top-picks__grid { grid-template-columns: repeat(2, 1fr) !important; max-width: 600px; }
.gb-product-card { cursor: pointer; border: none !important; border-radius: 0 !important; box-shadow: none !important; background: transparent !important; transform: none !important; }
.gb-product-card:hover { transform: none !important; box-shadow: none !important; }
.gb-product-card__img-wrap {
    aspect-ratio: 3/4 !important; background: var(--gb-gray-50);
    overflow: hidden !important; position: relative; margin-bottom: 10px;
    display: block;
}
.gb-product-card__img-wrap img { width: 100% !important; height: 100% !important; object-fit: cover !important; transition: opacity 0.2s; }
.gb-product-card:hover .gb-product-card__img-wrap img { opacity: 0.85; }
.gb-product-card__placeholder {
    width: 100%; height: 100%; display: flex; align-items: center;
    justify-content: center; font-size: 3.5rem; background: var(--gb-gray-50);
}
.gb-product-card__badge {
    position: absolute; top: 10px; left: 10px;
    background: var(--gb-red); color: white;
    font-size: 0.65rem; font-weight: 700; letter-spacing: 0.04em; padding: 3px 8px;
}
/* Custom product badge — matches 50% OFF size exactly */
.gb-prod-badge {
    position: absolute; top: 10px; left: 10px;
    font-size: 0.65rem; font-weight: 700; letter-spacing: 0.04em;
    text-transform: uppercase; z-index: 2; pointer-events: none;
    white-space: nowrap; line-height: normal;
}
.gb-prod-badge--ribbon {
    background: #e63329; color: #fff;
    padding: 5px 20px 5px 10px;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 50%, calc(100% - 10px) 100%, 0 100%);
}
.gb-prod-badge--pill    { background: #16a34a; color: #fff; padding: 5px 12px; border-radius: 999px; }
.gb-prod-badge--square  { background: #2563eb; color: #fff; padding: 5px 10px; }
.gb-prod-badge--outline { background: #fff; color: #7c3aed; border: 1.5px solid #7c3aed; padding: 4px 10px; border-radius: 999px; }
.gb-product-card__name { font-size: 0.85rem; font-weight: 600; color: var(--gb-black); margin-bottom: 6px; line-height: 1.3; }
.gb-product-card__name a { color: inherit; text-decoration: none; }
.gb-product-card__price { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
/* WC price HTML targets */
.gb-product-card__price .price { display: flex; align-items: center; gap: 6px; }
.gb-product-card__price .woocommerce-Price-amount { font-size: 0.9rem; font-weight: 700; color: var(--gb-black); }
.gb-product-card__price del { text-decoration: none; vertical-align: middle; }
.gb-product-card__price del .woocommerce-Price-amount { font-size: 0.78rem; font-weight: 400; color: var(--gb-gray-400); text-decoration: line-through; text-decoration-thickness: 1px; }
.gb-product-card__price ins { text-decoration: none; }
.gb-product-card__price ins .woocommerce-Price-amount { color: var(--gb-black); }
.gb-product-card__off { font-size: 0.72rem; font-weight: 700; color: var(--gb-red); }

/* ══════════════════════════════════════════════════════
   6. SHOP BY COLLECTION — 8-col square grid
   — override global.css .gb-cat-card { aspect-ratio: 3/4 } conflict
══════════════════════════════════════════════════════ */
.gb-categories { background: var(--gb-gray-50); border-top: 1px solid var(--gb-gray-200); border-bottom: 1px solid var(--gb-gray-200); }
.gb-categories__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gb-cat-card { display: flex !important; flex-direction: column !important; align-items: center !important; gap: 8px; cursor: pointer; text-decoration: none; aspect-ratio: auto !important; overflow: visible !important; }
.gb-cat-card__img {
    width: 100%; aspect-ratio: 3/4; background: var(--gb-white);
    border: 1.5px solid var(--gb-gray-200); border-radius: 4px;
    display: flex; align-items: center; justify-content: center;
    font-size: 2.4rem; overflow: hidden; transition: border-color 0.2s;
}
.gb-cat-card:hover .gb-cat-card__img { border-color: var(--gb-black); }
.gb-cat-card__img img { width: 100%; height: 100%; object-fit: cover; }
.gb-cat-card__label {
    font-size: 0.68rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.05em; color: var(--gb-gray-600); text-align: center;
    line-height: 1.3; transition: color 0.2s;
}
.gb-cat-card:hover .gb-cat-card__label { color: var(--gb-black); }

/* ══════════════════════════════════════════════════════
   7. PROMO BANNERS
══════════════════════════════════════════════════════ */
.gb-promos { background: #fff; }
.gb-promos__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }

/* Promo card base */
.gb-promo-card {
    position: relative; cursor: pointer; text-decoration: none;
    border-radius: 16px; overflow: hidden;
    display: flex; align-items: stretch;
    aspect-ratio: 4/3;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: transform 0.18s, box-shadow 0.18s;
    background-size: cover; background-position: center;
}
.gb-promo-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.14); }

/* Image tile */
.gb-promo-card--img { color: #fff; }
.gb-promo-card__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.08) 55%, transparent 100%);
    pointer-events: none;
}

/* Gradient backgrounds by type — warm, vibrant, Nykaa-style */
.gb-promo-card--under-price  { background: linear-gradient(145deg, #fff5e6 0%, #ffe0b2 55%, #ffcc80 100%); }
.gb-promo-card--flat-percent { background: linear-gradient(145deg, #fce4ec 0%, #f8bbd0 55%, #f48fb1 100%); }
.gb-promo-card--flat-price   { background: linear-gradient(145deg, #e8f5e9 0%, #c8e6c9 55%, #a5d6a7 100%); }
.gb-promo-card--clearance    { background: linear-gradient(145deg, #ede7f6 0%, #d1c4e9 55%, #b39ddb 100%); }

/* Inner content */
.gb-promo-card__inner {
    position: relative; z-index: 1;
    width: 100%; padding: 18px 14px;
    display: flex; flex-direction: column;
    align-items: flex-start; justify-content: flex-end;
    gap: 3px;
}
.gb-promo-card--img .gb-promo-card__inner { align-items: flex-start; justify-content: flex-end; }

/* Eyebrow */
.gb-promo-card__eyebrow {
    font-size: 0.62rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.16em; color: rgba(0,0,0,0.5);
    font-family: system-ui, -apple-system, sans-serif;
}

/* THE BIG VALUE */
.gb-promo-card__value {
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    font-weight: 900; line-height: 1; letter-spacing: -0.03em;
    font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
    word-break: break-word;
}
.gb-promo-card--under-price  .gb-promo-card__value { color: #e65100; }
.gb-promo-card--flat-percent .gb-promo-card__value { color: #c2185b; }
.gb-promo-card--flat-price   .gb-promo-card__value { color: #2e7d32; }
.gb-promo-card--clearance    .gb-promo-card__value { color: #4527a0; }

/* Subtitle */
.gb-promo-card__headline {
    font-size: 0.78rem; font-weight: 800;
    text-transform: uppercase; letter-spacing: 0.1em;
    color: rgba(0,0,0,0.5); margin-top: 1px;
    font-family: system-ui, -apple-system, sans-serif;
}
.gb-promo-card--img .gb-promo-card__headline {
    color: #fff; font-size: clamp(0.9rem, 1.8vw, 1.2rem);
    letter-spacing: 0; text-transform: none; font-weight: 700;
}

/* Shop Now CTA */
.gb-promo-card__cta {
    margin-top: 10px;
    display: inline-block;
    font-size: 0.68rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.1em;
    background: rgba(0,0,0,0.08);
    color: rgba(0,0,0,0.65);
    padding: 5px 12px; border-radius: 20px;
    font-family: system-ui, -apple-system, sans-serif;
}
.gb-promo-card--img .gb-promo-card__cta {
    background: rgba(255,255,255,0.2);
    color: #fff;
}

/* ══════════════════════════════════════════════════════
   8. DEAL BANNER — full-width dark with red badge
══════════════════════════════════════════════════════ */
.gb-deal { background: var(--gb-black); }
.gb-deal.is-hidden { display: none; }
.gb-deal { position: relative; background-size: cover !important; background-position: center !important; }
.gb-deal__bg-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.55); }
.gb-deal__inner { position: relative; z-index: 1; }
.gb-deal__inner {
    max-width: 1280px; margin: 0 auto; padding: 48px 20px;
    display: flex; align-items: center; gap: 48px;
}
.gb-deal__content { flex: 1; }
.gb-deal__eyebrow {
    font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--gb-red); margin-bottom: 12px; display: block;
}
.gb-deal__content h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; letter-spacing: -0.02em;
    color: var(--gb-white); margin-bottom: 10px; line-height: 1.15;
}
.gb-deal__content p { font-size: 0.88rem; color: #888; margin-bottom: 24px; }
.gb-deal__badge {
    width: 120px; height: 120px; border-radius: 50%;
    background: var(--gb-red); color: white;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.gb-deal__badge-pct { font-size: 2.2rem; font-weight: 800; line-height: 1; letter-spacing: -0.04em; }
.gb-deal__badge-text { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-top: 2px; }

/* ══════════════════════════════════════════════════════
   10. FAQ ACCORDION — card style with spacing
══════════════════════════════════════════════════════ */
.gb-faq { background: #f5f5f5; border-top: 1px solid var(--gb-gray-200); }
.gb-faq__list { max-width: 680px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }

.gb-faq__item {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    overflow: hidden;
    transition: box-shadow 0.2s, border-color 0.2s;
}
.gb-faq__item:hover { box-shadow: 0 2px 12px rgba(0,0,0,0.07); }
.gb-faq__item.is-open {
    border-color: var(--b360x-primary, #111);
    box-shadow: 0 2px 14px rgba(0,0,0,0.09);
}

.gb-faq__question {
    width: 100%; display: flex; justify-content: space-between; align-items: center;
    padding: 16px 18px;
    background: transparent !important;
    border: none; cursor: pointer; gap: 16px;
    font-size: 0.9rem; font-weight: 600; color: #222; text-align: left;
    font-family: var(--gb-font); line-height: 1.4;
    text-transform: none; letter-spacing: 0;
    transition: color 0.15s;
    outline: none !important;
    -webkit-tap-highlight-color: transparent;
    -webkit-appearance: none;
    appearance: none;
    user-select: none;
}
.gb-faq__question:focus,
.gb-faq__question:active,
.gb-faq__question:focus-visible { background: transparent !important; outline: none !important; box-shadow: none !important; }
.gb-faq__question:hover { color: var(--b360x-primary, #111); }
.gb-faq__item.is-open .gb-faq__question { color: var(--b360x-primary, #111); }

.gb-faq__chevron {
    flex-shrink: 0; color: #bbb;
    width: 18px; height: 18px;
    transition: transform 0.25s ease, color 0.2s;
}
.gb-faq__item.is-open .gb-faq__chevron { transform: rotate(180deg); color: var(--b360x-primary, #111); }

.gb-faq__answer { overflow: hidden; max-height: 0; transition: max-height 0.3s ease; }
.gb-faq__item.is-open .gb-faq__answer { max-height: 600px; }
.gb-faq__answer p {
    padding: 2px 18px 18px 18px;
    font-size: 0.86rem; color: #666; line-height: 1.8;
    border-top: 1px solid #f0f0f0;
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .gb-categories__grid { grid-template-columns: repeat(4, 1fr); }
    .gb-products__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .gb-hero__slide { height: 420px; }
    .gb-hero__content { padding: 32px 20px 58px; }
    .gb-hero__headline { font-size: 2rem; }
    .gb-products__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .gb-promos__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .gb-categories__grid { grid-template-columns: repeat(4, 1fr); gap: 10px; }
    .gb-deal__inner { flex-direction: column; gap: 24px; text-align: center; padding: 36px 16px; }
    .gb-deal__badge { width: 96px; height: 96px; }
    .gb-section-inner { padding: 36px 16px; }

    /* Quick-cat: 4 full + 5th peeks ~30% to hint swipe */
    .gb-cat-nav__item { min-width: calc(100vw / 4.3); }
    .gb-cat-nav__icon { width: 68px; height: 68px; }
    /* Categories: 2 per row on mobile */
    .gb-categories__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

@media (max-width: 480px) {
    .gb-hero__slide { height: 360px; }
    .gb-hero__headline { font-size: 1.7rem; }
    .gb-categories__grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .gb-cat-card__label { font-size: 0.6rem; }
    .gb-cat-card__img { font-size: 2rem; }
    .gb-section-inner { padding: 32px 14px; }
    .gb-products__grid { gap: 10px; }
    .gb-product-card__name { font-size: 0.8rem; }
    .gb-cat-nav__item { min-width: calc(100vw / 4.3); }
    .gb-cat-nav__icon { width: 62px; height: 62px; }
    .gb-cat-nav__label { width: 60px; font-size: 0.55rem; }
}
