* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    font-family: "Nunito", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    background-color: #f5f5f5;
    line-height: 1;
}

/* Header */
header {
    background: linear-gradient(135deg, #d91c5c 0%, #e91e63 100%);
    color: white;
    padding: 0px 20px;
    text-align: center;
}
.top-container{
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
}
.logo {
    /* 
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px; 
    */
    position: relative;
    
}
.logo img{
    position: absolute;
    top: -20px;
    right: 0;
}

.logo h1 {
    font-size: 3em;
    color: #ffeb3b;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.flower-icon {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    position: relative;
}

.header-text h1 {
    font-size: 2.3em;
    font-weight: 400;
    color: #ffeb3b;
    margin-bottom: 10px;
}

.header-text h2 {
    font-size: 2.3em;
    font-weight: 400;
    color: #ffeb3b;
    margin-bottom: 10px;
}

.header-text p {
    font-size: 1.9em;
}

/* Container */
.container {
    margin: 0 auto;
    display: grid;
    grid-template-columns: 5fr 3fr;
}

/* Gallery columns */
.sidebar {
    display: flex;
    flex-direction: column;
}
.gallery{
        display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    gap: 10px;
    padding: 20px;
}
.flower-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: transform 0.3s;
        margin-bottom: 20px;
}

.flower-img:hover {
    transform: scale(1.05);
}

/* Sidebar */
.sidebar {
    background-color: #b8a89e;
    padding: 30px;
    grid-column: 2;
}

.sidebar h2 {
    color: #d91c5c;
    font-size: 1.8em;
    margin-bottom: 20px;
    text-align: right;
    font-weight: 600;
}
.mw-400{
    max-width: 400px;
}
.decoration-buttons {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 30px;
    list-style: none;
}

.decoration-btn {
    background: white;
    border: none;
    padding: 9px 15px;
    border-radius: 10px;
    font-weight: bold;
    font-size: 1em;
    cursor: pointer;
    transition: all 0.3s;
    text-align: left;
}

.decoration-btn:hover {
    background: #d91c5c;
    color: white;
    transform: translateX(5px);
}

.info-box {
    background: white;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-style: italic;
    font-size: 22px;
    font-weight: 700;
}

.order-note {
        margin-bottom: 20px;
    text-align: center;
    font-weight: bold;
    font-size: 1.3em;
    color: #272727;
}

.cta-button {
    background: linear-gradient(135deg, #d91c5c 0%, #e91e63 100%);
    color: #b3c943;
    border: none;
    padding: 20px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.4em;
    cursor: pointer;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
    text-transform: uppercase;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    transition: transform 0.3s;
    text-decoration: none;
    text-align: center;
}

.cta-button:hover {
    transform: scale(1.05);
}

.login-info {
    background: white;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-style: italic;
    font-size: 1.3em;
}

.login-info p {
    margin: 5px 0;
    font-size: 0.95em;
}

.contact-info {
    text-align: center;
    color: #d91c5c;
    font-size: 1.2em;
}
.contact-info h2 {
    text-align: center;
}
.contact-info h3 {
    margin-bottom: 10px;
}

.contact-info p {
    margin: 5px 0;
}

.contact-info a {
    text-decoration: none;
    font-weight: bold;
    color: #d91c5c;
}

/* Responsive */
@media (max-width: 1024px) {

    .container {
        grid-template-columns: 5fr 3fr;
    }

    .gallery-left, .gallery-center {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 991.98px) { 
    .container {
        grid-template-columns: 4fr 3fr;
    }
 }

@media (max-width: 767.98px) {
    .top-container {
        grid-template-columns: unset;
    }
    .logo img {
        position: relative;
        top: unset;
        right: unset;
    }
    .container {
        display: flex;
        flex-direction: column-reverse;
    }
    .logo h1 {
        font-size: 2em;
    }

    .header-text h1 {
        font-size: 1.3em;
    }
    .header-text p {
        font-size: 1.4em;
    }
    .gallery {
        display: flex; 
        flex-direction: column;
    }

    /* Conteneur des flèches */
.owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    pointer-events: none; /* Empêche le conteneur de bloquer les clics sur les slides */
}

/* Style commun aux boutons Prev et Next */
.owl-nav button {
    position: absolute;
    height: 40px;
    width: 40px;
    background: rgba(0, 0, 0, 0.5) !important; /* Fond semi-transparent */
    color: #fff !important;
    border-radius: 50%;
    font-size: 24px !important;
    pointer-events: auto; /* Réactive le clic sur les boutons */
    transition: all 0.3s ease;
}

.owl-nav button:hover {
    background: #e91e63  !important; /* Couleur au survol */
    transform: scale(1.1);
}

.owl-prev { left: 10px; }
.owl-next { right: 10px; }

/* Conteneur des points */
.owl-dots {
    text-align: center;
    margin-top: 20px;
}

/* Style de base des points */
.owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px 7px;
    background: #D6D6D6;
    display: block;
    border-radius: 30px;
    transition: all 0.3s ease;
}

/* État actif : le point devient une "pilule" */
.owl-dot.active span {
    width: 30px;
    background: #e91e63 ;
}

.owl-dot:hover span {
    background: #869791;
}
}
@media (min-width: 768px) {
    .gallery {
        padding-top: 30px;
    }
    .owl-carousel {
        display: flex !important;
        flex-direction: column;
    }
}