/* =========================
   INDEX PAGE - CLEAN
========================= */

.section {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section-content {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* =========================
   BUTTON
========================= */
.btn {
    padding: 10px 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #000;
    border-radius: 999px;
    cursor: pointer;
    z-index: 2;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
}

.btn a {
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    letter-spacing: 0.06em;
    line-height: 1;
}

/* =========================
   HERO
========================= */
.section-content-hero {
    width: 100%;
    min-height: 420px;
    height: 55vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;

    background-image: url("/assets/imgs/main.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    border-radius: 0 0 28px 28px;
}

.section-content-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.10) 0%,
        rgba(0, 0, 0, 0.28) 100%
    );
    pointer-events: none;
}

.section-content-hero .btn {
    transform: scale(1.04);
}

@media (max-width: 768px) {
    .section-content-hero {
        min-height: 320px;
        height: 48vh;
        border-radius: 0 0 22px 22px;
    }
}

/* =========================
   NOTICE BANNER
========================= */
.section-notice {
    width: 100%;
    margin-top: -22px;
    padding: 0 10px 22px;
    position: relative;
    z-index: 5;
}

.section-content-notice {
    max-width: 1200px;
    padding: 0;
}

.notice-shell {
    width: 100%;
    border-radius: 22px;
    padding: 18px 20px;

    background:
        radial-gradient(circle at top right, rgba(255,255,255,0.10), transparent 28%),
        radial-gradient(circle at bottom left, rgba(255,255,255,0.06), transparent 24%),
        linear-gradient(135deg, #121212 0%, #1d1d1d 100%);

    color: #fff;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;

    text-align: center;
}

.notice-text {
    margin: 0;
    font-size: clamp(13px, 1.2vw, 17px);
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.92);
}

.notice-link {
    text-decoration: none;
    transition: opacity 0.18s ease;
}

.notice-link:hover {
    opacity: 0.82;
}

.notice-link-whatsapp {
    color: #ffffff;
    font-style: italic;
    font-weight: 700;
}

.notice-link-register {
    color: #ffffff;
    font-style: italic;
    font-weight: 800;
}

@media (max-width: 768px) {
    .section-notice {
        margin-top: -18px;
        padding: 0 8px 18px;
    }

    .notice-shell {
        border-radius: 18px;
        padding: 16px 14px;
        gap: 8px;
    }

    .notice-text {
        line-height: 1.6;
    }
}

/* =========================
   COLLECTIONS SECTION
========================= */
.section-content-collection {
    width: 100%;
    padding: 8px 10px 42px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
}

.section-content-collection h1 {
    margin: 0;
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 400;
    color: #121212;
}

.collection-items {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.collection-items .item {
    display: block;
    text-decoration: none;
    color: inherit;
}

.collection-items .item img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}

.title-collection {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
    padding-top: 6px;
}

.title-collection h3 {
    margin: 0;
    font-size: 15px;
    font-weight: 400;
    color: #121212;
}

.title-collection ion-icon {
    font-size: 15px;
    color: #121212;
}

@media (min-width: 900px) {
    .collection-items {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 18px;
    }
}

/* =========================
   NEW ARRIVALS
========================= */
.section-content-nuoviarrivi {
    width: 100%;
    background: #e6e6e6;
    padding: 22px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.imgs {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.imgs img {
    width: auto;
    max-width: 100%;
    height: 170px;
    object-fit: contain;
    display: block;
}

.content-text {
    width: 100%;
    max-width: 360px;
    background: #fff;
    padding: 28px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    text-align: center;
}

.content-text h1 {
    margin: 0;
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 400;
    color: #121212;
}

.content-text .btn {
    padding: 8px 18px;
}

.content-text .btn a {
    font-size: 13px;
    letter-spacing: 0.04em;
}

@media (min-width: 750px) {
    .section-content-nuoviarrivi {
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }

    .imgs {
        flex: 1 1 0;
    }

    .content-text {
        flex: 0 0 360px;
    }

    .imgs img {
        height: 200px;
    }
}

/* =========================
   MIN ORDER SECTION
========================= */
.section-min-order {
    width: 100%;
    padding: 0;
}

.section-content-min-order {
    width: 100%;
    max-width: unset;
    background: #fff;
    padding: 22px 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section-content-min-order p {
    margin: 0;
    max-width: 1100px;
    font-size: clamp(14px, 1.15vw, 18px);
    line-height: 1.9;
    color: #2a2a2a;
    text-align: center;
}
.section-min-order {
    width: 100%;
    padding: 18px 10px 28px;
    /* background: #f5f5f5; */
}

.section-content-min-order {
    width: 100%;
    max-width: 1200px;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.min-order-shell {
    width: 100%;
    background: #222;
    border-radius: 22px;
    padding: 22px 24px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.min-order-shell p {
    margin: 0;
    max-width: 980px;
    margin-inline: auto;
    font-size: clamp(14px, 1.05vw, 17px);
    line-height: 1.9;
    color: whitesmoke;
}

.min-order-shell b,
.min-order-shell strong {
    font-weight: 700;
    color: #fff;
}

@media (max-width: 768px) {
    .section-min-order {
        padding: 14px 8px 22px;
    }

    .min-order-shell {
        border-radius: 18px;
        padding: 18px 14px;
    }

    .min-order-shell p {
        font-size: 14px;
        line-height: 1.75;
    }
}