@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

body{
    font-family: "Montserrat", serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.bg-shop{
    background: #0093A1;
}

.text-shop{
    color: #0093A1;
}

.border-shop{
    border: 1px solid #0093A1;
}

.rowCustom{
    --bs-gutter-x: 40px;
    --bs-gutter-y: 40px;
}







.navbar {
    background-color: #0093A1;
    box-shadow: 0px 4px 4px 0px #0000000F;

}
.navbar-brand {
    font-weight: bold;
    color: white !important;
    font-size: 1.5rem;
}
.navbar-nav .nav-link {
    color: white !important;
    font-size: 1rem;
    font-weight: 400;
}
.nav-item .active {
    font-weight: bold;
}
.btn-custom-header {
    background-color: #006BA1;
    color: #FFFFFF;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
}
.btn-custom-header:hover {
    background-color: #003E78;
    color: #FFFFFF;
}

.lang-icon {
    width: 24px;
    height: 16px;
    margin-right: 5px;
}










.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;
    padding: 40px 0;
}
.hero-text {
    max-width: 530px;
}
.hero-text h1 {
    font-size: 2.8rem;
    font-weight: bold;
    color: #002329;
}
.hero-text p {
    font-size: 1rem;
    font-weight: 600;
    margin-top: 15px;
    color: #002329;
}
.hero-text p.start{
    font-size: 0.9rem;
    font-weight: 400;
}
.hero-text ul {
    list-style: none;
    padding: 0;
}
.hero-text ul li {
    font-size: 1rem;
    font-weight: 600;
    margin: 5px 0;
}
.btn-custom-hero {
    background-color: #0093A1;
    color: white;
    padding: 12px 20px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
}
.btn-custom-hero:hover {
    background-color: #00677A;
}
.hero-image img {
    max-width: 100%;
    height: auto;
}



/*Search Bar*/
.searchBar{
    background: #0093A1;
    padding: 40px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 30px 0;
}
.searchBar .SearchInfo{
    width: 100%;
    max-width: 580px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.searchBar .SearchInfo h2{
    font-size: 24px;
    font-weight: 600;
    color: #FFFFFF;
    margin: 0;
}
.searchBar .SearchInfo p{
    font-size: 16px;
    font-weight: 400;
    color: #FFFFFF;
    margin: 0;
}
.searchBar .SearchForm{
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
}
.searchBar .SearchForm .search-input{
    width: 100%;
    background: #FFFFFF2B;
    border: 1px solid #C8C8C80D;
    border-radius: 5px;
    position: relative;
    height: 44px;
}
.searchBar .SearchForm .search-input .search-icon{
    position: absolute;
    top: 7px;
    left: 7px;
    border-radius: 5px;
    color: #0093A1;
    width: 30px;
    height: 30px;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
}
.searchBar .SearchForm .search-input input{
    width: 100%;
    height: 100%;
    text-indent: 35px;
    color: #FFFFFF;
    background: transparent;
    outline: none;
    border: none;
    box-shadow: none;
}
.searchBar .SearchForm .search-input input::placeholder{
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 400;
}
.searchBar .SearchForm select{
    width: 100%;
    max-width: 140px;
    height: 44px;
    background-color: #FFFFFF2B;
    border: 1px solid #C8C8C80D;
    border-radius: 5px;
    color: #FFFFFF;
    outline: none;
    border: none;
    box-shadow: none;
    -webkit-appearance: none;
   -moz-appearance: none;
   appearance: none;       /* Remove default arrow */
   background-image: url(../img/down.png);   /* Add custom arrow */
}

.searchBar .SearchForm select option{
    color: #0093A1;
}

.searchBar .SearchForm button{
    width: 100%;
    max-width: 184px;
    height: 44px;
    border-radius: 5px;
    background: #FFFFFF;
    color: #0093A1;
    font-size: 14px;
    font-weight: 400;
    border: 1px solid #C8C8C880;
    outline: none;
    box-shadow: none;
}



/* Fonctionnality */
.fonctionnality-boutique{
    background: linear-gradient(90deg, rgba(0, 147, 161, 0) 0%, rgba(0, 147, 161, 0.1) 100%);
    padding: 60px 0;
}
.row-custom-fontionality{
    --bs-gutter-x: 20px;
    --bs-gutter-y: 20px;
}
.card-custom-fontionality{
    background: #FFFFFF;
    box-shadow: 0px 3px 4px 0px #0000000F;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}
.card-custom-fontionality h5{
    margin-bottom: 0;
    color: #0093A1;
    font-size: 18px;
    font-weight: 700;
}
.card-custom-fontionality p{
    margin-bottom: 0;
    color: #002329;
    font-size: 16px;
    font-weight: 400;
}
.card-custom-fontionality:hover{
    background: #006BA1;
    cursor: pointer;
}
.card-custom-fontionality:hover h5,.card-custom-fontionality:hover p{
    color: #FFFFFF;
}
.card-custom-fontionality:hover .icon svg path{
    fill: #FFFFFF;
}



/*Business*/
.businessCards .card{
    box-shadow: 0px 4px 10px 0px #0000000F;
    border: none;
}

.businessCards .card .card-title{
    font-size: 18px;
    font-weight: 700;
    color: #002329;
}

.businessCards .card .card-text{
    font-size: 16px;
    font-weight: 500;
    color: #002329;
}



/* Boutique */
.hero-Boutique{
    background: linear-gradient(90deg, rgba(0, 147, 161, 0) 0%, rgba(0, 147, 161, 0.1) 100%);
}
#owl-carousel-boutique .owl-dots button.owl-dot span{
    width: 20px;
    height: 5px;
    border-radius: 100px;
    background: #0093A180;
    margin: 2px;
}
#owl-carousel-boutique .owl-dots button.owl-dot.active span{
    width: 30px;
    background: #0093A1;
}

