:root {
    --icon-size: 26px;
    --bar-width: 10px;
    --bar-height: 2px;
}

/* Hum-icon */
.hamburger {
    padding: 9px 0;
    cursor: pointer;
    overflow: hidden;
}

.hamburger span,
.hamburger span::before,
.hamburger span::after {
    display: block;
    height: 2px;
    width: 24px;
    background: #000;
    position: relative;
    transition: background-color 0.2s;
}

.hamburger span::before,
.hamburger span::after {
    content: '';
    position: absolute;
    transition: all 0.2s;
    transform-origin: center;
}

.hamburger span::before {
    transform: translateY(-7px);
}

.hamburger span::after {
    transform: translateY(7px);
}

.hamburger.active {
    overflow: visible;
}

.hamburger.active span {
    background: transparent;
}

.hamburger.active span::before {
    animation: top-open 0.3s forwards;
}

.hamburger.active span::after {
    animation: bottom-open 0.3s forwards;
}

.hamburger.closing span::before {
    animation: top-close 0.3s forwards;
}

.hamburger.closing span::after {
    animation: bottom-close 0.3s forwards;
}

.hamburger.closing span {
    animation: middle-close 0.3s forwards;
}

@keyframes top-open {
    50% { transform: translateY(0); }
    100% { transform: rotate(45deg); }
}

@keyframes bottom-open {
    50% { transform: translateY(0); }
    100% { transform: rotate(-45deg); }
}

@keyframes top-close {
    0% { transform: rotate(45deg); }
    50% { transform: translateY(0); }
    100% { transform: translateY(-7px); }
}

@keyframes bottom-close {
    0% { transform: rotate(-45deg); }
    50% { transform: translateY(0); }
    100% { transform: translateY(7px); }
}

@keyframes middle-close {
    0%, 50% { background: transparent; }
    100% { background: #000; }
}

        /* !hum-icon */
header.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}
.arrow-icon {
    width: var(--icon-size);
    position: relative;
    cursor: pointer;
    border-radius: 4px;
}

.left-bar {
    position: absolute;
    background-color: transparent;
    top: 0;
    left: 0;
    width: var(--bar-width);
    height: var(--bar-height);
    display: block;
    transform: rotate(40deg);
    float: right;
    border-radius: 2px;
}

.left-bar:after {
    content: "";
    background-color: #000;
    width: var(--bar-width);
    height: var(--bar-height);
    display: block;
    float: right;
    border-radius: 6px 10px 10px 6px;
    transition: all 0.5s cubic-bezier(.25, 1.7, .35, .8);
    z-index: -1;
}

.right-bar {
    position: absolute;
    background-color: transparent;
    top: 0px;
    left: 6.7px;
    width: var(--bar-width);
    height: var(--bar-height);
    display: block;
    transform: rotate(-40deg);
    float: right;
    border-radius: 2px;
}

.right-bar:after {
    content: "";
    background-color: #000;
    width: var(--bar-width);
    height: var(--bar-height);
    display: block;
    float: right;
    border-radius: 10px 6px 6px 10px;
    transition: all 0.5s cubic-bezier(.25, 1.7, .35, .8);
    z-index: -1;
}

.menu-open .left-bar:after {
    transform-origin: center center;
    transform: rotate(-80deg);
}

.menu-open .right-bar:after {
    transform-origin: center center;
    transform: rotate(80deg);
}

.top-bar {
    background-color: #222;
    color: #fff;
}

.top-bar img {
    vertical-align: text-bottom;
}

.top-bar__seperator {
    margin: 0 15px;
}

.nav-links a,
.nav-links a:hover {
    color: #000;
}

.menu-open .nav-angel {
    transform: rotate(180deg);
    transition: transform 0.2s;
}

.header-agents__wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-agents__wrapper .status {
    width: 10px;
    height: 10px;
    background-color: #34A853;
    border-radius: 50%;
    display: inline-block;
}

.avatar-group {
    display: flex;
    direction: ltr;
}

.avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
    margin-left: -5px;
}

.avatar:first-child {
    margin-left: 0;
}

.header-agents__info {
    display: flex;
    align-items: center;
    gap: 4px;
}

.search-active header {
    background-color: white;
}

