/**
 * Browse-by-service strip — horizontal tile row between the hero and
 * the toolbar. Each tile mirrors a Service-category filter from the
 * sidebar; clicking a tile toggles the same checkbox so there's only
 * one source of truth (state.services in the inline page script).
 *
 * Loaded as the third stylesheet after newcataloge-italy.css and
 * newcataloge-italy-hero-v2.css. To revert: drop the wp_enqueue_style
 * call AND the newcataloge_italy_render_browse_strip() invocation in
 * the template — the rest of the page is untouched.
 */

.newcataloge-italy-page .newcataloge-browse {
    background: #ffffff;
    border-bottom: 1px solid var(--nc-border);
    padding: 28px 0 24px;
}

.newcataloge-italy-page .newcataloge-browse-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    margin: 0 0 14px;
}

.newcataloge-italy-page .newcataloge-browse-title {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--nc-navy);
}

.newcataloge-italy-page .newcataloge-browse-sub {
    font-size: 13px;
    color: var(--nc-text-muted);
}

/* Positioning context for the prev/next arrows. The arrows sit on
   top of the row at vertical centre, slightly inside the row edges so
   they overlap the first/last tile without clipping it. */
.newcataloge-italy-page .newcataloge-browse-row {
    position: relative;
}

/* Horizontal scroll row. The fade-mask edges are toggled at runtime via
   .has-overflow-start / .has-overflow-end classes added by the page JS
   so the gradient is honest about which side actually has more content
   offscreen — and disappears entirely once everything fits. */
.newcataloge-italy-page .newcataloge-browse-strip {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Top/bottom padding lets hover-lift have room without clipping. */
    padding: 4px 0 6px;
    /* Smooth scroll for arrow clicks; touch-swipe stays native. */
    scroll-behavior: smooth;
    /* "Grab" cursor over the empty gaps between tiles signals the row
       is draggable. Tiles themselves keep cursor:pointer (default for
       <button>) so they don't lose the click affordance. */
    cursor: grab;
}
.newcataloge-italy-page .newcataloge-browse-strip::-webkit-scrollbar { display: none; }

/* Active drag state — set by JS only after the pointer has moved past
   a small threshold, so a plain click still registers normally. While
   dragging we drop smooth-scroll (jitters behind the cursor) and
   suppress text selection. */
.newcataloge-italy-page .newcataloge-browse-strip.is-dragging {
    cursor: grabbing;
    scroll-behavior: auto;
    user-select: none;
}
.newcataloge-italy-page .newcataloge-browse-strip.is-dragging .newcataloge-browse-tile {
    cursor: grabbing;
}

/* Edge fades — added by JS only when there's actually content past
   that edge. Both sides can be on at once (mid-scroll). */
