/* STYLES DESKTOP POUR PRODUCT DETAIL */

.breadcrumb {
    text-align: center;
    font-size: 14px;
    padding: 1rem 0;
}

.product-title {
    font-size: 2.2rem;
    color: #5a4a40;
    text-align: center;
    margin: 1rem 2rem;
    font-weight: 600;
}

.product-main-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 2rem auto;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.product-left-column {
    display: flex;
    flex-direction: column;
}

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

.product-mobile-section,
.product-mobile-order,
.product-mobile-info {
    display: none;
}

.product-carousel,
.product-image-container {
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    background-color: #f9f7f5;
}

.product-carousel {
    position: relative;
    min-height: 400px;
}

.carousel-images {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-image {
    display: none;
    width: 100%;
    height: 100%;
}

.carousel-image.active {
    display: block;
}

.carousel-image img,
.product-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 1rem;
    cursor: pointer;
    font-size: 1.5rem;
    border-radius: 50%;
    transition: background 0.3s;
    z-index: 10;
}

.carousel-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}

.carousel-btn-prev {
    left: 1rem;
}

.carousel-btn-next {
    right: 1rem;
}

.carousel-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active,
.dot:hover {
    background: white;
}

.product-info-below-image {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.product-sku {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1rem;
}

.availability-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.availability-badge.available {
    background-color: #d4edda;
    color: #155724;
}

.availability-badge.unavailable {
    background-color: #f8d7da;
    color: #721c24;
}

.product-price {
    font-size: 2.5rem;
    font-weight: bold;
    color: #8b7355;
    margin: 1rem 0;
}

.currency {
    font-size: 1.8rem;
}

.order-section {
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.order-header h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.order-subtitle {
    font-size: 1rem;
    opacity: 0.95;
    margin-bottom: 1.5rem;
}

.contact-buttons-primary {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1.5rem 0;
}

.contact-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.contact-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.button-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.button-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.button-text {
    font-weight: 600;
    font-size: 1rem;
}

.whatsapp-primary {
    background-color: #25D366;
    color: white;
}

.messenger-primary {
    background-color: #0084FF;
    color: white;
}

.instagram-primary {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.trust-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}

.badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.8rem;
    border-radius: 8px;
    font-size: 0.95rem;
    text-align: center;
}

.order-section-unavailable {
    text-align: center;
    padding: 2rem;
}

.order-section-unavailable h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.order-section-unavailable p {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.contact-buttons-secondary {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.contact-button-secondary {
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    font-size: 1rem;
    color: white;
    transition: transform 0.2s;
}

.contact-button-secondary:hover {
    transform: translateY(-2px);
}

.contact-button-secondary.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.contact-button-secondary.messenger {
    background-color: #0084FF;
}

.contact-button-secondary.whatsapp {
    background-color: #25D366;
}

.product-description-section {
    max-width: 1400px;
    margin: 2rem auto;
    padding: 2rem;
    background: white;
    border-radius: 15px;

}

.product-description-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    text-align: center;
    text-align: center;
}

.product-descriptions {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    padding-left: 1.5rem;
    text-align: center;
}

.related-products {
    max-width: 1400px;
    margin: 2rem auto;
    padding: 2rem;
}

.related-products h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.related-products .products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.related-products .product-card {
    transition: transform 0.3s, box-shadow 0.3s;
}

.related-products .product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.related-products .product-card-wrapper {
    width: 100%;
}
