*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    text-decoration: none;
    list-style: none;
    scroll-behavior: smooth; 
}

:root{
    --bg-color:#ffffff;
    --main-color:#e9b3b8; /*#ffb2c0*/
    --secondary-color:#000000; /*632c3a */
    --third-color:#fcede6; /*ffeff0 */
    --main-color-rgb: 233, 179, 184;
    
    
    font-synthesis: none;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
}

body{
    display: flex;
    height: 100vh;
    color:var(--third-color);
    flex-direction: column; /* Changed from row to column */
    justify-content: flex-start; /* Align items at the top */
    align-items: center;
    margin: 0 auto;
    
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/*HEADER*/

header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between; /* Center alignment for larger screens */
}

.header{
    width: 100%;
    display: flex;
    justify-content: space-between; /* Center alignment for larger screens */
    align-items: center;
    padding: 15px 12%;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    list-style: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.5s ease-in-out;
}

.appointmentsheader{
    position:relative !important;
    background-color: var(--third-color);
}

.appointmentsheader a{
    color:var(--secondary-color) !important;
}

.appointmentsheader .activeheadertext{
    color: var(--main-color) !important;
}

.appointmentsheader a:hover {
    color: var(--main-color) !important;
}

.pagesheader{
    background-color: var(--third-color);
}

.pagesheader a{
    color:var(--secondary-color) !important;
}

.pagesheader .activeheadertext{
    color: var(--main-color) !important;
}

.pagesheader a:hover {
    color: var(--main-color) !important;
}

.activeheader{
    background-color: var(--third-color);
    position: fixed !important;
}


.activeheaderli{
    background-color: none;
}

.activeheadertext{
    color: var(--main-color) !important;
}

.activeheader{
    background-color: var(--third-color);
    border-bottom: none;
}

.activeheader a{
    color:var(--secondary-color) !important;
}

.activeheader a:hover {
    color: var(--main-color) !important;
}

.activeheader .activeheadertext{
    color: var(--main-color) !important;
}


.logo {
    display: flex;
    align-items: center;
}

.logo img {
    color: var(--main-color);
    font-size: 28px;
    margin-right: 3px;
}

.logo_img{
    width: 174px;
    height: 60px;
}

.navbar {
   display: flex;
   white-space: nowrap;
}

.navbar li:nth-child(6) {
    display: none;
}


.navbar a {
    color: var(--third-color);
    list-style: none;
    font-size: 1.1rem;
    padding: 5px;
    margin: 0px 30px;
    transition: all .50s ease;
}

.navbar a:hover {
    color: var(--main-color);
}

#menu-icon {
    font-size: 35px;
    color: var(--third-color);
    cursor: pointer;
    z-index: 10001;
    display: none;
}

.navbarform input{
    background: var(--main-color);   
    border: none;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all .50s ease;
    border-radius: 5px;
    width: 100%;
    height: 100%;
    color: var(--third-color);
}

.navbarform input:hover{
    cursor: pointer;
    box-shadow: 0px 0px 15px rgba(var(--main-color-rgb), 1); /* Bigger shadow */
}


/* Disable scrolling when the menu is open */
.no-scroll {
    overflow: hidden;
}

.sliding-background {
    display:none;
}

@media(max-width:1350px) {
    .header {
        padding: 14px 2%;
        transition: .2s;
    }

}

@media(max-width:1090px) {
    
    .header {
        justify-content: space-between; /* Distribute items to the edges */
        padding: 14px 2%; /* Reduce padding for smaller screens */
    }
    
   /* Style the sliding background */
    .sliding-background {
        display: none; /* Default hidden for smaller screens */
        position: absolute;
        top: 0;
        right: 0; /* Start off-screen to the right */
        width: 100%;
        height: 100%;
        background-color: var(--third-color);
        z-index: -1; /* Place it behind the header content */
        transition: transform 0.7s ease; /* Slow transition */
    }

    .sliding-background.open {
        display: flex;
        opacity: 1;
        animation: slide-in-left-no-opacity 0.5s forwards;
    }

    .sliding-background.close {
        display: flex;
        opacity: 0;
        animation: slide-out-left-no-opacity 0.5s forwards;
    }
    
    

    #menu-icon {
        display: block;
    }

    .openheader #menu-icon{
        color: var(--main-color);
    }

    .activeheader #menu-icon{
        color: var(--main-color);
    }

    .pagesheader #menu-icon{
        color: var(--main-color);
    }

    .appointmentsheader #menu-icon{
        color: var(--main-color);
    }

    .navbar li:nth-child(6) {
        display: block;
    }

    .navbar {
        position: absolute;
        top: 100%;
        right: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--main-color);
        display: none; /* Default hidden for smaller screens */
        flex-direction: column;
        justify-content: flex-start;
        opacity: 0;
    }

    .navbar.open {
        display: flex;
        height: 100vh;
        opacity: 1;
        animation: slide-in-left-no-opacity 0.5s forwards;
    }

    .navbar.close {
        display: flex;
        opacity: 0;
        height: 100vh;
        animation: slide-out-left-no-opacity 0.5s forwards;
    }

    .navbar a {
        display: block;
        color: white;
        margin: 12px 0;
        padding: 0px 25px;
        transition: all .50s ease;
    }

    .navbar a:hover {
        color: var(--third-color);
        transform: translateY(5px);
    }

    .navbarform input{
        display: none;
    }
    .activeheaderli{
        background-color: var(--third-color);
    }
    
    .activeheader a {
        color: white !important;
    }
    
    .pagesheader a {
        color: white !important;
    }

    .appointmentsheader a {
        color: white !important;
    }
}

@media(max-width:900px) {
    .logo {
        align-items: left;
    }
    
    .logo_img{
        width: 139px;
        height: 48px;
    }
    
}



/* Keyframes for text reveal animation */
@keyframes reveal-navbar {
    0% {
        transform: translateY(-100%); /* Start with text out of view */
        opacity: 0;
    }
    100% {
        transform: translateY(0); /* End with text in view */
        opacity: 1;
    }
}

@keyframes slide-in-left-no-opacity {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slide-out-left-no-opacity {
    0% {
        opacity:1;
        transform: translateX(0);
    }
    100% {
        opacity:0;
        transform: translateX(100%);
        display: none;
    }
}


/*HEADER*/

/* Footer */

footer {
    width: 100%;
    color: var(--third-color);
    background-color: var(--third-color);
    margin-top: auto; /* Push the footer to the bottom of the viewport */

}

.footer-link{
    text-decoration: none;
}

#footer_content{
    background-color: var(--third-color);
    display: grid;
    justify-items: center;
    grid-template-columns: repeat(3,1fr);
    padding: 3rem 3.5rem;
}

#footer_contacts{
    display: flex;
    flex-direction: column;
    align-items: center;
}

#footer_contacts h3{
    margin: button 0.75rem; 
    color: var(--secondary-color);
}

#footer_social_media{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

#footer_social_media .footer-link{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.5rem;
    width: 2.5rem;
    color: var(--third-color);
    border-radius: 5px;
    transition: all 0.4s;
    background-color: var(--secondary-color);
}

#footer_social_media .footer-link i{
    font-size: 1.25rem;
}

#footer_social_media .footer-link:hover{
    opacity: 0.8;
    transition: all 0.4s;
}


.footer-list{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    list-style: none;
    color: var(--secondary-color);
}

.footer-list .footer-link{
    color: var(--secondary-color);
    transition: all 0.4s;
}

.footer-list .footer-link:hover{
    color: var(--main-color);
}

#footer_copyright{
    display: flex;
    justify-content: center;
    background-color: var(--third-color);
    font-size: 0.9rem;
    padding: 1rem;
    font-weight: 100;
}

#footer_copyright h3{
    color: var(--secondary-color);
}