.newcataloge-italy-page .newcataloge-browse-strip.has-overflow-end {
    -webkit-mask-image: linear-gradient(to right, #000 calc(100% - 36px), transparent);
            mask-image: linear-gradient(to right, #000 calc(100% - 36px), transparent);
}
.newcataloge-italy-page .newcataloge-browse-strip.has-overflow-start.has-overflow-end {
    -webkit-mask-image: linear-gradient(to right, transparent, #000 36px, #000 calc(100% - 36px), transparent);
            mask-image: linear-gradient(to right, transparent, #000 36px, #000 calc(100% - 36px), transparent);
}
.newcataloge-italy-page .newcataloge-browse-strip.has-overflow-start:not(.has-overflow-end) {
    -webkit-mask-image: linear-gradient(to right, transparent, #000 36px);
            mask-image: linear-gradient(to right, transparent, #000 36px);
}

/* Prev/next arrows. Hidden on mobile (touch-swipe is the natural
   gesture); on desktop they appear over the row edges. The .is-disabled
   class is applied by JS at the start/end of the scroll range, plus
   when the row doesn't overflow at all (everything visible). */
.newcataloge-italy-page .newcataloge-browse-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    display: none;
    place-items: center;
    background: #ffffff;
    color: var(--nc-navy);
    border: 1px solid var(--nc-border-strong);
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(26, 37, 64, 0.12);
    cursor: pointer;
    z-index: 2;
    padding: 0;
    transition: background .15s ease, color .15s ease,
                border-color .15s ease, opacity .15s ease,
                transform .15s ease;
}
.newcataloge-italy-page .newcataloge-browse-arrow:hover {
    background: #466a9f;
    color: #ffffff;
    border-color: #466a9f;
}
.newcataloge-italy-page .newcataloge-browse-arrow:focus-visible {
    outline: 2px solid var(--nc-navy);
    outline-offset: 2px;
}
.newcataloge-italy-page .newcataloge-browse-arrow svg {
    width: 18px;
    height: 18px;
}
.newcataloge-italy-page .newcataloge-browse-arrow--prev { left: -14px; }
.newcataloge-italy-page .newcataloge-browse-arrow--next { right: -14px; }

.newcataloge-italy-page .newcataloge-browse-arrow.is-disabled {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-50%) scale(0.85);
}

/* Desktop only — hide on touch-first viewports where the swipe gesture
   already does the job. */
@media (min-width: 768px) {
    .newcataloge-italy-page .newcataloge-browse-arrow {
        display: grid;
    }
}

.newcataloge-italy-page .newcataloge-browse-tile {
    flex: 0 0 auto;
    min-width: 140px;
    max-width: 200px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 16px;
    background: var(--nc-bg-section);
    border: 1px solid var(--nc-border);
    border-radius: 14px;
    color: var(--nc-navy);
    text-align: left;
    cursor: pointer;
    font: inherit;
    transition: transform .15s ease, border-color .15s ease,
                box-shadow .15s ease, background .15s ease;
}
.newcataloge-italy-page .newcataloge-browse-tile:hover {
    border-color: #466a9f;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(26, 37, 64, 0.08);
}
.newcataloge-italy-page .newcataloge-browse-tile:focus-visible {
    outline: 2px solid var(--nc-navy);
    outline-offset: 2px;
}

/* Icons no longer rendered server-side; rule kept defensively to
   collapse any stale cached HTML that still includes the span. */
.newcataloge-italy-page .newcataloge-browse-tile-icon { display: none; }

.newcataloge-italy-page .newcataloge-browse-tile-label {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.25;
    color: var(--nc-navy);
    /* Force every tile label to occupy two lines so the row of tiles is
       visually uniform — short labels (MICE & Conferences) sit on top
       row + spacer, long labels (Corporate Events & Brand Activations)
       wrap naturally into two lines. min-height = 2 × line-height. */
    min-height: calc(14px * 1.25 * 2);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.newcataloge-italy-page .newcataloge-browse-tile-count {
    font-size: 12px;
    color: var(--nc-text-muted);
    font-weight: 500;
}

/* Active state — tile reflects a checked sidebar filter. Solid navy
   reads as "this filter is on" without needing a separate badge or
   chip duplicate. */
.newcataloge-italy-page .newcataloge-browse-tile.is-active {
    background: #466a9f;
    border-color: #466a9f;
    box-shadow: 0 4px 10px rgba(26, 37, 64, 0.18);
}
.newcataloge-italy-page .newcataloge-browse-tile.is-active .newcataloge-browse-tile-icon {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
}
.newcataloge-italy-page .newcataloge-browse-tile.is-active .newcataloge-browse-tile-label {
    color: #fff;
}
.newcataloge-italy-page .newcataloge-browse-tile.is-active .newcataloge-browse-tile-count {
    color: rgba(255, 255, 255, 0.72);
}

/* Mobile tweaks — denser tiles so 2.5 fit on a 360px screen (the
   half-tile preview is the swipe affordance). */
@media (max-width: 640px) {
    .newcataloge-italy-page .newcataloge-browse {
        padding: 22px 0 18px;
    }
    .newcataloge-italy-page .newcataloge-browse-head {
        margin-bottom: 10px;
    }
    .newcataloge-italy-page .newcataloge-browse-sub {
        display: none;
    }
    .newcataloge-italy-page .newcataloge-browse-tile {
        min-width: 138px;
        padding: 12px 14px;
    }
}

/* ─────────────────────────────────────────────────────────────────
   Section-head meta — inlined "Showing X–Y · sorted by …" beside
   the H2, replaces the previous separate <p>. Only sized here so
   the main stylesheet stays untouched.
   ───────────────────────────────────────────────────────────────── */
.newcataloge-italy-page .newcataloge-section-meta {
    color: var(--nc-text-muted);
    font-size: 13px;
    font-weight: 500;
}

/* Sidebar — drop the internal scroll. The main file caps it at
   100vh and adds overflow-y:auto, which traps wheel events when
   the cursor is over the filters: scrolling up doesn't move the
   page, it just bumps inside the sidebar. Without max-height the
   sidebar is its natural height, sticky still keeps it tagging
   along with the viewport, and wheel scroll always reaches the
   page. Tradeoff: if the filter list ever grows past viewport
   height, its bottom items sit below the fold until the user
   scrolls the page — acceptable for our 6-group list. */
@media (min-width: 1024px) {
    .newcataloge-italy-page .newcataloge-sidebar {
        max-height: none !important;
        overflow-y: visible !important;
    }
}

/* ─────────────────────────────────────────────────────────────────
   "Explore more" footer — three-column SEO/navigation block under
   the results. Surfaces popular cities, every service category, and
   a handful of other countries so the page closes with internal
   links instead of trailing into the global footer.
   ───────────────────────────────────────────────────────────────── */
.newcataloge-italy-page .newcataloge-explore {
    background: #ffffff;
    border-top: 1px solid var(--nc-border);
    padding: 56px 0;
    /* No margin-top — sits flush with the section above (FAQ also
       parchment), so the ivory page background never peeks
       through as a stripe between them. */
}

.newcataloge-italy-page .newcataloge-explore-head {
    margin: 0 0 32px;
    text-align: center;
}
.newcataloge-italy-page .newcataloge-explore-title {
    margin: 0 0 8px;
    font-size: 26px;
    font-weight: 700;
    color: var(--nc-navy);
    letter-spacing: -0.01em;
}
.newcataloge-italy-page .newcataloge-explore-sub {
    margin: 0;
    color: var(--nc-text-muted);
    font-size: 14px;
}

/* Two-column grid on desktop (cities + other destinations). Cities
   gets a slightly wider track since its pill labels are longer.
   minmax(0, 1fr) prevents the longest pillrow from forcing the
   column wider than its share. */
.newcataloge-italy-page .newcataloge-explore-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
}
@media (min-width: 768px) {
    .newcataloge-italy-page .newcataloge-explore-grid {
        grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
        gap: 48px;
    }
}

.newcataloge-italy-page .newcataloge-explore-coltitle {
    margin: 0 0 14px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--nc-navy);
    /* Brass underline reads as the heritage accent the rest of the
       hero uses — ties the footer back into the page identity. */
    padding-bottom: 8px;
    border-bottom: 1px solid var(--nc-border);
}

.newcataloge-italy-page .newcataloge-explore-pills {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.newcataloge-italy-page .newcataloge-explore-pills li {
    margin: 0;
    padding: 0;
}

.newcataloge-italy-page .newcataloge-explore-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    background: #f5f1e6;
    border: 1px solid var(--nc-border);
    border-radius: 999px;
    color: var(--nc-navy);
    font: inherit;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: border-color .15s ease, background .15s ease,
                color .15s ease, transform .15s ease;
}
.newcataloge-italy-page .newcataloge-explore-pill:hover {
    background: #466a9f;
    border-color: #466a9f;
    color: #ffffff;
    transform: translateY(-1px);
}
.newcataloge-italy-page .newcataloge-explore-pill:focus-visible {
    outline: 2px solid var(--nc-navy);
    outline-offset: 2px;
}
.newcataloge-italy-page .newcataloge-explore-pill-label {
    font-weight: 500;
}
.newcataloge-italy-page .newcataloge-explore-pill-count {
    font-size: 11px;
    font-weight: 600;
    padding: 2px 7px;
    border-radius: 999px;
    background: #ffffff;
    color: var(--nc-text-muted);
    transition: background .15s ease, color .15s ease;
}
.newcataloge-italy-page .newcataloge-explore-pill:hover .newcataloge-explore-pill-count {
    background: rgba(255, 255, 255, 0.16);
    color: rgba(255, 255, 255, 0.9);
}

/* Active state on a service pill — mirrors the same is-active class
   the top-strip tiles use, so a click in either place stays visually
   consistent with the sidebar checkbox. */
.newcataloge-italy-page .newcataloge-explore-pill.is-active {
    background: #466a9f;
    border-color: #466a9f;
    color: #ffffff;
}
.newcataloge-italy-page .newcataloge-explore-pill.is-active .newcataloge-explore-pill-count {
    background: rgba(255, 255, 255, 0.16);
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 640px) {
    .newcataloge-italy-page .newcataloge-explore {
        padding: 40px 0 32px;
    }
    .newcataloge-italy-page .newcataloge-explore-head {
        margin-bottom: 24px;
    }
    .newcataloge-italy-page .newcataloge-explore-title {
        font-size: 22px;
    }
}

/* ─────────────────────────────────────────────────────────────────
   Bookmark button on the company card. Compact (28×28) and pinned
   to the top-right corner so it whispers visually and never crowds
   the title row or the View profile CTA. Card itself gets
   position:relative as the anchor.
   ───────────────────────────────────────────────────────────────── */
.newcataloge-italy-page .newcataloge-card { position: relative; }

.newcataloge-italy-page .newcataloge-card-save {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 28px;
    height: 28px;
    z-index: 2;
    display: grid;
    place-items: center;
    background: #ffffff;
    border: 1px solid var(--nc-border);
    border-radius: 50%;
    color: var(--nc-text-faint);
    cursor: pointer;
    padding: 0;
    box-shadow: 0 1px 2px rgba(26, 37, 64, 0.04);
    transition: background .15s ease, color .15s ease,
                border-color .15s ease, transform .15s ease,
                box-shadow .15s ease;
}
.newcataloge-italy-page .newcataloge-card-save:hover {
    background: var(--nc-bg-section);
    color: var(--nc-navy);
    border-color: #466a9f;
    box-shadow: 0 3px 8px rgba(26, 37, 64, 0.1);
}
.newcataloge-italy-page .newcataloge-card-save:focus-visible {
    outline: 2px solid var(--nc-navy);
    outline-offset: 2px;
}
.newcataloge-italy-page .newcataloge-card-save svg {
    width: 14px;
    height: 14px;
    transition: fill .15s ease;
}
/* Saved state — solid navy + ivory bookmark; reads as "in your
   shortlist" without screaming the way a red heart does. Bookmark
   glyph matches the B2B-directory tone (Booking, Yelp). */
.newcataloge-italy-page .newcataloge-card-save.is-saved {
    color: #ffffff;
    background: #466a9f;
    border-color: #466a9f;
}
.newcataloge-italy-page .newcataloge-card-save.is-saved svg {
    fill: currentColor;
}
/* Pop on the click→save transition; scoped to :active so it only
   plays on user clicks, not on every page-load sync. translate to
   keep it anchored despite the absolute positioning. */
.newcataloge-italy-page .newcataloge-card-save:active {
    transform: scale(1.18);
}

/* Anchor View profile to the bottom-right of the card on desktop —
   the main stylesheet centres it vertically; we want it at the
   trailing corner (Booking/Yelp convention) so the upper area can
   breathe and the action lives where the eye lands last. */
@media (min-width: 641px) {
    .newcataloge-italy-page .newcataloge-card-action {
        align-self: end;
    }
}

/* Mobile — card title may butt up against the bookmark on narrow
   widths. Reserve a touch of right-padding on the title-line so
   long names don't slide under the icon. */
@media (max-width: 640px) {
    .newcataloge-italy-page .newcataloge-card-titleline {
        padding-right: 32px;
    }
    .newcataloge-italy-page .newcataloge-card-save {
        top: 8px;
        right: 8px;
        width: 26px;
        height: 26px;
    }
    .newcataloge-italy-page .newcataloge-card-save svg {
        width: 13px;
        height: 13px;
    }
}

/* ─────────────────────────────────────────────────────────────────
   Recently viewed strip — mini-cards rendered from localStorage at
   page-load. Hidden when empty (server uses [hidden]; JS toggles
   the same attribute as items come and go). Sits between the result
   list and the explore-footer.
   ───────────────────────────────────────────────────────────────── */
.newcataloge-italy-page .newcataloge-recent {
    background: #ffffff;
    border-top: 1px solid var(--nc-border);
    padding: 32px 0 12px;
    margin-top: 32px;
}
.newcataloge-italy-page .newcataloge-recent[hidden] { display: none; }

.newcataloge-italy-page .newcataloge-recent-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin: 0 0 14px;
    gap: 12px;
}
.newcataloge-italy-page .newcataloge-recent-title {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--nc-navy);
}
.newcataloge-italy-page .newcataloge-recent-clear {
    background: none;
    border: 0;
    padding: 4px 8px;
    font: inherit;
    font-size: 13px;
    color: var(--nc-text-muted);
    cursor: pointer;
    border-radius: 6px;
    transition: color .15s ease, background .15s ease;
}
.newcataloge-italy-page .newcataloge-recent-clear:hover {
    color: var(--nc-navy);
    background: var(--nc-bg-section);
}

/* Recents row — flex-wrap with grow, so the card count drives the
   layout density:
     1 card  → one card up to 360px (left-aligned, doesn't bloat)
     2 cards → each ~50% (capped at 360 so they don't get unwieldy)
     3 cards → each ~33%
     4 cards → each ~25%, fills the row exactly
     5+      → wrap to a second row (4+rest convention)
   On mobile the row stays nowrap with native horizontal scroll, since
   stacking 8 mini-cards vertically reads as a wall. */
.newcataloge-italy-page .newcataloge-recent-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    padding: 4px 0 8px;
}
@media (max-width: 768px) {
    .newcataloge-italy-page .newcataloge-recent-strip {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .newcataloge-italy-page .newcataloge-recent-strip::-webkit-scrollbar { display: none; }
}

/* ─────────────────────────────────────────────────────────────────
   Generic mini-card — used by Recently viewed and (later) the
   header saved-shortlist dropdown. Same item shape, same renderer,
   same styles. A two-column grid (avatar | body) with a tight
   information density: title + headline-category badge, city · since,
   then services + rating on the third line.
   ───────────────────────────────────────────────────────────────── */
.newcataloge-italy-page .newcataloge-mini-card {
    /* Grow to fill the row but stop at 360px so a row with one or
       two cards doesn't stretch them into oversized banners. */
    flex: 1 1 280px;
    min-width: 0;
    max-width: 360px;
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    column-gap: 14px;
    align-items: center;
    padding: 14px;
    background: #ffffff;
    border: 1px solid var(--nc-border);
    border-radius: 14px;
    color: var(--nc-navy);
    text-decoration: none;
    transition: border-color .15s ease, transform .15s ease,
                box-shadow .15s ease;
}
/* Mobile — fixed-width carousel cards (the parent flex switches to
   nowrap + scroll, so each card needs a fixed basis to avoid getting
   squashed). */
@media (max-width: 768px) {
    .newcataloge-italy-page .newcataloge-mini-card {
        flex: 0 0 280px;
        max-width: 280px;
    }
}
.newcataloge-italy-page .newcataloge-mini-card:hover {
    border-color: #466a9f;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(26, 37, 64, 0.1);
}

/* Mirror the catalog card avatar (.newcataloge-card-avatar): flat
   #466a9f plate, 8px radius, monogram in white. Keeping the strip
   tile larger (56px vs 44px in cards) — the strip has more room and
   a larger plate reads better at a glance. */
.newcataloge-italy-page .newcataloge-mini-card-avatar {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    background: #466a9f;
    border-radius: 8px;
    overflow: hidden;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: #ffffff;
}
/* Owner-uploaded logo present → white plate so transparent PNGs render
   correctly (same rule the catalog card uses). */
.newcataloge-italy-page .newcataloge-mini-card-avatar:has(img) {
    background: #ffffff;
    border: 1px solid var(--nc-border);
}
/* `is-monogram` is set by the JS only when there's no logo; with the
   base style above already being the navy plate, no monogram-specific
   override is needed. Add a `.is-monogram` rule here if the two states
   should diverge in future. */
.newcataloge-italy-page .newcataloge-mini-card-avatar img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 4px;
    box-sizing: border-box;
}

