categoryStarsMain {
    display: none !important;
}
/* ==========================================================================
   GLOBAL - Ruban-Satin.fr
   Porto Child Theme Custom Styles
   ========================================================================== */

/* ---------- NAVIGATION MENU ---------- */
.navigation ul li.level0 > a.level-top {
    padding-left: 25px !important;
    padding-right: 25px !important;
    font-size: 14px !important;
}
@media (min-width: 992px) {
    .page-header.type2 .navigation:not(.side-megamenu) .level0 {
        margin-right: 5px !important;
    }
}

/* ---------- HIDE WISHLIST ICON ---------- */
.page-header .header-contact a.wishlist,
.page-header a.wishlist {
    display: none !important;
}

/* ---------- FOOTER BOOTSTRAP COLUMNS ---------- */
.rs-footer-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}
.rs-footer-col {
    flex: 0 0 25%;
    max-width: 25%;
    padding: 0 15px;
    box-sizing: border-box;
}
.rs-footer-col h6 {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 18px;
    color: #fff;
    letter-spacing: 0.5px;
}
.rs-footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.rs-footer-col ul li {
    padding: 4px 0;
}
.rs-footer-col ul li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}
.rs-footer-col ul li a:hover {
    color: #e8a0bf;
}
.rs-footer-col p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    line-height: 1.6;
}
.rs-footer-col .rs-footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
}
.rs-footer-col .rs-footer-contact-item i {
    color: #e8a0bf;
    font-size: 1rem;
    margin-top: 3px;
}
.rs-footer-col .rs-footer-contact-item p {
    margin: 0;
}
.rs-footer-col .rs-footer-contact-item a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.2s;
}
.rs-footer-col .rs-footer-contact-item a:hover {
    color: #e8a0bf;
}
@media (max-width: 991px) {
    .rs-footer-col {
        flex: 0 0 50%;
        max-width: 50%;
        margin-bottom: 25px;
    }
}
@media (max-width: 575px) {
    .rs-footer-col {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* ==========================================================================
   HOMEPAGE - Ruban-Satin.fr
   ========================================================================== */

/* ---------- HERO SECTION ---------- */
.rs-hero {
    position: relative;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    overflow: hidden;
    padding: 70px 0 60px;
    text-align: center;
    color: #fff;
}
.rs-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.03)"/></svg>') repeat;
    background-size: 30px 30px;
    pointer-events: none;
}
.rs-hero-inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}
.rs-hero h1 {
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 16px;
    color: #fff;
    letter-spacing: -0.5px;
}
.rs-hero h1 span {
    color: #e8a0bf;
}
.rs-hero .rs-hero-sub {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.rs-hero .rs-cta-group {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}
.rs-btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background: #e8a0bf;
    color: #1a1a2e;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.rs-btn-primary:hover {
    background: #f0b8d0;
    color: #1a1a2e;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(232, 160, 191, 0.35);
}
.rs-btn-outline {
    display: inline-block;
    padding: 14px 32px;
    background: transparent;
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.rs-btn-outline:hover {
    border-color: #e8a0bf;
    color: #e8a0bf;
    text-decoration: none;
    transform: translateY(-2px);
}
.rs-hero-badges {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}
.rs-hero-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.75);
}
.rs-hero-badge i {
    color: #e8a0bf;
    font-size: 1rem;
}

/* ---------- SECTION GENERICS ---------- */
.rs-section {
    padding: 60px 0;
}
.rs-section-light {
    background: #fff;
}
.rs-section-alt {
    background: #f8f6f3;
}
.rs-section-dark {
    background: #1a1a2e;
    color: #fff;
}
.rs-section-title {
    text-align: center;
    margin-bottom: 12px;
    font-size: 1.85rem;
    font-weight: 700;
    color: #1a1a2e;
    letter-spacing: -0.3px;
}
.rs-section-dark .rs-section-title {
    color: #fff;
}
.rs-section-subtitle {
    text-align: center;
    font-size: 1.05rem;
    color: #666;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}
.rs-section-dark .rs-section-subtitle {
    color: rgba(255,255,255,0.7);
}

/* ---------- PRODUCT GRID ---------- */
.rs-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
.rs-product-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: all 0.35s ease;
    background: #fff;
}
.rs-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}
.rs-product-card a {
    text-decoration: none;
    display: block;
}
.rs-product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.rs-product-card:hover img {
    transform: scale(1.05);
}
.rs-product-card .rs-card-body {
    padding: 18px;
}
.rs-product-card .rs-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 6px;
    line-height: 1.3;
}
.rs-product-card .rs-card-price {
    font-size: 0.85rem;
    color: #e8a0bf;
    font-weight: 600;
    margin-bottom: 10px;
}
.rs-product-card .rs-card-link {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    color: #1a1a2e;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s;
}
.rs-product-card:hover .rs-card-link {
    color: #e8a0bf;
}