@media (max-width:768px) {
#footer_content{
    grid-template-columns: repeat(1,1fr);
    gap:2rem;
}
.footer-list{
    align-items: center;
}
.logo-footer{
    display: flex;
}
#footer_social_media{
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
    }
}

/* Footer */


/*APPOINTMENTS*/

.body-colorful{
    background-color: var(--secondary-color);
}

.body-pages-colorful{
    background-color: var(--third-color);
}

/*Container Appointments*/

.appointments_wrapper{
    min-height: 50%;
    max-height: fit-content;
    width: 100%;
    background-color: var(--secondary-color);
    display: flex;
    align-items: baseline;
    justify-content: center;
    position:relative;
}


.containerAppointments {
    display: flex;
    background-color: var(--secondary-color);
    margin-bottom: 20px; /* Add bottom margin to create space for the footer */
    min-width:100%;
}


.containerAppointments  select{
    padding: 10px;
    border: 2px solid var(--main-color);
    border-radius: 5px;
    font-size: 16px;
}

.containerAppointments h3{
    text-align: center;
    font-family: "Playfair Display", serif;
    font-weight: 900;
    font-size: 65px;
    padding: 25px 0;
}


#dateTimeForm{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}


.hidden {
    display: none;
}

.containerAppointments{
    display: flex;
    justify-content: space-between;

}

@media screen and (max-width: 1024px){

.appointments_wrapper{
    min-height: 40%;
}

.containerAppointments {
    width: 100%;
    max-width: none;
}

.containerAppointments h3{
    font-size: 45px;
}

}

@media screen and (max-width: 400px){    
    .containerAppointments h3{
        font-size: 11vw;
        padding: 25px 0;
    }
}

/*Container Appointments*/



/*Store*/

/*APPOINTMENTS DROPDOWNS*/
.dropdown{
    width: 50%; 
    position: relative;
}

.store-dropdown{
    margin-bottom:15vh;
}

.dropdown * {
    box-sizing: border-box;
}

.select{
    background: var(--third-color);
    color: var(--secondary-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 2px solid var(--main-color);
    border-radius: 5px;
    padding: 1em;
    cursor: pointer;
}

.selected-clicked{
    border: 2px #26489a solid;
    box-shadow: 0 0 0.8em #26489a;
}

.select:hover{
    background: var(--third-color);
}

.caret{
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid var(--secondary-color);
    transition: 0.3s;
}

.caret-rotate{
    transform: rotate(180deg);
}

.menu{
    list-style: none;
    padding: 0.2em 0.5em;
    background: var(--third-color);
    box-shadow: 0 0.5em 1em rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    color: var(--secondary-color);
    position: absolute;
    left: 50%;
    width: 100%;
    height: auto;
    transform: translateX(-50%);
    opacity: 0;
    display: none;
    transition: 0.2s;
    z-index: 1;
    overflow-y: auto;
}

.menu li{
    padding: 0.7em 0.5em;
    margin: 0.3em 0;
    border-radius: 5px;
    cursor: pointer;
}
.menu li:hover{
    border-bottom: 2px solid var(--main-color);
    border-radius: 0;
}

.active{
    background: var(--third-color);
    border: 2px solid var(--main-color);
}

.menu-open{
    display: block;
    opacity: 1;
}

.menu-time{
    display: flex;
    opacity: 1;
    flex-wrap:wrap;
}

@media screen and (max-width: 1024px){

    .dropdown{
        width: 100%;
        padding: 0 16px;
    }
    
    .menu{
        width: calc(100% - 32px);
    }
    
    .menu-time{
        display: flex;
        opacity: 1;
        flex-wrap:nowrap;
    }
    .menu-time li{
        margin-right: 10px;
        margin-left: 10px;
    }
}

@media screen and (max-width: 365px){

    .dropdown{
        padding: 0;
    }

    .menu{
        width: 100%;
    }
    
}



/*APPOINTMENTS DROPDOWNS*/

/*Services*/

#servicesContainer {
    display: none;
}

#servicesContainer.visible {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-color: var(--third-color);
    height: auto;
    min-height: 100dvh;
}

.service-title{
    text-align: center;
    background-color: var(--third-color);
    color: var(--secondary-color);
    padding-bottom: 10px !important;
}

.service-subtitle{
    text-align: center;
    background-color: var(--third-color);
    color: var(--secondary-color);
    padding-bottom: 25px !important;
}

.service-subtitle a{
    text-decoration: underline;
    color: var(--secondary-color);
}

#servicesList{
    list-style: none;
    padding: 0;
}

#servicesList{
    width: 50%;
    background-color: var(--third-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 25px;
}

/* Hide services by default */
.service-items {
    display: none;
}

/* When category is clicked, show services */
.service-items.collapsed {
    display: block;
}

/* Style category header for better visibility */
.service-category {
    font-size: 20px;
    display: flex;
    flex-direction: row;
    color: var(--secondary-color);
    justify-content: space-between;
    margin-bottom: 16px;
    border-bottom: 2px solid var(--main-color);
    cursor: pointer;
}


.service-category-header-text{
    width: 80%;
}

.service-category-header-arrow{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 10px;

}

.service-item{
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    cursor: pointer;
    padding-bottom: 16px;
}

.service-duration-item{
    margin-bottom:1em;
    cursor:pointer;
}

.service-category-description{
    font-size: 13px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--secondary-color);
    opacity: 0.5;
}

.service-item-name{
    color: var(--secondary-color);
    font-size: 16px;
}
.service-item-price{
    color: var(--main-color);
    font-size: 16px;
}

.service-item-duration{
    color: var(--secondary-color);
    font-size: 13px;
    font-style: italic;
}

.service-item-name-wrapper{
    display: flex;
    align-items: center;
}

.service-item-description{
    display: flex;
    flex-direction: column;
    color: var(--secondary-color);
}

.service-item-small-description{
    font-size: 13px;
    opacity: 0.6;
}

.service-item-price-wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-item-from{
    font-size: 13px;
    color: var(--main-color);
    opacity: 0.5;
}

.service-item-container.selected {
    background-color: #e6f7ff;
    border-color: #007bff;
}

.service-item-content{
    display: flex;
    align-items: center;
    width: 80%;
}

.service-item .bx {
    margin-right: 10px;
    font-size: 16px;
    color: var(--secondary-color);
}

.service-item .bx.bxs-check {
    color: #007bff;
}

#continueButton {
    color: var(--third-color);
    background-color: var(--main-color);
    margin: 25px 0;
    width: 100%;
    height: max-content;
    border-radius: 5px;
    border: none;
    font-size: 20px;
    padding: 10px;
    cursor:pointer;
    transition: all 0.50s ease; /* Smooth transition for both hover and normal states */
}

#continueButton.hidden {
    display: none;
}

#continueButton:disabled,
#continueButton[disabled]{
  background-color: #cccccc;
  color: #666666;
  cursor: not-allowed;
}

#continueButton:disabled:hover,
#continueButton[disabled]:hover{
    box-shadow: none;
}

.continueButtonContainer {
    width: 50%;
    display: flex;
    justify-content: center;
    position: sticky;
    bottom: 0;
}

#continueButton:hover {
    box-shadow: 0px 0px 15px rgba(var(--main-color-rgb), 1); /* Bigger shadow */
}

@media screen and (max-width: 1024px){

    #servicesList{
        width: 100%;
        padding: 16px;
        padding-top: 0;
    }
    
    #servicesContainer.visible {
        min-height:100lvh;
    }
    .continueButtonContainer{
        width: 100%;
        padding: 0 16px 16px;
    }

    #continueButton {
        width: 100%;
    }

}

@media screen and (max-width: 365px){
    #servicesList {
        width: 100%;
        padding: 16px 0;
        padding-top: 0;
    }
    .continueButtonContainer{
        width: 100%;
        padding: 16px 0;
    }
}


/*Employee*/
#employeesContainer{
    display: none;
}

