/* Styles pour la grille de produits */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.product-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    padding: 20px;
}

.product-title {
    font-size: 1.2em;
    margin: 0 0 10px;
    color: #333;
}

.product-price {
    font-size: 1.1em;
    color: #0073aa;
    margin-bottom: 15px;
}

.product-description {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 20px;
}

.variations {
    margin-bottom: 20px;
}

.variation-select {
    margin-bottom: 10px;
}

.variation-select label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.variation-select select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fff;
}

.quantity-selector {
    margin-bottom: 20px;
}

.quantity-selector label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.quantity-selector input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.single_add_to_cart_button {
    width: 100%;
    padding: 12px;
    background: #0073aa;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1em;
    transition: background 0.3s ease;
}

.single_add_to_cart_button:hover {
    background: #005177;
}

/* Styles pour le slider de produits */
.product-slider {
    width: 100%;
    padding: 20px 0;
    margin-top: 30px;
}

.product-slider .swiper-slide {
    height: auto;
    padding: 10px;
}

.product-slider .swiper-button-next,
.product-slider .swiper-button-prev {
    color: #0073aa;
    background: rgba(255, 255, 255, 0.9);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.product-slider .swiper-button-next:after,
.product-slider .swiper-button-prev:after {
    font-size: 20px;
}

.product-slider .swiper-pagination-bullet {
    background: #0073aa;
}

.product-slider .swiper-pagination-bullet-active {
    background: #005177;
}

.customer-login-success {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.success-header {
    text-align: center;
    margin-bottom: 30px;
}

.success-header h2 {
    color: #333;
    margin-bottom: 10px;
}

.success-header p {
    color: #666;
    font-size: 1.1em;
} 