/*
Theme Name:   Leave Your Luggage
Template:     twentytwentyfour
Version:      1.0
Description:  A child theme for TwentyTwentyFour
*/

:root {
    --wp--style--global--content-size: 1200px;
    --eoak-border-radius: 0.2rem;
    --eoak-accent-border-radius: 100% 78% 13% 57%;
    --eoak-transition-duration: 0.3s;

    --eoak-blue: #003366;
    --eoak-white-cream: #FBF8EF;
    --eoak-orange: #DE6E27;
    --eoak-gray-cream: #E5E2D9;
    --eoak-white: #ffffff;
    --eoak-home-background-light-orange: #f0e9de;
    --eoak-home-background-dark-orange: #efd8be;

    --title-font-family: "INTER";

    /* New visuals */
    --eoak--light-green: #739074;
    --eoak--dark-green: #18372a;
    --eoak--yellow: #F2B213;
    --eoak--dark-blue: #053146;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    scroll-behavior: smooth;
    font-family: 'Open Sans', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
}

#become-host-wrapper {
    background: var(--eoak-white);
}

#become-host-wrapper>div,
#become-host-wrapper>div>div {
    padding: 0 !important;
}

.cky-consent-container{
    top: unset!important;
    bottom: 0!important;
}

#luggage-solutions-wrapper {
    background: #CCD7CC;
    padding-top: 1rem;
    padding-bottom: 0;
}

.home .wp-block-columns {
    max-width: 1366px;
}

.home main {
    margin-top: 0;
}

.home main>div {
    padding: 0;
    display: block;
    float: left;
    width: 100%;
    background: #ccd7cc;
}

.home-separator {
    display: none;
}

.homepage-group {
    max-width: 100%;
    margin-top: 0;
    padding: 5rem 0;
}

#home-banner-wrapper,
#our-vision-wrapper {
    background: var(--eoak-home-background-dark-orange);
}

.home-banner-image-wrapper {
    position: relative;
}

.home-banner-image-wrapper>figure {
    position: absolute;
    z-index: 9;
    top: 0;
    transform: translate(0, -3rem);
}

.home-banner-image-wrapper img {
    -webkit-filter: drop-shadow(5px 5px 5px var(--eoak--dark-green));
    filter: drop-shadow(5px 5px 5px var(--eoak--dark-green));
}

#how-it-works-wrapper {
    background: #CCD7CC;
    padding-left: 1rem;
    padding-right: 1rem;
}

#how-it-works-wrapper .wp-block-columns{
    margin-top: 4rem;
}

#how-it-works-wrapper h2,
#faq-wrapper h2,
#luggage-solutions-wrapper h2{
    color: #18372a;
    font-weight: bold;
    letter-spacing: -2px;
    margin-bottom: 0;
    font-size: 48px!important;
    text-transform: uppercase;
}

#how-it-works-wrapper .how-it-works-text{
    font-weight: bold;
    font-size: 18px!important;
    line-height: 22px;
    color: #18372a;
}

.how-it-works-number strong {
    width: 5rem;
    height: 5rem;
    line-height: 5rem;
    display: block;
    margin: 0 auto;
    background: #FEB62C;
    color: var(--eoak-white);
    border-radius: 50%;
}

header>div {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
}

header .custom-logo-link {
    outline: none;
}

.header-button a{
    border: 2px solid #FEB62C;
    background: #FEB62C;
    transition-duration: var(--eoak-transition-duration);
    outline: none;
    color: #053146;
    font-family: var(--title-font-family);
    font-weight: bold;
    letter-spacing: -1px;
    font-size: 20px;
    padding: 6px 14px;
}

.header-button a:hover,
.homepage-button a:hover {
    background: var(--eoak-white);
    color: var(--eoak--dark-green);
    transition-duration: var(--eoak-transition-duration);
}

footer {
    display: block;
    float: left;
    width: 100%;
}

footer .wp-block-navigation__container{
    gap: 0.5rem;
}

.faq-accordion>summary {
    outline: none;
    transition-duration: var(--eoak-transition-duration);
    padding: 1rem 2rem 1rem 5rem;
    border-radius: 25px;
    background: #fff;
    font-weight: bold;
    font-size: 22px;
    line-height: 28px;
    color: #18372a;
    position: relative;
    z-index: 2;
}

.faq-accordion>summary:hover {

}

.faq-accordion>summary::marker {
    content: '';
}

.faq-accordion>summary::before{
    content: '+';
    position: absolute;
    left: 2rem;
    top: 50%;
    transform: translate(0,-50%) rotate(0);
    transition-duration: var(--eoak-transition-duration);
    font-size: 50px;
    color: #739074;
    font-weight: bold;
}

.faq-accordion>summary:hover::before{
    color: #feb62c;
    transition-duration: var(--eoak-transition-duration);
}

details[open].faq-accordion summary::before{
    transform: translate(0,-50%) rotate(45deg);
    transition-duration: var(--eoak-transition-duration);
}

.leaflet-popup-content {
    min-width: 200px;
}

#to-top-btn {
    background: var(--eoak--dark-green);
    width: 4rem;
    display: flex;
    height: 4rem;
    position: fixed;
    z-index: 99999;
    border: 0.2rem solid var(--eoak--dark-green);
    cursor: pointer;
    border-radius: var(--eoak-accent-border-radius);
    flex-direction: row;
    align-items: center;
    justify-content: center;
    bottom: 1rem;
    right: 1rem;
    transition-duration: var(--eoak-transition-duration);
}

#to-top-btn:hover {
    background: var(--eoak-white-cream);
    transition-duration: var(--eoak-transition-duration);
}

#to-top-btn svg {
    width: 3rem;
    height: 3rem;
    position: relative;
    top: 0.1rem;
    left: 0.1rem;
}

#to-top-btn svg path {
    fill: var(--eoak-white);
    transition-duration: var(--eoak-transition-duration);
}

#to-top-btn:hover svg path {
    fill: var(--eoak--dark-green);
    transition-duration: var(--eoak-transition-duration);
}

/* .wp-block-woocommerce-customer-account {
    margin: 0 !important;
    border: 2px solid var(--eoak--dark-green);
    background: var(--eoak--dark-blue);
    height: 2.5rem;
    aspect-ratio: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    transition-duration: var(--eoak-transition-duration);
} */