.newcataloge-italy-page .newcataloge-mini-card-body {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.newcataloge-italy-page .newcataloge-mini-card-titlerow {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}
.newcataloge-italy-page .newcataloge-mini-card-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--nc-navy);
    line-height: 1.25;
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
/* Headline-category pill (MICE Agency, Wedding Planner, …). Re-uses
   the existing mice pill colour token so the badge feels native to
   the page palette instead of a one-off. */
.newcataloge-italy-page .newcataloge-mini-card-badge {
    flex-shrink: 0;
    padding: 3px 8px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--nc-pill-mice-text);
    background: var(--nc-pill-mice-bg);
    border-radius: 999px;
    white-space: nowrap;
    /* Cap so a long category like "Production Services" doesn't
       crowd out the title. The title gets ellipsis already; the
       badge truncating stays cleaner with a fixed cap. */
    max-width: 110px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.newcataloge-italy-page .newcataloge-mini-card-meta {
    font-size: 12px;
    color: var(--nc-text-muted);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.newcataloge-italy-page .newcataloge-mini-card-sub {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    flex-wrap: wrap;
    margin-top: 2px;
}
.newcataloge-italy-page .newcataloge-mini-card-services {
    color: var(--nc-pill-service-text);
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0;
}
.newcataloge-italy-page .newcataloge-mini-card-rating {
    display: inline-flex;
    align-items: center;
    color: var(--nc-text-muted);
    font-weight: 500;
    flex-shrink: 0;
}
.newcataloge-italy-page .newcataloge-mini-card-star {
    color: var(--nc-gold);
    font-size: 13px;
    line-height: 1;
    margin-right: 2px;
}

@media (max-width: 640px) {
    .newcataloge-italy-page .newcataloge-recent {
        padding: 24px 0 8px;
        margin-top: 24px;
    }
    .newcataloge-italy-page .newcataloge-mini-card {
        /* width handled by the 768px flex rule above; just shrink
           internal density on very narrow screens. */
        padding: 12px;
        column-gap: 12px;
        grid-template-columns: 48px minmax(0, 1fr);
    }
    .newcataloge-italy-page .newcataloge-mini-card-avatar {
        width: 48px;
        height: 48px;
        font-size: 14px;
    }
}

/* ─────────────────────────────────────────────────────────────────
   Long-form SEO blocks — two alternating image+text rows between
   the recents strip and the explore-footer. Image and text share a
   2-column grid on desktop (50/50 with a generous gap); on mobile
   they stack with the image on top. The orientation modifier
   --image-first flips the columns on desktop without re-ordering
   the DOM (text comes first in source for SEO/reader logic).
   ───────────────────────────────────────────────────────────────── */
.newcataloge-italy-page .newcataloge-seo {
    background: #ffffff;
    border-top: 1px solid var(--nc-border);
    padding: 0px 0!important;
}

.newcataloge-italy-page .newcataloge-seo-block {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 32px 0;
    align-items: center;
}
/* Mobile — image always shows first, text below it. The DOM order
   stays "text first, image second" for SEO/screen-reader logic
   (heading → body → supporting visual), but grid `order` reverses
   the visual sequence on narrow viewports so the photo greets the
   reader instead of arriving after a wall of text. Desktop overrides
   below restore the natural columns. */
@media (max-width: 767px) {
    .newcataloge-italy-page .newcataloge-seo-image { order: 1; }
    .newcataloge-italy-page .newcataloge-seo-text  { order: 2; }
}
/* Divider between the two blocks — tied to the adjacent sibling
   selector so adding a third block in the future just works. */
.newcataloge-italy-page .newcataloge-seo-block + .newcataloge-seo-block {
    border-top: 1px solid var(--nc-border);
    margin-top: 16px;
}

@media (min-width: 768px) {
    .newcataloge-italy-page .newcataloge-seo-block {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 56px;
        padding: 48px 0;
    }
    /* image-first variant — flip columns on desktop. The text node is
       always first in markup (so source order favours the heading
       for SEO + screen readers), but visually the image sits left. */
    .newcataloge-italy-page .newcataloge-seo-block--image-first .newcataloge-seo-text {
        grid-column: 2;
        grid-row: 1;
    }
    .newcataloge-italy-page .newcataloge-seo-block--image-first .newcataloge-seo-image {
        grid-column: 1;
        grid-row: 1;
    }
}

/* Image wrap is the positioning context for the brass-frame
   pseudo-element behind the photo. We deliberately don't clip
   overflow here — the frame should bleed past the image edge to
   create depth. Border-radius + shadow live on the <img> itself. */
.newcataloge-italy-page .newcataloge-seo-image {
    position: relative;
}
.newcataloge-italy-page .newcataloge-seo-image img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(26, 37, 64, 0.12);
    position: relative;
    z-index: 1;
}

