/* =========================================================
   CARTEGRADATE — MAIN CSS
========================================================= */

:root {
    --cg-black: #090a09;
    --cg-dark: #151614;
    --cg-ivory: #f7f5f0;
    --cg-white: #ffffff;
    --cg-gold: #c99a3d;
    --cg-text: #151515;
    --cg-muted: #686761;
    --cg-border: #e5e0d6;
}


/* =========================================================
   BASE
========================================================= */

* {
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;

    font-family: Arial, sans-serif;

    background: var(--cg-ivory);

    color: var(--cg-text);
}

img {
    max-width: 100%;
}

button,
input,
select {
    font: inherit;
}

.container {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
}


/* =========================================================
   ACCESSIBILITY
========================================================= */

.screen-reader-text {
    position: absolute !important;

    width: 1px;
    height: 1px;

    padding: 0;
    margin: -1px;

    overflow: hidden;

    clip: rect(0, 0, 0, 0);
    white-space: nowrap;

    border: 0;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    padding: 24px 0;

    background: var(--cg-black);

    color: #ffffff;
}

.site-header .container {
    display: flex;

    align-items: center;
    justify-content: space-between;
}

/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    margin-top: 80px;

    padding: 40px 0;

    background: var(--cg-black);

    color: #ffffff;
}


/* =========================================================
   SINGLE CARTA
========================================================= */

.single-card {
    padding: 64px 0 80px;
}

.single-card__layout {
    display: grid;

    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(360px, 0.85fr);

    gap: 64px;

    align-items: start;
}


/* =========================================================
   SINGLE — IMMAGINI
========================================================= */

.single-card__images {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 18px;
}

.single-card__image-wrapper {
    min-width: 0;
}

.single-card__image-label {
    display: none;
}

.single-card__image {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 100%;
    height: 510px;

    padding: 10px;

    background: var(--cg-black);

    border: 2px solid var(--cg-gold);
    border-radius: 12px;

    box-shadow:
        0 6px 18px rgba(0, 0, 0, 0.08),
        inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.single-card__image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;

    border-radius: 6px;
}


/* =========================================================
   SINGLE — INFORMAZIONI
========================================================= */

.single-card__info {
    padding-top: 4px;
}

