.product-modal-content {
    max-width: 1000px;
    padding: 0;
    overflow: hidden;
}

.pm-body {
    display: flex;
    flex-direction: row;
    min-height: 500px;
}

.pm-left {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    background: var(--bg-card);
}

.pm-right {
    flex: 1.2;
    background: #000;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pm-title {
    font-size: 2rem;
    margin-bottom: 10px;
    line-height: 1.1;
}

.pm-price {
    font-size: 1.8rem;
    color: var(--primary-green);
    font-weight: 700;
    margin-bottom: 20px;
    display: block;
}

.pm-desc {
    color: #ccc;
    font-size: 0.95rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.pm-features {
    margin-bottom: 30px;
}

.pm-features li {
    margin-bottom: 8px;
    color: var(--text-muted);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pm-features li::before {
    content: '✓';
    color: var(--primary-green);
    font-weight: bold;
}

.pm-gallery-container {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.pm-gallery-wrapper {
    width: 100%;
    height: 100%;
}

#pm-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.gallery-arrow:hover {
    background: var(--primary-green);
    color: white;
}

.prev-arrow { left: 20px; }
.next-arrow { right: 20px; }

@media (max-width: 900px) {
    .pm-body {
        flex-direction: column-reverse;
    }
    .pm-right {
        height: 300px;
        flex: none;
    }
    .pm-left {
        padding: 30px;
        border-right: none;
    }
}