/* Carte large (2 cols) */
.rs-product-card--wide {
    grid-column: span 2;
}
.rs-product-card--wide img {
    height: 260px;
}

/* ---------- OCCASIONS / EVENTS ---------- */
.rs-occasions-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
.rs-occasion-item {
    text-align: center;
    padding: 30px 15px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
}
.rs-occasion-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    text-decoration: none;
}
.rs-occasion-item i {
    font-size: 2rem;
    color: #e8a0bf;
    margin-bottom: 12px;
    display: block;
    transition: transform 0.3s;
}
.rs-occasion-item:hover i {
    transform: scale(1.15);
}
.rs-occasion-item .rs-occasion-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1a1a2e;
    display: block;
}

/* ---------- REASSURANCE BAR ---------- */
.rs-reassurance {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
}
.rs-reassurance-item {
    text-align: center;
    padding: 35px 20px;
    border-right: 1px solid rgba(255,255,255,0.1);
}
.rs-reassurance-item:last-child {
    border-right: none;
}
.rs-reassurance-item i {
    font-size: 2rem;
    color: #e8a0bf;
    margin-bottom: 14px;
    display: block;
}
.rs-reassurance-item .rs-rea-title {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}
.rs-reassurance-item .rs-rea-sub {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}

/* ---------- SAVOIR-FAIRE ---------- */
.rs-savoir-faire {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    align-items: center;
}
.rs-sf-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.rs-sf-content h2 {
    font-size: 1.7rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 16px;
    line-height: 1.3;
}
.rs-sf-content p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 14px;
    font-size: 0.95rem;
}
.rs-sf-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}
.rs-sf-features li {
    padding: 6px 0;
    color: #333;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}
.rs-sf-features li i {
    color: #e8a0bf;
    font-size: 0.9rem;
}

/* ---------- SEO CONTENT BLOCK ---------- */
.rs-seo-block {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 15px;
}
.rs-seo-block h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 14px;
    margin-top: 25px;
}
.rs-seo-block p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 14px;
    font-size: 0.92rem;
}
.rs-seo-block a {
    color: #c77da0;
    text-decoration: underline;
    transition: color 0.2s;
}
.rs-seo-block a:hover {
    color: #1a1a2e;
}
.rs-seo-block ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 15px 0;
}
.rs-seo-block ul li a {
    display: inline-block;
    padding: 6px 14px;
    background: #f0e6ec;
    border-radius: 20px;
    font-size: 0.82rem;
    color: #1a1a2e;
    text-decoration: none;
    transition: all 0.2s;
    font-weight: 500;
}
.rs-seo-block ul li a:hover {
    background: #e8a0bf;
    color: #fff;
}

/* ---------- CTA BANNER ---------- */
.rs-cta-banner {
    text-align: center;
    padding: 50px 20px;
    background: linear-gradient(135deg, #e8a0bf 0%, #c77da0 100%);
    border-radius: 16px;
    max-width: 1000px;
    margin: 0 auto;
}
.rs-cta-banner h2 {
    color: #fff;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.rs-cta-banner p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 24px;
    font-size: 1rem;
}
.rs-cta-banner .rs-btn-dark {
    display: inline-block;
    padding: 14px 36px;
    background: #1a1a2e;
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.rs-cta-banner .rs-btn-dark:hover {
    background: #2a2a4e;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    text-decoration: none;
    color: #fff;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 992px) {
    .rs-hero h1 {
        font-size: 1.9rem;
    }
    .rs-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .rs-product-card--wide {
        grid-column: span 1;
    }
    .rs-product-card--wide img {
        height: 200px;
    }
    .rs-occasions-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .rs-reassurance {
        grid-template-columns: repeat(2, 1fr);
    }
    .rs-reassurance-item {
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .rs-savoir-faire {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
@media (max-width: 768px) {
    .rs-hero {
        padding: 50px 0 40px;
    }
    .rs-hero h1 {
        font-size: 1.55rem;
    }
    .rs-section {
        padding: 40px 0;
    }
    .rs-section-title {
        font-size: 1.45rem;
    }
    .rs-products-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .rs-product-card img {
        height: 160px;
    }
    .rs-occasions-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    .rs-occasion-item {
        padding: 20px 10px;
    }
    .rs-occasion-item i {
        font-size: 1.5rem;
    }
    .rs-occasion-item .rs-occasion-label {
        font-size: 0.8rem;
    }
    .rs-reassurance {
        grid-template-columns: 1fr 1fr;
    }
    .rs-hero-badges {
        gap: 16px;
    }
}
@media (max-width: 480px) {
    .rs-hero h1 {
        font-size: 1.35rem;
    }
    .rs-products-grid {
        grid-template-columns: 1fr;
    }
    .rs-occasions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .rs-reassurance {
        grid-template-columns: 1fr;
    }
    .rs-reassurance-item {
        border-right: none;
    }
    .rs-cta-group {
        flex-direction: column;
        align-items: center;
    }
}
