/* Genel Stiller */


.containerrenk {
    background: white;
    border: 1px solid #e2e2e2;
    overflow: hidden;
    max-width: 800px;
    width: 100%;
    text-align: center;
    margin: 0 auto;
}

/* Görsel Alanı */
.image-container {
    background: #F7F7F7;
    padding: 20px;
}

.scooter-image {
    max-width: 100%;
    height: auto;
}
.scooter-color h2 {
    font-family: Avenir, sans-serif;
    font-weight: 700;
}
/* Detaylar Alanı */
.details-container {
    padding: 20px;
}

.color-info h3 {
    font-size: 20px;
    color: #333;
}

.color-info p {
    color: #777;
    font-size: 14px;
    margin-top: 5px;
}

/* Renk Seçici */
.color-selector {
    display: flex;
    justify-content: left;
    gap: 10px;
    margin-top: 15px;
    width: 65%;
}

.color-circle {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
}

.color-circle.active {
    border: 2px solid #333;
}
.color-turquoise {
    background-color: #40E0D0;
}
/* Renkler */
.color-circle.blue {
    background-color: #1f4b77;
}
.color-circle.turquoise {
    background-color: #40E0D0;
}

.color-circle.white {
    background-color: #ffffff;
    border: 1px solid #ddd;
}

.color-circle.black {
    background-color: #000000;
}

.color-circle.gray {
    background-color: #bcbcbc;
}
.color-circle.red {
    background-color: #ff0000;
}
.color-circle.grey {
    background-color: grey;
}
.color-circle.green {
    background-color: green;
}
.color-circle.yellow {
    background-color: yellow;
}
.color-circle.brown {
    background-color: brown;
}
.color-circle.zontes-rd {
    background-color: grey;
}


.color-circle.exon-50 {
    background-color: green;
}
.color-circle.lavinia3 {
    background-color: #545F83;
}
.color-circle.virago2 {
    background-color: #94B4D3;
}
.color-circle.virago3 {
    background-color: #616567;
}


.color-circle.orange {
    background-color: orange;
}
.details-container {
    display: flex;
}

.color-info {
    width: 48%;
    text-align: left;
}

#colorDescription {
    font-weight: bold;
    color: #000000;
}


/* Responsive Tasarım */
@media (max-width: 768px) {
    .container {
        width: 90%;
        border-radius: 0;
    }

    .details-container {
        padding: 15px;
    }

    .color-info h3 {
        font-size: 18px;
    }

    .color-info p {
        font-size: 12px;
    }
}
.taksit-tabs {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.taksit-tab-buttons {
    display: flex;
    border-bottom: 2px solid #ddd;
}

.taksit-tab-btn {
    flex: 1;
    padding: 10px;
    cursor: pointer;
    background-color: #f9f9f9;
    border: none;
    text-align: center;
    font-size: 16px;
    transition: background-color 0.3s;
}

.taksit-tab-btn.active {
    background-color: #fff;
    border-bottom: 2px solid red;
}

.taksit-tab-btn:hover {
    background-color: #eaeaea;
}

.taksit-tab-contents {
    padding: 20px;
    background-color: #fff;
    border: 1px solid #ddd;
}

.taksit-tab-content {
    display: none;

}

.taksit-tab-content.active {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.taksit-bank {
    flex: 1 1 calc(50% - 20px);
    /* Her bir sütunu yüzde 50 genişlikte yap */
    box-sizing: border-box;
    padding: 10px;
    background-color: #fff;
}

.taksit-bank img {
    width: 100px;
    display: block;
    margin-bottom: 10px;
}

.taksit-tabs table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.taksit-tabs table th,
.taksit-tabs table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
}

.taksit-tabs table th {
    background-color: #f4f4f4;
}