#employeesContainer.visible {
    padding: 25px 0;
    padding-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: auto;
    min-height: 100dvh;
    width: 50%;
}

#groupedEmployeesList{
    display: flex;
    flex-direction: column;
    width: 100%;
}

.employee-list {
    display: flex;
    gap: 15px;
    list-style-type: none;
    padding: 0;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
}

.employee-list li {
    cursor: pointer;
    padding: 10px;
    border: 2px solid var(--main-color);
    border-radius: 5px;
    text-align: center;
    font-size: 16px;
    background-color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--third-color);
}

.employee-item.selected {
    background-color: var(--third-color);
    color: var(--secondary-color);
}

.employee-list li img {
    display: block;
    margin: 0 16px;
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 5px;
}

.employee-list li:hover {
    background-color: var(--third-color);
    color: var(--secondary-color);
}

.employee-item i {
    font-size: 16px;
    padding: 16px;
}

.employee-name {
    font-size: 16px;
}

.service-group h4{
    font-size: 20px;
    padding: 16px 0;
}

#employeesList li span {
    display: block;
    font-size: 16px;
}

.employee-picture-name-wrapper{
    display: flex;
    flex-direction: row;
    align-items: center;
}

#confirmEmployeesButton{
    color: var(--third-color);
    background-color: var(--main-color);
    margin: 25px 0;
    width: 100%;
    height: max-content;
    border-radius: 5px;
    border: none;
    font-size: 20px;
    padding: 10px;
    cursor:pointer; 
    transition: all .50s ease;
}


#confirmEmployeesButton:disabled,
#confirmEmployeesButton[disabled]{
    background-color: #cccccc;
    color: #666666;
    cursor: not-allowed;
}

#confirmEmployeesButton:disabled:hover,
#confirmEmployeesButton[disabled]:hover{
    box-shadow: none;
}

.continueEmployeeButtonContainer{
    width: 100%;
    display: flex;
    justify-content: center;
}



#confirmEmployeesButton:hover {
    box-shadow: 0px 0px 15px rgba(var(--main-color-rgb), 1); /* Bigger shadow */
}



@media screen and (max-width: 1024px){
    #employeesContainer.visible{
        width: 100%;
    }
    #employeesContainer.visible{
        min-height:100dvh;
    }
    .continueEmployeeButtonContainer{
        padding: 0 16px 16px;
    }

    #groupedEmployeesList{
        padding: 16px;
    }

    #confirmEmployeesButton{
        width: 100%;
    }
}


@media screen and (max-width: 430px){
    #employeesContainer.visible{
        padding: 25px 0;
        padding-top: 0;
        width: 100%;
    }

    .employee-list {
        width: 100%;
        flex-direction: column;
    }

    .employee-list li {
        display: flex;
        align-items: center;
    }

    .employee-list li img {
        width: 70px;
        height: 70px;
        object-fit: cover;
        margin: 0 10px;
    }

    .continueEmployeeButtonContainer{
        padding: 16px;
    }

}


@media screen and (max-width: 365px){
    .employee-list {
        width: 100%;
        flex-direction: column;
    }

    .employee-list li {
        display: flex;
        align-items: center;
    }

    .employee-list li img {
        width: 50px;
        height: 50px;
        object-fit: cover;
        margin: 0 10px;
    }

    #groupedEmployeesList{
        display: flex;
        flex-direction: column;
        width: 100%;
        padding: 0;
    }
    .continueEmployeeButtonContainer{
        padding: 0;
    }

}

/*Calendar*/

#calendarTimeContainer.visible{
    width: 100%;
    height: auto;
    min-height: 100dvh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: var(--third-color);
}

#calendarContainer{
    width: 100%;
    text-align: center;
    padding-bottom: 25px;
    background-color: var(--third-color);
    border: none;
}

#calendarContainer.visible{
    display: flex;
    flex-direction: column;
    align-items: center;
}


#calendarContainer h3{
    color: var(--secondary-color);
    text-align: center;
}

#calendar {
    display: block;
    width: 100%;
    margin: 0 auto;
}

.flatpickr-calendar {
    width: 100%;
    background-color: var(--third-color);
    border: 2px solid var(--main-color);
    color: var(--secondary-color);
    box-shadow: none;
    -webkit-box-shadow:none;
    font-weight: 600;
}

span.flatpickr-weekday {
    color: var(--secondary-color);
    font-weight: 600;
}

.flatpickr-months .flatpickr-month {
    color: var(--secondary-color);
    font-weight: 600;
}

.flatpickr-day.flatpickr-disabled, .flatpickr-day.flatpickr-disabled:hover,.flatpickr-day.prevMonthDay {
    cursor: not-allowed;
    color: var(--secondary-color);
    opacity: 0.6;
    font-weight: 600;
}

.flatpickr-day{
    color: var(--secondary-color);
    width: 100%; 
    text-align: center;
    box-sizing: border-box; 
    font-weight: 600;
}

.flatpickr-day.nextMonthDay{
    color: var(--secondary-color);
    opacity: 0.8;
    font-weight: 600;
}

.flatpickr-day.nextMonthDay:hover {
    color: var(--third-color);
    opacity: 0.8;
    font-weight: 600;
    background-color:var(--secondary-color);
}

.flatpickr-day.prevMonthDay:hover {
    color: var(--third-color);
    opacity: 0.8;
    font-weight: 600;
    background-color:var(--secondary-color);
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
    height: max-content;
    font-weight: 600;
}

.flatpickr-current-month input.cur-year[disabled], .flatpickr-current-month input.cur-year[disabled]:hover {
    color: var(--secondary-color);
    font-weight: 600;
}

.flatpickr-calendar .flatpickr-days {
    width: 100%;
    font-weight: 600;
}

.flatpickr-day.selected,.flatpickr-day.selected.nextMonthDay,.flatpickr-day.selected.prevMonthDay {
    background: var(--main-color);   
    border: none;
    color: var(--third-color);
    font-weight: 600;
}
.flatpickr-day.selected:hover{
    background: var(--main-color);   
    border: none;
    color: var(--third-color);
    font-weight: 600;
}
.flatpickr-day:hover {
    background-color: var(--secondary-color);
    border: none;
    color: var(--third-color);
        font-weight: 600;
}

.flatpickr-day.today {
    border-color: var(--main-color);
        font-weight: 600;
}

.flatpickr-day.today:hover {
    background-color: var(--secondary-color);
    border: none;
    color: var(--third-color);
}

.flatpickr-calendar {
    width: 100%; 
    text-align: center;
    box-sizing: border-box; 
    font-weight: 600;
}

.flatpickr-innerContainer .flatpickr-rContainer{
    width: 100%;
    font-weight: 600;
}

.flatpickr-calendar.inline {
    display: block;
    position: relative;
    top: 0;
    width: 100%;
    font-weight: 600;
}

.calendar-container-wrapper{
    width: 50%;
}

.dayContainer {
    width: 100%;
    min-width: none;
    max-width: none;
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    justify-items: center;
    gap:5px;
    font-weight: 600;

}

.custom-spinner {
    width: 48px;
    height: 48px;
    border: 5px solid var(--main-color);
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    }

    @keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


@media screen and (max-width: 1024px) {
    #calendarContainer{
        padding: 16px;
        padding-top: 0;
    }
    .calendar-container-wrapper{
        width: 100%;
    }
}

@media screen and (max-width: 900px) {
    #calendarTimeContainer.visible{
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        background-color: var(--third-color);
        min-height:100lvh;
    }
}

@media screen and (max-width: 365px){
    #calendarContainer{
        padding:  16px 0;
        padding-top: 0;
    }
}

/*Time*/
#timeContainer{
    padding-bottom: 25px;
    width: 100%;
    background-color:var(--third-color);
}

#timeContainer.visible{
    display: flex;
    height: 100%;
    justify-content: center;
}