.single-card__category {
    margin-bottom: 12px;

    color: var(--cg-gold);

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.single-card__title {
    max-width: 600px;

    margin: 0 0 10px;

    font-size: clamp(36px, 4vw, 52px);
    font-weight: 700;

    line-height: 1.05;
}

.single-card__set {
    position: relative;

    margin: 0 0 26px;

    padding-left: 14px;

    color: #4f4d48;

    font-size: 17px;
    font-weight: 600;

    line-height: 1.4;
}

.single-card__set::before {
    content: "";

    position: absolute;

    left: 0;
    top: 50%;

    width: 4px;
    height: 18px;

    background: var(--cg-gold);

    border-radius: 2px;

    transform: translateY(-50%);
}


/* =========================================================
   SINGLE — BADGES
========================================================= */

.single-card__badges {
    display: flex;

    flex-wrap: wrap;

    gap: 8px;

    margin-bottom: 32px;
}

.single-card__badge {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 34px;

    padding: 7px 11px;

    background: #f0ede6;

    border: 1px solid #e2ddd2;
    border-radius: 5px;

    color: #45433e;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.single-card__badge--grade {
    background: var(--cg-black);

    border-color: var(--cg-black);

    color: #ffffff;
}


/* =========================================================
   SINGLE — PREZZO
========================================================= */

.single-card__price {
    margin: 0 0 32px;

    padding-top: 28px;

    border-top: 1px solid var(--cg-border);

    font-size: 38px;
    font-weight: 800;

    line-height: 1;
}


/* =========================================================
   SINGLE — SELLER
========================================================= */

.single-card__seller {
    margin-bottom: 26px;
}

.single-card__seller span {
    display: block;

    margin-bottom: 6px;

    color: var(--cg-muted);

    font-size: 13px;
}

.single-card__seller a {
    color: var(--cg-text);

    font-size: 17px;
    font-weight: 700;

    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.single-card__seller a:hover {
    color: #9a7025;
}


/* =========================================================
   SINGLE — CTA
========================================================= */

.single-card__buy {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 54px;

    padding: 0 30px;

    background: var(--cg-gold);

    border-radius: 4px;

    color: var(--cg-black);

    font-size: 16px;
    font-weight: 700;

    text-decoration: none;

    transition:
        transform 0.15s ease,
        background 0.15s ease;
}

.single-card__buy:hover {
    transform: translateY(-1px);

    background: #d4a646;
}


/* =========================================================
   CATALOGO
========================================================= */

.catalogo {
    padding: 64px 0 96px;
}


/* =========================================================
   CATALOGO — HEADER
========================================================= */

.catalogo__header {
    margin-bottom: 38px;
}

.catalogo__eyebrow {
    display: block;

    margin-bottom: 12px;

    color: var(--cg-gold);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 0.16em;
}

.catalogo__header h1 {
    margin: 0 0 12px;

    font-size: clamp(36px, 5vw, 60px);
    font-weight: 700;

    line-height: 1;
}

.catalogo__header p {
    max-width: 620px;

    margin: 0;

    color: var(--cg-muted);

    font-size: 17px;

    line-height: 1.6;
}


/* =========================================================
   CATALOGO — TOOLBAR
========================================================= */

.catalogo__toolbar {
    display: grid;

    grid-template-columns:
        minmax(260px, 1fr)
        auto
        auto;

    gap: 12px;

    align-items: end;

    margin-bottom: 32px;

    padding: 18px;

    background: var(--cg-white);

    border: 1px solid var(--cg-border);
    border-radius: 12px;
}


/* Search */

.catalogo__search {
    min-width: 0;
}

.catalogo__search input {
    width: 100%;
    height: 46px;

    padding: 0 15px;

    background: #fbfaf7;

    border: 1px solid #d8d3c9;
    border-radius: 6px;

    color: var(--cg-text);

    outline: none;

    transition:
        border-color 0.15s ease,
        box-shadow 0.15s ease;
}

.catalogo__search input::placeholder {
    color: #918e87;
}

.catalogo__search input:focus {
    border-color: var(--cg-gold);

    box-shadow:
        0 0 0 3px rgba(201, 154, 61, 0.13);
}


/* Sort */

.catalogo__sort {
    display: flex;

    align-items: center;

    gap: 10px;
}

.catalogo__sort label {
    color: var(--cg-muted);

    font-size: 13px;
    font-weight: 600;
}

.catalogo__sort select {
    height: 46px;

    min-width: 190px;

    padding: 0 38px 0 13px;

    background: #fbfaf7;

    border: 1px solid #d8d3c9;
    border-radius: 6px;

    color: var(--cg-text);

    cursor: pointer;

    outline: none;
}

.catalogo__sort select:focus {
    border-color: var(--cg-gold);

    box-shadow:
        0 0 0 3px rgba(201, 154, 61, 0.13);
}


/* Search button */

.catalogo__search-button {
    height: 46px;

    padding: 0 22px;

    background: var(--cg-black);

    border: 1px solid var(--cg-black);
    border-radius: 6px;

    color: #ffffff;

    font-size: 14px;
    font-weight: 700;

    cursor: pointer;

    transition:
        background 0.15s ease,
        border-color 0.15s ease,
        color 0.15s ease;
}

.catalogo__search-button:hover {
    background: var(--cg-gold);

    border-color: var(--cg-gold);

    color: var(--cg-black);
}


/* =========================================================
   CATALOGO — LAYOUT
========================================================= */

.catalogo__layout {
    display: grid;

    grid-template-columns:
        250px
        minmax(0, 1fr);

    gap: 34px;

    align-items: start;
}


/* =========================================================
   CATALOGO — SIDEBAR FILTRI
========================================================= */

.catalogo__filters {
    position: sticky;

    top: 24px;

    padding: 22px;

    background: var(--cg-white);

    border: 1px solid var(--cg-border);
    border-radius: 12px;

    box-shadow:
        0 3px 14px rgba(0, 0, 0, 0.035);
}

.catalogo__filters-heading {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 16px;

    margin-bottom: 24px;

    padding-bottom: 15px;

    border-bottom: 1px solid var(--cg-border);
}

.catalogo__filters-heading h2 {
    margin: 0;

    font-size: 20px;
    font-weight: 700;

    line-height: 1;
}

.catalogo__filters-heading a {
    color: var(--cg-muted);

    font-size: 12px;
    font-weight: 600;

    text-decoration: underline;
    text-underline-offset: 3px;
}

.catalogo__filters-heading a:hover {
    color: var(--cg-text);
}


/* =========================================================
   FILTRO SINGOLO
========================================================= */

.catalogo__filter {
    margin-bottom: 20px;
}

.catalogo__filter > label {
    display: block;

    margin-bottom: 7px;

    color: #3c3b37;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.catalogo__filter select,
.catalogo__filter input {
    width: 100%;
    height: 42px;

    padding: 0 11px;

    background: #fbfaf7;

    border: 1px solid #ddd8cd;
    border-radius: 5px;

    color: var(--cg-text);

    font-size: 14px;

    outline: none;

    transition:
        border-color 0.15s ease,
        box-shadow 0.15s ease;
}

.catalogo__filter select {
    cursor: pointer;
}

.catalogo__filter select:focus,
.catalogo__filter input:focus {
    border-color: var(--cg-gold);

    box-shadow:
        0 0 0 3px rgba(201, 154, 61, 0.11);
}


/* =========================================================
   FILTRO ANNO
========================================================= */

.catalogo__year-range {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 8px;
}

.catalogo__year-range > div {
    min-width: 0;
}

.catalogo__sub-label {
    display: block;

    margin-bottom: 5px;

    color: var(--cg-muted);

    font-size: 11px;
    font-weight: 600;
}

.catalogo__year-range input {
    padding: 0 8px;

    font-size: 13px;
}


/* Rimuove frecce numero dove possibile */

.catalogo__year-range input::-webkit-outer-spin-button,
.catalogo__year-range input::-webkit-inner-spin-button {
    margin: 0;

    -webkit-appearance: none;
}

.catalogo__year-range input[type="number"] {
    -moz-appearance: textfield;
}


/* =========================================================
   FILTRI — CTA
========================================================= */

.catalogo__filter-button {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 100%;
    min-height: 44px;

    margin-top: 6px;

    padding: 0 14px;

    background: var(--cg-gold);

    border: 1px solid var(--cg-gold);
    border-radius: 5px;

    color: var(--cg-black);

    font-size: 14px;
    font-weight: 700;

    cursor: pointer;

    transition:
        background 0.15s ease,
        border-color 0.15s ease;
}

.catalogo__filter-button:hover {
    background: #d4a646;

    border-color: #d4a646;
}


/* =========================================================
   CATALOGO — RISULTATI
========================================================= */

.catalogo__results {
    min-width: 0;
}

.catalogo__results-header {
    display: flex;

    align-items: center;
    justify-content: space-between;

    min-height: 28px;

    margin-bottom: 16px;
}

.catalogo__results-header span {
    color: var(--cg-muted);

    font-size: 13px;
    font-weight: 600;
}


/* =========================================================
   GRIGLIA CARTE
========================================================= */

.catalogo__grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 24px;

    align-items: stretch;
}


/* =========================================================
   CARD CARTA
========================================================= */

.card-carta {
    display: flex;
    flex-direction: column;

    min-width: 0;

    overflow: hidden;

    background: var(--cg-white);

    border: 1px solid var(--cg-gold);
    border-radius: 14px;

    box-shadow:
        0 5px 18px rgba(0, 0, 0, 0.07);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.card-carta:hover {
    transform: translateY(-3px);

    box-shadow:
        0 10px 28px rgba(0, 0, 0, 0.10);
}


/* =========================================================
   CARD — IMMAGINE
========================================================= */

.card-carta__image {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 100%;
    height: 320px;

    padding: 12px;

    background: var(--cg-black);

    border-bottom: 1px solid rgba(201, 154, 61, 0.35);

    text-decoration: none;
}

.card-carta__image img {
    display: block;

    width: auto !important;
    height: auto !important;

    max-width: 100% !important;
    max-height: 296px !important;

    object-fit: contain;

    transition:
        transform 0.2s ease;
}

.card-carta:hover .card-carta__image img {
    transform: scale(1.025);
}

.card-carta__placeholder {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 100%;
    height: 100%;

    color: var(--cg-muted);

    font-size: 14px;

    text-align: center;
}


/* =========================================================
   CARD — CONTENUTO
========================================================= */

.card-carta__content {
    display: flex;

    flex: 1;
    flex-direction: column;

    padding: 20px 20px 22px;
}


/* =========================================================
   CARD — BADGES
========================================================= */

.card-carta__meta {
    display: flex;

    flex-wrap: wrap;

    gap: 7px;

    margin-bottom: 16px;
}

.card-carta__meta span {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 29px;

    padding: 6px 9px;

    background: #f0ede6;

    border: 1px solid #e6e0d5;
    border-radius: 5px;

    color: #45433e;

    font-size: 12px;
    font-weight: 700;

    line-height: 1;

    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.card-carta__meta .card-carta__grade {
    background: var(--cg-black);

    border-color: var(--cg-black);

    color: #ffffff;
}


/* =========================================================
   CARD — TITOLO
========================================================= */

.card-carta__title {
    margin: 0 0 8px;

    font-size: 21px;
    font-weight: 700;

    line-height: 1.25;
}

.card-carta__title a {
    color: var(--cg-text);

    text-decoration: none;
}

.card-carta__title a:hover {
    color: #9a7025;
}


/* =========================================================
   CARD — SET
========================================================= */

.card-carta__set {
    position: relative;

    margin: 0 0 16px;

    padding-left: 10px;

    color: #55534e;

    font-size: 14px;
    font-weight: 600;

    line-height: 1.35;
}

.card-carta__set::before {
    content: "";

    position: absolute;

    left: 0;
    top: 50%;

    width: 3px;
    height: 14px;

    background: var(--cg-gold);

    border-radius: 2px;

    transform: translateY(-50%);
}


/* =========================================================
   CARD — SELLER
========================================================= */

.card-carta__seller {
    margin-bottom: 20px;

    font-size: 14px;

    line-height: 1.4;
}

.card-carta__seller span {
    margin-right: 5px;

    color: var(--cg-muted);

    font-size: 12px;
}

.card-carta__seller a {
    color: var(--cg-muted);

    font-weight: 600;

    text-decoration: none;
}

.card-carta__seller a:hover {
    color: var(--cg-text);

    text-decoration: underline;
}


/* =========================================================
   CARD — PREZZO
========================================================= */

.card-carta__price {
    margin-top: auto;

    padding-top: 18px;

    border-top: 1px solid var(--cg-border);

    color: var(--cg-text);

    font-size: 25px;
    font-weight: 800;

    line-height: 1;
}


/* =========================================================
   CARD — CTA
========================================================= */

.card-carta__buy {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 100%;
    min-height: 44px;

    margin-top: 18px;

    padding: 0 18px;

    background: var(--cg-black);

    border: 1px solid var(--cg-black);
    border-radius: 4px;

    color: #ffffff;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;

    transition:
        background 0.15s ease,
        color 0.15s ease,
        border-color 0.15s ease;
}

.card-carta__buy:hover {
    background: var(--cg-gold);

    border-color: var(--cg-gold);

    color: var(--cg-black);
}


/* =========================================================
   NESSUN RISULTATO
========================================================= */

.catalogo__empty {
    padding: 48px 30px;

    background: var(--cg-white);

    border: 1px solid var(--cg-border);
    border-radius: 12px;

    text-align: center;
}

.catalogo__empty h2 {
    margin: 0 0 10px;

    font-size: 25px;
}

.catalogo__empty p {
    margin: 0;

    color: var(--cg-muted);

    font-size: 15px;
}


/* =========================================================
   PAGINAZIONE
========================================================= */

.catalogo__pagination {
    margin-top: 48px;
}

.catalogo__pagination .nav-links {
    display: flex;

    flex-wrap: wrap;

    gap: 8px;
}

.catalogo__pagination .page-numbers {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-width: 38px;
    min-height: 38px;

    padding: 7px 11px;

    background: var(--cg-white);

    border: 1px solid var(--cg-border);
    border-radius: 5px;

    color: var(--cg-text);

    font-size: 13px;
    font-weight: 600;

    text-decoration: none;
}

.catalogo__pagination .page-numbers:hover {
    border-color: var(--cg-gold);
}

.catalogo__pagination .current {
    background: var(--cg-black);

    border-color: var(--cg-black);

    color: #ffffff;
}


/* =========================================================
   RESPONSIVE — DESKTOP MEDIO
========================================================= */

@media (max-width: 1120px) {

    .catalogo__layout {
        grid-template-columns:
            230px
            minmax(0, 1fr);

        gap: 26px;
    }

    .catalogo__grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 900px) {

    .single-card__layout {
        grid-template-columns: 1fr;

        gap: 44px;
    }

    .catalogo__toolbar {
        grid-template-columns:
            minmax(0, 1fr)
            auto;
    }

    .catalogo__sort {
        grid-column: 1 / 2;
        grid-row: 2;
    }

    .catalogo__search-button {
        grid-column: 2 / 3;
        grid-row: 2;
    }

    .catalogo__layout {
        grid-template-columns: 1fr;

        gap: 26px;
    }

    .catalogo__filters {
        position: static;
    }

    .catalogo__filters form {
        display: grid;

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 0 18px;
    }

    .catalogo__filters-heading {
        grid-column: 1 / -1;
    }

    .catalogo__filter-button {
        align-self: end;

        margin-bottom: 20px;
    }

}


/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 620px) {

    .container {
        width: min(
            100% - 28px,
            1200px
        );
    }


    /* Catalogo */

    .catalogo {
        padding: 40px 0 64px;
    }

    .catalogo__header {
        margin-bottom: 28px;
    }

    .catalogo__header p {
        font-size: 15px;
    }


    /* Toolbar */

    .catalogo__toolbar {
        display: flex;

        flex-direction: column;

        align-items: stretch;

        padding: 14px;
    }

    .catalogo__sort {
        display: block;
    }

    .catalogo__sort label {
        display: block;

        margin-bottom: 6px;
    }

    .catalogo__sort select {
        width: 100%;
        min-width: 0;
    }

    .catalogo__search-button {
        width: 100%;
    }


    /* Filtri */

    .catalogo__filters {
        padding: 18px;
    }

    .catalogo__filters form {
        display: block;
    }

    .catalogo__filter {
        margin-bottom: 17px;
    }

    .catalogo__filter-button {
        margin-bottom: 0;
    }


    /* Grid */

    .catalogo__grid {
        grid-template-columns: 1fr;

        gap: 24px;
    }


    /* Card */

    .card-carta__image {
        height: 350px;

        padding: 12px;
    }

    .card-carta__image img {
        max-height: 326px !important;
    }


    /* Single */

    .single-card {
        padding: 40px 0 64px;
    }

    .single-card__images {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 10px;
    }

    .single-card__image {
        height: 300px;

        padding: 6px;

        border-width: 1px;
        border-radius: 8px;
    }

    .single-card__image img {
        width: 100%;
        height: 100%;

        object-fit: contain;
    }

    .single-card__title {
        font-size: 36px;
    }

    .single-card__set {
        font-size: 15px;
    }

    .single-card__price {
        font-size: 34px;
    }

    .single-card__buy {
        width: 100%;
    }

}
/* =========================================================
   MOBILE FILTER DRAWER
========================================================= */


/* Nascosti normalmente */

.catalogo__filters-mobile-header {
    display: none;
}

.catalogo__filters-overlay {
    display: none;
}


/* Pulsanti disponibili solo da mobile */

.catalogo__filters-open,
.catalogo__reset-button {
    display: none;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 620px) {


    /* =====================================================
       TOOLBAR MOBILE
    ====================================================== */

    .catalogo__toolbar {
        display: flex;

        flex-direction: column;

        gap: 12px;

        padding: 14px;
    }


    /* -----------------------------------------------------
       1. RICERCA
    ------------------------------------------------------ */

    .catalogo__search {
        order: 1;

        width: 100%;
    }

    .catalogo__search input {
        width: 100%;
        height: 46px;
    }


    /* -----------------------------------------------------
       2. CERCA / FILTRI / RESET
    ------------------------------------------------------ */

    .catalogo__toolbar-actions {
        order: 2;

        display: grid;

        grid-template-columns:
            repeat(3, minmax(0, 1fr));

        gap: 8px;

        width: 100%;
    }


    .catalogo__search-button,
    .catalogo__filters-open,
    .catalogo__reset-button {
        display: flex;

        align-items: center;
        justify-content: center;

        width: 100%;
        height: 44px;

        min-width: 0;

        margin: 0;
        padding: 0 6px;

        border-radius: 5px;

        font-size: 13px;
        font-weight: 700;

        line-height: 1;

        text-align: center;
        text-decoration: none;
    }


    /*
     * IMPORTANTE:
     * annulla le vecchie regole del breakpoint tablet
     * che spostavano il pulsante Cerca.
     */

    .catalogo__search-button {
        grid-column: auto;
        grid-row: auto;

        background: var(--cg-black);

        border: 1px solid var(--cg-black);

        color: #ffffff;

        cursor: pointer;
    }


    .catalogo__filters-open {
        grid-column: auto;
        grid-row: auto;

        gap: 6px;

        background: var(--cg-gold);

        border: 1px solid var(--cg-gold);

        color: var(--cg-black);

        cursor: pointer;
    }


    .catalogo__reset-button {
        grid-column: auto;
        grid-row: auto;

        background: transparent;

        border: 1px solid #d8d3c9;

        color: var(--cg-muted);
    }


    /* -----------------------------------------------------
       3. ORDINAMENTO
    ------------------------------------------------------ */

    .catalogo__sort {
        order: 3;

        display: grid;

        grid-template-columns:
            auto
            minmax(0, 1fr);

        align-items: center;

        gap: 12px;

        width: 100%;

        margin: 0;
    }


    .catalogo__sort label {
        margin: 0;

        color: var(--cg-muted);

        font-size: 12px;
        font-weight: 700;

        text-transform: uppercase;
    }


    .catalogo__sort select {
        width: 100%;
        min-width: 0;
        height: 42px;

        margin: 0;
    }


    /* =====================================================
       SIDEBAR → DRAWER
    ====================================================== */

    .catalogo__filters {
        position: fixed;

        z-index: 10001;

        top: 0;
        left: 0;
        bottom: 0;

        width: min(86vw, 360px);
        height: 100dvh;

        padding: 0;

        overflow-y: auto;

        background: var(--cg-white);

        border: 0;
        border-radius: 0;

        box-shadow:
            12px 0 40px rgba(0, 0, 0, 0.18);

        transform: translateX(-105%);

        transition:
            transform 0.25s ease;
    }


    /* Drawer aperto */

    body.catalogo-filters-open .catalogo__filters {
        transform: translateX(0);
    }


    /* =====================================================
       HEADER DRAWER
    ====================================================== */

    .catalogo__filters-mobile-header {
        position: sticky;

        z-index: 2;

        top: 0;

        display: flex;

        align-items: center;
        justify-content: space-between;

        height: 64px;

        padding: 0 20px;

        background: var(--cg-black);

        color: #ffffff;
    }


    .catalogo__filters-mobile-header > span {
        font-size: 18px;
        font-weight: 700;
    }


    .catalogo__filters-close {
        display: flex;

        align-items: center;
        justify-content: center;

        width: 38px;
        height: 38px;

        padding: 0;

        background: transparent;

        border: 0;

        color: #ffffff;

        font-size: 30px;
        font-weight: 300;

        line-height: 1;

        cursor: pointer;
    }


    /* =====================================================
       FORM DENTRO DRAWER
    ====================================================== */

    .catalogo__filters form {
        display: block;

        padding: 22px 20px 28px;
    }


    /*
     * Titolo e Azzera originali non servono:
     * abbiamo Filtri nell'header e Reset nella toolbar.
     */

    .catalogo__filters-heading {
        display: none;
    }


    /* =====================================================
       OVERLAY
    ====================================================== */

    .catalogo__filters-overlay {
        position: fixed;

        z-index: 10000;

        inset: 0;

        display: block;

        background: rgba(9, 10, 9, 0.58);

        opacity: 0;
        visibility: hidden;

        transition:
            opacity 0.25s ease,
            visibility 0.25s ease;
    }


    body.catalogo-filters-open
    .catalogo__filters-overlay {
        opacity: 1;
        visibility: visible;
    }


    /* Blocca lo scroll della pagina */

    body.catalogo-filters-open {
        overflow: hidden;
    }

}

/* =========================================================
   FILTRI ATTIVI
========================================================= */

.catalogo__active-filters {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 18px;

    margin-bottom: 18px;
}


.catalogo__active-filters-list {
    display: flex;

    flex-wrap: wrap;

    gap: 8px;
}


.catalogo__filter-chip {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    min-height: 32px;

    padding: 5px 9px 5px 11px;

    background: var(--cg-black);

    border: 1px solid var(--cg-black);
    border-radius: 999px;

    color: #ffffff;

    font-size: 12px;
    font-weight: 600;

    line-height: 1;

    text-decoration: none;

    transition:
        background 0.15s ease,
        border-color 0.15s ease,
        color 0.15s ease;
}


.catalogo__filter-chip:hover {
    background: var(--cg-gold);

    border-color: var(--cg-gold);

    color: var(--cg-black);
}


.catalogo__filter-chip-remove {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 16px;
    height: 16px;

    font-size: 16px;
    font-weight: 400;

    line-height: 1;
}


.catalogo__active-filters-reset {
    flex-shrink: 0;

    color: var(--cg-muted);

    font-size: 12px;
    font-weight: 600;

    text-decoration: underline;
    text-underline-offset: 3px;
}


.catalogo__active-filters-reset:hover {
    color: var(--cg-text);
}


@media (max-width: 620px) {

    .catalogo__active-filters {
        display: block;

        margin-bottom: 18px;
    }

    .catalogo__active-filters-list {
        margin-bottom: 10px;
    }

    .catalogo__filter-chip {
        min-height: 30px;

        font-size: 11px;
    }

    .catalogo__active-filters-reset {
        display: inline-block;
    }

}

/* =========================================================
   SITE HEADER
   ========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    background: rgba(9, 10, 9, 0.98);
    border-bottom: 1px solid rgba(201, 154, 61, 0.22);
    transition:
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}

.site-header.is-scrolled {
    border-bottom-color: rgba(201, 154, 61, 0.38);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.22);
}

.site-header__inner {
    min-height: 88px;

    display: flex;
    align-items: center;

    gap: 38px;

    transition: min-height 0.2s ease;
}

.site-header.is-scrolled .site-header__inner {
    min-height: 72px;
}


/* BRAND */

.site-brand {
    display: inline-flex;
    align-items: center;

    flex-shrink: 0;

    text-decoration: none;
}

/* LOGO HEADER DESKTOP */

.site-brand__logo {
    display: block;
    width: 220px;
    height: auto;
    max-width: 100%;
}


/* NAVIGATION */

.site-navigation {
    margin-left: auto;
}

.site-navigation__menu {
    display: flex;
    align-items: center;

    gap: 28px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.site-navigation__menu a {
    position: relative;

    display: block;

    color: #F7F5F0;

    font-size: 12px;
    font-weight: 600;

    letter-spacing: 0.11em;

    text-decoration: none;
    text-transform: uppercase;

    transition: color 0.18s ease;
}

.site-navigation__menu a::after {
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;

    height: 1px;

    background: #C99A3D;

    content: "";

    opacity: 0;

    transform: scaleX(0);

    transition:
        opacity 0.18s ease,
        transform 0.18s ease;
}

.site-navigation__menu a:hover,
.site-navigation__menu a:focus-visible {
    color: #C99A3D;
}

.site-navigation__menu a:hover::after,
.site-navigation__menu a:focus-visible::after {
    opacity: 1;
    transform: scaleX(1);
}


/* HEADER ACTIONS */

.site-header__actions {
    display: flex;
    align-items: center;

    gap: 18px;

    flex-shrink: 0;
}

.site-header__search-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    padding: 0;

    color: #C99A3D;

    background: transparent;
    border: 0;

    cursor: pointer;
}

.site-header__search-toggle svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
}

.site-header__seller-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 42px;

    padding: 0 20px;

    color: #090A09;

    background: #C99A3D;
    border: 1px solid #C99A3D;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.1em;

    text-decoration: none;
    text-transform: uppercase;

    transition:
        color 0.18s ease,
        background 0.18s ease;
}

.site-header__seller-cta:hover,
.site-header__seller-cta:focus-visible {
    color: #C99A3D;
    background: transparent;
}


/* SEARCH PANEL */

.site-header-search {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;

    visibility: hidden;

    padding: 0;

    background: #151614;
    border-bottom: 1px solid rgba(201, 154, 61, 0.3);

    opacity: 0;

    transform: translateY(-8px);

    pointer-events: none;

    transition:
        opacity 0.18s ease,
        transform 0.18s ease,
        visibility 0.18s ease;
}

.site-header-search.is-open {
    visibility: visible;

    opacity: 1;

    transform: translateY(0);

    pointer-events: auto;
}

.site-header-search__form {
    display: grid;
    grid-template-columns: 1fr auto;

    gap: 12px;

    padding: 18px 0;
}

.site-header-search__form input {
    width: 100%;
    height: 48px;

    padding: 0 16px;

    color: #F7F5F0;

    background: #090A09;
    border: 1px solid rgba(201, 154, 61, 0.35);

    outline: 0;
}

.site-header-search__form input:focus {
    border-color: #C99A3D;
}

.site-header-search__form button {
    min-width: 110px;

    padding: 0 22px;

    color: #090A09;

    background: #C99A3D;
    border: 1px solid #C99A3D;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 0.08em;

    text-transform: uppercase;

    cursor: pointer;
}


/* MOBILE HEADER */

.site-header__menu-toggle {
    display: none;

    width: 38px;

    padding: 7px 4px;

    background: transparent;
    border: 0;

    cursor: pointer;
}

.site-header__menu-toggle span {
    display: block;

    width: 100%;
    height: 1px;

    margin: 7px 0;

    background: #C99A3D;
}

.site-mobile-menu,
.site-mobile-overlay {
    display: none;
}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    color: #F7F5F0;
    background: #090A09;

    border-top: 1px solid rgba(201, 154, 61, 0.35);
}


