.productv-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4rem 2rem;
    margin: 0 auto;
    gap: 3rem;
    flex-wrap: wrap;
}

.productv-section.reverse {
    flex-direction: row-reverse;
}

.productv-content {
    flex: 1;
}

.productv-title h1 {
    font-size: 3rem;
    color: var(--orange);
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.productv-caption h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--white);
    text-transform: uppercase;
}

.productv-caption p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--white);
    text-align: justify;
}

.productv-caption.with-features {
    text-align: center;
}

.productv-caption.with-features ul {
    display: inline-block;
    text-align: left;
    margin-top: 1rem;
    padding-left: 20px;
}

.productv-caption ul {
    list-style: none;
    padding: 0;
}

.productv-caption ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.productv-caption ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: var(--orange);
}

.productv-img {
    flex: 1;
    text-align: center;
}

.productv-img img {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: cover;
}

.productv-models-section {
    text-align: center;
    padding: 3rem 1rem;
}

.productv-models-title {
    font-size: 2rem;
    color: var(--orange);
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.productv-models {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.productv-model-item {
    text-decoration: none;
    text-align: center;
    color: var(--white);
    transition: transform 0.3s ease, 
    opacity 0.3s ease;
}

.productv-model-item:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.productv-model-item img {
    width: 150px;
    height: auto;
    border: 1px solid var(--orange);
}

.productv-model-name {
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.85);
    justify-content: center;
    align-items: center;
}

.modal-content {
    max-width: 90%;
    max-height: 90%;
    box-shadow: 0 0 20px rgba(255,255,255,0.3);
}

.close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    text-shadow: 0 0 5px black;
}

@media (max-width: 768px) {
    .productv-section {
        flex-direction: column;
        text-align: center;
    }
    .productv-section.reverse {
        flex-direction: column;
    }
    .productv-content {
        order: 2;
    }
    .productv-img {
        order: 1;
    }
}