@media screen and (max-width: 1024px){
    #timeContainer{
        width: 100%;
        padding-top: 0;
    }

}




/*Display Form*/

#displayForm {
    width: 50%;
    padding: 0;
    padding-bottom: 25px;
}

#displayForm.visible{
    display:flex;
    flex-direction:column;
    justify-content:center;
    height: auto;
    min-height: 100dvh;
}

.displayForm_p, .displayForm_label{
    color: var(--main-color);
    border-bottom: 2px solid var(--main-color);
    line-height: 2.5em;
    font-size: 16px;
}

.displayForm_label{
    display:flex;
}

.displayForm_phone_label{
    display: flex;
    flex-direction: column;
    color: var(--main-color);
    border-bottom: 2px solid var(--main-color);
    line-height: 2.5em;
    font-size: 16px;
}

.displayForm_span{
    color: var(--third-color);
    word-break: break-word;
}

.displayForm_input{
    border: none;
    background-color: transparent;
    width: 100%;
    color: var(--third-color);
    font-size: 16px;
    margin-left: 5px;
}


#apply_discount_btn, .submit_button_appointments{
    color: var(--third-color);
    background-color: var(--main-color);
    margin-top: 25px;
    width: 100%;
    height: max-content;
    border-radius: 5px;
    border: none;
    font-size: 20px;
    padding: 10px;
    cursor:pointer;
    transition: all 0.50s ease; /* Smooth transition for both hover and normal states */
}

#apply_discount_btn:hover, .submit_button_appointments:hover {
    box-shadow: 0px 0px 15px rgba(var(--main-color-rgb), 1); /* Bigger shadow */
}

#displayForm_checkbox{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    flex-direction: column;
}
#displayForm_checkbox input{
    width: auto;
    height: 16px !important;
    margin: 10px;
    cursor:pointer;
}
#displayForm_checkbox p{
    border: none !important; 
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}
#displayForm_checkbox a{
    color: var(--third-color);
    margin-left: 5px;
}

#displayForm_checkbox span{
    border-bottom: 2px solid var(--third-color);
}

.submitButtonContainer{
    display: flex;
    align-items: center;
    justify-content: center;
}

.final-list-service-wrapper{
    display: flex;
    justify-content: space-between;
}

.final-list-service-text-wrapper{
    width: 80%;
    display: flex;
    align-items: center;
}


.final-list-service-price-wrapper{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 0 0 15px;
}


.total-price-wrapper{
    display: flex;
    justify-content: space-between;
}


#total_price{
    padding: 0 0 0 15px;
}

#discount_form_group{
    display: flex;
    border-bottom: 2px solid var(--main-color);
    flex-direction: column;
}

#discount_code{
    margin: 0 auto !important;
}

.discount_form_text{
    display: flex;
}

#apply_discount_btn{
    width: fit-content !important;
    margin: 0 auto !important;
    font-size: 16px !important;
    padding: 10px !important;
    border-radius: 0 !important;
}

#phoneError{
    color: red;
    display: none;
    font-size: 16px;
}

.iti--fullscreen-popup.iti--container{
    color: var(--main-color);
}

.iti__country-name{
    color: var(--main-color);
}

.iti__country-list li{  
    line-height: normal;
}

.iti__search-input{
    font-size: 16px;
}

@media screen and (max-width: 1024px) {
    #displayForm.visible{
        width: 100%;
        padding: 16px;
        padding-top: 0;
        min-height:100lvh;
    }

    #apply_discount_btn, .submit_button_appointments{
        width: 100%;
    }
    
}

@media screen and (max-width: 420px) {
    #displayForm_checkbox p{
        font-size: 13px;
    }
}

@media screen and (max-width: 400px) {
    #displayForm_checkbox p{
        font-size: 13px;
    }
}
@media screen and (max-width: 365px){

    #displayForm.visible{
        padding: 0;
        padding-top: 0;
    }
    .displayForm_p, .displayForm_label,.displayForm_phone_label{
        padding: 0 5px;
    }


    #discount_message{
        padding: 0 5px;
    }

    #discount_code{
        padding: 0 0 0 5px !important;
    }
}



#displayForm input:focus {
    outline: none;
}



/*Display Form*/

/*APPOINTMENTS*/

/* GALLERY */

.gallery-wrapper{
    width: 100%;
    background-color: var(--third-color);
    position:relative;
}

.gallery-wrapper h1{
    display: flex;
    justify-content: center;
    padding: 30px;
    color: var(--secondary-color);
    font-family: "Playfair Display", serif;
    font-weight: 900;
    font-size: 65px;
}

.gallery-outside-container {
    width: 80%;
    margin: 25px auto;
    background-color: transparent;
}

.gallery-container {
    display: block; /* Changed from flex to block for Masonry */
}

.gallery {
    margin: 5px;
    border: 1px solid #ccc;
    width: calc(33.333% - 10px); /* Set width for Masonry layout */
    position: relative;
    display: block; /* Ensure block display for Masonry */
    border-radius:5px;
}

.gallery:hover {
    border: 1px solid #777;
}

.gallery img {
    width: 100%; /* Fill container width */
    display: block; /* Ensure images display as block */
    border-radius:5px;
}

.instagram-handle {
    position: absolute;
    top: 10px;
    left: 10px;
    color: white;
    font-weight: bold;
    background: rgba(0, 0, 0, 0.5);
    padding: 5px 10px;
    border-radius: 5px;
    z-index: 1;
}

@media screen and (max-width: 900px) {
    .gallery {
        width: calc(50% - 10px); /* Set width for Masonry layout */
    }
    .gallery-wrapper h1{
        font-size: 45px;
    }
    
    .gallery-outside-container {
        width: 100%;
        margin:0;
        padding:16px;
    }
}

@media (max-width: 500px) {
    .gallery {
        width: 100%; /* Set width for Masonry layout */
        margin:0;
        margin-bottom:5px;
    }
}


@media (max-width: 400px) {
    .gallery-wrapper h1{
        font-size: 11vw;
    }
}

/* GALLERY */



/*SERVICES PAGE */
.services-page-wrapper {
    width: 100%;
    background-color: var(--third-color);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 50px;  /* Extra padding to avoid white space */
}

.services-page-wrapper h1{
    display: flex;
    justify-content: center;
    padding: 30px;
    color: var(--secondary-color);
    font-family: "Playfair Display", serif;
    font-weight: 900;
    font-size: 65px;
}

#servicesWrapper{  
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.services-page-container {
    display: flex;
    width: 80%;
    flex-direction: column;
    margin-bottom: 25px;
}

.service-page-category {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 400px; /* Ensures minimum height */
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 25px;
}

.service-page-category img {
    width: 100%;
    height: 400px;  /* Adjust based on image aspect ratio */
    object-fit: cover;  /* Maintain the image aspect ratio */
    position: relative;
    border-radius: 5px;
}

.smoke-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 0.35; /* Adjust overlay darkness */
    pointer-events: none;
}

.service-page-text {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
}


.service-page-category h2{
    display: flex;
    justify-content: center;
    padding: 30px;
    color: var(--main-color);
    font-family: "Playfair Display", serif;
    font-weight: 900;
    font-size: 65px;
    text-align: center;
}

.service-page-category h4{
    display: flex;
    justify-content: center;
    padding: 0 25px 25px;
    font-size: 13px;
    text-align: center;
    opacity: 0.9;
}


.service-page-container-item {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 10px;
    justify-items: center;
}

.service-page-item {
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);  /* Add subtle box shadow for a clean look */
    background-color: white;
    width: 100%;
    text-align: center;
    border-radius: 5px;
    border: 2px solid var(--main-color);
}

.service-page-item-title-container{
    display: flex;
    justify-content: space-between;
    padding-bottom: 20px;
}