.site-footer__main {
    padding: 72px 0 68px;
}


.site-footer__grid {
    display: grid;

    grid-template-columns:
        minmax(300px, 1.2fr)
        minmax(180px, 0.7fr)
        minmax(300px, 1fr);

    gap: 90px;

    align-items: start;
}


/* BRAND */

.site-footer__brand {
    display: flex;

    align-items: flex-start;
}


.site-footer__logo {
    display: inline-block;

    text-decoration: none;
}


.site-footer__logo img {
    display: block;

    width: auto;
    max-width:220px;

    object-fit: contain;
    object-position: left top;
}


/* NAVIGATION */

.site-footer__navigation h2 {
    margin: 5px 0 24px;

    color: #C99A3D;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.16em;

    text-transform: uppercase;
}


.site-footer__navigation ul {
    margin: 0;
    padding: 0;

    list-style: none;
}


.site-footer__navigation li {
    margin: 0;
}


.site-footer__navigation li + li {
    margin-top: 14px;
}


.site-footer__navigation a {
    color: rgba(247, 245, 240, 0.72);

    font-size: 14px;
    line-height: 1.4;

    text-decoration: none;

    transition: color 0.18s ease;
}


.site-footer__navigation a:hover,
.site-footer__navigation a:focus-visible {
    color: #C99A3D;
}