.search-active .body-overlay {
    opacity: 1;
    visibility: visible;
}

.search-results__wrapper {
    display: none;
    position: absolute;
    background: #fff;
    text-align: left;
    padding-bottom: 40px;
    left: 0;
    right: 0;
    z-index: 8;
    -webkit-overflow-scrolling: touch;
    height: auto;
    padding: 20px 40px;
    overflow: hidden;
    min-height: 260px;
}

.search-active .search-results__wrapper {
    display: block;
}

.popular-categories__list {
    display: flex;
    flex-direction: column;
    gap: 2em;
}

.search-results__left {
    border-right: 1px solid #DEDEDE;
}

.search-close-icon {
    display: none;
}

.results-categories_container {
    padding-bottom: 20px;
}

.wishlist-counter {
    color: #fff;
    text-align: center;
    background: #000;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    padding: 4px 0 3px;
    font-size: 11px;
    font-weight: 600;
    line-height: 10px;
    position: absolute;
    top: -3px;
    left: 12px;
}

.nav-links .menu {
    white-space: nowrap;
}

.home-only {
    display: none !important;
}

@media only screen and (max-width: 768px) {
    .menu-open .home-only {
        display: block !important;
    }

    .logo {
        max-width: 180px;
    }

    .menu-icon {
        max-width: 35px;
    }
    .search-active .search-bar__wrapper {
        padding:0;
    }
}
@media only screen and (max-width: 1023px) {
    .menu-open .home-only {
        display: block !important;
    }

    .logo {
        max-width: 180px;
    }

    .menu-icon {
        max-width: 35px;
    }

    .sm-search-icon {
        width: 20px;
    }

    .search-active {
        overflow: hidden;
    }

    .search-form__wrapper {
        display: none;
        position: fixed;
        background-color: #fff;
        top: 0;
        left: 0;
        min-height: 100vh;
        width: 100%;
        z-index: 9;
        overflow: hidden;
        padding: 16px;
        padding-top: 2.5em;
    }

    .search-active .search-form__wrapper {
        display: block !important;
    }

    .search-active .header-search-form {
        padding-bottom: 1em;
    }

    .search-active .search-results__wrapper {
        padding: 0;
        height: 100%;
        overflow: auto;
        padding-bottom: 360px;
    }

    .search-results__left {
        border-right: none;
    }

    .search-active .search-bar__wrapper {
        display: block;
    }

    .search-active .search-close-icon {
        display: flex;
    }

    .search-result__products {
        padding-left: 0 !important;
        gap: 5em 20px !important;
        padding-top: 15px;
    }

    .results-categories_container {
        padding-bottom: 10px;
    }

    .search-query__link-wrapper {
        margin: 20px 0;
    }

    .src_header {
        display: block;
        width: 100%;
        padding: 10px 0 20px;
        font-size: 17px;
        color: #999;
        font-weight: 400;
    }

    .popular-searches__list {
        display: flex;
        flex-wrap: wrap;
        gap: 1em;
    }

    .popular-searches__list li {
        display: flex;
    }
}




@media only screen and (max-width: 1200px) {
    .header-icons__wrapper {
        flex: 1 !important;
        gap: 25px;
    }
    .header-logo__section{
        flex:1;
    }
}










/* Call modal */
.open-call__modal {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #000;
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.open-call__modal:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.open-call__modal img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
    backdrop-filter: blur(5px);
}

.modal-outer {
    position: fixed;
    left: 50%;
    top: 50px;
    transform: translateX(-50%);
    z-index: 1001;
    /* display: none; */
}