.service-page-item-title {
    width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-page-item-name{
    width: 80%;
    text-align: start;
    word-break: break-word;
    color: var(--secondary-color) !important;
    font-size: 16px;
}

.service-page-item-price-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.service-page-item-price{
    color: var(--main-color) !important;
    font-size: 16px;
}

.service-page-item-from{
    font-size: 13px;
    color: var(--main-color);
    opacity: 0.5;
}

.service-page-item-duration{
    text-align: start;
    color: var(--main-color) !important;
    font-style: italic;
    font-size: 13px;
}

.service-page-item-description{
    text-align: start;
    color: var(--main-color);
    font-size: 16px;

}


@media screen and (max-width: 900px) {
    .services-page-wrapper h1 {
        font-size: 45px;
    }

    .service-page-container-item {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-page-category h2 {
        font-size: 45px;
    }

    .services-page-container {
        width: 100%;
        padding: 0 16px;
    }
}


@media (max-width: 500px) {
    
    .service-page-container-item {
        grid-template-columns: repeat(1, 1fr);
    }

}

@media (max-width: 400px) {
    .services-page-wrapper h1 {
        font-size: 11vw;
    }

    .service-page-category h2 {
        font-size: 11vw;
    }
}



/*SERVICES PAGE */



/*INDEX*/

/*IMAGE*/

.index_image_container {
    background-color:var(--secondary-color);
    width: 100%;
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-repeat: no-repeat;
    position: relative;
}

.index_image_container_text{
    width: 50%;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 25px;
    opacity: 0; /* Start with 0 opacity */
    animation: slide-in-right 1s forwards;
}

.index_image_container_text h3 {
    color: var(--main-color);
    font-family: "Playfair Display", serif;
    font-weight: 900;
    overflow: hidden; 
    font-size: 5vw;
    /*text-shadow: 4px 4px 15px rgba(var(--main-color-rgb), 0.5);  Bigger shadow */
    user-select:none;
}
.index_image_container_text h4 {
    color: var(--third-color);
    overflow: hidden; 
    font-size: 16px;
    /*text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7); Add shadow */
    user-select:none;
}

.image_button_container{
    display: flex;
    animation: slide-in-right 1s forwards;
    gap: 15px;
}

.image_button_solid{
    background: var(--main-color);
    border: 2px solid var(--main-color);
    padding: 15px;
    height: fit-content;
    border-radius: 5px;
    font-size: 16px;
    margin-bottom: 25px;
    margin-top: 25px;
    color: var(--third-color);
    transition: all .50s ease;
    user-select:none;
}

.image_button_solid:hover {
    box-shadow: 0px 0px 15px rgba(var(--main-color-rgb), 1); /* Bigger shadow */
}

.image_button {
    padding: 15px;
    background: var(--secondary-color);
    border: 2px solid var(--main-color);
    height: fit-content;
    border-radius: 5px;
    font-size: 16px;
    margin-bottom: 25px;
    margin-top: 25px;
    color: var(--third-color);
    transition: all .50s ease;
    user-select:none;
}

.image_button:hover {
    box-shadow: 0px 0px 15px rgba(var(--main-color-rgb), 1); /* Bigger shadow */
}

.index_image_container_images{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 30%;
    height: 100vh;
    animation: glow-in 3s forwards;
}

.index_image_container_image1{
    user-select: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    max-height: 90%;
    max-width: 100%;
    box-shadow: rgba(var(--main-color-rgb), 0.6) 0px 8px 100px;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    object-fit: cover;
    position: relative;
}

.blur-filter{
    display: none;
}

@keyframes glow-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}


@keyframes slide-in-right {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}


@media (max-width: 1200px) {
    .index_image_container_images{
        width: 40%;
    }

}

@media (max-width: 900px) {

    .index_image_container_images{
        display: none;
    }

    .index_image_container {
        background-repeat: no-repeat;
        background-size: cover;
        background-image: url(../images/index/bc_phone.webp);
        box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, .5);
        width: 100%;
        min-height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        background-repeat: no-repeat;
        position: relative;
        background-position-y: center;
        background-position-x: center;
    }

    /*.index_image_container {
        background-position-x:15%;
        background-position-y: center;
    } */

    .blur-filter{
        display: block;
        width: 100%;
        height: 100%;
        content: '';
        position: absolute;
        backdrop-filter: blur(2px);
    }

    .index_image_container_text{
        width: 90%;
        padding: 16px;
        align-items: center;
    }
    .index_image_container_text h3 {
        font-size: 9vw;
    }

    .index_image_container_text h4 {
        text-align: center;
    }

}

@media (max-width: 600px) {

    .index_image_container_text{
        width: 100%;
    }
    .index_image_container_text h3 {
        font-size: 11vw;
    }

}

/*IMAGE*/


/*Appointments BTN*/
.index_appointments_container {
    width: 100%;
    background-color: var(--third-color);
    color: var(--secondary-color);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: visible; /* Ensure the shadow is not clipped */
    z-index: -1;
    padding: 25px 16px 25px 16px;
    
}

.button-64 {
    position: relative;
    align-items: center;
    background: var(--main-color);   
    border: 0;
    border-radius: 5px;
    box-sizing: border-box;
    color: var(--secondary-color);
    display: flex;
    font-size: 32px; /* Increased font size */
    justify-content: center;
    line-height: 1em;
    max-width: 100%;
    min-width: 500px; /* Increased minimum width */
    padding: 10px; /* Increased padding */
    margin: 25px;
    text-decoration: none;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    white-space: nowrap;
    cursor: pointer;
    overflow: visible; /* Ensure the shadow is not clipped */
}

.button-64:active,
.button-64:hover {
    outline: 0;
}

.button-64 span {
    background-color: var(--third-color);
    padding: 70px 48px; /* Increased padding */
    border-radius: 6px;
    width: 100%;
    height: 100%;
    transition: 300ms;
    font-size: 65px;
    text-transform: uppercase;
    font-family: "Playfair Display", serif;
    font-weight: 900;
}

.button-64:hover span {
    background: none;
    color: var(--third-color);
}

.button-64::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--main-color);
    z-index: -1;
    filter: blur(20px);
    border-radius: 3px; /* Match the border-radius of the button */
}

.index_appointments_text{
    font-size: 16px;
}

@media screen and (max-width: 1200px){

    .index_appointments_container {
        padding: 25px;
    }

    .button-64 {
        font-size: 32px; /* Increased font size */
        line-height: 1em;
        min-width: 350px;
        max-width: 350px;
        padding: 10px; /* Increased padding */
        margin: 25px;
    }
    
    .button-64 span {
        padding: 50px 30px; /* Increased padding */
        font-size: 40px;
        font-weight: 800;
    }

    .index_appointments_text{
        font-size: 16px;
    }
    
}

@media screen and (max-width: 400px){

    .index_appointments_container {
        padding: 25px 16px;
    }

    .index_appointments_form {
        width: 100%;    
    }

    .button-64 {
        font-size: 11vw;
        line-height: 1em;
        min-width: 100%;
        max-width: 100%;
        padding: 10px;
        margin: 16px 0;
    }
    
    .button-64 span {
        padding: 45px 0;
        font-size: 11vw;
        font-weight: 800;
    }

    .index_appointments_text{
        font-size: 16px;
    }
    
}


/*Appointments BTN*/


/*ABOUT*/

.index_about_wrapper{
    background-color: var(--secondary-color);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px 16px 25px 16px;
    flex-direction: column;
}

.index_about_container{
    width: 80%;
    display: flex;
}

.index_about_picture{
    width: 50%;
    display: flex;
}

.index_about_text{
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--third-color);
    max-height: max-content;
}

.index_about_title h1{
    font-family: "Playfair Display", serif;
    font-weight: 900;
    font-size: 65px;
    color: var(--main-color);
    text-align: center;
    padding-bottom: 25px ;
}

