/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #000000;
    --white: #ffffff;
    --gray-bg: #d9d9d9;
    --gradient-jungle: linear-gradient(90deg, #d8d4b3 0%, #d7cf8a 13.46%, #9be8b2 36.54%, #7cd9d9 62.5%, #efb4e2 100%);
    --shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    --radius-card: 20px;
    --radius-section: 54px;
    --radius-btn: 40px;
    --font-poppins: 'Poppins', sans-serif;
    --font-inter: 'Inter', sans-serif;
    --font-oswald: 'Oswald', sans-serif;
    --font-roboto: 'Roboto', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-poppins);
    background-color: var(--gray-bg);
    color: var(--black);
    line-height: 1.5;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; font-family: inherit; }
ul { list-style: none; }

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

/* ===== GRADIENT TEXT ===== */
.gradient-text {
    background: var(--gradient-jungle);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-btn);
    font-family: var(--font-inter);
    font-weight: 700;
    font-size: 20px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: var(--shadow);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.3);
}

.btn-primary {
    background: var(--black);
    color: var(--white);
}

.btn-gradient {
    background: var(--gradient-jungle);
    color: var(--black);
}

.btn-sm {
    padding: 10px 24px;
    font-size: 15px;
}

.btn-md {
    padding: 12px 28px;
    font-size: 18px;
}

.btn-lg {
    padding: 18px 40px;
    font-size: 25px;
}

.btn-arrow::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(-45deg);
    margin-left: 4px;
}

/* ===== QUANTITY SELECTOR ===== */
.qty-selector {
    display: inline-flex;
    align-items: center;
    background: var(--white);
    border-radius: 25px;
    box-shadow: var(--shadow);
    height: 37px;
    padding: 0 8px;
    gap: 8px;
}

.qty-selector.on-gray {
    background: var(--gray-bg);
    height: 40px;
}

