/* ===================================================================
   HERO PREMIUM - CAROUSEL VERTICAL DÉCALÉ
   Design ultra-premium avec effet de profondeur et micro-animations
   =================================================================== */

.hero-premium {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: start;
    min-height: auto;
    padding: 40px 0 40px 0;
    margin-top: 0;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
}

/* Effet de fond subtil - Désactivé */
.hero-premium::before {
    display: none;
}

/* CONTENU GAUCHE */
.hero-premium__content {
    z-index: 2;
}

.hero-premium__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(184, 70, 31, 0.12) 0%, rgba(255, 245, 245, 0.85) 100%);
    border: 1px solid rgba(184, 70, 31, 0.25);
    border-radius: 50px;
    color: var(--primary-color);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease-out;
}

.hero-premium__badge i {
    /* animation: pulse 2s ease-in-out infinite; */
}

.hero-premium__title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--color-text);
    animation: fadeInUp 0.6s ease-out 0.1s backwards;
}

.hero-premium__title-gradient {
    display: block;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-premium__subtitle {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--color-text-light);
    margin-bottom: 40px;
    max-width: 500px;
    animation: fadeInUp 0.6s ease-out 0.2s backwards;
}

.hero-premium__features {
    display: flex;
    gap: 32px;
    margin-bottom: 40px;
    animation: fadeInUp 0.6s ease-out 0.3s backwards;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-text);
}

.hero-feature i {
    font-size: 1.25rem;
    color: var(--primary-color);
}

.hero-premium__cta {
    animation: fadeInUp 0.6s ease-out 0.4s backwards;
}

.btn-hero {
    padding: 18px 40px;
    font-size: 1.0625rem;
    font-weight: 600;
    background: linear-gradient(135deg, #B8461F 0%, #8B2F0F 100%);
    color: #FFFFFF;
    box-shadow: 0 8px 24px rgba(184, 70, 31, 0.35);
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(184, 70, 31, 0.45);
}

/* PARTIE DROITE - 2 CARRÉS */
.hero-premium__right {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    z-index: 1;
}

/* CARRÉ 1 : CAROUSEL PHOTOS - LIQUID GLASS */
.hero-carousel-box {
    position: relative;
    background: #FFFFFF;
    border: 1px solid rgba(184, 70, 31, 0.15);
    border-radius: 16px;
    overflow: hidden;
    height: 240px;
    box-shadow: 0 2px 8px rgba(184, 70, 31, 0.08);
    animation: slideInRight 0.6s ease-out backwards;
    transition: all 0.3s ease;
}

.hero-carousel-box:hover {
    border-color: rgba(184, 70, 31, 0.25);
    box-shadow: 0 4px 16px rgba(184, 70, 31, 0.12);
    transform: translateY(-2px);
}

.hero-carousel-slides {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 280px;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-slide__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
}

.hero-slide__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--primary-gradient);
    color: var(--color-white);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 12px;
}

.hero-slide__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 12px;
}

.hero-slide__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--color-white);
    color: var(--primary-color);
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-slide__btn:hover {
    background: var(--primary-gradient);
    color: var(--color-white);
    transform: translateX(4px);
}

.hero-carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-dot {
    width: 10px;
    height: 10px;
    background: rgba(184, 70, 31, 0.35);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

.hero-dot::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: rgba(184, 70, 31, 0);
    transition: all 0.4s ease;
}

.hero-dot:hover::after {
    background: rgba(184, 70, 31, 0.12);
}

.hero-dot.active {
    width: 32px;
    background: var(--primary-gradient);
    border-radius: 5px;
    box-shadow: 0 4px 12px rgba(184, 70, 31, 0.45);
}

.hero-dot.active::after {
    background: rgba(184, 70, 31, 0.18);
}

