.title {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 20pt;
    font-family: "Vollda", sans-serif;
    color: var(--text-color-primary)
}

.description {
    margin-top: 7.5%;
    font-size: 14pt;
    margin-bottom: 0;
    white-space: pre-line;
}

.collection_details {
    display: flex;
    justify-content: center;
}

.models_section, .colors_section {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: 0;
}

.models_section h3,
.colors_section h3 {
    font-size: 18pt;
    margin-bottom: 15px;
    font-family: "Vollda", sans-serif;
    color: var(--text-color-primary);
    text-align: center;
}

.models_section img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
}

.color_cards {
    margin-top: 1.1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.color_card {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    color: var(--text-color-primary);
}

.color_card img {
    width: 100%;
    object-fit: cover;
}

.color_card:hover {
    transform: scale(1.1);
    color: var(--color-highlight);
}

.color_name {
    margin-top: 5px;
    font-size: 12pt;
    text-align: center;
    margin-bottom: 5px;
    font-weight: bold;
}

.discount {
    margin-top: -5%;
    color: var(--text-color-discount);
    font-weight: bold;
    white-space: nowrap;
}

@media (max-width: 900px) {
    .collection_details {
        flex-direction: column;
        gap: 25px;
        align-items: center;
    }

    .color_card {
        width: 45%;
    }
}

@media (min-width: 1920px) {
    .slider_container {
        position: relative;
        width: 52%;
        overflow: hidden;
    }

    .description {
        font-size: 18pt;
    }
}