.qty-selector button {
    background: none;
    font-family: var(--font-oswald);
    font-size: 20px;
    line-height: 37px;
    padding: 0 6px;
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.qty-selector .qty-value {
    font-family: var(--font-oswald);
    font-size: 20px;
    min-width: 16px;
    text-align: center;
    opacity: 0.3;
    line-height: 37px;
}

/* ===== HEADER ===== */
.header {
    padding: 20px 0;
    position: relative;
    z-index: 100;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.header-logo {
    width: 248px;
    height: auto;
}

.header-logo img {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* ===== NAV ===== */
.nav {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 8px 0;
}

.nav a {
    font-family: var(--font-inter);
    font-weight: 500;
    font-size: 20px;
    color: var(--black);
    transition: opacity 0.2s;
    white-space: nowrap;
}

.nav a:hover {
    opacity: 0.7;
}

.nav a.active {
    font-weight: 700;
}

/* ===== SECTIONS (white rounded cards) ===== */
.section-card {
    background: var(--white);
    border-radius: var(--radius-section);
    box-shadow: var(--shadow);
    padding: 60px 80px;
    margin: 40px auto;
    max-width: 1320px;
}

/* ===== HERO ===== */
.hero {
    padding-top: 20px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-title {
    font-size: 50px;
    font-weight: 700;
    line-height: 1.1;
}

.hero-description {
    font-size: 25px;
    font-weight: 400;
    margin-top: 24px;
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
}

/* ===== COSA SONO ===== */
.what-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 60px 0;
}

.what-section .what-image img {
    border-radius: 30px;
    width: 100%;
}

.what-section .what-text h2 {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 24px;
}

.what-section .what-text p {
    font-size: 25px;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 16px;
}

.what-section .what-text p strong {
    font-weight: 700;
}

.what-features {
    display: flex;
    gap: 32px;
    margin-top: 40px;
}

.what-features .feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.what-features .feature img {
    width: 80px;
    height: auto;
}

.what-features .feature span {
    font-weight: 600;
    font-size: 20px;
}

/* ===== COME FUNZIONA ===== */
.how-section {
    padding: 50px 20px;
}

.how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.how-step {
    text-align: center;
    padding: 30px 20px;
}

.how-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--black);
    color: var(--white);
    font-family: var(--font-poppins);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.how-step h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.how-step p {
    font-size: 17px;
    line-height: 1.6;
    opacity: 0.8;
}

/* ===== JUNGLE SQUAD ===== */
.squad-section h2 {
    font-size: 50px;
    font-weight: 700;
}

.squad-section .squad-subtitle {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 16px;
}

.squad-section .squad-intro {
    font-size: 25px;
    line-height: 1.5;
}

.squad-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.squad-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.character-card {
    background: var(--white);
    border: 5px solid transparent;
    border-radius: var(--radius-card);
    background-image: linear-gradient(var(--white), var(--white)), var(--gradient-jungle);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: var(--shadow);
    padding: 30px 20px;
    text-align: center;
    transition: transform 0.3s;
}

.character-card:hover {
    transform: translateY(-4px);
}

.character-card .char-image {
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.character-card .char-image img {
    max-height: 100%;
    object-fit: contain;
}

.character-card .char-name {
    font-size: 25px;
    font-weight: 700;
}

.character-card .char-traits {
    font-size: 16px;
    font-style: italic;
    margin: 8px 0;
    min-height: 64px;
}

.character-card .char-desc {
    font-size: 16px;
    line-height: 1.5;
}

/* Blind Box special card */
.blindbox-card {
    grid-column: span 2;
    background: var(--gradient-jungle);
    border: none;
    border-radius: var(--radius-card);
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.blindbox-card h3 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 16px;
}

.blindbox-card .mystery-mark {
    font-size: 160px;
    font-weight: 800;
    text-align: center;
}

.blindbox-card p {
    font-size: 16px;
    line-height: 1.5;
}

.blindbox-card .blindbox-cta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
}

/* ===== KIT BUILDER ===== */
.kit-builder {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 60px 0;
}

.kit-builder h2 {
    font-size: 50px;
    font-weight: 700;
    line-height: 1.1;
}

.kit-builder .kit-description {
    font-size: 25px;
    margin-top: 24px;
    line-height: 1.5;
}

.accessories-title {
    font-size: 30px;
    font-weight: 700;
    margin: 40px 0 24px;
}

.accessories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.accessory-card {
    background: var(--white);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow);
    padding: 20px;
    text-align: center;
}

.accessory-card .acc-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.accessory-card .acc-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.accessory-card .acc-name {
    font-size: 25px;
    font-weight: 700;
}

.accessory-card .acc-price {
    font-size: 25px;
    font-weight: 500;
    margin: 4px 0 12px;
}

.accessory-card .acc-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 12px;
}

/* Accessory pagination */
.acc-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.acc-pagination a {
    font-family: var(--font-inter);
    font-weight: 700;
    font-size: 20px;
    text-decoration: underline;
}

.acc-pagination a.active {
    opacity: 1;
}

.acc-pagination a.dimmed {
    opacity: 0.4;
}

/* Cart sidebar */
.cart-panel {
    background: var(--white);
    border-radius: 30px;
    box-shadow: var(--shadow);
    padding: 40px 30px;
}

.cart-panel h3 {
    font-size: 30px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 24px;
}

.cart-item {
    border-radius: var(--radius-card);
    padding: 20px;
    margin-bottom: 16px;
}

.cart-item.has-gradient {
    background: var(--gradient-jungle);
}

.cart-item.has-border {
    border: 1px solid var(--black);
}

.cart-item-inner {
    display: flex;
    gap: 16px;
    align-items: center;
}

.cart-item-img {
    width: 120px;
    height: 120px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    flex-shrink: 0;
}

.cart-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-info h4 {
    font-size: 25px;
    font-weight: 700;
}

.cart-item-info .cart-item-price {
    font-size: 25px;
    font-weight: 500;
    margin: 4px 0;
}

.cart-placeholder {
    text-align: center;
    opacity: 0.5;
    font-size: 20px;
    padding: 40px 20px;
}