/* CLAIM */

.site-footer__claim {
    display: flex;

    justify-content: flex-end;

    padding-top: 4px;
}


.site-footer__claim p {
    max-width: 360px;

    margin: 0;

    color: #F7F5F0;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(26px, 2.1vw, 34px);

    font-weight: 400;

    line-height: 1.28;

    text-align: left;
}


/* BOTTOM */

.site-footer__bottom {
    border-top: 1px solid rgba(247, 245, 240, 0.10);
}


.site-footer__bottom-inner {
    min-height: 70px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}


.site-footer__bottom p {
    margin: 0;

    color: rgba(247, 245, 240, 0.45);

    font-size: 12px;
}


.site-footer__legal {
    display: flex;
    align-items: center;

    gap: 24px;
}


.site-footer__legal a {
    color: rgba(247, 245, 240, 0.45);

    font-size: 12px;

    text-decoration: none;

    transition: color 0.18s ease;
}


.site-footer__legal a:hover,
.site-footer__legal a:focus-visible {
    color: #C99A3D;
}


/* =========================================================
   FOOTER RESPONSIVE
   ========================================================= */


/* TABLET */

@media (max-width: 1000px) {

    .site-footer__grid {
        grid-template-columns:
            minmax(240px, 1fr)
            minmax(170px, 0.7fr)
            minmax(260px, 1fr);

        gap: 50px;
    }

    .site-footer__logo img {
        max-width: 200px;
    }

    .site-footer__claim p {
        font-size: 27px;
    }

}