/* Brass-frame backdrop. Offsets diagonally so the photo looks like
   a polaroid resting on a coloured card. Direction flips for the
   image-first variant so the frame always sits between the photo
   and the empty side of the column (never over the text). */
.newcataloge-italy-page .newcataloge-seo-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--nc-gold-soft);
    border-radius: 16px;
    transform: translate(18px, 18px);
    z-index: 0;
    opacity: 0.85;
}
@media (min-width: 768px) {
    .newcataloge-italy-page .newcataloge-seo-block--image-first .newcataloge-seo-image::before {
        transform: translate(-18px, 18px);
    }
}
/* Mobile — keep the offset modest so it doesn't crowd the next
   section, and skip the flip (mobile renders both blocks the same
   way regardless of orientation). */
@media (max-width: 640px) {
    .newcataloge-italy-page .newcataloge-seo-image::before {
        transform: translate(10px, 10px);
        border-radius: 12px;
    }
    .newcataloge-italy-page .newcataloge-seo-image img {
        border-radius: 12px;
    }
}

.newcataloge-italy-page .newcataloge-seo-text {
    color: var(--nc-charcoal, #2C3545);
    font-size: 15px;
    line-height: 1.7;
}
.newcataloge-italy-page .newcataloge-seo-title {
    margin: 0 0 18px;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: var(--nc-navy);
}
.newcataloge-italy-page .newcataloge-seo-text p {
    margin: 0 0 16px;
    color: #2C3545;
}
.newcataloge-italy-page .newcataloge-seo-text p:last-child {
    margin-bottom: 0;
}

/* Eyebrow — small heading above the bullet list ("Italian DMCs
   cover:" / "Regional strengths:"). Slightly tighter spacing than
   a normal paragraph so it pairs visually with the list below. */
.newcataloge-italy-page .newcataloge-seo-eyebrow {
    margin: 22px 0 10px !important;
    font-weight: 700;
    color: var(--nc-navy);
    font-size: 14px;
}

.newcataloge-italy-page .newcataloge-seo-text ul {
    margin: 0 0 22px;
    padding: 0;
    list-style: none;
}
.newcataloge-italy-page .newcataloge-seo-text ul li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
    line-height: 1.55;
}
/* Brass dot bullet — picks up the gold accent used elsewhere in
   the page (hero polaroid tape, badge counters). */