.index_about_text h2{
    font-size: 16px;
    padding: 20px;
    text-align: center;
}

.index_about_picture img{
    width: 100%;
    max-width: 100%;
    border-radius: 5px;
    border: 2px solid var(--main-color);
    object-fit: cover;
    object-position: top;
}

@media (max-width: 1200px) {
    .index_about_title h1{
        font-size: 45px;   
    }

    .index_about_container{
        width: 100%;
        padding: 0;
    }

    .index_about_text h2{
        padding: 16px;
    }
}

@media (max-width: 950px) {

    .index_about_container{
        width: 100%;
        flex-direction: column;
        padding: 0;
    }

    .index_about_picture {
        width: 100%;
    }

    .index_about_text{
        width: 100%;
    }

    .index_about_picture img{
        height: 300px;
    }
   
    .index_about_text h2{
        padding: 16px 0;
    }
}

@media (max-width: 400px) {
    .index_about_title h1{
        font-size: 11vw;   
    }
}

/*ABOUT*/

/*SERVICES CATEGORIES*/

.index_services_categories_wrapper{
    width: 100%;
    background-color: var(--third-color);
    display: flex;
    text-align: center;
    color: var(--secondary-color);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 25px 16px 25px 16px;
}

.index_services_categories_card{
    width: 100%;
}

.index_services_categories_title h1{
    font-family: "Playfair Display", serif;
    font-weight: 900;
    font-size: 65px;
    color: var(--main-color);
}



.index_services_categories_photo{
    width: 100%;
    height: 300px; /* Set a fixed height */
    object-fit: cover;
    border: 3px solid var(--main-color);
    border-radius: 5px;
}


.index_services_categories{
    width: 80%;
    display: grid;
    padding: 20px 0;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}


.index_services_categories_name{
    font-size: 20px;
    color: var(--secondary-color);
}

.learn-more-button{
    background: var(--main-color);   
    padding: 15px;
    height: fit-content;
    border-radius: 5px;
    font-size: 20px;
    margin-bottom: 25px;
    margin-top: 25px;
    color: var(--third-color);
    transition: all .50s ease;
}

.learn-more-button:hover {
    box-shadow: 0px 0px 15px rgba(var(--main-color-rgb), 1); /* Bigger shadow */
}



@media (max-width: 1200px) {
    
    .index_services_categories{
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
    }
    .index_services_categories_title h1{
        font-size: 45px;
    }
    .index_services_categories_card{
        width: 100%;
        padding: 0 0 25px 0;    
    }
    .index_services_categories_photo{
        height: 250px; /* Set a fixed height */
    }

   
}

@media (max-width: 900px) {
    .index_services_categories_title h1{
        font-size: 45px;
    }
   
}

@media (max-width: 500px) {
    .index_services_categories{
        grid-template-columns: repeat(1, 1fr);
    }

}

@media (max-width: 400px) {
    .index_services_categories_title h1{
        font-size: 11vw;   
    }
}


/*SERVICES CATEGORIES*/



/* STORES */

.index_stores_container_text {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--secondary-color);
    width:100%;
    padding: 25px 16px 25px 16px;
}

.index_stores_container_title {
    padding-bottom: 25px;
    text-transform: uppercase;
    font-family: "Playfair Display", serif;
    font-weight: 900;
    font-size: 65px;
    color: var(--main-color);
}

.index_stores_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 80%;
    background-color: var(--secondary-color);
}

.store_item {
    display: flex;
    flex-direction: row;
    gap: 20px;
    width: 100%;
    margin-bottom: 30px;
}

.store_image {
    flex: 0 0 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.store_image img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
    border: 3px solid var(--main-color);
    object-fit: cover;
}


.store_info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
    height:fit-content;
}

.store_name {
    color: var(--main-color);
    font-family: "Playfair Display", serif;
    font-weight: 900;
    font-size: 55px;
    padding:25px;
}

.store_schedule{
    font-size: 16px;
    display: flex;
    flex-direction: column;
    color: var(--third-color);
}

.store_address {
    font-size: 16px;
    display: flex;
    flex-direction: column;
    padding: 0 0 25px 0;
    color: var(--third-color);
}

.store_phone{
    font-size: 16px;
    display: flex;
    flex-direction: column;
    padding: 25px 0;
    color: var(--third-color);
}
.store_maps{
    font-size: 16px;
    padding: 10px;
    color: var(--secondary-color);
    background-color: var(--third-color);
    border-radius: 5px;
    width: fit-content;
}

.swiper-wrapper {
    width: 100%;
    position: relative;
}

.swiper-button-next, .swiper-button-prev {
    color: var(--third-color);
}

.swiper-pagination-bullet-active{
    background: var(--third-color);
}

.store-link{
    text-decoration: none;
}

#store_social_media{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

#store_social_media .store-link{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.5rem;
    width: 2.5rem;
    color: var(--secondary-color);
    border-radius: 5px;
    transition: all 0.4s;
    background-color: var(--third-color);
}

#store_social_media .store-link i{
    font-size: 1.25rem;
}

#store_social_media .store-link:hover{
    opacity: 0.8;
    transition: all 0.4s;
}

#store_contacts{
    display: flex;
    flex-direction: column;
    align-items: center;
}





@media (max-width: 1200px) {

    .index_stores_container_text{
        padding: 16px;
    }

    .index_stores_container_title{
        font-size: 45px;
        padding: 0;
        padding-bottom: 30px;
        text-align: center;
    }

    .index_stores_container {
        width: 100%;
    }

    .store_name{
        font-size: 40px;
        line-height: 1em;
        padding: 25px 0;
    }

    .store_schedule,.store_address,.store_phone,.store_maps{
        font-size: 16px;
    }
    
    

}

@media (max-width: 900px) {

    .index_stores_container_title{
        font-size: 45px;
    }

    .store_name{
        font-size: 40px;
    }

}

@media (max-width: 700px) {
    .store_item {
        flex-direction: column;
    }

    .store_item {
        display: block;
    }

}

@media (max-width: 500px) {
    
    .store-swiper-wrapper {
        height: 300px !important; /* Adjust height as needed */
    }

}

@media (max-width: 400px) {
    .index_stores_container_title{
        font-size: 11vw;   
    }

    .store_name{
        font-size: 11vw;
    }
}

/* STORES */

/*OUR TEAM*/


.index_team_wrapper {
    display: flex;
    justify-content: center;
    background-color: var(--third-color);
    width: 100%;
    flex-direction: column;
    align-items: center;
    position: relative; /* Needed for button positioning */
    padding: 25px 16px 25px 16px;
}

.index_team_wrapper h1 {
    padding-bottom: 25px;
    text-transform: uppercase;
    font-family: "Playfair Display", serif;
    font-weight: 900;
    font-size: 65px;
    text-align: center;
    color: var(--main-color);
}

.index_team_container {
    width: 80%;
    overflow: hidden;  /* Prevent overflow issues */
    margin-bottom:10px;
}