.wp-block-navigation__responsive-container-close svg,
.wp-block-navigation__responsive-container-open svg {
    fill: var(--eoak--dark-green);
}

/* .wp-block-woocommerce-customer-account a {
    display: flex;
    line-height: 2.5rem;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    height: 2.5rem;
    width: 2.5rem;
    outline: none !important;
} */

.wp-block-woocommerce-customer-account a svg {
    width: 3rem !important;
    height: 3rem !important;
}

.wp-block-woocommerce-customer-account a svg path {
    fill: #feb62c;
    transition-duration: var(--eoak-transition-duration);
}

.wp-block-woocommerce-customer-account a svg circle {
    stroke: var(--eoak--dark-green);
    transition-duration: var(--eoak-transition-duration);
}

.wp-block-woocommerce-customer-account{
    margin-left: 0!important;
}

/* .wp-block-woocommerce-customer-account:hover {
    transition-duration: var(--eoak-transition-duration);
    background-color: var(--eoak--dark-green);
} */

.wp-block-woocommerce-customer-account:hover a svg path {
    fill: var(--eoak-white);
    transition-duration: var(--eoak-transition-duration);
}

.wp-block-woocommerce-customer-account:hover a svg circle {
    stroke: var(--eoak-white);
    transition-duration: var(--eoak-transition-duration);
}

.wc-block-mini-cart {
    display: none;
}

/* ------------------------------------------------------------------ Affiliate Register Start */


.eoak-affiliate-registration-form .error {
    color: #ff0000;
    font-size: 0.8rem;
    margin-top: 0.2rem;
}

.leaflet-control-attribution.leaflet-control{
    display: none!important;
}

/* ------------------------------------------------------------------ Checkout Start */
/* .woocommerce-billing-fields__field-wrapper>p{
    display: none!important;
} */

#order_review_wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #FEB62C;
    border-radius: 1rem;
    padding: 2rem;
    height: max-content;
}

#order_review_heading{
    text-align: center;
    margin-top: 0;
    font-weight: bold;
    color: #000;
}

#order_review table{
    border: none;
    box-shadow: none;
}

#order_review .cart-subtotal{
    display: none;
}

#order_review thead{
    display: none;
}

#order_review td,
#order_review th,
#order_review tr{
    border: none;
    font-weight: bold;
    color: #000;
    font-size: 1rem;
}

.woocommerce-checkout #place_order{
    font-weight: bold;
    margin: 0 auto;
    width: auto;
    outline: none;
    line-height: 3rem;
    font-size: 1.5rem;
    border-radius: 2rem;
    border: 4px solid #ffffff;
    padding: 0 3rem;
    text-transform: uppercase;
    max-width: 100%;
    display: block;
    box-sizing: border-box;
    cursor: pointer;
    height: auto;
    background: #18372a;
    color: #ffffff!important;
    -moz-appearance: none;
    font-family: var(--title-font-family);
    -webkit-appearance: none;
}

.woocommerce-checkout #payment ul.payment_methods{
    padding: 0;
    background: #feb62c;
}
.woocommerce-checkout #payment div.payment_box{
    padding: 0;
    background: #feb62c;
    margin: 0 0 1rem;
}

.payment_box.payment_method_stripe fieldset{
    padding: 0;
    border: none;
}


.wc_payment_method.payment_method_stripe>label{
    font-weight: bold;
    text-align: center;
    width: 100%;
    display: block;
    font-size: 1.5rem;
}

.woocommerce-checkout #payment .woocommerce-SavedPaymentMethods-saveNew{
    width: 100%!important;
    margin: 0!important;
}

.woocommerce-checkout #payment .woocommerce-SavedPaymentMethods-saveNew label{
    position: relative;
    background: #feb62c;
    top: 0;
    left: 0;
}

.woocommerce-checkout #payment div.payment_box::before{
   display: none;
}

.woocommerce-checkout #payment div.payment_box p:last-child {
    margin-top: 0;
    color: #000;
}

#order_review .order-total{
    border-top: 3px solid #000;
}

.woocommerce-checkout footer{
    margin-top: 0;
}

.woocommerce-checkout .woocommerce-notices-wrapper {
    width: 100%;
    padding: 0 1rem;
}

.woocommerce-checkout .woocommerce-additional-fields {
    display: none;
    float: left;
    width: 100%;
    margin-top: 1rem;
}


.woocommerce #payment #place_order,
.woocommerce-page #payment #place_order {
    float: unset;
}

.woocommerce-checkout .woocommerce-additional-fields>h3 {
    display: none;
}

.woocommerce-checkout .form-row.place-order {
    text-align: center;
}

.woocommerce-checkout:not(.woocommerce-order-received) header {
    padding: 0;
    margin: 0;
}

.woocommerce-checkout:not(.woocommerce-order-received) main {
    padding: 0;
    margin: 0;
}

.woocommerce-checkout .entry-content {
    margin: 0;
    max-width: 100%;
}

.woocommerce-checkout .woocommerce {
    width: 100%;
    max-width: 100% !important;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    background: #CCD7CC;
}

.woocommerce-checkout .woocommerce-notices-wrapper {
    order: 0;
}

.woocommerce-checkout .woocommerce-form-coupon-toggle {
    order: 1;
    width: 100%;
}

.woocommerce-checkout form.woocommerce-form-coupon {
    order: 2;
}

.woocommerce-checkout .woocommerce-location-info-wrap {
    box-sizing: border-box;
    float: left;
}

.woocommerce-checkout form.checkout {
    order: 4;
    float: left;
    padding: 0rem;
    box-sizing: border-box;
    width: 100%;
}

.woocommerce-checkout #customer_details>div {
    width: 100%;
}

#checkout_before_customer_wrapper{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    gap: 1rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

#checkout_before_customer_wrapper>div{
    box-sizing: border-box;
    display: flex;
    justify-content: center;
}
#checkout_before_customer_wrapper .right-side{
    width: calc(55% - 1rem);
}
#checkout_before_customer_wrapper .left-side{
    width: calc(45% - 1rem);
}

#checkout_before_customer_wrapper .side-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #FEB62C;
    border-radius: 1rem;
    padding: 2rem;
    height: max-content;
}

#checkout_before_customer_wrapper label{
    display: none;
}

#checkout_before_customer_wrapper #woo-billing-to-company_field label{
    display: block;
    position: relative;
    top: unset;
    left: unset;
    background: #feb62c;
}

