.product-customizer-box {
    display: flex;
    flex-direction: row;
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    gap: 30px;
    background: #fff;
}

.product-customizer-left {
    flex: 0 0 350px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-customizer-left-text {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.product-customizer-left-body {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cushion-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cushion-options-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.cushion-options-list {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cushion-item {
    width: 100px;
    height: 100px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

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

.armrest-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.armrest-options-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.armrest-options-list {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.armrest-item {
    width: 100px;
    height: 100px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

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

.custom-features {
    margin-top: 20px;
    padding: 15px;
    background: #f8f8f8;
    border-radius: 8px;
}

.custom-features-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 14px;
    color: #666;
}

.custom-features-item:last-child {
    margin-bottom: 0;
}

.custom-features-item::before {
    content: "✓";
    color: #7736a8;
    font-weight: bold;
    font-size: 16px;
}

.get-quote-btn {
    margin-top: 20px;
    padding: 12px 30px;
    background: #1e3a8a;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.get-quote-btn:hover {
    background: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}

.product-customizer-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.product-image-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}

.product-main-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.3s;
}

.color-selector {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 100%;
}

.color-selector-label {
    font-size: 14px;
    color: #666;
    text-align: center;
}

.color-swatches {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.color-swatch {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.color-swatch-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid transparent;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.color-swatch.active .color-swatch-circle {
    border-color: #7736a8;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(119, 54, 168, 0.4);
}

.color-swatch-label {
    font-size: 12px;
    color: #333;
    text-align: center;
    max-width: 80px;
}

.color-swatch.active .color-swatch-label {
    color: #7736a8;
    font-weight: 600;
}

@media only screen and (max-width: 768px) {
    .product-customizer-box {
        flex-direction: column;
        padding: 15px;
    }

    .product-customizer-left {
        flex: 1;
        width: 100%;
    }

    .color-swatches {
        gap: 10px;
    }

    .color-swatch-circle {
        width: 40px;
        height: 40px;
    }
}