/* CARRÉ 2 : OFFRE PROMO - LIQUID GLASS */
.hero-promo-box {
    position: relative;
    background: linear-gradient(135deg,
            rgba(255, 245, 245, 0.95) 0%,
            rgba(255, 255, 255, 0.9) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(184, 70, 31, 0.18);
    border-radius: 32px;
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
    box-shadow:
        0 8px 32px rgba(184, 70, 31, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    animation: slideInRight 0.6s ease-out 0.2s backwards;
    transition: all 0.4s ease;
    overflow: hidden;
}

.hero-promo-box::before {
    display: none;
}

.hero-promo-box:hover {
    border-color: rgba(184, 70, 31, 0.35);
    box-shadow:
        0 12px 48px rgba(184, 70, 31, 0.18),
        0 0 0 4px rgba(184, 70, 31, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.hero-promo__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--primary-gradient);
    color: var(--color-white);
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: 50px;
    margin-bottom: 20px;
    width: fit-content;
    box-shadow:
        0 6px 20px rgba(184, 70, 31, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.hero-promo__badge i {
    animation: bounce 1s ease-in-out infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }
}

.hero-promo__timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    border: 1px solid rgba(184, 70, 31, 0.12);
}

.timer-unit {
    text-align: center;
    position: relative;
}

.timer-value {
    font-size: 2.25rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    text-shadow: 0 4px 12px rgba(184, 70, 31, 0.25);
    filter: drop-shadow(0 0 8px rgba(184, 70, 31, 0.35));
}

.timer-label {
    font-size: 0.6875rem;
    color: var(--color-text-light);
    margin-top: 6px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.timer-sep {
    font-size: 1.75rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.hero-promo__product {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(184, 70, 31, 0.12);
    border-radius: 24px;
    margin-bottom: 20px;
    flex: 1;
    transition: all 0.3s ease;
}

.hero-promo__product:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(184, 70, 31, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(184, 70, 31, 0.15);
}

.hero-promo__image {
    width: 90px;
    height: 90px;
    border-radius: 20px;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid rgba(184, 70, 31, 0.18);
    box-shadow: 0 4px 16px rgba(184, 70, 31, 0.12);
    transition: all 0.3s ease;
}

.hero-promo__product:hover .hero-promo__image {
    border-color: rgba(184, 70, 31, 0.35);
    transform: scale(1.05);
}

.hero-promo__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-promo__info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 8px;
}

.hero-promo__price {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.price-new {
    font-size: 1.25rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-old {
    font-size: 0.875rem;
    color: var(--color-text-lighter);
    text-decoration: line-through;
}

.discount-badge {
    padding: 6px 12px;
    background: var(--primary-gradient);
    color: var(--color-white);
    font-size: 0.75rem;
    font-weight: 800;
    border-radius: 8px;
    box-shadow:
        0 4px 12px rgba(184, 70, 31, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.hero-promo-box .btn {
    border-radius: 50px;
    padding: 16px 32px;
    font-weight: 700;
    box-shadow:
        0 8px 24px rgba(184, 70, 31, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.hero-promo-box .btn:hover {
    transform: translateY(-3px);
    box-shadow:
        0 12px 32px rgba(184, 70, 31, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

/* ANIMATIONS */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }

    to {
        opacity: 1;
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hero-premium {
        grid-template-columns: 1fr;
        gap: 60px;
        padding: 60px 0;
    }

    .hero-premium__title {
        font-size: 2.5rem;
    }

    .hero-card:nth-child(2),
    .hero-card:nth-child(3) {
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .hero-premium {
        padding: 40px 0;
    }

    .hero-premium__title {
        font-size: 2rem;
    }

    .hero-premium__features {
        flex-direction: column;
        gap: 16px;
    }

    .hero-card {
        grid-template-columns: 80px 1fr auto;
        gap: 16px;
        padding: 16px;
    }

    .hero-card__image {
        width: 80px;
        height: 80px;
    }

    .hero-card__title {
        font-size: 1rem;
    }

    .price-new {
        font-size: 1.25rem;
    }
}


/* ===================================================================
   HOT DEALS BOX - Style inspiré de l'image
   =================================================================== */

.hero-hotdeal-box {
    position: relative;
    background: #FFFFFF;
    border: 1px solid rgba(184, 70, 31, 0.15);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 8px rgba(184, 70, 31, 0.08);
    animation: slideInRight 0.6s ease-out 0.2s backwards;
    transition: all 0.3s ease;
    overflow: hidden;
}

.hero-hotdeal-box:hover {
    border-color: rgba(184, 70, 31, 0.25);
    box-shadow: 0 4px 16px rgba(184, 70, 31, 0.12);
    transform: translateY(-2px);
}

/* Tout sur une seule ligne */
.hotdeal-single-row {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
}

.hotdeal-icon {
    width: 55px;
    height: 55px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow:
        0 8px 24px rgba(184, 70, 31, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
    /* animation: pulse 2s ease-in-out infinite; */
    flex-shrink: 0;
}

.hotdeal-icon i {
    font-size: 1.625rem;
    color: var(--color-white);
    /* animation: bounce 1s ease-in-out infinite; */
}

.hotdeal-title {
    font-size: 1.375rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    white-space: nowrap;
}

.hotdeal-timer {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(184, 70, 31, 0.95) 0%, rgba(184, 70, 31, 0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: #FFF;
    font-size: 1.0625rem;
    font-weight: 700;
    font-family: 'Courier New', monospace;
    box-shadow: 0 4px 16px rgba(184, 70, 31, 0.4);
    white-space: nowrap;
}

.hotdeal-timer i {
    color: #FFD700;
}

.hotdeal-timer i {
    color: #FFA500;
    animation: none;
}

.hotdeal-timer span {
    animation: blink 1.5s ease-in-out infinite;
}

/* Image produit à droite */
.hotdeal-product-img {
    position: relative;
    width: 105px;
    height: 105px;
    background: white;
    border: 2px solid rgba(184, 70, 31, 0.25);
    border-radius: 16px;
    padding: 8px;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(184, 70, 31, 0.15);
    transition: all 0.3s ease;
    margin-left: auto;
    margin-bottom: 12px;
}

.hotdeal-product-img:hover {
    border-color: rgba(184, 70, 31, 0.5);
    box-shadow: 0 6px 24px rgba(184, 70, 31, 0.25);
}

.hotdeal-badge {
    position: absolute;
    top: 4px;
    left: 4px;
    background: var(--primary-gradient);
    color: white;
    padding: 3px 7px;
    border-radius: 5px;
    font-size: 0.5625rem;
    font-weight: 800;
    text-transform: uppercase;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(184, 70, 31, 0.4);
}

.hotdeal-product-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.hotdeal-product-img:hover img {
    transform: scale(1.08);
}



/* Info produit */
.hotdeal-info {
    margin-bottom: 20px;
}

.hotdeal-info h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-text);
    margin: 0 0 12px 0;
}

.hotdeal-price {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.hotdeal-price .price-old {
    font-size: 1rem;
    color: var(--color-text-lighter);
    text-decoration: line-through;
}

.hotdeal-price .price-new {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hotdeal-price .discount {
    padding: 6px 12px;
    background: var(--primary-gradient);
    color: var(--color-white);
    font-size: 0.875rem;
    font-weight: 800;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(184, 70, 31, 0.35);
}

/* Bouton SHOP NOW */
.hotdeal-btn {
    width: 100%;
    padding: 14px 28px;
    background: var(--primary-gradient);
    color: var(--color-white);
    font-size: 1rem;
    font-weight: 800;
    border-radius: 50px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 8px 24px rgba(184, 70, 31, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hotdeal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(184, 70, 31, 0.5);
}

.shop-premium {
    background: linear-gradient(180deg, #FAFAFA 0%, #FFFFFF 50%, #F8F8F8 100%);
    padding: 80px 0;
}

.shop-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-title-shop {
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: #1A1A1A;
    margin-bottom: 32px;
    text-align: center;
}

.categories-image-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    margin-bottom: 60px;
    padding: 20px 0 40px 0;
    flex-wrap: wrap;
}

.category-image-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-image-wrapper {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.category-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.category-image-item:hover .category-image-wrapper {
    transform: scale(1.05);
}

.category-image-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #666;
    letter-spacing: 0;
    transition: all 0.3s ease;
}

.category-image-item:hover .category-image-label {
    color: var(--primary-color);
}

.trending-section {
    margin-bottom: 100px;
}

.trending-carousel {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 8px 0 24px 0;
}

.trending-carousel::-webkit-scrollbar {
    display: none;
}

.trending-card {
    min-width: 400px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    text-decoration: none;
    display: block;
    position: relative;
}

.trending-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.1);
}

.trending-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
}

.trending-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.trending-card:hover .trending-image img {
    transform: scale(1.08);
}

.trending-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 8px 16px;
    background: rgba(184, 70, 31, 0.95);
    backdrop-filter: blur(8px);
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.trending-content {
    padding: 24px;
}

.trending-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 12px;
}

.trending-description {
    font-size: 0.9375rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.trending-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #B8461F 0%, #8B2F0F 100%);
    color: #FFFFFF;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.trending-btn:hover {
    transform: translateX(4px);
    box-shadow: 0 8px 24px rgba(184, 70, 31, 0.35);
}

.products-grid-shop {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
    margin-bottom: 100px;
}

.product-shop-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    text-decoration: none;
    display: block;
    position: relative;
}

.product-shop-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.product-shop-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 10;
}

.product-badge-shop {
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.badge-hot {
    background: rgba(255, 69, 0, 0.95);
    color: #FFFFFF;
}

.badge-new {
    background: rgba(34, 197, 94, 0.95);
    color: #FFFFFF;
}

.badge-promo {
    background: rgba(184, 70, 31, 0.95);
    color: #FFFFFF;
}

.badge-top {
    background: rgba(139, 92, 246, 0.95);
    color: #FFFFFF;
}

.product-shop-image {
    width: 100%;
    height: 320px;
    overflow: hidden;
    background: #F5F5F5;
}

.product-shop-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-shop-card:hover .product-shop-image img {
    transform: scale(1.1);
}

.product-shop-info {
    padding: 20px;
}

.product-shop-title {
    font-size: 1rem;
    font-weight: 500;
    color: #1A1A1A;
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-shop-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
}

.stars {
    display: flex;
    gap: 2px;
    color: #fbbf24;
}

.star {
    color: #fbbf24;
    font-size: 0.875rem;
}

.rating-count {
    font-size: 0.8125rem;
    color: #999;
}

.product-shop-price {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.price-current {
    font-size: 1.375rem;
    font-weight: 700;
    color: #B8461F;
}

.price-old {
    font-size: 1rem;
    color: #999;
    text-decoration: line-through;
}

.price-discount {
    padding: 4px 8px;
    background: rgba(184, 70, 31, 0.12);
    color: #B8461F;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 6px;
}

.product-shop-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-sold {
    font-size: 0.8125rem;
    color: #666;
}

.ideas-section {
    margin-bottom: 80px;
}

.ideas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.idea-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    text-decoration: none;
    display: block;
}

.idea-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.idea-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.idea-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.idea-card:hover .idea-image img {
    transform: scale(1.05);
}

.idea-content {
    padding: 24px;
}

.idea-tag {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(184, 70, 31, 0.12);
    color: #B8461F;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 8px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.idea-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 8px;
    line-height: 1.4;
}

.idea-description {
    font-size: 0.9375rem;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .shop-container {
        padding: 0 20px;
    }
    
    .section-title-shop {
        font-size: 2rem;
        margin-bottom: 32px;
    }
    
    .categories-shop-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .category-shop-card {
        padding: 32px 20px;
    }
    
    .trending-card {
        min-width: 320px;
    }
    
    .products-grid-shop {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .ideas-grid {
        grid-template-columns: 1fr;
    }
}



/* ===================================================================
   MOBILE - Cartes produits identiques à "Produits Tendance"
   Plus d'espace pour un design moins chargé
   =================================================================== */
@media (max-width: 768px) {
    .products-grid-shop {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 16px !important;
        row-gap: 20px !important;
        padding: 0 8px !important;
    }
    
    .product-shop-card {
        border-radius: 10px !important;
        background: white !important;
        border: 1px solid rgba(0, 0, 0, 0.08) !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06) !important;
    }
    
    .product-shop-card:hover,
    .product-shop-card:active {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
        transform: translateY(-2px) !important;
    }
    
    .product-shop-image {
        height: 160px !important;
        border-radius: 10px 10px 0 0 !important;
        background: transparent !important;
    }
    
    .product-shop-info {
        padding: 10px !important;
    }
    
    .product-shop-title {
        font-size: 11px !important;
        line-height: 1.3 !important;
        margin-bottom: 6px !important;
        color: #1a1a1a !important;
        font-weight: 600 !important;
    }
    
    .product-shop-rating {
        margin-bottom: 3px !important;
        gap: 4px !important;
    }
    
    .stars {
        font-size: 9px !important;
        color: #fbbf24 !important;
        letter-spacing: 0.5px !important;
    }
    
    .star {
        font-size: 9px !important;
    }
    
    .rating-count {
        font-size: 8px !important;
        color: #999 !important;
    }
    
    .product-shop-price {
        gap: 5px !important;
        margin-bottom: 0 !important;
    }
    
    .price-current {
        font-size: 13px !important;
        font-weight: 700 !important;
        background: linear-gradient(135deg, #B8461F 0%, #8B2F0F 100%) !important;
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        background-clip: text !important;
    }
    
    .price-old {
        font-size: 10px !important;
        color: #999 !important;
        text-decoration: line-through !important;
    }
    
    .price-discount {
        padding: 3px 6px !important;
        font-size: 8px !important;
        background: rgba(184, 70, 31, 0.12) !important;
        color: #B8461F !important;
        border-radius: 4px !important;
    }
    
    .product-shop-footer {
        display: none !important;
    }
    
    .product-sold {
        font-size: 8px !important;
    }
    
    .product-shop-badges {
        top: 6px !important;
        left: 6px !important;
        gap: 4px !important;
    }
    
    .product-badge-shop {
        padding: 3px 6px !important;
        font-size: 7px !important;
        border-radius: 4px !important;
    }
    
    /* Plus d'espace autour de la section */
    .shop-premium {
        padding: 40px 0 !important;
    }
    
    .shop-container {
        padding: 0 12px !important;
    }
}