/*Vente*/
.venteSection{
    background: linear-gradient(90deg, rgba(0, 147, 161, 0) 0%, rgba(0, 147, 161, 0.1) 100%);
}

/*Plateform*/
.plateformBox{
    background: #FFFFFF1A;
    border: 1px solid #FFFFFF33;
    backdrop-filter: blur(100px);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}



/* Support */
.support-section ul li i{
    color: #0093A1;
}

.btn-shop{
    background: #0093A1;
    color: #FFFFFF;
    width: max-content;
}

.support-section .support-Info{
    display: flex;
    flex-direction: column;
    gap: 40px;
}



/* Newsletter */
.newsletter .newsletter-Info{
    width: 80%;
    padding: 40px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.newsletter .newsletter-Info h2{
    font-family: "Montserrat", serif;
    font-weight: 700;
    margin: 0;
    font-size: 40px;
}
.newsletter .newsletter-Info p{
    font-family: "Montserrat", serif;
    font-weight: 600;
    margin: 0;
}
.newsletter .newsletter-Info .input-group{
    gap: 20px;
}
.newsletter .newsletter-Info .input-group input{
    height: 50px;
    border: 1px solid #FFFFFF;
    background: transparent;
    border-radius: 6px !important;
    color: #FFFFFF;
}
.newsletter .newsletter-Info .input-group input::placeholder{
    color: #FFFFFF;
}
.newsletter .newsletter-Info .input-group button{
    height: 50px;
    border: 1px solid #FFFFFF;
    background: #FFFFFF;
    color: #0093A1;
    font-size: 16px;
    font-weight: 700;
    border-radius: 5px;
    border-top-left-radius: 5px !important;
    border-bottom-left-radius: 5px !important;
}
.bg-newsletter{
    background-image: url("../img/newsletter-image.png");
    background-color: #0093A1;
    background-size: 45% 100%;
    background-repeat: no-repeat;
    background-position: right;
}



/* FAQ */
#faqAccordion {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#faqAccordion .accordion-item{
    border: 1px solid #EBEBEB;
    border-radius: 6px;
}

#faqAccordion .accordion-header{
    border: none;
}

#faqAccordion .accordion-header button{
    background: transparent;
    outline: none;
    border: none;
    box-shadow: none;
    font-size: 16px;
    font-weight: 600;
    color: #002329;
}

#faqAccordion .accordion-header button:focus{
    box-shadow: none;
}


/**/
.createBotTitle{
    height: 45px;
    margin: 10px 0 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}



/* Fotter Css */
footer {
    width: 100%;
    min-height: 300px;
    background: #0093A1;
    padding: 50px 0px 20px;
}

.footer-links-box{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-links-box h5{
    font-family: "Inter", serif;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
}

.footer-links-box ul{
    padding: 0;
    list-style-type: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links-box ul li a {
    font-family: "Inter", sans-serif;
    color: #ffffff;
    font-size: 15px;
    font-weight: 400;
    text-decoration: none;
}

.footer-addr-box{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-addr-box p{
    font-family: "Inter", sans-serif;
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
    margin: 0;
}


.footer-rs {
    border: 1px solid #FFFFFF99;
    position: relative;
    margin: 60px 0;
}
.footer-rs .fotter-rs-content {
    position: absolute;
    top: 0;
    left: 50%;
    height: 40px;
    background: #0093A1;
    width: 50%;
    transform: translate(-50%, -50%);
    display: grid;
    grid-template-columns: repeat(6, 50px);
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.footer-rs .fotter-rs-content .rs-item {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background: #FFFFFF;
    color: #0093A1;
    text-decoration: none;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

footer .copyright {
    font-size: 14px;
    text-align: center;
    color: #FFFFFF;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 25px;
}

footer .copyright a,footer .copyright span{
    font-family: "Inter", sans-serif;
    text-decoration: none;
    color: #FFFFFF;
    font-size: 13px;
    font-weight: 400;
}




@media (max-width: 991px) {
    .navbar-nav {
        text-align: center;
    }
    .navbar-collapse {
        background: #008297;
        padding: 15px;
    }
    .searchBar .SearchForm{
        flex-wrap: wrap;
    }

}

/* Alert Error  */
.alert_wrapper {
    width: 600px;
    display: flex;
    flex-direction: column;
    color: #c2371a;
    background-color: #fde8e4;
    border: 0.5px solid #f06548;
    border-radius: 5px;
    font-size: 14px;
    position: fixed;
    top: 10px;
    right: 20px;
    z-index: 999;
  }
  .alert_message {
    padding: 18px 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: bold;
  }
  .alert_text {
    background-color: #f06548;
    color: #ffffff;
  }
  .alert_text {
    display: flex;
    align-items: center; 
    padding: 10px 15px;
  }
  .alert_text p {
    font-family: "poppins", sans-serif;
    margin: 0;
    font-size: 13px;
  }
#alert_danger {   
    display: none;  
} 