#checkout_before_customer_wrapper #woo-billing-to-company_field{
    order: 9;
    width: 100%!important;
}

#checkout_before_customer_wrapper .woo-bg-company-info{
    order: 10;
}

#billing_first_name_field{
    order: 1;
}

#billing_last_name_field{
    order: 2;
}

#billing_email_field{
    order: 3;
}

#billing_phone_field{
    order: 4;
}

.woocommerce-checkout .woocommerce-location-info-additional.description{
    width: 100%;
    text-align: center;
}

.woocommerce-checkout #customer_details .col-1 h3,
.woocommerce-checkout .woocommerce-location-info-wrap h3 {
    margin: 0;
    font-weight: bold;
    text-align: center;
    font-family: var(--title-font-family);
    color: #000;
    width: 100%;
}

.woocommerce-checkout .woocommerce-location-info-title.checkin{
    font-size: 22px;
}

.woocommerce-checkout .woocommerce-location-info-wrap h5 {
    margin: 0;
    color: #000;
    font-family: var(--title-font-family);
}

#wc-stripe-express-checkout-button-separator{
    margin-top: 0!important;
}

.woocommerce-checkout .working-hours-wrapper ul {
    padding: 0;
    margin: 0;
}

.woocommerce-checkout .working-hours-wrapper li {
    list-style: none;
}

.woocommerce-checkout #customer_details .col-2 h3,
.woocommerce-checkout #order_review_heading {
    margin: 1rem 0;
    font-family: var(--title-font-family);
}

.woocommerce-checkout #order_review_heading,
.woocommerce-checkout #order_review {
    width: 100%;
    float: left;
}

.woocommerce-checkout .form-row {
    width: calc(50% - 0.5rem) !important;
    box-sizing: border-box;
    position: relative;
    padding: 0 !important;
    margin-bottom: 0rem !important;
    margin-top: 0.5rem !important;
    display: block;
    float: left;
    order: 2;
}

.woocommerce-checkout .form-row input,
.woocommerce-checkout .form-row .select2-selection,
.woocommerce-checkout .form-row textarea {
    background: #fbf8ef;
    border: 1px solid var(--eoak-blue);
    border-radius: var(--eoak-border-radius);
    font-size: 1rem;
    line-height: 1.4rem !important;
    color: var(--eoak-blue) !important;
    font-family: var(--title-font-family);
    outline: none !important;
}

.woocommerce-checkout .form-row label {
    margin-bottom: 0;
    position: absolute;
    top: -1rem;
    left: 2rem;
    z-index: 999;
    background: #fbf8ef;
    padding: 0 1rem;
    line-height: 2rem !important;
}

.woocommerce-checkout .woocommerce-terms-and-conditions-wrapper .form-row label {
    left: unset;
    display: block;
}

.woocommerce-checkout .woocommerce-billing-fields__field-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
}

.woocommerce-checkout #order_comments_field {
    width: 100% !important;
}

.woocommerce-checkout .woocommerce-checkout-review-order table {
    width: 100%;
    border: 1px solid var(--eoak-gray-cream);
    border-radius: var(--eoak-border-radius);
}

.woocommerce-checkout table.shop_table td,
.woocommerce-checkout table.shop_table th {
    padding: 0.5rem 1rem;
    font-size: 1rem;
}

.woocommerce-checkout .form-row.place-order {
    width: 100% !important;
    max-width: 100%;
}

.woocommerce-location-info-additional,
.woocommerce-location-info-title {
    margin: 0 0 1rem;
}

.woocommerce-location-info-additional-wrapper {
    width: 100%;
    float: left;
}

.woocommerce-working-hours-wrapper {
    width: 100%;
    display: block;
    float: left;
}

.woocommerce-working-hours-wrapper .working-hours-wrapper {
    display: flex;
    padding-bottom: 2rem;
    float: left;
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-around;
}

.woocommerce-working-hours-wrapper .working-hours {
    width: calc((100% / 4) - 0.25rem);
}

#eoak-map-checkout {
    position: relative;
    display: block;
    float: left;
    width: 500px;
    height: 500px;
}

.leaflet-container a.leaflet-popup-close-button{
    top: 1.5rem;
    right: 0.5rem;
}

.eoak-checkout-filter.checkin.wrapper {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    float: left;
    gap: 1rem;
    margin-bottom: 1rem;
}

.eoak-checkout-filter.time {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    gap: 1rem;
    width: 100%;
    justify-content: space-around;
}

.eoak-checkout-filter.time>div {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 50%;
    align-items: center;
}

.eoak-checkout-filter.time label {
    display: none;
}

.eoak-checkout-filter.time input{
    font-weight: bold;
    width: 100%;
    outline: none;
    line-height: 2.2rem;
    font-size: 1rem;
    border-radius: 25px;
    border: 4px solid #ffffff;
    padding: 0 1rem;
    max-width: 100%;
    display: block;
    float: left;
    box-sizing: border-box;
    cursor: pointer;
    height: 48px;
    background: #18372a;
    color: #ffffff!important;
    -moz-appearance: none;
    font-family: var(--title-font-family);
    -webkit-appearance: none;
}

.woocommerce form .form-row input.input-text {
    font-weight: bold;
    width: 100%;
    line-height: 3.2rem!important;
    font-size: 1.1rem;
    border-radius: 2rem;
    /* text-align: center; */
    border: 4px solid #ffffff;
    padding: 0 1rem;
    max-width: 100%;
    display: block;
    float: left;
    box-sizing: border-box;
    cursor: pointer;
    height: auto;
    background: #18372a;
    color: #ffffff!important;
    -moz-appearance: none;
    font-family: var(--title-font-family);
    -webkit-appearance: none;
}

.woocommerce #coupon_code{
    background: #739074;
    color: #fff!important;
    font-size: 1.2rem;
    line-height: 3.8rem!important;
    width: 100%;
}


