@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;1,400&family=Poppins:wght@300;400;500;600&display=swap');

:root {
    --alice-pink: #f7a7b3;
    --alice-pink-light: #fdf3f5;
    --alice-dark: #1e1e1e;
    --alice-gray: #777777;
    --alice-light-gray: #f9f9f9;
    --alice-border: #e5e5e5;
}

html {
    font-size: 15px;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;
    color: var(--alice-dark);
    overflow-x: hidden;
}

/* --- Typographies Sp?cifiques --- */
h1, h2, h3, h4, .playfair {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.tc {
    color: var(--alice-dark) !important;
}
.tdn {text-decoration:none;}

.section-title-container {
    text-align: center;
    margin-top: 5rem;
    margin-bottom: 3rem;
    position: relative;
}
.section-title-container h2 {
    font-size: 2.5rem;
    display: inline-block;
    margin-bottom: 5px;
}
.section-title-container::after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background-color: var(--alice-pink);
    margin: 10px auto 0 auto;
}

/*---- img select list style ----*/
.img-select {
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 6px;
    transition: 0.2s;
}
.img-select:hover {
    transform: scale(1.05);
}
.img-select.selected {
    border: 3px solid #0d6efd;
    opacity: 0.8;
}
.preview-img {
    width: 80px;
    border-radius: 6px;
}
#uploadImgs{display:flex;gap:10px;max-height:40px;}
/*-------------------------------*/

/* --- Boutons Styles Alice --- */
.btn-alice-dark {
    background-color: var(--alice-dark);
    color: #ffffff;
    border: 1px solid var(--alice-dark);
    padding: 10px 28px;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border-radius: 0;
}
.btn-alice-dark:hover {
    background-color: transparent;
    color: var(--alice-dark);
}

.btn-alice-outline {
    background-color: transparent;
    color: var(--alice-dark);
    border: 1px solid var(--alice-dark);
    padding: 10px 28px;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border-radius: 0;
}
.btn-alice-outline:hover {
    background-color: var(--alice-pink);
    border-color: var(--alice-pink);
    color: #ffffff;
}

/* --- Barre de Navigation --- */
nav.navbar {
    background: #e99ec7 !important;
    border-bottom: 1px solid var(--alice-border);
    padding: 15px 0;
}
.navbar-brand img {
    transition: transform 0.3s;
}
.navbar-brand pt-2 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    letter-spacing: 1px;
}
nav li a.nav-link {
    font-size: 0.95rem !important;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--alice-dark) !important;
    padding: 0 15px !important;
    transition: color 0.3s;
}
nav li a.nav-link:hover {
    color: #ffffff !important;
}

/* --- Hero Section Innovante (Split) --- */
.hero-split-section {
    background-color: var(--alice-pink-light);
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 40px 0;
    position: relative;
}
.hero-text-side {
    padding-right: 2rem;
}
.hero-subtitle {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--alice-pink);
    font-size: 1.5rem;
    margin-bottom: 10px;
}
.hero-title {
    font-size: 3.8rem;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 25px;
}
.hero-video-side {
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-video-wrapper {
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    padding: 10px;
    border: 1px solid var(--alice-border);
}
.hmvid {
    max-width: 320px;
    height: auto;
    border-radius: 8px;
    display: block;
    object-fit: cover;
}

/* --- Carrousel Clients --- */
.customer-item-content {
    padding: 15px;
    border: 1px solid var(--alice-border);
    border-radius: 0;
    background-color: #fff;
    transition: all 0.3s ease;
}
.customer-item-content:hover {
    border-color: var(--alice-pink);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}
.customer-item-content img {
    width: 130px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}
.customer-item-content:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* --- Cartes de Produits / Mod?les --- */
#productList .card {
    border: 1px solid rgba(0, 10, 5, 0.1);
    border-radius: 0;
    background: #ffffff;
    transition: all 0.4s ease;
    margin-bottom: 30px;
}
#productList .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08) !important;
}
.img-wrapper {
    position: relative;
    width: 100%;
    height: 380px;
    background: var(--alice-light-gray);
    overflow: hidden;
}
.lazy-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
#productList .card:hover .lazy-img {
    transform: scale(1.04);
}
#productList .card .card-body {
    padding: 20px 10px 10px 10px;
    text-align: center;
}
#productList .card h5 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    font-weight: 500;
}
#productList .card p {
    color: var(--alice-gray);
    font-size: 0.9rem;
}

/* Miniatures Styles */
#productList .card .min {
    justify-content: center;
    border-top: 1px solid var(--alice-border);
    padding-top: 12px;
}
#productList .card .min a {
    text-decoration: none;
}
.thumb-box {
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
    color: var(--alice-gray);
    border: 1px solid var(--alice-border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    background: #fff;
}
.thumb-box:hover {
    background: var(--alice-dark);
    color: #fff;
    border-color: var(--alice-dark);
}

/* --- Footer --- */
/* --- FOOTER MODERNE & VOLUMINEUX --- */
.footer-section {
    background: var(--alice-dark);
    color: #ffffff;
    padding: 80px 0 30px 0;
    margin-top: 6rem;
}
.footer-cta {
    border-bottom: 1px solid #2d2d2d;
    padding-bottom: 40px;
    margin-bottom: 50px;
}
.single-cta i {
    color: var(--alice-pink);
    font-size: 26px;
    float: left;
    margin-top: 4px;
}
.cta-text {
    padding-left: 15px;
    display: inline-block;
}
.cta-text h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 2px;
}
.cta-text span {
    color: #a0a0a0;
    font-size: 0.95rem;
}

