body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff;
    color: #000;
}
        
.boutique-container {
    max-width: 1500px;
    background-color: #f8f9fa;
    margin: 80px auto 30px auto;
    padding: 0 15px;
}
        
.boutique-header {
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
}
       
.boutique-overlay {
    position: relative;
    padding: 20px;
    display: flex;
    align-items: center;
    background-color: #f8f9fa;
}
        
.boutique-logo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin-right: 30px;
    margin-left: 20px;
    background: white;
}
        
.boutique-info {
    flex: 1;
}
        
.boutique-title {
    margin: 0;
    font-size: 1.5rem;
    color: #000;
}
        
.boutique-description {
    margin: 10px 0;
    color: #333;
    font-size: 0.85rem;
    line-height: 1.4;
}
        
.boutique-rating {
    display: flex;
    align-items: center;
    margin: 10px 0;
}
        
.stars {
    color: #f1c40f;
    margin-right: 10px;
}

.boutique-rating span {
    font-size: 0.9rem;
    color: #333;
}
        
.boutique-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 15px;
}
        
.meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #000;
    font-size: 0.95rem;
}
        
#abonnement-btn {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s;
}
        
#abonnement-btn.abonne {
    background: #2ecc71;
}
        
#abonnement-btn:hover {
    opacity: 0.9;
}

.message-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background-color: #25D366;
    color: white;
    border-radius: 20px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.message-btn:hover {
    background-color: #128C7E;
}

.message-btn i {
    font-size: 16px;
}

.message-btn span {
    font-size: 14px;
}

.section-container {
    margin: 0 auto 20px auto;
    width: 100%;
    box-sizing: border-box;
    background-color: #fff;
}

.section-title {
    font-size: 1.3rem;
    color: #000;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 5px 0;
    padding: 5px;
}

.produits-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    width: 100%;
    box-sizing: border-box;
}

.produits,
.products-grid {
    display: none;
}

.product-card {
    overflow: hidden;
    position: relative;
    background: white;
}

.product-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.product-card a {
    display: block;
    height: 100%;
    width: 100%;
    text-decoration: none;
    color: inherit;
}

.product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
 
.product-content {
    padding: 0px 5px;
}

.product-title {
    font-size: 0.83rem;
    color: #000;
    margin: 5px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-rating {
    display: flex;
    align-items: center;
    margin: 5px 0;
    color: #f1c40f;
    font-size: 0.9rem;
}

.product-rating span {
    color: #000;
    font-size: 0.8rem;
    margin-left: 5px;
}

.product-price {
    font-weight: bold;
    color: #000;
    font-size: 1rem;
}

.product-old-price {
    text-decoration: line-through;
    color: #95a5a6;
    font-size: 0.85rem;
    font-weight: normal;
    margin-left: 5px;
}

.discount-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #151335;
    color: white;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 12px;
    z-index: 2;
}

.flash-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #ff4757;
    color: white;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 0.8rem;
    font-weight: bold;
    z-index: 10;
}

.time-remaining {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #e0e0e0;
    z-index: 10;
}

.time-progress {
    height: 100%;
    background-color: #ff4757;
    width: 100%;
    transition: width 1s linear;
}

.flash-alert {
    background-color: #ff4757;
    color: white;
    padding: 5px;
    border-radius: 4px;
    font-size: 0.8rem;
    margin-top: 5px;
    text-align: center;
    animation: pulse 1s infinite;
}

.flash-alert i {
    margin-right: 5px;
}

@keyframes pulse {
    0% { opacity: 0.6; }
    50% { opacity: 1; }
    100% { opacity: 0.6; }
}

.no-items {
    text-align: center;
    padding: 40px;
    background: white;
    color: #888;
    margin: 0;
}

.image-container {
    position: relative;
    display: block;
}

.image-container img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.produit,
.produits,
.products-grid {
    background-color: transparent;
}

@media (max-width: 480px) {
    .boutique-container {
        margin-top: 10px;
        margin-bottom: 30px;
        padding: 0 5px;
    }
    
    .boutique-header {
        margin-bottom: 20px;
    }
    
    .boutique-overlay {
        padding: 10px;
        flex-direction: column;
        align-items: center;
    }
    
    .boutique-logo {
        width: 130px;
        height: 130px;
        margin-right: 0;
        margin-left: 0;
        margin-bottom: 15px;
    }
    
    .boutique-info {
        width: 100%;
        text-align: center;
    }
    
    .boutique-title {
        font-size: 1rem;
    }
    
    .boutique-description {
        font-size: 0.8rem;
    }
    
    .boutique-rating {
        justify-content: center;
    }
    
    .boutique-rating span {
        font-size: 0.8rem;
    }
    
    .boutique-meta {
        justify-content: center;
        gap: 15px;
    }
    
    .meta-item {
        font-size: 0.85rem;
    }
    
    #abonnement-btn {
        font-size: 0.8rem;
    }
    
    .section-container {
        margin-bottom: 25px;
    }
    
    .section-title {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
    
    .produits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .no-items {
        padding: 30px;
    }
    
    .product-title {
        font-size: 0.8rem;
    }
    
    .product-price {
        font-size: 0.9rem;
    }
    
    .product-old-price {
        font-size: 0.7rem;
    }
    
    .flash-badge {
        font-size: 0.7rem;
        padding: 4px 8px;
    }
    
    .discount-badge {
        font-size: 10px;
        padding: 4px 8px;
    }
    
    .product-rating {
        font-size: 0.75rem;
    }
    
    .message-btn {
        padding: 6px 12px;
    }
    
    .message-btn i {
        font-size: 14px;
    }
    
    .message-btn span {
        font-size: 12px;
    }
}

@media (min-width: 481px) and (max-width: 960px) {
    .boutique-container {
        margin-top: 10px;
        margin-bottom: 30px;
        padding: 0 10px;
    }
    
    .boutique-header {
        margin-bottom: 25px;
    }
    
    .boutique-overlay {
        padding: 15px;
        flex-direction: column;
        align-items: center;
    }
    
    .boutique-logo {
        width: 150px;
        height: 150px;
        margin-right: 0;
        margin-left: 0;
        margin-bottom: 15px;
    }
    
    .boutique-info {
        width: 100%;
        text-align: center;
    }
    
    .boutique-title {
        font-size: 1.2rem;
    }
    
    .boutique-description {
        font-size: 0.85rem;
    }
    
    .boutique-rating {
        justify-content: center;
    }
    
    .boutique-rating span {
        font-size: 0.85rem;
    }
    
    .boutique-meta {
        justify-content: center;
    }
    
    .meta-item {
        font-size: 0.9rem;
    }
    
    #abonnement-btn {
        font-size: 0.85rem;
    }
    
    .section-container {
        margin-bottom: 30px;
    }
    
    .section-title {
        font-size: 1rem;
        margin-bottom: 12px;
    }
    
    .produits-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    .no-items {
        padding: 35px;
    }
    
    .product-title {
        font-size: 0.85rem;
    }
    
    .product-price {
        font-size: 0.95rem;
    }
    
    .product-old-price {
        font-size: 0.75rem;
    }
    
    .product-rating {
        font-size: 0.8rem;
    }
    
    .message-btn {
        padding: 7px 14px;
    }
}

@media (min-width: 961px) {
    .produits-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}