.eoak-checkout-filter.time select{
    font-weight: bold;
    font-family: var(--title-font-family);
    width: fit-content;
    outline: none;
    line-height: 2.2rem;
    font-size: 1rem;
    border-radius: 25px;
    border: 4px solid #ffffff;
    padding: 0 4rem 0 1rem;
    max-width: 100%;
    display: block;
    float: left;
    box-sizing: border-box;
    cursor: pointer;
    height: 48px;
    background: #18372a;
    background-image: url(https://leaveyourluggageinsofia.com/wp-content/uploads/2025/01/clock-select.png);
    color: #ffffff;
    background-repeat: no-repeat;
    background-position-x: 90%;
    background-position-y: 4px;
    -moz-appearance: none;
    -webkit-appearance: none;
}

.eoak-checkout-filter #date-checkin,
.eoak-checkout-filter #date-checkout {
    background-image: url(https://leaveyourluggageinsofia.com/wp-content/uploads/2025/01/calendar-select.png);
    background-position-x: 90%;
    background-position-y: 4px;
    background-repeat: no-repeat;
}

#date-checkin::-webkit-calendar-picker-indicator,
#date-checkout::-webkit-calendar-picker-indicator {
    opacity: 0;
    width: 25px;
    height: 30px;
 }

/* ------------------------------------------------------------------ Checkout End */

/* ------------------------------------------------------------------ Order Account Start */
.woocommerce-MyAccount-navigation-link--payment-methods{
    display: none!important;
}

.change_order_status_select{
    font-size: 14px;
    line-height: 2;
    color: #2c3338;
    border-color: #8c8f94;
    box-shadow: none;
    border-radius: 3px;
    padding: 0 24px 0 8px;
    min-height: 30px;
    max-width: 25rem;
    -webkit-appearance: none;
    background: #fff url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M5%206l5%205%205-5%202%201-7%207-7-7%202-1z%22%20fill%3D%22%23555%22%2F%3E%3C%2Fsvg%3E') no-repeat right 5px top 55%;
    background-size: 16px 16px;
    cursor: pointer;
    vertical-align: middle;
}

.eoak-order-dates h5,
.eoak-address h5 {
    margin: 0;
}

.eoak-working-hours {
    padding: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.eoak-working-hours>li {
    width: calc(100% / 3);
}

.eoak-working-hours li {
    list-style: none;
}

.woocommerce-account.woocommerce-orders .woocommerce{
    margin: 0;
    max-width: 100%!important;
}

.woocommerce-account.woocommerce-orders .woocommerce-MyAccount-navigation{
    width: 200px;
}

.woocommerce-account.woocommerce-orders .woocommerce-MyAccount-content{
    width: calc(100% - 210px);
}

.woocommerce-account.woocommerce-orders .woocommerce-MyAccount-content table.shop_table td,
.woocommerce-account.woocommerce-orders .woocommerce-MyAccount-content table.shop_table th{
    padding: 0.5rem;
}

/* ------------------------------------------------------------------ Order Account End */

/* ------------------------------------------------------------------ Location rating Start */

#eoak-location-rating-form {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

#eoak-location-rating-form h2 {
    font-size: 1.8rem;
    color: #18372a;
    margin-bottom: 20px;
    font-weight: 600;
}

#eoak-location-rating-form .form-group {
    margin-bottom: 20px;
    width: 100%;
}

@media (min-width: 768px) {
    /* #eoak-location-rating-form .form-group {
        width: 48%;
        float: left;
    } */
    
    #eoak-location-rating-form .form-group:nth-child(odd) {
        margin-right: 4%;
    }
    
    #eoak-location-rating-form .form-group[style*="width: 100%"] {
        width: 100%;
        margin-right: 0;
    }
}

#eoak-location-rating-form .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #18372a;
}

#eoak-location-rating-form .form-group label:after {
    content: " *";
    color: #18372a;
}

#eoak-location-rating-form .form-group input[type="checkbox"] + label:after {
    content: "";
}

#eoak-location-rating-form .form-group input[type="text"],
#eoak-location-rating-form .form-group input[type="email"],
#eoak-location-rating-form .form-group textarea {
    width: 100%;
    line-height: 3.2rem !important;
    font-size: 1.1rem;
    border-radius: 2rem;
    border: none;
    padding: 0 1rem;
    box-sizing: border-box;
    height: auto;
    background: #18372a;
    color: #ffffff !important;
    font-family: var(--title-font-family, sans-serif);
    -webkit-appearance: none;
    -moz-appearance: none;
}

/* Textarea specific styling */
#eoak-location-rating-form .form-group textarea {
    padding: 1rem;
    min-height: 120px;
}

/* Star Rating Styling */
#eoak-location-rating-form .star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
}

#eoak-location-rating-form .star-rating input {
    display: none;
}

#eoak-location-rating-form .star-rating label {
    font-size: 30px;
    color: #ddd;
    cursor: pointer;
    margin-right: 5px;
    display: inline;
}

#eoak-location-rating-form .star-rating label:after {
    content: "";
}

#eoak-location-rating-form .star-rating :checked ~ label,
#eoak-location-rating-form .star-rating label:hover,
#eoak-location-rating-form .star-rating label:hover ~ label {
    color: #f7b731;
}

#eoak-location-rating-form input[type="checkbox"] {
    background: #18372a;
    border-radius: 3px;
}

#eoak-location-rating-form input[type="checkbox"] + label {
    display: inline-block;
}

#eoak-location-rating-form #submit-feedback {
    background-color: #18372a;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.3s;
}

#eoak-location-rating-form #submit-feedback:hover {
    background-color: #0f241b;
}

#eoak-rating-response {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
}

#eoak-rating-response.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

#eoak-rating-response.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}


/* Clearfix for floating elements */
#eoak-location-rating-form .clearfix::after {
    content: "";
    clear: both;
    display: table;
}

/* Fix for checkbox label alignment */
#eoak-location-rating-form input[type="checkbox"] + label {
    vertical-align: middle;
}

/* Links in the form */
#eoak-location-rating-form a {
    color: #18372a;
    text-decoration: underline;
}
/* ------------------------------------------------------------------ Visual fixes start */
body.woocommerce-account #locations-wrapper .edit-location,
body.woocommerce-account #locations-wrapper .delete-location {
    border-radius: var(--eoak-border-radius);
    padding: 0.4rem 1rem;
    text-decoration: none;
    font-size: 1rem;
    line-height: 1.5rem;
    display: flex;
    float: left;
    margin-left: 0.5rem;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    color: var(--eoak-white);
}

body.woocommerce-account footer {
    margin-top: 3rem;
}

.woocommerce-checkout-review-order p.form-row.validate-required {
    width: 100% !important;
}

.woocommerce-checkout-review-order p.form-row.validate-required>label {
    position: relative;
    width: 100%;
    display: block;
    padding: 0;
    background: #feb62c;
}