.newcataloge-italy-page .newcataloge-seo-text ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--nc-gold);
}
.newcataloge-italy-page .newcataloge-seo-text ul li strong {
    color: var(--nc-navy);
}

/* Inline blog links — brass underline that thickens to a bg
   highlight on hover. Reads as a deliberate accent (not generic
   blue link) and stays in the page's gold palette. */
.newcataloge-italy-page .newcataloge-seo-text a {
    color: var(--nc-navy);
    font-weight: 600;
    text-decoration: none;
    box-shadow: inset 0 -2px 0 var(--nc-gold);
    transition: background .15s ease, box-shadow .15s ease,
                color .15s ease;
    padding: 0 1px;
}
.newcataloge-italy-page .newcataloge-seo-text a:hover {
    background: rgba(201, 162, 39, 0.18);
    box-shadow: inset 0 -2px 0 var(--nc-gold);
}
.newcataloge-italy-page .newcataloge-seo-text a:focus-visible {
    outline: 2px solid var(--nc-gold);
    outline-offset: 2px;
    border-radius: 2px;
}

@media (max-width: 640px) {
    .newcataloge-italy-page .newcataloge-seo {
        padding: 36px 0;
    }
    .newcataloge-italy-page .newcataloge-seo-block {
        gap: 20px;
        padding: 24px 0;
    }
    .newcataloge-italy-page .newcataloge-seo-block + .newcataloge-seo-block {
        margin-top: 8px;
    }
    .newcataloge-italy-page .newcataloge-seo-title {
        font-size: 22px;
    }
    .newcataloge-italy-page .newcataloge-seo-text {
        font-size: 14px;
    }
    .newcataloge-italy-page .newcataloge-seo-image {
        border-radius: 12px;
    }
}