/* MOBILE */

@media (max-width: 760px) {

    .site-footer__main {
        padding: 52px 0 44px;
    }


    /* Una sola colonna */

    .site-footer__grid {
        grid-template-columns: 1fr;

        gap: 42px;

        text-align: center;
    }


    /* LOGO */

    .site-footer__brand {
        display: flex;

        justify-content: center;

        width: 100%;

        text-align: center;
    }


    .site-footer__logo {
        display: inline-block;

        margin: 0 auto;
    }


    .site-footer__logo-full {
        display: none !important;
    }


    .site-footer__logo-monogram {
        display: block !important;

        width: 170px !important;
        height: auto !important;

        max-width: none !important;
        max-height: none !important;

        margin: 0 auto;
    }


    /* NAVIGAZIONE */

    .site-footer__navigation {
        width: 100%;

        text-align: center;
    }


    .site-footer__navigation h2 {
        margin-bottom: 22px;

        text-align: center;
    }


    .site-footer__navigation ul {
        margin: 0;
        padding: 0;

        text-align: center;
    }


    .site-footer__navigation li + li {
        margin-top: 14px;
    }


    /* CLAIM */

    .site-footer__claim {
        grid-column: auto;

        display: flex;

        justify-content: center;

        width: 100%;

        padding-top: 0;

        text-align: center;
    }


    .site-footer__claim p {
        max-width: 360px;

        margin: 0 auto;

        font-size: 26px;
        line-height: 1.3;

        text-align: center;
    }


    /* FOOTER BOTTOM */

    .site-footer__bottom-inner {
        min-height: 0;

        display: flex;
        flex-direction: column;

        align-items: center;

        gap: 16px;

        padding: 24px 0;

        text-align: center;
    }


    .site-footer__bottom p {
        text-align: center;
    }


    .site-footer__legal {
        display: flex;

        justify-content: center;
        flex-wrap: wrap;

        gap: 12px 20px;

        width: 100%;
    }

}
/* =========================================================
   HOME
   ========================================================= */