.woocommerce-form-coupon-toggle{
    display: none!important;
}

form.checkout_coupon.woocommerce-form-coupon.visible{
    padding: 0;
    text-align: center;
    display: flex!important;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    justify-content: center;
}

#checkout_after_content_wrapper{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    gap: 1rem;
    margin: 4rem auto;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1200px;
}

#order_review_wrapper,
#checkout_map_address_wrapper{
    display: flex;
    flex-direction: column;
    width: calc(50% - 1rem);
}

form.checkout_coupon.woocommerce-form-coupon .button{
    background: #18372a;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1.2rem;
    line-height: 2.3rem;
    padding: 0.5rem 2rem;
}

form.checkout_coupon.woocommerce-form-coupon .form-row-first,
form.checkout_coupon.woocommerce-form-coupon .form-row-last{
    width: auto!important;
}

form.checkout_coupon.woocommerce-form-coupon>p{
    font-weight: bold;
    font-size: 1.3rem;
    margin: 1.5rem 0rem 0rem;
    line-height: 1.4rem;
}

/* ------------------------------------------------------------------ Visual fixes end */

/* ------------------------------------------------------------------ New design start */

.header-top-bar{
    background: #739074;
    font-family: var(--title-font-family);
    margin: 0;
    padding: 16px!important;
    color: #ffffff;
}

header>div{
    padding: 0rem!important;
}

#home-banner-wrapper{
    margin: 0!important;
    padding: 0!important;
    position: relative;
}

#home-banner-wrapper>div{
    max-width: 100%!important;
}

#home-banner-wrapper img{
    width: 100%;
}

#home-banner-wrapper .home-banner-texts{
    margin: 0;
    position: absolute;
    top: 50%;
    left: 16%;
    transform: translate(0%,-50%);
    display: flex;
    flex-direction: column;
    align-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: flex-start;
    width: 540px;
    padding: 0;
}

#home-banner-wrapper .home-banner-texts>*{
    text-align: center;
    width: 100%;
}

#home-banner-wrapper .home-banner-texts>h2{
    font-size: 48px!important;
    font-weight: bold;
    color: #18372a;
}

#home-banner-wrapper .home-banner-texts>p{
    font-size: 20px;
}

#home-banner-wrapper .wp-block-buttons{
    display: flex;
    align-items: center;
    justify-content: center;
}

#home-banner-wrapper .wp-block-buttons a.wp-element-button{
    color: #ffffff;
    background: #18372a;
    border: 2px solid #18372a;
    text-transform: capitalize;
    border-radius: 25px;
    font-size: 24px;
    padding: 8px 24px;
    font-weight: bold;
    font-family: var(--title-font-family);
    transition-duration: var(--eoak-transition-duration);
}

#home-banner-wrapper .wp-block-buttons a.wp-element-button:hover{
    background: #ffffff;
    color: #18372a;
    transition-duration: var(--eoak-transition-duration);
}

#our-vision-wrapper {
    background: #739074;
    padding: 2rem 1rem;
}

#our-vision-wrapper h2{
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: -2px;
    color: #fff;
    text-align: center;
    font-size:48px!important;
}

#our-vision-wrapper p{
    color: #ffffff;
    text-align: justify;
}

#our-vision-wrapper>div{
    gap: 4rem;
}

#our-vision-wrapper .wp-block-column{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#faq-wrapper{
    background: #FEB62C;
    padding-left: 1rem;
    padding-right: 1rem;
}

#faq-wrapper>div{
    max-width: 1366px;
    display: flex;
    flex-direction: row;
    gap: 1rem;
    flex-wrap: wrap;
}

#faq-wrapper details{
    width: calc(50% - 0.5rem);
    margin: 0!important;
}

#faq-wrapper details p{
    transition-duration: var(--eoak-transition-duration);
    background: #FFDC9A;
    margin-top: 0;
    padding: 0 1rem;
    border-radius: 0;
    position: relative;
    z-index: 1;
}

#faq-wrapper details p:nth-child(2){
    padding-top: 2rem;
    margin-top: -1.5rem;
}

#faq-wrapper details p:last-child{
    padding-bottom: 1rem;
    border-radius: 0 0 25px 25px;
}

body.home footer,
body.page-id-377 footer{
    margin-top: 0;
}

body.page-id-377 main{
    margin-top: 0;
    background: #FEB62C;
    padding-top: 4rem;
}

body.page-id-377 h2.wp-block-heading{
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #fff;
    text-align: center;
    font-weight: bold;
}

body.woocommerce-account #locations-wrapper .loc-phone,
body.woocommerce-account #locations-wrapper .loc-email{
    width: calc(100% / 3);
    float: left;
}

.location-luggage-data-wrapper,
.available-locations-wrapper{
    background: #FEB62C;
    border-radius: 15px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
}

.use-my-location>div{   
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 1.5rem;
}

.input-bags-wrapper{
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.input-bags-wrapper svg{
    height: 50px;
}

.wpcf7-form{
    margin: 0 auto;
    max-width: 800px;
}


.wpcf7-form input[type="text"],
.wpcf7-form input[type="submit"],
.wpcf7-form input[type="email"],
.wpcf7-form textarea{
    font-weight: bold;
    width: 100%;
    line-height: 3.2rem!important;
    font-size: 1.1rem;
    border-radius: 2rem;
    text-align: center;
    border: 4px solid #ffffff;
    padding: 0 1rem;
    max-width: 100%;
    display: block;
    float: left;
    box-sizing: border-box;
    cursor: pointer;
    height: auto;
    max-height: 200px;
    background: #18372a;
    margin-bottom: 1rem;
    color: #ffffff!important;
    -moz-appearance: none;
    font-family: var(--title-font-family);
    -webkit-appearance: none;
}

/* ------------------------------------------------------------------ New design end */
@media all and (max-width:1360px){
    .woocommerce-account.woocommerce-orders .woocommerce-MyAccount-content{
        overflow-x: scroll;
        overflow-y: visible;
    }
}

@media all and (max-width:1240px) {

    body.woocommerce-checkout .woocommerce-location-info-wrap,
    body.woocommerce-checkout form.checkout {
        width: 100%;
    }

    body.woocommerce-checkout .woocommerce-location-info-additional-wrapper {
        width: 100%;
    }

    #checkout_after_content_wrapper{
        margin: 1rem auto;
    }

    #checkout_before_customer_wrapper>div{
        width: calc(50% - 1rem) !important;
    }

    body.woocommerce-account #locations-wrapper .loc-woking-day {
        width: calc(calc(100% - 2rem) / 2);
    }

    #home-banner-wrapper,
    #our-vision-wrapper,
    #how-it-works-wrapper,
    #faq-wrapper {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}