.cart-divider {
    border: none;
    border-top: 1.5px solid var(--black);
    margin: 24px 0;
}

.cart-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.cart-total .total-label {
    font-size: 40px;
    font-weight: 700;
}

.cart-total .total-amount {
    font-size: 50px;
    font-weight: 700;
}

.cart-shipping {
    text-align: center;
    font-size: 20px;
    margin-bottom: 24px;
}

/* ===== IDENTITY KITS ===== */
.identity-section h2 {
    font-size: 50px;
    font-weight: 700;
}

.identity-section .identity-subtitle {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 16px;
}

.identity-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.identity-header .identity-intro {
    font-size: 25px;
    line-height: 1.5;
}

.identity-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.kit-card {
    background: var(--white);
    border: 5px solid transparent;
    border-radius: var(--radius-card);
    background-image: linear-gradient(var(--white), var(--white)), var(--gradient-jungle);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: var(--shadow);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s;
}

.kit-card:hover {
    transform: translateY(-4px);
}

.kit-card .kit-mystery {
    font-size: 130px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 16px;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.kit-card .kit-mystery::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: url('https://blor.fra1.cdn.digitaloceanspaces.com/blorfit/web/hero-blorfit.png') center / cover no-repeat;
    filter: blur(4px);
    z-index: 0;
}

.kit-card .kit-mystery span {
    position: relative;
    z-index: 1;
}

.kit-card .kit-images {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
    min-height: 140px;
    align-items: center;
}

.kit-card .kit-images img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.kit-card .kit-name {
    font-size: 25px;
    font-weight: 700;
}

.kit-card .kit-contents {
    font-size: 16px;
    line-height: 1.6;
    margin: 8px 0 16px;
}

.kit-card .kit-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

/* ===== INSTAGRAM PREVIEW ===== */
.instagram-section {
    text-align: center;
    padding: 60px 0;
}

.instagram-section h2 {
    font-family: var(--font-roboto);
    font-size: 36px;
    margin-bottom: 24px;
}

