/* Styles additionnels pour le contenu du magasin */
.category img {
    width: 100%;
    height: auto;
    border-radius: 8px 8px 0 0;
    margin-bottom: 1rem;
}

.price-tag {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-weight: bold;
    margin-top: 5px;
}

.price-range {
    margin-top: 10px;
    font-size: 0.9rem;
    color: var(--dark-color);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.product-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-info {
    padding: 15px;
}

.product-title {
    font-weight: bold;
    margin-bottom: 5px;
}

.product-price {
    color: var(--primary-color);
    font-weight: bold;
}

.product-description {
    font-size: 0.9rem;
    margin-top: 8px;
    color: #666;
}

.store-hours {
    background-color: var(--bg-color);
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
}

.store-hours h3 {
    text-align: center;
    margin-bottom: 15px;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.day {
    font-weight: bold;
}

.coming-soon-badge {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: bold;
    margin-bottom: 15px;
}

.donation-process {
    margin-top: 40px;
}

.process-flow {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin: 40px 0;
}

.process-flow::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--light-color);
    z-index: 1;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 20%;
}

.step-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 24px;
    margin-bottom: 15px;
}

.step-title {
    text-align: center;
    font-weight: bold;
    margin-bottom: 8px;
}

.step-description {
    text-align: center;
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-flow {
        flex-direction: column;
        align-items: center;
    }
    
    .process-flow::before {
        display: none;
    }
    
    .process-step {
        width: 80%;
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .hours-grid {
        grid-template-columns: 1fr;
    }
}