@media all and (max-width:1100px) and (min-width:782px) {
    .luggage .eoak-map-filter.location,
    .eoak-map-filter.luggage.wrapper,
    .map-available-location-row{
       flex-direction: column;
       gap: 0;
    }
 
    .input-bags-wrapper svg{
       display: none;
    }
 
    #eoak-interactive-map-wrapper{
       padding-left: 1rem;
       padding-right: 1rem;
    }
    
    .map-available-location-row .left-side{
       width: 100%;
       padding-right: 0;
       padding-bottom: 1rem;
       text-align: center;
    }
 
    .map-available-location-row .left-side p{
       text-align: center;
       width: 100%;
    }
 
    .map-available-location-row .right-side,
    .eoak-map-filter.luggage.bags>div,
    .location-luggage-data-wrapper input,
    .location-luggage-data-wrapper select{
       width: 100%!important;
    }
 
    #eoak-map-locations-wrapper{
       max-height: 150px;
    }
 }

@media all and (max-width:1024px){
    body.woocommerce-checkout form.checkout{
        padding: 1rem;
    }

    #checkout_before_customer_wrapper>div {
        width: 100% !important;
    }

    #checkout_before_customer_wrapper{
        margin: 0 auto;
    }

    #checkout_after_content_wrapper{
        flex-direction: column-reverse;
    }

    #order_review_wrapper, #checkout_map_address_wrapper{
        width: 100%;
        align-items: center;
    }

    #eoak-map-checkout{
        max-width: 100%;
    }

    #checkout_before_customer_wrapper .side-content{
        width: 100%;
    }
}

@media all and (max-width:1024px) and (min-width:600px){
    .header-button a{
        font-size: 14px;
    }
}

@media all and (max-width:781px) {
    #eoak-map-column {
        padding: 1rem;
        width: 100%;
        order: 2;
    }

    #eoak-map {
        order: 1;
        width: 100%;
    }

    #home-banner-wrapper{
        padding: 1rem!important;
        overflow: hidden;
    }

    #home-banner-wrapper .home-banner-texts>h2{
        font-size: 28px !important;
        /* color: #ffffff; */
    }

    #home-banner-wrapper .home-banner-texts>p {
        font-size: 18px;
        line-height: 20px;
        color: #18372a;
    }

    #home-banner-wrapper .wp-block-buttons a.wp-element-button{
        font-size: 16px;
    }

    #how-it-works-wrapper h2, #faq-wrapper h2, #luggage-solutions-wrapper h2{
        font-size: 28px!important;
        letter-spacing: 0;
    }

    #eoak-interactive-map-wrapper{
        margin-top: 0;
        padding: 0 1rem;
        flex-direction: column-reverse;
    }

    #home-banner-wrapper .home-banner-texts{
        position: initial;
        width: 100%;
        color: #fff;
        transform: translate(0);
    }
    
    #our-vision-wrapper, #how-it-works-wrapper, #faq-wrapper {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    #our-vision-wrapper img{
        text-align: center;
    }

    #home-banner-wrapper img{
        position: absolute;
        top: 0;
        left: 0;
        min-height: 100%;
        max-width: unset;
        width: 100%;
    }

    .eoak-working-hours>li {
        width: calc(100% / 2);
    }

    #our-vision-wrapper figure{
        text-align: center;
    }

    body.woocommerce-checkout .form-row {
        width: calc(100% - 0.5rem) !important;
    }

    body.woocommerce-checkout .eoak-upsell h3 {
        margin-top: 0;
    }

    body.woocommerce-account .working-hours-input-wrapper {
        flex-direction: column;
        padding-left: 0.8rem;
        box-sizing: border-box;
    }

    body.woocommerce-account .working-hours-input {
        width: calc(100% - 0.5rem);
    }

    body.woocommerce-account .eoak-form-element .remove-row {
        left: -1rem;
    }

    body.woocommerce-account .eoak-form-element .add-working-hours,
    body.woocommerce-account .eoak-form-element .remove-row {
        width: 1.5rem;
        height: 1.5rem;
        font-size: 1.5rem;
        line-height: 1.5rem;
    }

    body.woocommerce-account .woocommerce-orders-table__cell.woocommerce-orders-table__cell-order-actions a {
        display: inline;
    }

    .home-banner-image-wrapper>figure {
        position: relative;
        transform: none;
    }

    .homepage-group {
        padding: 1rem 1rem 2rem;
    }

    #luggage-solutions-wrapper {
        padding: 1rem 0 0;
    }

    #to-top-btn {
        width: 3rem;
        height: 3rem;
    }

    #to-top-btn svg {
        width: 2.5rem;
        height: 2.5rem;
    }

    .luggage .eoak-map-filter.location,
    .eoak-map-filter.luggage.wrapper.bags {
        flex-direction: row;
    }

    .eoak-map-filter.luggage.bags>div {
        width: calc(50% - 0.5rem);
        box-sizing: border-box;
    }

    #eoak-map-column {
        padding: 0;
        width: 100%;
    }

    #eoak-map {
        min-width: 100%;
        width: 100%;
        /* pointer-events: none; */
    }

    .leaflet-popup-content{
        max-width: 230px;
        min-width: 200px !important;
        padding: 10px 0;
    }

    

    #eoak-map .leaflet-bar a,
    #eoak_form_map .leaflet-bar a {
        width: 1.5rem;
        height: 1.5rem;
    }

    #eoak-map .leaflet-bar a span,
    #eoak_form_map .leaflet-bar a span {
        font-size: 1.5rem;
    }

    #our-vision-wrapper{
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    #how-it-works-wrapper .wp-block-columns{
        margin-top: 1.5rem;
    }

    #eoak-map-time-limit{
        width: 100%;
        text-align: center;
    }

    .wp-block-navigation__responsive-container-open {
        background: #feb62c;
        width: 2rem;
        height: 2rem;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }

    .wp-block-woocommerce-customer-account a svg {
        width: 2rem !important;
        height: 2rem !important;
    }

    #faq-wrapper>div{
        flex-direction: column;
    }

    #faq-wrapper details{
        width: 100%!important;
    }

    .how-it-works-number strong {
        width: 3rem;
        height: 3rem;
        line-height: 3rem;
    }

    header .custom-logo-link>img {
        width: 160px;
    }

    .wp-block-navigation__responsive-container.is-menu-open{
        max-width: 250px;
        left: unset;
    }
}

