/* Prodotto.php specific styles */
.product-gallery {
    max-width: 600px;
    margin: 0 auto 30px;
}

.main-image {
    margin-bottom: 15px;
    text-align: center;
}

.main-image img {
    max-width: 100%;
    height: auto;
    max-height: 600px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    object-fit: contain;
}

.thumbnail-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.thumbnail {
    width: 60px;
    height: 60px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid #ddd;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.thumbnail:hover {
    transform: scale(1.05);
    border-color: #ff6b35;
}

.thumbnail.active {
    border-color: #ff6b35;
}

.cta-quotazione {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 25px;
    background-color: #ff6b35;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.cta-quotazione:hover {
    background-color: #e55a2b;
}

/* Breadcrumbs */
.breadcrumb {
    padding: 10px 0;
    margin-bottom: 20px;
    list-style: none;
    background-color: transparent;
    border-radius: 4px;
    font-size: 0.9rem;
    color: #6c757d;
}

.breadcrumb-item {
    display: inline;
}

.breadcrumb-item+.breadcrumb-item::before {
    display: inline-block;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    color: #6c757d;
    content: "/";
}

.breadcrumb-item a {
    color: #ff6b35;
    text-decoration: none;
}

.breadcrumb-item a:hover {
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #6c757d;
}