/* ─────────────────────────────────────────────────────────────────
   FAQ accordion. Native <details>/<summary> for accessibility +
   zero-JS. Custom + icon rotates 45° → × on open. List sits in a
   bordered card, centred, max-width 820 so long answers stay
   readable on wide screens.
   ───────────────────────────────────────────────────────────────── */
.newcataloge-italy-page .newcataloge-faq {
    background: var(--nc-bg-section);
    border-top: 1px solid var(--nc-border);
    padding: 56px 0;
}

.newcataloge-italy-page .newcataloge-faq-head {
    text-align: center;
    margin: 0 0 36px;
}
.newcataloge-italy-page .newcataloge-faq-title {
    margin: 0 0 8px;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: var(--nc-navy);
}
.newcataloge-italy-page .newcataloge-faq-sub {
    margin: 0;
    color: var(--nc-text-muted);
    font-size: 14px;
}

.newcataloge-italy-page .newcataloge-faq-list {
    max-width: 820px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(26, 37, 64, 0.06);
    overflow: hidden;
}

.newcataloge-italy-page .newcataloge-faq-item {
    border-bottom: 1px solid var(--nc-border);
}
.newcataloge-italy-page .newcataloge-faq-item:last-child {
    border-bottom: 0;
}

.newcataloge-italy-page .newcataloge-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.4;
    color: var(--nc-navy);
    /* Hide both Safari + spec-compliant default markers — we render
       our own + icon on the right. */
    list-style: none;
    transition: background .15s ease;
}
.newcataloge-italy-page .newcataloge-faq-question::-webkit-details-marker {
    display: none;
}
.newcataloge-italy-page .newcataloge-faq-question::marker {
    content: '';
}
.newcataloge-italy-page .newcataloge-faq-question:hover {
    background: rgba(26, 37, 64, 0.03);
}
.newcataloge-italy-page .newcataloge-faq-q-text {
    flex: 1;
    min-width: 0;
}