@media all and (max-width:720px) and (min-width:600px) {

    .header-button a{
        padding: 0.3rem;
    }
}

@media all and (max-width:495px) {
    .woocommerce #payment #place_order, .woocommerce-page #payment #place_order {
        font-size: 1.2rem;
        padding: 0 1rem;
    }

    .input-bags-wrapper svg{
        display: none;
    }

    body.woocommerce-account #locations-wrapper .loc-woking-day {
        width: calc(100% - 2rem);
    }

    body.woocommerce-account #locations-wrapper .location-wrapper {
        padding: 1rem;
    }

    body.woocommerce-account #locations-wrapper .loc-capacity,
    body.woocommerce-account #locations-wrapper .loc-phone,
    body.woocommerce-account #locations-wrapper .loc-email,
    body.woocommerce-account #locations-wrapper .loc-coordinates {
        width: 100%;
    }

    body.woocommerce-account #locations-wrapper .location-controls {
        display: flex;
        gap: 1rem;
        flex-direction: column;
        width: 100%;
    }

    body.woocommerce-checkout .eoak-checkout-filter.time {
        width: 100%;
        gap: 5px;
        /* width: auto; */
    }
    
/* 
    body.woocommerce-checkout .eoak-upsell .upsell-products {
        overflow-x: scroll;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
    } */

    body.woocommerce-checkout .eoak-upsell .upsell-products>li {
        flex: 1;
        display: flex;
        width: 220px;
        min-width: 220px;
        flex-direction: column;
    }

    body.woocommerce-checkout .woocommerce-working-hours-wrapper .working-hours {
        width: calc(100% - 0.25rem);
    }

    body.woocommerce-checkout .working-hours-wrapper ul {
        display: flex;
        gap: 1rem;
    }

    .eoak-checkout-filter.time select{
        padding: 0 2.5rem 0 1rem;
    }

    .eoak-checkout-filter.time>div{
        width: auto;
    }

    .faq-accordion>summary {
        font-size: 1rem;
    }

    #home-banner-wrapper img{
        height: 100%;
        width: auto;
    }

    #checkout_before_customer_wrapper .side-content{
        padding: 1rem;
    }
}

@media all and (max-width:425px){

    #eoak-map-time-limit{
        width: 100%;
    }

    .eoak-map-filter.luggage.bags input{
        width: 100%;
    }

    .eoak-map-filter.location select{
        background-image: none;
        width: 100%;
        padding: 0rem 1rem;
    }

    .eoak-map-filter.location input{
        background-image: none;
        padding: 0;
        text-align: center;
    }
    .eoak-checkout-filter #date-checkin, .eoak-checkout-filter #date-checkout{
        max-width: 170px;
    }
}

/* 10.01.2025 Thank you page Start */

.woocommerce-custom-order-data .custom-order-card,
.woocommerce-custom-order-data .custom-location-card,
.woocommerce-custom-order-data .custom-hours-card,
.woocommerce-custom-order-data .custom-owner-card {
    position: relative;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 1.5em;
    margin-bottom: 2em;
    -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    background-color: #ffffff;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    overflow: hidden;
}

.woocommerce-custom-order-data h3 {
    color: #2c3338;
    font-size: 1.2em;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 1.5em;
    padding: 0 0 0.5em;
    border-bottom: 1px solid #eee;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.5em;
}

.woocommerce-custom-order-data .info-grid,
.woocommerce-custom-order-data .hours-grid {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5em;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    padding: 0.5em 0;
}

.woocommerce-custom-order-data .info-item,
.woocommerce-custom-order-data .hours-item {
    padding: 1em;
    border-radius: 6px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background-color: #f8f9fa;
    border: 1px solid #f0f0f0;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.woocommerce-custom-order-data .info-label,
.woocommerce-custom-order-data .day-label {
    color: #666;
    font-size: 0.9em;
    font-weight: normal;
    line-height: 1.4;
    margin-bottom: 0.3em;
}

.woocommerce-custom-order-data .info-value,
.woocommerce-custom-order-data .hours-value {
    color: #2c3338;
    font-weight: 500;
    line-height: 1.4;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.woocommerce-custom-order-data .dashicons {
    color: #003366;
    font-size: 1.2em;
    line-height: 1;
    width: auto;
    height: auto;
}

.woocommerce-order-confirmation-address-wrapper {
    display: none !important;
}

.wc-block-order-confirmation-additional-information > p:first-child {
    display: none !important;
}

.wc-block-order-confirmation-status {
    padding-top: 1rem;
}

.reservation-confirmation {
    margin: 1.5em 0;
    padding: 1.25em;
    background: #f8f9fa;
    border-radius: 6px;
    border: 1px solid #e5e5e5;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.reservation-confirmation .reservation-message {
    font-size: 1em;
    line-height: 1.5;
    color: #2c3338;
    margin-bottom: 0.75em !important;
}

.reservation-confirmation .location-address {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.4em;
    margin-bottom: 0.75em !important;
    color: #666;
    font-size: 0.95em;
    line-height: 1.4;
}

.reservation-confirmation .directions-button {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.4em;
    padding: 0.5em 1em;
    background-color: #003366;
    color: #ffffff !important;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9em;
    -webkit-transition: background-color 0.2s ease, -webkit-transform 0.2s ease;
    transition: background-color 0.2s ease, -webkit-transform 0.2s ease;
    transition: background-color 0.2s ease, transform 0.2s ease;
    transition: background-color 0.2s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
}

.reservation-confirmation .directions-button:hover {
    background-color: #00264d;
    color: #ffffff !important;
    -webkit-transform: translateY(-1px);
    transform: translateY(-1px);
}

.reservation-confirmation .directions-button:active {
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.reservation-confirmation .directions-button .dashicons {
    color: #ffffff;
}

.map-modal-link{
    text-decoration: none;
    color: #F2B213!important;
    padding-bottom: 4px;
    display: block;
    float: left;
    width: 100%;
    cursor: pointer;
    transition-duration: var(--eoak-transition-duration);
}

.map-modal-link:hover{
    color: var(--eoak-orange)!important;
    transition-duration: var(--eoak-transition-duration);
}

@media (max-width: 768px) {
    body.woocommerce-account #locations-wrapper .loc-phone, body.woocommerce-account #locations-wrapper .loc-email{
        width: calc(50%);
    }
    #eoak-map .leaflet-control-container{
        top: 1rem;
        right: 0rem;
    }

    header>div:last-child>div{
        padding-top: 10px!important;
        padding-bottom: 10px!important;
    }
    .woocommerce-account.woocommerce-orders .woocommerce-MyAccount-content{
        width: 100%;
    }

    .woocommerce-account.woocommerce-orders .woocommerce-MyAccount-content thead{
        display: table-header-group;
    }

    .woocommerce-account.woocommerce-orders .woocommerce-MyAccount-content table.shop_table_responsive tr td::before{
        display: none;
    }

    .woocommerce-account.woocommerce-orders .woocommerce-MyAccount-content table.shop_table_responsive tr td {
        display: table-cell;
        text-align: unset;
    }

    .woocommerce-account.woocommerce-orders .woocommerce-MyAccount-content table.shop_table_responsive tbody tr:first-child td:first-child{
        border-top: 1px solid rgba(0, 0, 0, .1);
    }
    
    .woocommerce-custom-order-data .info-grid,
    .woocommerce-custom-order-data .hours-grid {
        grid-template-columns: 1fr;
        gap: 1em;
    }
    
    .woocommerce-custom-order-data h3 {
        font-size: 1.1em;
    }
    
    .reservation-confirmation {
        padding: 1em;
    }
}

@media screen and (max-width:370px){
    footer .wp-block-column .wp-block-group.is-vertical{
        width: 100%;
    }

    footer .wp-block-column .wp-block-group.is-vertical nav{
        margin: 0 auto;
    }
}

@media print {
    .woocommerce-custom-order-data {
        page-break-inside: avoid;
    }
    
    .directions-button {
        display: none;
    }
}

/* 10.01.2025 Thank you page End */

/* 04.02.2025 Login and Register Pages */

#customer_login {
    margin: 2rem 0;
    background: var(--eoak-white);
    border-radius: var(--eoak-border-radius);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

#customer_login h2 {
    margin: 0;
    padding: 1.25rem 2rem;
    border-bottom: 1px solid var(--eoak-gray-cream);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--eoak--dark-green);
    font-family: var(--title-font-family);
}