/* Nouvelles colonnes du footer */
.footer-widget-heading h3 {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 25px;
    position: relative;
}
.footer-widget-heading h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    height: 2px;
    width: 30px;
    background: var(--alice-pink);
}
.footer-widget p {
    color: #a0a0a0;
    font-size: 0.9rem;
    line-height: 1.6;
}
.footer-widget ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.footer-widget ul li {
    margin-bottom: 12px;
}
.footer-widget ul li a, .footer-cta .cta-text a {
    color: #a0a0a0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}
.footer-widget ul li a:hover, .footer-cta .cta-text a:hover span {
    color: var(--alice-pink) !important;
}
.footer-social-icon a {
    color: #ffffff;
    font-size: 16px;
    margin-right: 15px;
    transition: color 0.3s ease;
}
.footer-social-icon a:hover {
    color: var(--alice-pink);
}

/* Zone Copyright */
.copyright-area {
    border-top: 1px solid #2d2d2d;
    padding: 25px 0;
    margin-top: 50px;
}
.footer-content {
    color: #a0a0a0;
    font-size: 0.9rem;
    text-align: center;
}
.footer-content img {
    margin-left: 6px;
    vertical-align: middle;
}

/* --- Formulaires & Modals --- */
.form-control {
    border-radius: 0;
    border: 1px solid var(--alice-border);
    padding: 12px 15px;
}
.form-control:focus {
    border-color: var(--alice-pink);
    box-shadow: none;
}
.modal-content {
    border-radius: 0;
    border: none;
}
.modal-header {
    background-color: var(--alice-pink-light);
    border-bottom: 1px solid var(--alice-border);
}

/* --- Menu Mobile Sidebar (Offcanvas ? gauche) --- */
.alice-offcanvas {
    width: 280px !important;
    background-color: #ffffff;
    border-right: 1px solid var(--alice-border);
}
.alice-offcanvas .offcanvas-header {
    border-bottom: 1px solid var(--alice-light-gray);
    padding: 20px;
}
.alice-offcanvas .nav-link {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--alice-dark) !important;
    padding: 12px 20px !important;
    border-bottom: 1px solid var(--alice-light-gray);
    display: block;
    transition: all 0.3s;
}
.alice-offcanvas .nav-link:hover {
    background-color: var(--alice-pink-light);
    color: var(--alice-pink) !important;
    padding-left: 25px !important;
}

/* --- Section Banner Split (Inspir? de 1.jpg) --- */
.split-banner-section {
    margin-top: 5rem;
    border: 1px solid var(--alice-border);
}
.split-banner-img {
    background-image: url('/uploads/site/fashion-style-man.jpg'); /* Vous pouvez la changer par l'image de votre choix */
    background-size: cover;
    background-position: center;
    min-height: 450px;
}
.split-banner-text-block {
    background-color: var(--alice-pink);
    color: #ffffff;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.split-banner-text-block h3 {
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 20px;
}
.split-banner-text-block p {
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.9;
    margin-bottom: 35px;
    max-width: 400px;
}
.btn-alice-white {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
    padding: 12px 35px;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}
.btn-alice-white:hover {
    background-color: #ffffff;
    color: var(--alice-pink);
}

/* --- Section Appel ? l'action encadr? (Inspir? de 2.png) --- */
.connected-box-container {
    margin-top: 6rem;
    margin-bottom: 4rem;
}
.connected-bordered-box {
    border: 2px solid var(--alice-pink);
    padding: 40px 50px;
    background-color: #ffffff;
}
.connected-bordered-box h3 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 0;
}
.connected-bordered-box p {
    color: var(--alice-gray);
    font-size: 1rem;
    margin-bottom: 0;
}
.connected-bordered-box .btn-pink-action {
    background-color: var(--alice-pink);
    color: #ffffff;
    border: none;
    padding: 14px 40px;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: opacity 0.3s;
    display: inline-block;
    text-decoration: none;
    text-align: center;
}
.connected-bordered-box .btn-pink-action:hover {
    opacity: 0.9;
    color: #ffffff;
}

a i.fb {color: #0866FF;}
a i.in {color: #FF00C4;}
a i.li {color: #0A66C2;}

@media (max-width: 768px) {
    .connected-bordered-box { padding: 30px 20px; text-align: center; }
    .connected-bordered-box h3 { margin-bottom: 15px; }
    .connected-bordered-box p { margin-bottom: 20px; }
    .split-banner-text-block { padding: 40px 20px; }
    .split-banner-text-block h3 { font-size: 2.2rem; }
}