.modal-container.schedule-call__modal {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    max-width: 1000px;
    width: 80vw;
    /* max-height: 80vh; */
    min-height: 600px;
    max-height: 600px;
    overflow: hidden;
    /* overflow-y: auto; */
    animation: modalSlideIn 0.4s ease-out;
    display: none;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.schedule-call__modal .modal-header {
    background-color: #000;
    color: white;
    position: relative;
    padding: 15px 2em;
    /* height: 72px; */
}

.schedule-call__modal .modal-header h2 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.close-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.close-btn:hover {
    opacity: 1;
}

.schedule-call__modal .modal-body {
    display: flex;
    min-height: calc(600px - 49px);
    /* min-height: 500px; */
}

.left-column {
    flex: 1;
    padding: 2rem;
    background: #f8f9fa;
    border-right: 1px solid #e9ecef;
    min-height: 500px;
}

.right-column {
    flex: 1;
    padding: 2rem;
}

.agent-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.agent-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #555555;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.agent-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.agent-title {
    color: #666;
    font-size: 0.9rem;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.info-icon {
    width: 40px;
    height: 40px;
    background-color: #000;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 1rem;
}

.info-text {
    flex: 1;
}

.info-label {
    font-size: 0.875rem;
    color: #6c757d;
    margin-bottom: 0.25rem;
}

.info-value {
    font-weight: 600;
    color: #333;
}

.call-calendar__container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.call-calendar__container .calendar-header {
    background-color: #000;
    color: white;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.call-calendar__container .calendar-nav {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.call-calendar__container .calendar-nav:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.3);
}

.call-calendar__container .calendar-nav:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.call-calendar__container .calendar-title {
    font-size: 1.1rem;
    font-weight: 600;
}

.call-calendar__container .calendar-grid {
    padding: 1rem;
}

.call-calendar__container .calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    margin-bottom: 1rem;
}

.call-calendar__container .day-header {
    text-align: center;
    padding: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #6c757d;
}

.call-calendar__dates {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}

.call-calendar__container .date-cell {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.call-calendar__container .date-cell.available {
    background: #f8f9fa;
    color: #333;
    border: 2px solid transparent;
}

.call-calendar__container .date-cell.available:hover {
    background-color: #000;
    color: white;
    transform: scale(1.05);
}

.call-calendar__container .date-cell.today {
    background: #28a745;
    color: white;
    font-weight: 600;
}

.call-calendar__container .date-cell.selected {
    background-color: #000;
    color: white;
}

.call-calendar__container .date-cell.disabled {
    color: #ccc;
    cursor: not-allowed;
}

.step-panel {
    display: none;
}

.step-panel.active {
    display: block;
}

.back-btn {
    background: none;
    border: none;
    color: #666;
    font-size: 0.9rem;
    cursor: pointer;
    padding: 0.5rem 0;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s;
}

.back-btn:hover {
    color: #000;
}

.slot-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 0.25rem;
}

.slot-tab {
    flex: 1;
    padding: 0.75rem;
    background: none;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
    color: #666;
}

.slot-tab.active {
    background: #000;
    color: white;
}

.slot-tab:hover:not(.active) {
    background: #e9ecef;
    color: #333;
}

.slot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.time-slot {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 0.75rem;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    font-weight: 500;
    font-size: 0.875rem;
}

.time-slot:hover {
    background: #000;
    color: white;
    border-color: #000;
    transform: translateY(-2px);
}

.time-slot.selected {
    background: #000;
    color: white;
    border-color: #000;
}


.country-select {
    width: 120px;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: #000;
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 1.5rem;
}

.submit-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.booking-summary {
    background: #fff;
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid #000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.summary-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

.summary-label {
    color: #666;
}

.summary-value {
    font-weight: 500;
    color: #333;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
    font-size: 0.75rem;
    color: #6c757d;
}

.timezone-info {
    text-align: center;
    margin-top: 1rem;
    padding: 0.75rem;
    background: #fff;
    border-radius: 8px;
    font-size: 0.875rem;
    color: #6c757d;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.success-panel {
    text-align: center;
    padding: 2rem;
}

.success-panel h3 {
    color: #28a745;
    margin-top: 1rem;
}



/* .modal-container.schedule-call__modal .form-group .input-error{
    position: absolute;
    bottom: 15px;
} */

@media (max-width: 768px) {
    .schedule-call__modal-outer {
        width: 100%;
        top: 0;
    }

    .schedule-call__modal {
        display: block;
        width: 100% !important;
        height: 100vh !important;
        max-height: 100vh !important;
        border-radius: 0 !important;
    }

    .modal-body {
        flex-direction: column;
    }

    .left-column {
        border-right: none;
        border-bottom: 1px solid #e9ecef;
    }

    .modal-container.schedule-call__modal {
        overflow-y: auto;
    }
}