/* Product Square 600 Page Specific Styles */

.product-page {
    padding: 2rem 0;
    font-family: var(--font-arabic);
    color: var(--text-primary);
}

.product-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.product-images img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin-bottom: 1rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.product-images img:hover {
    transform: scale(1.05);
}

.gallery-thumbnails {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
}

.gallery-thumbnails img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.gallery-thumbnails img.active,
.gallery-thumbnails img:hover {
    border-color: var(--primary-color);
}

.product-info p {
    font-size: var(--font-size-lg);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.product-info h3 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.product-specs-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.product-specs-list li {
    background: var(--bg-secondary);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-secondary);
}

/* Responsive Design */
@media (max-width: 768px) {
    .product-details-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .gallery-thumbnails {
        justify-content: center;
    }
}
