.card {
    background-color: white;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.card-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.image-section {
    flex: 1;
    min-width: 300px;
}

.product-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    background-color: #f9f9f9;
    padding: 20px;
}

.info-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.category {
    color: #1e3a8a;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 1px;

}

.title {
    font-size: 48px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 10px;

}

.title .red {
    color: #ef4444;
    display: block;
}

.title .blue {
    color: #1e3a8a;
    display: block;
}

.price-tag {
    position: relative;

}

.tag-image {
    width: 300px;
    height: auto;
    display: block;
}

.price-content {
    position: absolute;
    left: 10px;
    top: 55%;
    transform: translateY(-50%);
    color: white;
}

.price-label {
    font-size: 18px;
    font-weight: 600;
    line-height: 15px;
}

.price-value {
    font-size: 30px;
    font-weight: 700;
}

.financing {
    color: #666;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 10px;
    margin-top: 10px;

}

.btn-info {
    background-color: #1e3a8a;
    color: white;
    border: none;
    padding: 12px 40px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: fit-content;
}

.btn-info:hover {
    background-color: #1e2d5f;
}

.divider {
    height: 1px;
    background-color: #1e3a8a;
    width: 50%;
    margin: 20px auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .card {
        padding: 20px;
    }

    .card-content {
        gap: 30px;
    }

    .title {
        font-size: 40px;
    }

    .tag-image {
        width: 250px;
    }

    .price-value {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .card-content {
        flex-direction: column;
        gap: 20px;
    }

    .image-section {
        min-width: 100%;
    }

    .info-section {
        width: 100%;
    }

    .title {
        font-size: 32px;
    }

    .tag-image {
        width: 100%;
        max-width: 280px;
    }

    .price-content {
        left: 20px;
    }

    .price-label {
        font-size: 12px;
    }

    .price-value {
        font-size: 18px;
    }

    .category {
        font-size: 12px;
    }

    .financing {
        font-size: 14px;
    }

    .btn-info {
        padding: 10px 30px;
        font-size: 14px;
    }


}

@media (max-width: 480px) {

    .card {
        padding: 15px;
        border-radius: 15px;
    }

    .title {
        font-size: 24px;
        text-align: center;
    }

    .tag-image {
        width: 100%;
        max-width: 240px;
        margin: 0 auto;
    }

    .price-content {
        left: 55px;
    }

    .price-label {
        font-size: 20px;
    }

    .price-value {
        font-size: 20px;
    }

    .category {
        font-size: 18px;
        text-align: center;
    }

    .financing {
        font-size: 18px;
        text-align: center;
    }

    .btn-info {
        padding: 8px 25px;
        font-size: 13px;
        margin: 0 auto;
    }

    .product-image {
        padding: 10px;
    }

}