.home-page {
    background: #F7F5F0;
}


/* =========================================================
   SHARED
   ========================================================= */

.home-section {
    padding: 92px 0;
}


.home-section__heading {
    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 40px;

    margin-bottom: 42px;
}


.home-section__eyebrow,
.home-hero__eyebrow {
    margin-bottom: 14px;

    color: #C99A3D;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.19em;

    text-transform: uppercase;
}


.home-section__heading h2,
.home-how h2,
.home-why h2,
.home-seller-cta h2 {
    margin: 0;

    color: #151515;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(34px, 4vw, 52px);

    font-weight: 400;

    line-height: 1.07;
}


.home-section__link,
.home-text-link {
    color: #151515;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 0.08em;

    text-decoration: none;
    text-transform: uppercase;
}


.home-section__link::after,
.home-text-link::after {
    margin-left: 8px;

    color: #C99A3D;

    content: "→";
}


.home-section__link:hover,
.home-text-link:hover {
    color: #C99A3D;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.home-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 52px;

    padding: 0 26px;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.1em;

    text-decoration: none;
    text-transform: uppercase;

    transition:
        background 0.18s ease,
        color 0.18s ease,
        border-color 0.18s ease;
}


.home-button--primary {
    color: #090A09;

    background: #C99A3D;
    border: 1px solid #C99A3D;
}


.home-button--primary:hover {
    color: #C99A3D;

    background: transparent;
}


.home-button--secondary {
    color: #F7F5F0;

    background: transparent;
    border: 1px solid rgba(247, 245, 240, 0.45);
}


.home-button--secondary:hover {
    color: #090A09;

    background: #F7F5F0;
    border-color: #F7F5F0;
}


/* =========================================================
   HERO
   ========================================================= */

.home-hero {
    position: relative;

    overflow: hidden;

    padding: clamp(80px, 10vw, 150px) 0;

    color: #F7F5F0;

    background:
        radial-gradient(
            circle at 75% 45%,
            rgba(201, 154, 61, 0.10),
            transparent 30%
        ),
        #090A09;
}


.home-hero::after {
    position: absolute;

    top: 0;
    right: 8%;

    width: 1px;
    height: 100%;

    background:
        linear-gradient(
            to bottom,
            transparent,
            rgba(201, 154, 61, 0.28),
            transparent
        );

    content: "";
}


.home-hero__inner {
    position: relative;

    z-index: 1;

    max-width: 900px;
}


.home-hero__title {
    margin: 0;

    color: #F7F5F0;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(48px, 7.6vw, 96px);

    font-weight: 400;

    line-height: 0.98;

    letter-spacing: -0.03em;
}


.home-hero__title span {
    color: #C99A3D;
}


.home-hero__intro {
    max-width: 650px;

    margin: 34px 0 0;

    color: rgba(247, 245, 240, 0.72);

    font-size: 18px;

    line-height: 1.7;
}


.home-hero__actions {
    display: flex;

    flex-wrap: wrap;

    gap: 14px;

    margin-top: 38px;
}


/* =========================================================
   FEATURED CARDS
   ========================================================= */

.home-featured {
    background: #F7F5F0;
}


.home-featured__grid {
    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 28px;
}


/* =========================================================
   HOW IT WORKS
   ========================================================= */

.home-how {
    background: #151614;
}


.home-how .home-section__heading h2 {
    max-width: 700px;

    color: #F7F5F0;
}


.home-how__grid {
    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 1px;

    background: rgba(201, 154, 61, 0.26);
}


.home-step {
    min-height: 290px;

    padding: 34px;

    background: #090A09;
}


.home-step__number {
    margin-bottom: 52px;

    color: #C99A3D;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 17px;
}


.home-step h3 {
    margin: 0 0 14px;

    color: #F7F5F0;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 30px;

    font-weight: 400;
}


.home-step p {
    max-width: 340px;

    margin: 0;

    color: rgba(247, 245, 240, 0.62);

    font-size: 15px;

    line-height: 1.65;
}


.home-how__cta {
    margin-top: 34px;
}


.home-how__cta .home-text-link {
    color: #F7F5F0;
}


/* =========================================================
   CATEGORIES
   ========================================================= */

.home-categories {
    background: #F7F5F0;
}


.home-categories__grid {
    display: grid;

    grid-template-columns: repeat(4, minmax(0, 1fr));

    border-top: 1px solid #E5E0D6;
    border-left: 1px solid #E5E0D6;
}


.home-category {
    min-height: 170px;

    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 20px;

    padding: 28px;

    color: #151515;

    background: #FBFAF7;

    border-right: 1px solid #E5E0D6;
    border-bottom: 1px solid #E5E0D6;

    text-decoration: none;

    transition:
        background 0.18s ease,
        color 0.18s ease;
}


.home-category:hover {
    color: #F7F5F0;

    background: #090A09;
}


.home-category__name {
    font-family: Georgia, "Times New Roman", serif;

    font-size: 27px;
}


.home-category__arrow {
    color: #C99A3D;

    font-size: 24px;

    transition: transform 0.18s ease;
}


.home-category:hover .home-category__arrow {
    transform: translateX(4px);
}


/* =========================================================
   WHY
   ========================================================= */

.home-why {
    background: #FBFAF7;

    border-top: 1px solid #E5E0D6;
    border-bottom: 1px solid #E5E0D6;
}


.home-why__layout {
    display: grid;

    grid-template-columns:
        minmax(300px, 0.9fr)
        minmax(500px, 1.1fr);

    gap: 90px;
}


.home-why__intro {
    position: sticky;

    top: 120px;

    align-self: start;
}


.home-why__items {
    border-top: 1px solid #E5E0D6;
}


.home-why__item {
    padding: 26px 0;

    border-bottom: 1px solid #E5E0D6;
}


.home-why__item h3 {
    margin: 0 0 8px;

    color: #151515;

    font-size: 18px;

    font-weight: 700;
}


.home-why__item p {
    max-width: 600px;

    margin: 0;

    color: #686761;

    font-size: 15px;

    line-height: 1.65;
}


/* =========================================================
   SELLER CTA
   ========================================================= */

.home-seller-cta {
    padding: 72px 0;

    color: #F7F5F0;

    background: #090A09;
}


.home-seller-cta__inner {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 60px;

    padding: 46px 0;

    border-top: 1px solid rgba(201, 154, 61, 0.38);
    border-bottom: 1px solid rgba(201, 154, 61, 0.38);
}


.home-seller-cta h2 {
    color: #F7F5F0;
}