.instagram-section h2 i {
    margin-left: 8px;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.instagram-post {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.instagram-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s, opacity 0.3s;
}

.instagram-post:hover img {
    transform: scale(1.05);
    opacity: 0.85;
}

@media (max-width: 768px) {
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== NEWSLETTER ===== */
.newsletter-section {
    background: var(--gradient-jungle);
    border-radius: 30px;
    padding: 50px 60px;
    text-align: center;
    margin: 40px auto;
    max-width: 800px;
}

.newsletter-section h2 {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 16px;
}

.newsletter-section p {
    font-family: var(--font-roboto);
    font-size: 20px;
    margin-bottom: 24px;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 0;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 20px;
    border: none;
    border-radius: 30px;
    font-family: var(--font-roboto);
    font-size: 20px;
    background: rgba(255,255,255,0.35);
    outline: none;
}

.newsletter-form input::placeholder {
    color: var(--black);
}

.newsletter-form button {
    background: var(--black);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 30px;
    font-family: var(--font-roboto);
    font-size: 20px;
    margin-left: -30px;
}

/* ===== FOOTER ===== */
.footer {
    text-align: center;
    padding: 40px 0;
}

.footer-logo {
    width: 200px;
    margin: 0 auto 16px;
}

.footer-contact {
    font-size: 16px;
    margin-bottom: 16px;
    line-height: 1.8;
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--black);
    color: var(--white);
    font-size: 20px;
    transition: opacity 0.2s;
}

.footer-socials a:hover {
    opacity: 0.7;
}

.footer-legal {
    font-size: 15px;
    font-weight: 700;
}

.footer-legal a {
    text-decoration: underline;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-content,
    .what-section,
    .squad-header,
    .kit-builder,
    .identity-header {
        grid-template-columns: 1fr;
    }

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

    .blindbox-card {
        grid-column: span 2;
    }

    .section-card {
        padding: 40px 30px;
        border-radius: 30px;
    }

    .hero-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    /* Header */
    .header-inner {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    .header-logo {
        width: 180px;
    }

    .nav {
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav a {
        font-size: 14px;
    }

    /* Section cards - base mobile */
    .section-card {
        padding: 24px 16px;
        margin: 16px;
        border-radius: 20px;
        overflow: hidden;
    }

    /* Hero */
    .hero-title {
        font-size: 26px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-buttons .btn {
        font-size: 16px;
        padding: 12px 24px;
        text-align: center;
    }

    .hero-image img {
        max-width: 70%;
        margin: 0 auto;
    }

    /* Cosa sono */
    .what-section {
        padding: 30px 20px;
        gap: 24px;
    }

    .what-section .what-image {
        max-width: 100%;
        overflow: hidden;
    }

    .what-section .what-image img {
        border-radius: 16px;
        width: 100%;
    }

    .what-section .what-text {
        min-width: 0;
    }

    .what-section .what-text h2 {
        font-size: 24px;
        word-wrap: break-word;
    }

    .what-section .what-text p {
        font-size: 15px;
    }

    .what-features {
        gap: 16px;
        justify-content: center;
    }

    .what-features .feature img {
        width: 50px;
    }

    .what-features .feature span {
        font-size: 14px;
    }

    /* Come funziona - slider */
    .how-section {
        padding: 30px 20px;
    }

    .how-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 16px;
        scrollbar-width: none;
    }

    .how-grid::-webkit-scrollbar {
        display: none;
    }

    .how-step {
        flex: 0 0 75vw;
        scroll-snap-align: center;
        padding: 24px 16px;
    }

    .how-step h3 {
        font-size: 18px;
    }

    .how-step p {
        font-size: 15px;
    }

    /* Jungle Squad */
    .squad-section h2 {
        font-size: 26px;
    }

    .squad-section .squad-subtitle {
        font-size: 20px;
    }

    .squad-section .squad-intro {
        font-size: 16px;
    }

    .squad-header {
        gap: 20px;
        margin-bottom: 24px;
    }

    /* Squad slider */
    .squad-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 16px;
        padding-bottom: 8px;
        scrollbar-width: none;
    }

    .squad-grid::-webkit-scrollbar {
        display: none;
    }

    .squad-grid .character-card,
    .squad-grid .blindbox-card {
        flex: 0 0 80vw;
        scroll-snap-align: center;
    }

    .character-card {
        padding: 20px 16px;
    }

    .character-card .char-image {
        height: 180px;
    }

    .character-card .char-name {
        font-size: 20px;
    }

    .character-card .char-traits {
        font-size: 14px;
        min-height: auto;
    }

    .character-card .char-desc {
        font-size: 14px;
    }

    /* Blind Box */
    .blindbox-card {
        grid-column: unset;
        grid-template-columns: 1fr;
        padding: 20px 16px;
        gap: 16px;
    }

    .blindbox-card h3 {
        font-size: 22px;
    }

    .blindbox-card p {
        font-size: 14px;
    }

    .blindbox-card .mystery-mark {
        font-size: 80px;
    }

    .blindbox-cta {
        flex-wrap: wrap;
    }

    /* Kit Builder */
    #kit-builder {
        padding: 30px 20px !important;
    }

    .kit-builder {
        gap: 30px;
    }

    .kit-builder > div {
        min-width: 0;
    }

    .kit-builder h2 {
        font-size: 22px;
        word-wrap: break-word;
    }

    .kit-builder .kit-description {
        font-size: 15px;
    }

    .accessories-title {
        font-size: 20px;
        margin: 24px 0 16px;
    }

    /* Accessories slider */
    .accessories-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 12px;
        padding-bottom: 8px;
        scrollbar-width: none;
    }

    .accessories-grid::-webkit-scrollbar {
        display: none;
    }

    .accessories-grid .accessory-card {
        flex: 0 0 60vw;
        scroll-snap-align: center;
        display: flex !important;
        flex-direction: column;
    }

    .acc-pagination {
        display: none !important;
    }

    .accessory-card {
        padding: 12px;
    }

    .accessory-card .acc-image {
        width: 100px;
        height: 100px;
    }

    .accessory-card .acc-name {
        font-size: 15px;
    }

    .accessory-card .acc-price {
        font-size: 16px;
        margin: 2px 0 8px;
    }

    .accessory-card .acc-actions {
        flex-direction: column;
        gap: 6px;
    }

    .accessory-card .btn {
        font-size: 13px;
        padding: 8px 16px;
        width: 100%;
    }

    /* Cart Panel */
    .cart-panel {
        padding: 20px 16px;
        min-width: 0;
        overflow: hidden;
    }

    .cart-panel h3 {
        font-size: 24px;
    }

    .cart-item {
        padding: 12px;
    }

    .cart-item-img {
        width: 80px;
        height: 80px;
    }

    .cart-item-info h4 {
        font-size: 18px;
    }

    .cart-item-info .cart-item-price {
        font-size: 18px;
    }

    .cart-total .total-label {
        font-size: 24px;
    }

    .cart-total .total-amount {
        font-size: 28px;
    }

    .cart-shipping {
        font-size: 16px;
    }

    .btn-lg {
        font-size: 18px;
        padding: 14px 24px;
    }

    /* Identity Kits */
    .identity-section h2 {
        font-size: 26px;
    }

    .identity-section .identity-subtitle {
        font-size: 20px;
    }

    .identity-header {
        gap: 20px;
        margin-bottom: 24px;
    }

    .identity-header .identity-intro {
        font-size: 16px;
    }

    /* Identity kits slider */
    .identity-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 16px;
        padding-bottom: 8px;
        scrollbar-width: none;
    }

    .identity-grid::-webkit-scrollbar {
        display: none;
    }

    .identity-grid .kit-card {
        flex: 0 0 80vw;
        scroll-snap-align: center;
    }

    .kit-card {
        padding: 20px 16px;
    }

    .kit-card .kit-mystery {
        font-size: 60px;
        min-height: 100px;
    }

    .kit-card .kit-images {
        min-height: 80px;
    }

    .kit-card .kit-images img {
        width: 70px;
        height: 70px;
    }

    .kit-card .kit-name {
        font-size: 20px;
    }

    .kit-card .kit-contents {
        font-size: 14px;
    }

    .kit-card .kit-actions {
        flex-wrap: wrap;
        gap: 8px;
    }

    /* Instagram */
    .instagram-section {
        padding: 30px 20px;
        overflow: hidden;
    }

    .instagram-section h2 {
        font-size: 24px;
    }

    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        max-width: 100%;
    }

    .instagram-post {
        border-radius: 8px;
    }

    /* Newsletter */
    .newsletter-section {
        padding: 30px 20px;
        margin: 16px;
    }

    .newsletter-section h2 {
        font-size: 26px;
    }

    .newsletter-section p {
        font-size: 16px;
    }

    /* Footer */
    .footer-legal {
        font-size: 12px;
        line-height: 2;
    }
}

/* ===== SLIDER DOTS ===== */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.slider-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--black);
    opacity: 0.2;
    transition: opacity 0.3s;
}

.slider-dots .dot.active {
    opacity: 1;
}

/* ===== SCROLL HINT ===== */
.scroll-hint {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    opacity: 0.5;
    margin-bottom: 8px;
    animation: scroll-hint-pulse 1.5s ease-in-out infinite;
    transition: opacity 0.4s;
}

.scroll-hint.hidden {
    opacity: 0;
    pointer-events: none;
}

.scroll-hint-arrow {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-right: 2.5px solid currentColor;
    border-bottom: 2.5px solid currentColor;
    transform: rotate(-45deg);
}

@keyframes scroll-hint-pulse {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(6px); }
}

/* ===== CART TOAST ===== */
.cart-toast {
    position: fixed;
    top: 30px;
    right: 30px;
    background: #1a1a2e;
    color: #fff;
    padding: 16px 28px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 600;
    z-index: 9999;
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
    transition: opacity 0.3s, transform 0.3s;
}

.cart-toast.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.cart-toast i {
    color: #4ade80;
    font-size: 20px;
}