.index_team_item {
    width: 100%;
    padding: 0 5px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.index_team_item_container{
    padding: 16px;
    border: 2px solid var(--main-color);
    border-radius: 5px;
}

.index_team_item img {
    width: 100%;
    border-radius: 5px;
    height: 450px;
    object-fit: cover;
    object-position: center;
}

.index_team_item h3 {
    text-align: center;
    font-size: 20px;
    color: var(--secondary-color);
}

.index_team_item h4 {
    text-align: center;
    font-size: 16px;
    color: var(--secondary-color);
}

.index_team_text{
    padding-top:16px;
}

.swiper-pagination2 .swiper-pagination-bullet-active{
    background: var(--secondary-color);
}

@media (max-width: 1200px) {
    .index_team_wrapper h1 {
        font-size: 45px;
    }

    .index_team_container {
        width: 100%;
    }
}

@media (max-width: 400px) {
    .index_team_wrapper h1 {
        font-size: 11vw;   
    }
}


/*OUR TEAM*/

/*REVIEWS*/

/* Slide-in and slide-out animations */
@keyframes slide-in-left {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slide-out-left {
    0% {
        transform: translateX(0);
        opacity: 1;
    }
    100% {
        transform: translateX(-100%);
        opacity: 0;
    }
}

.reviews-wrapper{
    width: 100%;
    background-color: var(--secondary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 25px 16px 25px 16px;
}

.reviews-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 40px;
    position: relative;
    width: 100%;
    max-width: 60%;
    overflow:hidden;
}



.reviews-title{
    display: flex;
    color: var(--main-color);
    text-align: center;
}

.reviews-title h1{
    font-family: "Playfair Display", serif;
    font-weight: 900;
    font-size: 65px;
    text-transform: uppercase;
}

.review-card {
    display:none;
    border-radius: 5px;
    width: 100%;
    text-align: center;
    transition: transform 0.8s ease;
    padding: 0 0 20px;
}

.review-card.activereview {
    opacity: 1;
    position: relative;
    display: block;
}

.review-card.slide-in-left {
    animation: slide-in-left 1s forwards;
}

.review-card.slide-out-left {
    animation: slide-out-left 1s forwards;
}


.client-photo {
    border-radius: 50%;
    width: 60px;
    height: 60px;
    object-fit: cover;
}

.client-name {
    font-size: 20px;
    margin: 10px 0;
    color: var(--third-color);
    font-family: "Great Vibes", cursive;
    font-weight: 400;
}

.stars {
    color: var(--main-color);
    font-size: 1.5em;
}

.review-text {
    font-size: 16px;
    color: var(--third-color);
}

@media (max-width: 1200px) {

    .reviews-container {
        display: block;
        max-width: 100%;
    }

    .reviews-title h1{
        padding:0;
        font-size: 45px;
    }

    .reviews-title{
        padding: 0;
    }
    
    .review-card {
        display:none;
        border-radius: 5px;
        width: 100%;
        text-align: center;
        transition: transform 0.8s ease;
        padding: 0 0 20px;
    }

}

@media (max-width: 900px) {
    .reviews-title h1{
        font-size: 45px;
    }

}


@media (max-width: 400px) {
    .reviews-title h1{
        font-size: 11vw;   
    }
}

/*REVIEWS*/

/*INDEX*/

/*LOGIN*/

.login-container{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    width: 100%;
    background-image: url("../images/index/background_index.webp") !important;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: inset 0 0 0 1000px rgba(0,0,0,.2);
}

.wrapper{
    width: 450px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255,.2);
    backdrop-filter: blur(20px);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    color: #fff;
    border-radius: 10px;
    padding: 30px 40px;
}

.wrapper h1{
    font-size: 36px;
    text-align: center;
}

.wrapper .input-box{
    position: relative;
    width: 100%;
    height: 50px;
    margin: 30px 0;
}

.input-box input{
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    outline: none;
    border: 2px solid rgba(255,255,255, .2);
    border-radius: 40px;
    font-size: 16px;
    color: #fff;
    padding: 20px 45px 20px 20px;
}

.input-box input::placeholder{
    color: #fff;
}

.input-box i{
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
}

.input-box select{
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    outline: none;
    border: 2px solid rgba(255, 255, 255, .2);
    border-radius: 40px;
    font-size: 16px;
    color: #fff;
    padding: 10px 20px;
    appearance: none; /* Remove default arrow */
    -webkit-appearance: none; /* Remove default arrow in Safari */
    -moz-appearance: none; /* Remove default arrow in Firefox */
}

.input-box select:after {
    content: '\25BC'; /* Unicode character for a down arrow */
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #fff;
    pointer-events: none;
}

.input-box select option {
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    border: none;
    padding: 10px;
    font-size: 16px;
}

.wrapper .remember-forget{
    display: flex;
    justify-content: space-between;
    font-size: 14.5px;
    margin: -15px 0 15px;
}

.remember-forget label input{
    accent-color: #fff;
    margin-right: 3px;
}

.remember-forget a{
    color: #fff;
    text-decoration: none;
    text-align: right;
}


.remember-forget a:hover{
    text-decoration: underline;
}

.wrapper .btn{
    width: 100%;
    height: 45px;
    background: #fff;
    border: none;
    outline: none;
    border-radius: 40px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    font-size: 16px;
    color: #333;
    font-weight: 600;
}

.wrapper .register-link{
    font-size: 14.5px;
    text-align: center;
    margin: 20px 0 15px;
}

.register-link p a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.register-link p a:hover {
    text-decoration: underline;
}

@media screen and (max-width: 430px){
    .wrapper{
        width: 95%;
        padding: 30px 20px;
    }
    .login-container{
        background-position-x: 30%;
        background-position-y: center;
    }
}

/*LOGIN*/

/*Cancel Appointment*/

.appointment-details {
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
    margin-top: 20px;

}

.appointment-details p {
    margin: 10px 0;
    font-size: 16px;
    color: #fff;
    overflow-wrap: break-word;
}

.appointment-details p strong {
    color: #fff;
}

.appointment-details span{
    opacity: 0.8;
    overflow-wrap: break-word;
}

.logo_cancel_appointment{
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}
.logo_cancel_appointment img{
    width:50%;
    height:50%;
}

@media (max-width: 900px) {
    .logo_cancel_appointment img{
        display:none;
    }
}

/*Cancel Appointment*/


/*Notification*/

.popup-wrapper{
    content: "";
    position: fixed;
    visibility: hidden;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.popup{
    width: 400px;
    max-width: 90%;
    background: var(--third-color);
    border-radius: 5px;
    border: 3px solid var(--main-color);
    position: fixed;
    top: 0;
    left: 50%;
    transform: translate(-50%,-50%) scale(0.1);
    text-align: center;
    padding: 30px;
    color: var(--secondary-color);
    visibility: hidden;
    transition: transform 1s, top 1s;
    box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.2);
}

.open-wrapper{
    visibility: visible;
}

.open-popup{
    visibility: visible;
    top: 40%;
    transform: translate(-50%,-50%) scale(1);
    z-index: 2;
}

.popup img{
    width: 100px;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.popup h2{
    font-size: 20px;
    font-weight: 600;
    margin: 30px 0 10px;
}

.popup button{
    width: 100%;
    height: 100%;
    margin-top: 50px;
    background: var(--main-color);
    color: var(--secondary-color);
    border: 0;
    outline: none;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
    padding:0.5em;
}

@media (max-width: 900px) {
    .open-popup{
        top: 50%;
    }
}

/*Notification*/

/*404 Page*/
.error_page_container{
    background-color: var(--third-color);
    min-height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: default;
}

.error_page_container h2 {
    font-size: 250px;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke-width: 5px;
    -webkit-text-stroke-color: var(--secondary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-left: 25px;
    padding-right: 25px;
    line-height: 1em;
    text-align: center;
}

.error_page_container h3 {
    font-size: 48px;
    color: var(--secondary-color);
    overflow: hidden; 
    text-transform: uppercase;
    padding-left: 25px;
    padding-right: 25px;
    text-align: center;
}

@media (max-width: 1750px) {
    .error_page_container h2 {
        font-size: 150px;
        -webkit-text-stroke-width: 1px;
    }
}

@media (max-width: 900px) {
    .error_page_container {
        min-height: 60%;
        background-position-x: initial;
        background-position-y: center;
    }

    .error_page_container h2 {
        font-size: 72px;
        -webkit-text-stroke-width: 1px;
        text-align: center;
    }

    .error_page_container h3 {
        font-size: 22px;
        text-align: center;

    }

}


/*404 Page*/

/*SWAL*/
.swal-button-container {
    width: 100%;
    margin: 5px;
    display: inline-block;
    position: relative;
}

.swal-button {
    width: 100%;
    height: fit-content;
    background-color: var(--main-color);
    color: var(--secondary-color);
    font-family: 'Poppins', sans-serif;
}

.swal-button:not([disabled]):hover{background-color: var(--main-color);}

.swal-overlay--show-modal .swal-modal {
    border-radius: 5px;
    border: 3px solid var(--main-color);
    background-color: var(--third-color);
    font-family: 'Poppins', sans-serif;
}
.swal-title:not(:last-child) {
    color: var(--secondary-color);
    font-family: 'Poppins', sans-serif;
}
/*SWAL*/


/*PRODUCTS PAGE*/

.products-wrapper {
    display: flex;
    position:relative;
    flex-direction:column;
    background-color: var(--third-color);
    width:100%;
}

.products-wrapper h1{
    display: flex;
    justify-content: center;
    padding: 30px;
    color: var(--secondary-color);
    font-family: "Playfair Display", serif;
    font-weight: 900;
    font-size: 65px;
}



.products_container_outside:nth-child(odd),
.products_container_outside:nth-child(odd) .products_container
{
    background-color: var(--secondary-color); /* Example color for even containers */
    color: var(--third-color);

}


.products_container_outside:nth-child(even),
.products_container_outside:nth-child(even) .products_container
{
    background-color: var(--third-color); /* Example color for odd containers */
    color: var(--secondary-color);
}


.products_container_outside{
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    position:relative;
}

.products_container{
    padding: 25px 0;
    display: flex;
    flex-direction: row;
    width: 80%;
}

.products_container_image{
    min-width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.products_container_image img{
    max-width: 100%;
    max-height: 400px;
}

.products_container_text{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.products_name{
    font-family: "Playfair Display", serif;
    font-weight: 900;
    font-size: 50px;
    padding-bottom: 25px;
}

@media (max-width: 1200px) {
    .products_container{
        flex-direction: column;
        width: 100%;
        padding: 25px 16px;
    }

    .products_name{
        font-size:35px;
    }

    .products_container_image{
        width: 100%;
    }

    .products_container_image img{
        max-width: 100%;
    }

    .products_container_text{
        align-items: start;
        text-align: left;
    }
    
    .products-wrapper h1{
        font-size:45px;
    }
    
}

@media (max-width: 400px) {
    .products-wrapper h1{
        font-size: 11vw;   
    }
}




/*PRODUCTS PAGE*/



/*TERMS*/
.terms_container{
    position: relative;
    width: 100%;
    background-color: var(--secondary-color);
    color: var(--third-color);
    display: flex;
    flex-direction: column;
    align-items: center;
}


.terms_wrapper{
    width: 80%;
    background-color: var(--secondary-color);
    color: var(--third-color);
    line-height: 2.5em;
    padding: 25px 16px;
    display: flex;
    flex-direction: column;
}
.terms_wrapper p{
    font-size: 16px;
}
.terms_wrapper h2{
    font-size: 20px;
    color: var(--main-color);
}

.terms_wrapper h1{
    font-size: 45px;
    text-align: center;
    padding: 25px 16px;
}

.terms_wrapper ul {
    font-size: 16px;
    list-style: circle;
    padding: 0 35px;
}

.terms_wrapper li {
    font-size: 16px;
    list-style: inside;}

@media (max-width: 900px) {
    .terms_wrapper{
        width: 100%;
    }

    .terms_wrapper h1{
        line-height: 1em;
    }

}
/*TERMS*/

/*CONTACT*/
.contact-wrapper{
    width: 100%;
    background-color: var(--third-color);
    position:relative;
}

.contact-wrapper h1{
    display: flex;
    justify-content: center;
    padding: 30px;
    color: var(--secondary-color);
    font-family: "Playfair Display", serif;
    font-weight: 900;
    font-size: 65px;
}

.contact-form-wrapper{
    width: 100%;
    background-color: var(--third-color);
    display:flex;
    align-content:center;
    justify-content:center;
}

.contact-form-container{
    width:40%;
    display: flex;
    justify-content: center;
}

.contact-map-container{
    width:40%;
}


.form-contact {
    display: flex;
    flex-direction: column;
    width: 80%;
    border-radius: 10px;
    color: var(--secondary-color);
}
 
.form-contact-input {
    width: 100%;
    height: 2.5em;
    background: white;
    border: none;
    outline: none;
    padding: 0 30px 0 5px;
    color: var(--secondary-color);
    font-size: 16px;
    border: 2px solid var(--main-color);
    border-radius: 5px;
    margin-bottom:20px;
}

.form-contact-input::placeholder{
   color: var(--secondary-color);
}
 
.form-contact textarea {
    width: 100%;
    height: 100%;
    background: white;
    border: none;
    outline: none;
    padding: 0 20px 0 5px;
    color: var(--secondary-color);
    font-size: 16px;
    border: 2px solid var(--main-color);
    resize: none;
    border-radius:5px;
    margin-bottom:20px;
}

.form-contact label {
    display: flex;
    width: 100%;
    height: 2.5em;
    background: white;
    border: none;
    outline: none;
    padding: 0 30px 0 5px;
    color: var(--secondary-color);
    font-size: 16px;
    border: 2px solid var(--main-color);
    border-radius: 5px;
    margin-bottom:20px;
}
 
textarea::placeholder{
   color: var(--secondary-color);
}

.form-contact .contact-name {
   display: flex;
   align-items: center;
}
 
.form-contact .contact-name input {
   width: 48%;
   margin-right: 4%;
}
 
.form-contact .contact-input {
   position: relative;
}

.contact-input-phone .iti{
    width: 100%;
}

.contact-input-phone{
    margin-bottom:20px;
}
 
.form-contact .contact-input i {
   position: absolute;
   color: var(--secondary-color);
    transform: translateY(80%);
   right: 10px;
   font-size: 16px;
}
 
.submit_button_contact {
   color: white;
   background: var(--main-color);
   border-radius: 5px;
   width: 100%;
   padding: 10px;
   outline: none;
   border: none;
   font-size: 16px;
   cursor: pointer;
}

#phone-contact-form{
    background: none;
    border: none;
    width: auto;
    height: 100%;
}

.contactMethodWrapper {
    width: 100%;
    background-color: var(--secondary-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 25px 16px 25px 16px;
    margin-top:2em; 
}
 
.contactMethod {
    display: flex;
    flex-direction: row;
    margin-top: 2em;
    margin-bottom: 2em;
    text-align: left;
    justify-content: space-around;
    width: 80%;
    align-items: center;
}

.method {
    display: flex;
    flex-direction: row;
    align-items: center;
    width:33%;
    justify-content:center;
}

.contactIcon {
    font-size: 2rem;
    color: var(--main-color);
    padding-right:20px;
}

.methodText h2 {
    color: var(--third-color);
    font-size: 20px;
    padding: 0;
    text-align: left;
    font-family: "Poppins", serif;
    font-weight: 600;
}

.method-sub-text{
    font-size: 16px;
    word-break:break-word;
    color: var(--third-color);
}


@media(max-width:900px) {
    
    .contact-wrapper h1{
        padding: 25px;
        font-size: 45px;
    }
    .contact-form-wrapper{
        flex-direction:column;
    }
    
    .contact-form-container {
        width: 100%;
    }
    
    .contact-map-container {
        width: 100%;
        height: 60vh;
        padding: 25px 16px;
    }
    
    .form-contact {
        width: 100%;
        padding: 25px 16px;
    }
    
    .contactMethod {
        flex-direction: column;
        width:100%;
        align-items: start;
        margin:0 auto;
    }
    
    .method {
        display: flex;
        flex-direction: row;
        align-items: center;
        padding: 25px 0;
        width:auto;
    }
    
}


@media (max-width: 400px) {
    .contact-wrapper h1{
        font-size: 11vw;   
    }
}



/*CONTACT*/