.home-seller-cta p {
    max-width: 620px;

    margin: 20px 0 0;

    color: rgba(247, 245, 240, 0.65);

    font-size: 16px;

    line-height: 1.65;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1000px) {

    .home-featured__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }


    .home-categories__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }


    .home-why__layout {
        grid-template-columns: 1fr;

        gap: 50px;
    }


    .home-why__intro {
        position: static;
    }

}


@media (max-width: 760px) {

    .home-section {
        padding: 68px 0;
    }


    .home-section__heading {
        align-items: flex-start;
        flex-direction: column;

        gap: 18px;

        margin-bottom: 32px;
    }


    .home-how__grid {
        grid-template-columns: 1fr;
    }


    .home-step {
        min-height: 0;
    }


    .home-step__number {
        margin-bottom: 34px;
    }


    .home-seller-cta__inner {
        align-items: flex-start;
        flex-direction: column;

        gap: 30px;
    }

}


@media (max-width: 620px) {

    .home-hero {
        padding: 78px 0 82px;
    }


    .home-hero__title {
        font-size: clamp(45px, 14vw, 67px);
    }


    .home-hero__intro {
        margin-top: 28px;

        font-size: 16px;
    }


    .home-hero__actions {
        flex-direction: column;

        align-items: stretch;
    }


    .home-button {
        width: 100%;
    }


    .home-featured__grid {
        grid-template-columns: 1fr;
    }


    .home-categories__grid {
        grid-template-columns: 1fr;
    }


    .home-category {
        min-height: 130px;
    }


    .home-why__layout {
        gap: 36px;
    }


    
    /* =========================================================
   HOME REFINEMENTS
   ========================================================= */


/* HERO */

.home-hero__inner {
    max-width: 980px;
}


.home-hero__intro {
    max-width: 610px;
}


/* FEATURED */

.home-featured__mobile-link {
    display: none;

    margin-top: 28px;
}


/* WHY */

.home-why__item {
    display: grid;

    grid-template-columns: 42px 1fr;

    gap: 18px;

    align-items: start;
}


.home-why__index {
    padding-top: 3px;

    color: #C99A3D;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.12em;
}


/* CATEGORY */

.home-category__name {
    line-height: 1.05;
}


/* =========================================================
   HOME MOBILE REFINEMENTS
   ========================================================= */

@media (max-width: 620px) {

    .home-section {
        padding: 60px 0;
    }


    .home-section__heading {
        margin-bottom: 28px;
    }


    .home-section__heading h2,
    .home-how h2,
    .home-why h2,
    .home-seller-cta h2 {
        font-size: 36px;

        line-height: 1.08;
    }


    /* HERO */

    .home-hero {
        padding: 72px 0 76px;
    }


    .home-hero__eyebrow {
        margin-bottom: 18px;
    }


    .home-hero__title {
        font-size: clamp(44px, 13vw, 62px);

        line-height: 1;
    }


    .home-hero__intro {
        margin-top: 26px;

        font-size: 16px;

        line-height: 1.6;
    }


    /* FEATURED */

    .home-featured .home-section__link {
        display: none;
    }


    .home-featured__mobile-link {
        display: block;
    }


    /* CATEGORY */

    .home-category {
        min-height: 112px;

        padding: 24px;
    }


    .home-category__name {
        font-size: 25px;
    }


    /* HOW */

    .home-step {
        padding: 28px;
    }


    .home-step__number {
        margin-bottom: 28px;
    }


    /* WHY */

    .home-why__item {
        grid-template-columns: 34px 1fr;

        gap: 12px;

        padding: 24px 0;
    }


    /* SELLER CTA */

    .home-seller-cta {
        padding: 58px 0;
    }


    .home-seller-cta__inner {
        padding: 36px 0;
    }

}
}

/* =========================================================
   FEATURED CARDS - LINK "VEDI TUTTE"
   ========================================================= */

.home-featured__mobile-link {
    display: none;
}

@media (max-width: 620px) {

    .home-featured .home-section__link {
        display: none;
    }

    .home-featured__mobile-link {
        display: block;
        margin-top: 40px;
    }

}

/* =========================================================
   MOBILE FIX DEFINITIVO
   ========================================================= */

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}


/* ---------------------------------------------------------
   HEADER MOBILE
   --------------------------------------------------------- */

@media (max-width: 900px) {

    .site-header {
        width: 100%;
    }


    .site-header__inner,
    .site-header.is-scrolled .site-header__inner {
        position: relative;

        width: 100%;
        min-height: 70px;

        display: flex;
        align-items: center;
        justify-content: space-between;

        gap: 0;
    }


    /* NASCONDE COMPLETAMENTE IL MENU DESKTOP */

    .site-header .site-navigation {
        display: none !important;
    }


    /* MOSTRA IL BURGER */

    .site-header .site-header__menu-toggle {
        display: block !important;

        position: relative;
        z-index: 5;

        flex: 0 0 38px;

        width: 38px;
    }


    /* BRAND CENTRATO */

    .site-header .site-brand {
        position: absolute;

        top: 50%;
        left: 50%;

        margin: 0;

        transform: translate(-50%, -50%);
    }


    .site-brand__wordmark {
        font-size: 17px;

        letter-spacing: 0.13em;
    }


    /* DESTRA: SOLO SEARCH */

    .site-header__actions {
        margin-left: auto;
    }


    .site-header__seller-cta {
        display: none !important;
    }


    .site-header__search-toggle {
        display: inline-flex;

        width: 38px;
        height: 38px;
    }


    /* MENU MOBILE */

    .site-mobile-menu {
        width: min(88vw, 390px);
        max-width: 390px;
    }

}


/* ---------------------------------------------------------
   HOME MOBILE
   --------------------------------------------------------- */

@media (max-width: 620px) {

    .home-page,
    .home-hero,
    .home-section,
    .home-featured,
    .home-categories,
    .home-how,
    .home-seller-cta {
        width: 100%;
        max-width: 100%;
    }


    .home-hero {
        overflow: hidden;
    }
    
.home-hero::after {
    display: none;
}

    .home-hero__inner {
        width: 100%;
        max-width: 100%;
    }


    .home-hero__title {
        max-width: 100%;

        font-size: clamp(38px, 12vw, 45px);

        overflow-wrap: normal;
        word-break: normal;
    }


    .home-hero__intro {
        width: 100%;
        max-width: 100%;
    }


    .home-featured__grid {
        width: 100%;

        grid-template-columns: minmax(0, 1fr);
    }


    .card-carta {
        width: 100%;
        max-width: 100%;
    }

}

/* =========================================================
   FOOTER LOGO SIZE
   ========================================================= */


/* DESKTOP - LOGO COMPLETO */

.site-footer__logo-full {
    display: block;

    width: auto;
    height: auto;

    max-width: 520px;
    max-height: 290px;

    object-fit: contain;
    object-position: left top;
}


/* MONOGRAMMA NASCOSTO SU DESKTOP */

.site-footer__logo-monogram {
    display: none;
}


/* =========================================================
   FOOTER LOGO TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .site-footer__logo-full {
        max-width: 440px;
        max-height: 250px;
    }

}


/* =========================================================
   FOOTER LOGO MOBILE
   ========================================================= */