.woocommerce-form {
    padding: 2rem;
}

.woocommerce-form-row {
    margin-bottom: 1.5rem;
}

.woocommerce-form-row label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--eoak--dark-green);
}

.woocommerce-Input {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border: 1.5px solid var(--eoak-gray-cream);
    border-radius: var(--eoak-border-radius);
    box-sizing: border-box;
    background: var(--eoak-white);
    transition: var(--eoak-transition-duration);
}

.woocommerce-Input:focus {
    border-color: var(--eoak--yellow);
    outline: none;
    box-shadow: 0 0 0 3px rgba(242, 178, 19, 0.1);
}

.required {
    color: var(--eoak-orange);
    margin-left: 0.25rem;
}

.woocommerce-form-login__rememberme {
    display: inline-block;
    margin-right: 1.5rem;
    font-size: 0.875rem;
    color: var(--eoak--dark-green);
}

.woocommerce-form__input-checkbox {
    margin-right: 0.5rem;
    vertical-align: middle;
}

.woocommerce-button {
    min-width: 120px;
    padding: 0.75rem 1.5rem;
    background: var(--eoak--dark-green);
    color: var(--eoak-white);
    border: none;
    border-radius: var(--eoak-border-radius);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--eoak-transition-duration);
}

.woocommerce-button:hover {
    background: var(--eoak--light-green);
}

.lost_password {
    margin-top: 1.5rem;
}

.lost_password a {
    color: var(--eoak--dark-green);
    font-size: 0.875rem;
    text-decoration: none;
    transition: var(--eoak-transition-duration);
}

.lost_password a:hover {
    color: var(--eoak--light-green);
}

.woocommerce-privacy-policy-text {
    margin-top: 0;
    padding: 1rem;
    margin-bottom: 1.5rem;
    background: #feb62c;
    border-radius: var(--eoak-border-radius);
    font-size: 0.875rem;
    color: var(--eoak--dark-green);
}

.woocommerce-error,
.woocommerce-message {
    margin: 0 2rem 1.5rem;
    padding: 1rem;
    border-radius: var(--eoak-border-radius);
    font-size: 0.875rem;
}

.woocommerce-error {
    background: #fef2f2;
    border-left: 3px solid var(--eoak-orange);
    color: var(--eoak--dark-green);
}

.woocommerce-message {
    background: var(--eoak-white-cream);
    border-left: 3px solid var(--eoak--light-green);
    color: var(--eoak--dark-green);
}

.woocommerce form.checkout_coupon, .woocommerce form.login, .woocommerce form.register {
    border: none !important;
    margin-top: 0 !important;
}

@media (max-width: 480px) {
    .woocommerce-form {
        padding: 1.5rem;
    }
    
    .woocommerce-button {
        width: 100%;
        margin-top: 1rem;
    }
}

/* WooCommerce Registration Form 50-50 Split Layout - Page Specific */

/* Target only the registration form container */
#customer_login .woocommerce-form-register {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px; /* Creates negative margin for the row */
}

/* Make form rows in registration form take 50% width */
#customer_login .woocommerce-form-register .woocommerce-form-row {
    flex: 0 0 50%;
    padding: 0 10px;
    box-sizing: border-box;
    margin-bottom: 20px;
}

/* Exception for the terms checkbox and submit button - these should remain full width */
#customer_login .woocommerce-form-register .terms,
#customer_login .woocommerce-form-register .form-row:last-child {
    flex: 0 0 100%;
}

/* Make the inputs take the full width of their container */
#customer_login .woocommerce-form-register .woocommerce-form-row input {
    width: 100%;
}

/* Exception for terms input */
#customer_login .woocommerce-form-register .terms input {
    width: auto;
}

/* Responsive adjustment for mobile */
@media (max-width: 768px) {
    #customer_login .woocommerce-form-register .woocommerce-form-row {
        flex: 0 0 100%; /* Switch to full width on mobile */
    }
}

.wpcf7-form-control-wrap.kc_captcha {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 0;
}