.newcataloge-italy-page .newcataloge-faq-icon {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    background: var(--nc-bg-section);
    border-radius: 50%;
    color: var(--nc-navy);
    transition: transform .25s ease, background .25s ease, color .25s ease;
}
.newcataloge-italy-page .newcataloge-faq-icon svg {
    width: 14px;
    height: 14px;
}
/* Open state — + becomes × via 45° rotation, fill flips to navy. */
.newcataloge-italy-page .newcataloge-faq-item[open] .newcataloge-faq-icon {
    transform: rotate(45deg);
    background: #466a9f;
    color: #ffffff;
}

.newcataloge-italy-page .newcataloge-faq-answer {
    padding: 0 24px 22px;
    color: #2C3545;
    font-size: 14px;
    line-height: 1.7;
}
.newcataloge-italy-page .newcataloge-faq-answer p {
    margin: 0 0 12px;
}
.newcataloge-italy-page .newcataloge-faq-answer p:last-child {
    margin: 0;
}
.newcataloge-italy-page .newcataloge-faq-answer a {
    color: var(--nc-navy);
    font-weight: 600;
    text-decoration: none;
    box-shadow: inset 0 -2px 0 var(--nc-gold);
    transition: background .15s ease;
}
.newcataloge-italy-page .newcataloge-faq-answer a:hover {
    background: rgba(201, 162, 39, 0.18);
}

@media (max-width: 640px) {
    .newcataloge-italy-page .newcataloge-faq {
        padding: 36px 0;
    }
    .newcataloge-italy-page .newcataloge-faq-title {
        font-size: 22px;
    }
    .newcataloge-italy-page .newcataloge-faq-sub {
        font-size: 13px;
    }
    .newcataloge-italy-page .newcataloge-faq-list {
        border-radius: 12px;
    }
    .newcataloge-italy-page .newcataloge-faq-question {
        padding: 16px 18px;
        font-size: 15px;
    }
    .newcataloge-italy-page .newcataloge-faq-answer {
        padding: 0 18px 16px;
        font-size: 13px;
    }
    .newcataloge-italy-page .newcataloge-faq-icon {
        width: 26px;
        height: 26px;
    }
    .newcataloge-italy-page .newcataloge-faq-icon svg {
        width: 12px;
        height: 12px;
    }
}
