/* Product Page Styles */
.product-page {
    padding: 2rem 0;
}

.product-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.product-gallery {
    background: #f9f9f9;
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.main-product-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.product-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.product-details h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    font-weight: 400;
    color: #222;
    margin: 0;
    letter-spacing: 2px;
}

.product-price {
    font-size: 2rem;
    font-weight: 700;
    color: #ff6b35;
    margin: 0;
}

.product-size {
    font-size: 1.2rem;
    color: #555;
    margin: 0;
}

.product-id {
    font-size: 0.95rem;
    color: #888;
    margin: 0;
    font-weight: 400;
}

.product-description {
    margin-top: 2rem;
}

.product-description h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    font-weight: 400;
    color: #222;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.product-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

/* Styling pentru link-uri ca shoe-card */
a.shoe-card {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* Responsive pentru pagina de produs */
@media (max-width: 768px) {
    .product-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-details h1 {
        font-size: 2rem;
    }

    .product-price {
        font-size: 1.5rem;
    }
}
