.product-section {
    padding: 60px 0;
}

.product-container {
    display: flex;
    justify-content: center;
}

.product-card {
    display: flex;
    flex-direction: row;
    background-color: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.6);
    max-width: 900px;
    width: 100%;
}

.product-image {
    flex: 1;
    min-width: 300px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-image img:hover {
    transform: scale(1.05);
}

.product-info {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.product-price {
    font-size: 2rem;
    font-weight: 600;
    color: #d859ff;
    margin-bottom: 20px;
}

.product-description {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.6;
}

.btn-large {
    padding: 16px 40px;
    font-size: 1rem;
}

.product-availability {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #4ade80;
}

.order-block {
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid #1c1c24;
}

.order-text {
    margin-bottom: 20px;
    font-weight: 500;
}

.order-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.btn-outline {
    background: transparent;
    border: 1px solid #d859ff;
    color: #d859ff;
    border-radius: 50px;
    padding: 14px 30px;
    text-decoration: none;
    transition: 0.2s;
}

.btn-outline:hover {
    background: #d859ff;
    color: #fff;
}

.phone-link {
    display: flex;
    align-items: center;
    font-weight: 600;
    color: var(--text-main);
    text-decoration: none;
}

.phone-link:hover {
    color: #d859ff;
}

@media (max-width: 900px) {
    .product-card {
        flex-direction: column;
    }
    .product-image {
        min-height: 300px;
    }
    .product-info {
        padding: 25px;
    }
}