/* STYLES MOBILE POUR PRODUCT DETAIL */

.breadcrumb {
    text-align: center;
    font-size: 10px;
}

.product-title {
    font-size: 1.2rem;
    margin: 0.2rem 1rem;
    text-align: center;
}

.product-main-section {
    display: block;
    padding: 0;
    background-color: transparent;
    box-shadow: none;
}

.product-left-column {
    width: 100%;
}

.product-carousel,
.product-image-container {
    overflow: hidden;
}

.product-carousel {
    min-height: 250px;
}

.carousel-btn {
    padding: 0.6rem;
    font-size: 1.2rem;
}

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

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

.carousel-dots {
    bottom: 0.5rem;
}

.dot {
    width: 5px;
    height: 5px;
}

.product-right-column {
    display: none;
}

/* Infos Mobile (Statut + Prix + Référence) */
.product-mobile-info {
    margin: 0.5rem;
}

/* Ligne Statut et Prix côte à côte */
.status-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.availability-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 600;
}

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

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

.product-price {
    font-size: 1.6rem;
    font-weight: bold;
    color: #8b7355;
    text-align: right;
}

.product-price .amount {
    font-size: 1.6rem;
}

.product-price .currency {
    font-size: 1.1rem;
    margin-left: 0.2rem;
}

.product-sku {
    font-size: 0.5rem;
    color: #666;
    margin:0;
    border-bottom: 0;
    padding-bottom:0
}

/* Section commande Mobile */
.product-mobile-order {
    display: block;
}

.order-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #2c3e50;
    text-align: center;
}

.contact-buttons-primary {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    margin-left: 1rem;
    margin-right: 1rem;
}

.contact-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 0.5rem;
    border-radius: 45px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: transform 0.2s;
    margin-bottom: 0.2rem
}

.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;
}

.contact-button:active {
    transform: scale(0.98);
}

.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;
}

.unavailable-message {
    text-align: center;
    padding: 1rem;
    background-color: #f8d7da;
    border-radius: 8px;
    color: #721c24;
}

.unavailable-message p {
    margin: 0;
    font-size: 0.9rem;
}

.product-descriptions {
    margin: 0.5rem;
    border-radius: 8px;
}

.product-description-section h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.product-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #555;
}

.related-products {
    padding: 1rem;
    margin: 0.5rem;
}

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

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

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

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

.order-section-unavailable h2 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

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

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

.contact-button-secondary {
    padding: 0.6rem;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    font-size: 0.9rem;
    color: white;
}

.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;
}