@media (max-width: 620px) {

    .site-footer__logo-full {
        display: none;
    }


    .site-footer__logo-monogram {
        display: block;

        width: 150px;
        height: auto;

        max-width: none;
        max-height: none;

        object-fit: contain;
    }

}

@media (max-width: 900px) {

    .site-mobile-menu {
        position: fixed !important;
        top: 0;
        bottom: 0;
        left: 0;

        z-index: 1200;

        display: block !important;

        width: min(88vw, 390px);

        background: #090A09;

        transform: translateX(-102%);

        transition: transform 0.25s ease;
    }

    .site-mobile-menu.is-open {
        transform: translateX(0) !important;
    }

    .site-mobile-overlay {
        position: fixed !important;
        inset: 0;

        z-index: 1100;

        display: block !important;

        visibility: hidden;

        background: rgba(0, 0, 0, 0.68);

        opacity: 0;

        pointer-events: none;
    }

    .site-mobile-overlay.is-open {
        visibility: visible;

        opacity: 1;

        pointer-events: auto;
    }

}

/* =========================================================
   HEADER + MOBILE MENU
   ========================================================= */

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 900px) {


    /* -----------------------------------------------------
       HEADER
       ----------------------------------------------------- */

    .site-header {
        width: 100%;
    }


    .site-header__inner,
    .site-header.is-scrolled .site-header__inner {
        position: relative;

        width: 100%;
        min-height: 70px;

        display: flex;
        align-items: center;
        justify-content: space-between;

        gap: 0;
    }


    /* Nasconde navigazione desktop */

    .site-header .site-navigation {
        display: none !important;
    }


    /* Burger */

    .site-header .site-header__menu-toggle {
        position: relative;
        z-index: 5;

        display: block !important;

        flex: 0 0 38px;

        width: 38px;

        padding: 7px 4px;

        background: transparent;
        border: 0;

        cursor: pointer;
    }


    .site-header__menu-toggle span {
        display: block;

        width: 100%;
        height: 1px;

        margin: 7px 0;

        background: #C99A3D;
    }


    /* Brand centrato */

    .site-header .site-brand {
        position: absolute;

        top: 50%;
        left: 50%;

        margin: 0;

        transform: translate(-50%, -50%);
    }


    /* HEADER LOGO */

.site-brand {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
}


/* LOGO HEADER MOBILE */

    .site-brand__logo {
        width: 220px;
    }


    /* Header actions */

    .site-header__actions {
        margin-left: auto;
    }


    .site-header__seller-cta {
        display: none !important;
    }


    .site-header__search-toggle {
        display: inline-flex;

        width: 38px;
        height: 38px;
    }



    /* -----------------------------------------------------
       DRAWER
       ----------------------------------------------------- */

    .site-mobile-menu {
        position: fixed;

        z-index: 1200;

        top: 0;
        bottom: 0;
        left: 0;

        display: block !important;

        width: min(88vw, 390px);
        max-width: 390px;

        color: #F7F5F0;

        background: #090A09;

        border-right: 1px solid rgba(201, 154, 61, 0.35);

        box-shadow: 18px 0 40px rgba(0, 0, 0, 0.35);

        transform: translateX(-102%);

        transition: transform 0.25s ease;
    }


    .site-mobile-menu.is-open {
        transform: translateX(0) !important;
    }



    /* -----------------------------------------------------
       DRAWER INNER
       ----------------------------------------------------- */

    .site-mobile-menu__inner {
        height: 100%;

        display: flex;
        flex-direction: column;

        padding: 24px 22px 28px;
    }



    /* -----------------------------------------------------
       DRAWER TOP
       ----------------------------------------------------- */

    .site-mobile-menu__top {
        display: flex;
        align-items: center;
        justify-content: space-between;

        gap: 20px;

        padding-bottom: 20px;

        border-bottom: 1px solid rgba(201, 154, 61, 0.25);
    }


    .site-mobile-menu__title {
        color: #C99A3D;

        font-size: 11px;
        font-weight: 700;

        letter-spacing: 0.18em;

        text-transform: uppercase;
    }


    .site-mobile-menu__close {
        display: inline-flex;
        align-items: center;
        justify-content: center;

        width: 38px;
        height: 38px;

        padding: 0;

        color: #F7F5F0;
        background: transparent;

        border: 1px solid rgba(247, 245, 240, 0.18);

        font-size: 26px;
        line-height: 1;

        cursor: pointer;
    }


    .site-mobile-menu__close:hover,
    .site-mobile-menu__close:focus-visible {
        color: #C99A3D;

        border-color: rgba(201, 154, 61, 0.55);
    }



    /* -----------------------------------------------------
       NAVIGATION
       ----------------------------------------------------- */

    .site-mobile-menu nav {
        margin-top: 20px;
    }


    .site-mobile-menu__nav {
        margin: 0;
        padding: 0;

        list-style: none;
    }


    .site-mobile-menu__nav li {
        margin: 0;

        border-bottom: 1px solid rgba(247, 245, 240, 0.08);
    }


    .site-mobile-menu__nav a {
        position: relative;

        display: flex;
        align-items: center;

        min-height: 58px;

        padding: 0 4px;

        color: #F7F5F0;

        font-size: 14px;
        font-weight: 600;

        letter-spacing: 0.08em;

        text-decoration: none;
        text-transform: uppercase;
    }


    .site-mobile-menu__nav a::after {
        margin-left: auto;

        color: #C99A3D;

        content: "→";

        font-size: 16px;
        font-weight: 400;
    }


    .site-mobile-menu__nav a:hover,
    .site-mobile-menu__nav a:focus-visible {
        color: #C99A3D;
    }



    /* -----------------------------------------------------
       CTA
       ----------------------------------------------------- */

    .site-mobile-menu__cta {
        display: flex;
        align-items: center;
        justify-content: center;

        min-height: 50px;

        margin-top: auto;
        padding: 0 20px;

        color: #090A09;

        background: #C99A3D;

        border: 1px solid #C99A3D;

        font-size: 11px;
        font-weight: 700;

        letter-spacing: 0.11em;

        text-decoration: none;
        text-transform: uppercase;
    }


    .site-mobile-menu__cta:hover,
    .site-mobile-menu__cta:focus-visible {
        color: #C99A3D;

        background: transparent;
    }



    /* -----------------------------------------------------
       OVERLAY
       ----------------------------------------------------- */

    .site-mobile-overlay {
        position: fixed;

        z-index: 1100;

        inset: 0;

        display: block !important;

        visibility: hidden;

        background: rgba(0, 0, 0, 0.72);

        opacity: 0;

        pointer-events: none;

        transition:
            opacity 0.22s ease,
            visibility 0.22s ease;

        backdrop-filter: blur(2px);
    }


    .site-mobile-overlay.is-open {
        visibility: visible;

        opacity: 1;

        pointer-events: auto;
    }



    /* -----------------------------------------------------
       BODY LOCK
       ----------------------------------------------------- */

    body.site-menu-open {
        overflow: hidden;
    }

}