/* ================================================
   ALHIDAYA — Styles Page Accueil
   ================================================ */

/* ================================================
   HERO SECTION
   ================================================ */
.hero-section {
    background: #0d1f2d;
    width: 100%;
}

.carousel-item {
    background: #0d1f2d !important;
}

.hero-slide {
    background: linear-gradient(135deg, #0d1f2d 0%, #0f2b3d 60%, #091820 100%);
    padding: 70px 0;
    min-height: 520px;
    display: flex;
    align-items: center;
}

.hero-content {
    padding-right: 30px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(196,151,58,0.15);
    border: 1px solid rgba(196,151,58,0.35);
    color: var(--gold);
    font-size: 11px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(26px, 3.5vw, 44px);
    font-weight: 600;
    color: white;
    line-height: 1.2;
    margin-bottom: 14px;
}

.hero-desc {
    font-size: 14px;
    color: #8ab4c8;
    line-height: 1.7;
    margin-bottom: 18px;
    max-width: 420px;
}

.hero-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.hero-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #8ab4c8;
}

.hero-meta-item i {
    color: var(--gold);
    font-size: 13px;
}

.hero-price {
    display: inline-flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 24px;
    padding: 12px 20px;
    background: rgba(255,255,255,0.05);
    border-left: 3px solid var(--teal);
    border-radius: 0 8px 8px 0;
}

.price-now {
    font-size: 24px;
    font-weight: 700;
    color: var(--teal);
}

.price-old {
    font-size: 15px;
    color: #6b8fa8;
    text-decoration: line-through;
}

.hero-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.hero-img-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hero-img-decoration {
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(26,143,130,0.15) 0%, transparent 70%);
    z-index: 0;
}

.hero-img-frame {
    width: 340px;
    height: 340px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.hero-product-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 16px;
}

.hero-no-img {
    font-size: 70px;
    color: rgba(255,255,255,0.1);
}

.hero-stock-badge {
    position: absolute;
    bottom: -12px;
    right: -12px;
    background: white;
    border-radius: 10px;
    padding: 8px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    z-index: 2;
}

.hero-stock-dot {
    width: 8px;
    height: 8px;
    background: var(--teal);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero-stock-text {
    font-size: 12px;
    font-weight: 500;
    color: var(--text);
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

/* ================================================
   BANDE PROMO
   ================================================ */
.promo-strip {
    background: linear-gradient(90deg, #b8872e, var(--gold), #b8872e);
    padding: 11px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 13px;
    font-weight: 500;
    color: #2a1800;
}

.promo-sep { opacity: 0.5; }

/* ================================================
   SECTIONS COMMUNES
   ================================================ */
.section-padding { padding: 60px 0; }
.bg-light-gray { background: var(--warm-gray); }

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 28px;
    flex-wrap: wrap;
    gap: 12px;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 34px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
}

.section-subtitle {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}

.text-teal { color: var(--teal) !important; }

.see-all-link {
    font-size: 13px;
    color: var(--teal);
    text-decoration: none;
    font-weight: 500;
    white-space: nowrap;
}

.see-all-link:hover { text-decoration: underline; }

/* ================================================
   CARTES CATEGORIES
   ================================================ */
.cat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px 12px;
    text-decoration: none;
    transition: all 0.2s;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.cat-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--teal), #2563a8);
    transform: scaleX(0);
    transition: transform 0.25s;
}

.cat-card:hover {
    border-color: var(--teal-mid);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.cat-card:hover::after { transform: scaleX(1); }

.cat-card-icon {
    font-size: 36px;
    margin-bottom: 10px;
    line-height: 1;
}

/* .cat-card-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 10px;
} */

.cat-card-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 12px;
    border: 3px solid var(--teal-light);
    transition: transform 0.2s;
}

.cat-card:hover .cat-card-img {
    transform: scale(1.05);
}

.cat-card-name {
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 4px;
}

.cat-card-count {
    font-size: 11px;
    color: var(--text-muted);
}

/* ================================================
   BANNIERE PROMO
   ================================================ */
.promo-banner-section {
     padding: 40px 0 60px;
}

.promo-banner-card {
    background: linear-gradient(135deg, #0d1f2d, #0f2b3d);
    border-radius: 20px;
    padding: 44px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
}

.promo-banner-card::before {
    content: '';
    position: absolute;
    right: -60px; top: -60px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(26,143,130,0.2) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.promo-banner-label {
    font-size: 11px;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.promo-banner-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
}

.promo-banner-desc {
    font-size: 14px;
    color: #8ab4c8;
    margin: 0;
}

.promo-banner-btn {
    background: linear-gradient(135deg, var(--gold), #d4a845);
    color: #2a1800;
    border: none;
    padding: 16px 32px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.2s;
    flex-shrink: 0;
}

.promo-banner-btn:hover {
    opacity: 0.9;
    color: #2a1800;
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 991px) {
    .hero-slide { padding: 50px 0; min-height: auto; }
    .hero-content { padding-right: 0; text-align: center; margin-bottom: 30px; }
    .hero-desc { margin: 0 auto 18px; }
    .hero-meta { justify-content: center; }
    .hero-price { margin: 0 auto 24px; }
    .hero-actions { justify-content: center; }
    .hero-img-frame { width: 260px; height: 260px; }
    .hero-img-decoration { width: 300px; height: 300px; }
    .promo-banner-card { text-align: center; justify-content: center; padding: 32px 24px; }
}

@media (max-width: 576px) {
    .hero-img-frame { width: 200px; height: 200px; }
    .section-title { font-size: 26px; }
    .promo-banner-title { font-size: 22px; }
}
/* ================================================
   CAROUSEL — Flèches en bas
   ================================================ */

   /* ================================================
   CAROUSEL — Contrôles
   ================================================ */

/* Cacher les flèches sur desktop */
.carousel-control-prev,
.carousel-control-next {
    display: none;
}

/* Afficher les flèches uniquement sur mobile */
@media (max-width: 991px) {
    .carousel-control-prev,
    .carousel-control-next {
        display: flex;
        width: 36px;
        height: 36px;
        background: rgba(255,255,255,0.12);
        border: 1px solid rgba(255,255,255,0.2);
        border-radius: 50%;
        top: auto;
        bottom: 60px;
        transform: none;
        opacity: 1;
    }

    .carousel-control-prev { left: 10px; }
    .carousel-control-next { right: 10px; }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 14px;
        height: 14px;
    }
}
/* Indicateurs */
.carousel-indicators {
    bottom: 20px;
    margin: 0;
}

.carousel-indicators button {
    width: 24px;
    height: 3px;
    border-radius: 2px;
    background: rgba(255,255,255,0.4);
    border: none;
    opacity: 1;
}

.carousel-indicators button.active {
    background: var(--teal);
    width: 40px;
}

/* ================================================
   CARROUSEL PRODUITS
   ================================================ */

   /* ================================================
   CARROUSEL PRODUITS
   ================================================ */

   /* ================================================
   CARROUSEL PRODUITS