* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    text-decoration: none;
}

html {
    touch-action: pan-y;
    overscroll-behavior-y: contain;
    height: 100%;
    overflow: hidden;
}

:root {
    --android-safe-top: 0px;
    --android-safe-bottom: 0px;
    --ios-safe-top: env(safe-area-inset-top, 0px);
    --ios-safe-bottom: env(safe-area-inset-bottom, 0px);
    --safe-top: max(var(--ios-safe-top), var(--android-safe-top));
    --safe-bottom: max(var(--ios-safe-bottom), var(--android-safe-bottom));
    --header-h: 60px;
    --app-vh: 1vh;
}

@supports (padding: constant(safe-area-inset-top)) {
    :root {
        --ios-safe-top: constant(safe-area-inset-top);
        --ios-safe-bottom: constant(safe-area-inset-bottom);
        --safe-top: max(var(--ios-safe-top), var(--android-safe-top));
        --safe-bottom: max(var(--ios-safe-bottom), var(--android-safe-bottom));
    }
}

body.app {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background-color: #f4f4f4;
    width: 100%;
    max-width: 100vw;
    height: 100dvh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    box-sizing: border-box;
    position: relative;
}

.header.app-header {
    flex-shrink: 0;
    height: calc(var(--header-h) + env(safe-area-inset-top));
    position: relative;
    z-index: 100;
    background-color: #056eb4;
    display: flex;
    flex-direction: column;
}

.app-main {
    flex: 1;
    min-height: 0;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    padding-bottom: env(safe-area-inset-bottom);
    box-sizing: border-box;
    pointer-events: auto;
    overflow-y: auto;
    touch-action: pan-y;
}

body[data-page="login"] .app-main {
    overflow: hidden;
}

body[data-page="register"] .app-main {
    overflow: hidden;
}

.header-row {
    width: 100%;
}


.header-row-content {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 17px;
}

.menu-icon {
    font-size: 30px;
    color: white;
    cursor: pointer;
    z-index: 10;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-user-select: none;
    user-select: none;
}

.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
}

.logo svg {
    display: block;
    height: 27px;
}

.logo:hover, .logo:active {
    opacity: 0.8;
}

.notification-wrapper {
    position: relative;
    z-index: 10;
}

.notification-icon {
    font-size: 30px;
    color: white;
    cursor: pointer;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-user-select: none;
    user-select: none;
}

.notification-badge {
    position: absolute;
    top: 5px;
    right: 8px;
    width: 10px;
    height: 10px;
    background-color: #FF0000;
    border-radius: 50%;
    display: block;
    z-index: 11;
}

.off-canvas-menu {
    position: fixed;
    top: calc(60px + env(safe-area-inset-top));
    left: 0;
    width: 100%;
    background-color: #056eb4;
    z-index: 1000;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    -webkit-overflow-scrolling: touch;
    z-index: 9999999999999999;
}

.off-canvas-menu.active {
    transform: translateX(0);
    visibility: visible;
    opacity: 1;
    pointer-events: all;
    z-index: 9999999999999999;
}

.menu-nav {
    flex: 1;
    padding: 0;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    touch-action: pan-y;
}

.menu-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    transition: background-color 0.2s ease, opacity 0.3s ease, transform 0.3s ease;
    -webkit-user-select: none;
    user-select: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    opacity: 0;
    transform: translateX(-20px);
}

.off-canvas-menu.active .menu-item {
    opacity: 1;
    transform: translateX(0);
}

.off-canvas-menu.active .menu-item:nth-child(1) {
    transition-delay: 0.05s;
}

.off-canvas-menu.active .menu-item:nth-child(2) {
    transition-delay: 0.1s;
}

.off-canvas-menu.active .menu-item:nth-child(3) {
    transition-delay: 0.15s;
}

.off-canvas-menu.active .menu-item:nth-child(4) {
    transition-delay: 0.2s;
}

.off-canvas-menu.active .menu-item:nth-child(5) {
    transition-delay: 0.25s;
}

.menu-item:active {
    background-color: rgba(255, 255, 255, 0.1);
}

.menu-item span {
    flex: 1;
}

.menu-item i {
    font-size: 16px;
    color: white;
    opacity: 0.7;
}

.menu-footer {
    flex-shrink: 0;
    padding: 20px;
    padding-bottom: calc(20px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background-color: #056eb4;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.off-canvas-menu.active .menu-footer {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.3s;
}

.menu-login-btn {
    width: 100%;
    background-color: #b7ff3f;
    color: #1e201f;
    border: none;
    border-radius: 100px;
    padding: 15px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
    -webkit-user-select: none;
    user-select: none;
}

.menu-login-btn:active {
    background-color: #a0e639;
    transform: scale(0.98);
}

.search-section {
    padding: 20px;
    display: flex;
    align-items: center;
}

.search-bar {
    flex: 1;
    background-color: #e6e6e6;
    border-radius: 100px;
    height: 50px;
    display: flex;
    align-items: center;
    padding: 0 5px 0 15px;
    gap: 10px;
}

.search-icon {
    font-size: 24px;
    color: #1e201f;
}

.search-bar input {
    flex: 1;
    border: none;
    background: transparent;
    outline: none;
    font-size: 14px;
    color: #1e201f;
    font-family: 'Inter', sans-serif;
}

.search-bar input::placeholder {
    color: #1e201f;
}

.filter-btn {
    background-color: #056eb4;
    color: #f4f4f4;
    border: none;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    white-space: nowrap;
    min-height: 40px;
    min-width: 70px;
    -webkit-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0.2);
    transition: background-color 0.2s ease;
    flex-shrink: 0;
}

.filter-btn:active {
    background-color: #045a9a;
    transform: scale(0.98);
}

.promo-slider-container {
    padding: 0 20px;
    margin-bottom: 5px;
    position: relative;
}

.promo-slider {
    height: 220px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.promo-slider .swiper-wrapper {
    height: 100%;
}

.promo-slide {
    position: relative;
    width: 100%;
    height: 220px;
    border-radius: 10px;
    overflow: hidden;
    outline: none;
}

.promo-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

.promo-tag {
    background-color: #b7ff3f;
    color: #1e201f;
    font-size: 14px;
    font-weight: 700;
    padding: 8px 15px;
    border-radius: 50px;
    display: inline-block;
    align-self: flex-start;
    margin-bottom: 15px;
}

.promo-slide p {
    color: #f4f4f4;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
}

.promo-slider-container .swiper-pagination {
    display: flex !important;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    position: relative;
    bottom: auto;
    list-style: none;
    padding: 0;
}

.promo-slider-container .swiper-pagination-bullet {
    width: 2.5px;
    height: 2.5px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    transition: background-color 0.3s;
    border: none;
    padding: 0;
    min-width: 20px;
    min-height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0;
    line-height: 0;
    margin: 0 !important;
    opacity: 1;
}

.promo-slider-container .swiper-pagination-bullet::before {
    content: '';
    width: 2.5px;
    height: 2.5px;
    border-radius: 50%;
    background-color: inherit;
    display: block;
}

.promo-slider-container .swiper-pagination-bullet-active {
    background-color: #056eb4;
}

.active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0 20px 15px 20px;
    margin-top: 10px;
}

.filter-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #e6e6e6;
    border-radius: 100px;
    padding: 8px 12px;
    font-size: 12px;
    font-family: 'Inter', sans-serif;
    color: #1e201f;
    font-weight: 500;
}

.filter-tag-remove {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    transition: background-color 0.2s ease;
    min-width: 16px;
    min-height: 16px;
}

.filter-tag-remove:active {
    background-color: rgba(0, 0, 0, 0.1);
}

.filter-tag-remove i {
    font-size: 12px;
    color: #595e63;
}

.section {
    padding: 0 20px;
    margin-bottom: 30px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.section-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #1e201f;
    letter-spacing: -0.54px;
}

.view-all {
    font-size: 12px;
    color: #1e201f;
    text-decoration: none;
}

.carousel-container {
    overflow: hidden;
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
}

.carousel {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 10px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x mandatory;
}

.carousel::-webkit-scrollbar {
    display: none;
}

.carousel-container {
    overflow: hidden;
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
}

.carousel-native {
    display: flex !important;
    gap: 12px;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory;
    scroll-padding: 0 0px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0 20px 14px 20px;
    touch-action: pan-x pan-y;
    overscroll-behavior-x: contain;
    overscroll-behavior-y: auto;
    position: relative !important;
    width: 100% !important;
    box-sizing: border-box;
    will-change: scroll-position;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    scroll-margin-left: 0;
    margin-left: 0;
}

.carousel-native::-webkit-scrollbar {
    display: none;
}

.carousel-native .swiper-wrapper, .carousel-native .swiper-slide {
    display: none !important;
}

.carousel-native .teacher-card {
    flex: 0 0 calc((100% - 12px) / 2 + 25px) !important;
    min-width: calc((100% - 12px) / 2 + 25px) !important;
    max-width: calc((100% - 12px) / 2 + 25px) !important;
    scroll-snap-align: start;
    scroll-snap-stop: always; box-sizing: border-box;
    position: relative !important;
    display: block !important;
    float: none !important;
    width: auto !important;
    opacity: 1 !important;
    transform: none !important;
    -webkit-user-select: none;
    user-select: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.carousel-native .teacher-card:first-child {
    scroll-snap-align: start;
}

.carousel-native .teacher-card:last-child {
    scroll-snap-align: end;
}

.carousel.swiper {
    display: block;
}

.carousel.swiper .swiper-wrapper {
    display: flex;
    align-items: stretch;
}

.carousel.swiper .swiper-slide {
    box-sizing: border-box;
    height: auto;
    outline: none;
    width: 50% !important;
}

.carousel.swiper .swiper-slide .teacher-card {
    width: 100% !important;
    max-width: 100% !important;
    flex: none !important;
    box-sizing: border-box;
    margin: 0;
}

.teacher-card {
    background-color: white;
    border: 1px solid #f5f5f5;
    border-radius: 10px;
    box-shadow: 0px 13px 4px 0px rgba(114, 110, 110, 0), 0px 9px 3px 0px rgba(114, 110, 110, 0.01), 0px 5px 3px 0px rgba(114, 110, 110, 0.05), 0px 2px 2px 0px rgba(114, 110, 110, 0.09), 0px 1px 1px 0px rgba(114, 110, 110, 0.1);
    overflow: hidden;
    opacity: 0;
    animation: fadeIn 0.5s ease-in-out forwards;
    box-sizing: border-box;
}

.teacher-list .teacher-card, .teacher-card:not(.carousel .teacher-card) {
    flex: 0 0 189px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.teacher-card:nth-child(1) {
    animation-delay: 0.1s;
}

.teacher-card:nth-child(2) {
    animation-delay: 0.2s;
}

.teacher-card:nth-child(3) {
    animation-delay: 0.3s;
}

.teacher-image {
    width: 100%;
    height: 160px;
    background-color: #000;
    position: relative;
    border: 1px solid #f5f5f5;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
}

.teacher-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.teacher-image:not(:has(img)) {
    background-color: #000;
}

.rating-badge {
    position: absolute;
    bottom: 15px;
    right: 10px;
    background-color: white;
    padding: 5px 10px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 3px;
    z-index: 2;
}

.star-icon {
    color: #FFBB00;
    font-size: 18px;
}

.rating-badge span {
    font-family: 'Barlow', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #000000;
}

.teacher-info {
    padding: 15px;
}

.teacher-info h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #191a1c;
    letter-spacing: -0.48px;
    margin-bottom: 0px;
}

.experience {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
}

.experience i {
    color: #595e63;
    font-size: 15px;
}

.experience span {
    font-size: 12px;
    color: #595e63;
}

.price {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #191a1c;
    letter-spacing: -0.54px;
}

.price span {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #4b5563;
}

.teacher-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.teacher-list-item {
    background-color: white;
    border: 1px solid #f5f5f5;
    border-radius: 10px;
    padding: 15px;
    display: flex;
    gap: 15px;
    align-items: center;
    box-shadow: 0px 2px 2px 0px rgba(114, 110, 110, 0.09), 0px 1px 1px 0px rgba(114, 110, 110, 0.1);
    opacity: 0;
    animation: fadeIn 0.5s ease-in-out forwards;
}

.teacher-list-item:nth-child(1) {
    animation-delay: 0.1s;
}

.teacher-list-item:nth-child(2) {
    animation-delay: 0.2s;
}

.teacher-list-item:nth-child(3) {
    animation-delay: 0.3s;
}

.teacher-list-item:nth-child(4) {
    animation-delay: 0.4s;
}

.teacher-list-item:nth-child(5) {
    animation-delay: 0.5s;
}

.teacher-list-item:nth-child(6) {
    animation-delay: 0.6s;
}

.teacher-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    /* background-color: #000; */
    flex-shrink: 0;
    overflow: hidden;
}

.teacher-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 1;
}

.teacher-avatar:not(:has(img)) {
    background-color: #000;
}

.teacher-details {
    flex: 1;
}

.teacher-details h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #191a1c;
    letter-spacing: -0.48px;
    margin-bottom: 5px;
}

.teacher-details .experience {
    margin-bottom: 5px;
}

.category {
    display: inline-block;
    background-color: #e6e6e6;
    color: #595e63;
    font-size: 12px;
    font-weight: 600;
    padding: 7px 10px;
    border-radius: 100px;
    letter-spacing: -0.24px;
}

.teacher-price-rating {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.teacher-price-rating .rating-badge {
    position: static;
    border-radius: 5px;
}

.teacher-price-rating .price {
    text-align: right;
}

.teacher-card, .teacher-list-item {
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.teacher-card:active, .teacher-list-item:active {
    transform: scale(0.98);
    box-shadow: 0px 2px 2px 0px rgba(114, 110, 110, 0.15), 0px 1px 1px 0px rgba(114, 110, 110, 0.2);
}

@media (max-width: 375px) {
    .teacher-card {
        flex: 0 0 170px;
    }

    .teacher-avatar {
        width: 60px;
        height: 60px;
    }

    .teacher-details h3 {
        font-size: 14px;
    }
}

@media (min-width: 768px) {
    body {
        max-width: 440px;
        margin: 0 auto;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    }
}

@media (orientation: landscape) and (max-height: 500px) {
    .header-row-empty {
        height: 30px;
    }

    .header-row-content {
        height: 30px;
    }

    .promo-slider {
        height: 150px;
    }
}

html, body {
    overflow-x: hidden;
    position: relative;
    width: 100%;
}

.filter-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    max-height: 100dvh;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    overflow: hidden;
}

.filter-modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.filter-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.filter-modal.active .filter-modal-overlay {
    opacity: 1;
}

.filter-modal-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    max-height: 90dvh;
    background-color: #f4f4f4;
    border-radius: 25px 25px 0 0;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    padding-bottom: env(safe-area-inset-bottom);
    -webkit-overflow-scrolling: touch;
}

.filter-modal.active .filter-modal-content {
    transform: translateY(0);
}

.filter-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid #e6e6e6;
    background-color: white;
    border-radius: 25px 25px 0 0;
}

.back-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #e6e6e6;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    color: #1e201f;
    -webkit-user-select: none;
    user-select: none;
}

.back-btn:active {
    background-color: #d0d0d0;
    transform: scale(0.95);
}

.filter-modal-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #1e201f;
    flex: 1;
    text-align: center;
    margin: 0;
}

.clear-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    color: #1e201f;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    padding: 8px;
    -webkit-user-select: none;
    user-select: none;
}

.clear-btn:active {
    opacity: 0.7;
}

.clear-btn i {
    font-size: 18px;
}

.filter-modal-body {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 20px;
    background-color: #f4f4f4;
    position: relative;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    touch-action: pan-y;
}

.filter-group label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1e201f;
    margin-bottom: 10px;
}

.filter-input {
    background-color: #e6e6e6;
    border-radius: 100px;
    height: 50px;
    display: flex;
    align-items: center;
    padding: 0 15px;
    gap: 10px;
    cursor: pointer;
    position: relative;
    -webkit-user-select: none;
    user-select: none;
    transition: background-color 0.2s ease;
}

.filter-input:active {
    background-color: #d9d9d9;
}

.filter-input i:first-child {
    font-size: 20px;
    color: #1e201f;
    flex-shrink: 0;
}

.filter-input span {
    flex: 1;
    font-size: 14px;
    color: #1e201f;
    font-family: 'Inter', sans-serif;
}

.filter-input i:last-child {
    font-size: 16px;
    color: #1e201f;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.custom-select-wrapper {
    position: relative;
}

.custom-select-input {
    background-color: #e6e6e6;
    border-radius: 100px;
    height: 50px;
    display: flex;
    align-items: center;
    padding: 0 15px;
    gap: 10px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    -webkit-user-select: none;
    user-select: none;
}

.custom-select-input:active {
    background-color: #d9d9d9;
}

.custom-select-input.active {
    border-radius: 20px 20px 0 0;
}

.select-icon {
    font-size: 20px;
    color: #1e201f;
    flex-shrink: 0;
}

.custom-select-input svg, .custom-select-option svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.custom-select-text {
    flex: 1;
    font-size: 14px;
    color: #1e201f;
    font-family: 'Inter', sans-serif;
}

.select-arrow {
    font-size: 16px;
    color: #1e201f;
    flex-shrink: 0;
    pointer-events: none;
    transition: transform 0.2s ease;
}

.custom-select-input.active .select-arrow {
    transform: rotate(180deg);
}

.custom-select-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background-color: #e6e6e6;
    border-radius: 0 0 20px 20px;
    overflow: hidden;
    z-index: 1000;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
}

.custom-select-dropdown.active {
    display: block;
}

.custom-select-option {
    padding: 15px;
    font-size: 14px;
    color: #1e201f;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.2s ease;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    -webkit-user-select: none;
    user-select: none;
}

.custom-select-option:first-child {
    border-top: none;
}

.custom-select-option:hover, .custom-select-option:active {
    background-color: #d9d9d9;
}

.custom-select-option i {
    font-size: 20px;
    color: #1e201f;
    flex-shrink: 0;
    display: inline-block;
    width: 20px;
    height: 20px;
    line-height: 20px;
}

.custom-select-option span {
    flex: 1;
}

.filter-select-hidden {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 0;
    height: 0;
}

.filter-group {
    position: relative;
    margin-bottom: 25px;
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 10px;
}

.time-slot {
    background-color: #e6e6e6;
    border: none;
    border-radius: 10px;
    padding: 12px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    color: #1e201f;
    cursor: pointer;
    transition: all 0.2s;
    -webkit-user-select: none;
    user-select: none;
}

.time-slot.active {
    background-color: #b7ff3f;
    color: #1e201f;
    font-weight: 600;
}

.time-slot:active {
    transform: scale(0.98);
}

.filter-modal-footer {
    padding: 20px;
    background-color: white;
    border-top: 1px solid #e6e6e6;
}

.apply-filter-btn {
    width: 100%;
    background-color: #b7ff3f;
    color: #1e201f;
    border: none;
    border-radius: 100px;
    padding: 15px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
    transition: all 0.2s;
}

.apply-filter-btn:active {
    background-color: #a5e636;
    transform: scale(0.98);
}

.calendar-modal-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    max-height: 100dvh;
    z-index: 2000;
    display: none;
    pointer-events: none;
    overflow: hidden;
}

.calendar-modal-wrapper.active {
    display: block;
    pointer-events: all;
}

.calendar-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.calendar-modal-wrapper.active .calendar-modal-overlay {
    opacity: 1;
}

.calendar-modal {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: white;
    border-radius: 20px 20px 0 0;
    padding: 20px;
    padding-bottom: calc(20px + env(safe-area-inset-bottom));
    transform: translateY(100%);
    transition: transform 0.3s ease;
    max-height: 70dvh;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    touch-action: pan-y;
}

.calendar-modal-wrapper.active .calendar-modal {
    transform: translateY(0);
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.calendar-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #e6e6e6;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    color: #1e201f;
    -webkit-user-select: none;
    user-select: none;
}

.calendar-nav-btn:active {
    background-color: #d0d0d0;
    transform: scale(0.95);
}

.calendar-header h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #1e201f;
    margin: 0;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    margin-bottom: 10px;
}

.calendar-weekdays div {
    text-align: center;
    font-size: 12px;
    color: #595e63;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    padding: 8px 0;
}

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

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    color: #1e201f;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.2s;
    -webkit-user-select: none;
    user-select: none;
}

.calendar-day.other-month {
    color: #ccc;
}

.calendar-day:hover:not(.unavailable):not(.other-month):not(.selected) {
    background-color: #f4f4f4;
}

.calendar-day.selected {
    background-color: #b7ff3f;
    color: #1e201f;
    font-weight: 600;
}

.calendar-day.selected:active, .calendar-day.selected:hover {
    background-color: #b7ff3f !important;
    color: #1e201f;
    font-weight: 600;
}

.calendar-footer {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e6e6e6;
}

.calendar-confirm-btn {
    width: 100%;
    background-color: #b7ff3f;
    color: #1e201f;
    border: none;
    border-radius: 100px;
    padding: 15px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
    -webkit-user-select: none;
    user-select: none;
}

.calendar-confirm-btn:active {
    background-color: #a0e639;
    transform: scale(0.98);
}

.calendar-day:active {
    transform: scale(0.95);
}

.teacher-details-page {
    position: relative;
    min-height: calc(100vh - 120px - env(safe-area-inset-top));
    padding-bottom: calc(80px + env(safe-area-inset-bottom));
}

.teacher-actions {
    position: absolute;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    z-index: 100;
    pointer-events: none;
}

.action-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    pointer-events: all;
    min-width: 44px;
    min-height: 44px;
    -webkit-user-select: none;
    user-select: none;
}

.action-btn:active {
    transform: scale(0.95);
    box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.2);
}

.action-btn i {
    font-size: 20px;
    color: #1e201f;
}

.action-buttons-right {
    display: flex;
    gap: 10px;
}

.favorite-btn.active i {
    color: #FF0000;
}

.teacher-image-large {
    width: 100%;
    height: 285px;
    position: relative;
    overflow: hidden;
    /* margin-top: calc(-60px - env(safe-area-inset-top)); */
}

.teacher-image-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.teacher-details-content {
    background-color: white;
    padding: 20px;
    margin-top: -20px;
    border-radius: 20px 20px 0 0;
    position: relative;
    z-index: 10;
}

.teacher-header-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e6e6e6;
}

.teacher-name-section {
    flex: 1;
}

.teacher-name {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #1e201f;
    letter-spacing: -0.72px;
}

.teacher-experience {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: #595e63;
    font-family: 'Inter', sans-serif;
}

.teacher-experience i {
    font-size: 16px;
    color: #595e63;
}

.teacher-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
}

.star-icon {
    color: #FFBB00;
    font-size: 20px;
}

.rating-value {
    font-family: 'Barlow', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #1e201f;
}

.rating-count {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #595e63;
}

.teacher-section {
    margin-bottom: 30px;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #1e201f;
    margin-bottom: 15px;
    letter-spacing: -0.54px;
}

.section-content {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #1e201f;
    line-height: 1.6;
}

.section-content p {
    margin-bottom: 15px;
}

.section-content p:last-child {
    margin-bottom: 0;
}

.highlight-text {
    font-weight: 600;
    color: #1e201f;
}

.skills-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.skill-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #e6e6e6;
    border-radius: 100px;
    padding: 10px 15px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    color: #1e201f;
    font-weight: 500;
    -webkit-user-select: none;
    user-select: none;
}

.skill-tag i {
    font-size: 16px;
    color: #1e201f;
    flex-shrink: 0;
}

.skill-tag svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.booking-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    padding: 15px 20px;
    padding-bottom: calc(15px + env(safe-area-inset-bottom));
    border-top: 1px solid #e6e6e6;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    z-index: 100;
    box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.05);
}

.price-section {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.price-amount {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #1e201f;
    letter-spacing: -0.72px;
}

.price-unit {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #595e63;
}

.book-btn {
    flex: 1;
    background-color: #056eb4;
    color: #ffffff;
    border: none;
    border-radius: 14px;
    padding: 15px 30px;
    font-size: 17px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
    -webkit-user-select: none;
    user-select: none;
    min-height: 44px;
    font-family: 'Poppins', sans-serif;
}

.book-btn:active {
    background-color: #083c5f;
    transform: scale(0.98);
}

@media (max-width: 375px) {
    .teacher-name {
        font-size: 20px;
    }

    .price-amount {
        font-size: 20px;
    }

    .book-btn {
        font-size: 14px;
        padding: 15px 20px;
    }
}

body[data-page="register"] .register-page.app-main {
    display: flex;
    flex-direction: column;
    background-color: white;
    position: relative;
    box-sizing: border-box;
}

.register-page {
    background-color: white;
    box-sizing: border-box;
}

body[data-page="register"] .page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7px;
    background-color: #e8f4f8;
    border-bottom: 1px solid #e6e6e6;
    flex-shrink: 0;
}

.page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7px;
    background-color: white;
    border-bottom: 1px solid #e6e6e6;
}

.page-header .back-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s ease;
    min-width: 44px;
    min-height: 44px;
    -webkit-user-select: none;
    user-select: none;
    z-index: 99999999999;
    margin-left: 5px;
}

.page-header .back-btn:active {
    background-color: #d0d0d0;
}

.page-header .back-btn i {
    font-size: 24px;
    color: #1e201f;
}

.page-title {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #1e201f;
    letter-spacing: -0.54px;
    flex: 1;
    text-align: center;
}

.page-header-spacer {
    width: 44px;
}

.register-container {
    padding: 30px 30px;
    padding-bottom: calc(30px + env(safe-area-inset-bottom));
    max-width: 100%;
    /* margin: 0 auto; */
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.register-header {
    margin-bottom: 30px;
    text-align: center;
    margin-top: 0;
}

.register-title {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #056eb4;
    margin-bottom: 10px;
    letter-spacing: -0.72px;
}

.register-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #1e201f;
    line-height: 1.5;
}

.register-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.register-page .form-input {
    width: 100%;
    padding: 15px 15px;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #1e201f;
    background-color: #f4f4f4;
    transition: border-color 0.2s ease;
    box-sizing: border-box;
}

.register-page .form-input-wrapper {
    background-color: transparent;
    padding: 0;
    border-radius: 10px;
}

.register-page .form-icon {
    left: 15px;
}

.register-page .form-input {
    padding-left: 45px;
    padding-right: 40px;
}

.register-page .password-toggle {
    right: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1e201f;
}

.form-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    border-radius: 100px;
    height: 50px;
    background-color: #f4f4f4;
    padding: 0 15px;
}

.form-icon {
    position: absolute;
    left: 15px;
    font-size: 20px;
    color: #595e63;
    pointer-events: none;
    z-index: 1;
}

.form-input {
    flex: 1;
    border: none;
    background: transparent;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #1e201f;
    outline: none;
    -webkit-user-select: text;
    user-select: text;
    padding-left: 45px;
    padding-right: 40px;
}

.form-input::placeholder {
    color: #595e63;
}

.password-toggle {
    position: absolute;
    right: 15px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    min-width: 24px;
    min-height: 24px;
    -webkit-user-select: none;
    user-select: none;
    z-index: 1;
}

.password-toggle i {
    font-size: 20px;
    color: #595e63;
}

.password-toggle:active {
    opacity: 0.7;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
}

.checkbox-input {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    flex-shrink: 0;
    cursor: pointer;
    accent-color: #056eb4;
}

.checkbox-text {
    flex: 1;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #1e201f;
    line-height: 1.5;
}

.privacy-link {
    color: #056eb4;
    text-decoration: underline;
    font-weight: 600;
}

.register-submit-btn {
    width: 100%;
    background-color: #b7ff3f;
    color: #1e201f;
    border: none;
    border-radius: 100px;
    padding: 15px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
    -webkit-user-select: none;
    user-select: none;
    min-height: 44px;
}

.register-submit-btn:active {
    background-color: #a0e639;
    transform: scale(0.98);
}

.register-footer {
    margin-top: auto;
    padding-top: 30px;
    text-align: center;
}

.register-footer-text {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #1e201f;
}

.login-link {
    color: #056eb4;
    text-decoration: underline;
    font-weight: 600;
}

@media (max-width: 375px) {
    .register-title {
        font-size: 20px;
    }

    .register-subtitle {
        font-size: 13px;
    }
}

body[data-page="login"] .login-page.app-main {
    display: flex;
    flex-direction: column;
    background-image: url('../assets/images/login-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #f4f4f4;
    position: relative;
    box-sizing: border-box;
    overflow: visible;
}

body[data-page="login"] .login-background {
    position: relative;
    width: 100%;
    flex: 1;
    min-height: 0;
    box-sizing: border-box;
    z-index: 1;
}

.login-background {
    position: relative;
    width: 100%;
    height: 120px;
    /* background-image: url('../assets/images/login-bg.png'); */
    /* background-size: cover; */
    /* background-position: center; */
    overflow: hidden;
}

body[data-page="login"] .login-back-btn {
    position: absolute;
    top: calc(20px + env(safe-area-inset-top));
    left: 15px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    z-index: 10;
    min-width: 44px;
    min-height: 44px;
    -webkit-user-select: none;
    user-select: none;
}

.login-back-btn {
    position: absolute;
    top: 150px;
    left: 15px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    z-index: 10;
    min-width: 44px;
    min-height: 44px;
    -webkit-user-select: none;
    user-select: none;
}

.login-back-btn:active {
    transform: scale(0.95);
    box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.2);
}

.login-back-btn i {
    font-size: 20px;
    color: #1e201f;
}

body[data-page="login"] .login-container {
    margin-top: auto;
    flex-shrink: 0;
    position: relative;
    background-color: white;
    border-radius: 30px 30px 0 0;
    padding: 60px 20px 20px 20px;
    padding-bottom: calc(50px + env(safe-area-inset-bottom));
    z-index: 10;
    box-shadow: 0px -2px 20px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    transform: translateY(-30px);
    max-height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    display: flex;
    flex-direction: column;
    touch-action: pan-y;
}

.login-container {
    position: relative;
    margin-left: 5%;
    width: 90%;
    background-color: white;
    border-radius: 30px;
    padding: 10px 20px 30px 20px;
    /* padding-bottom: calc(30px + env(safe-area-inset-bottom)); */
    z-index: 10;
    /* box-shadow: 0px -2px 20px rgba(0, 0, 0, 0.1); */
    /* box-sizing: border-box; */
}

body[data-page="login"] .login-submit-btn {
    margin-bottom: env(safe-area-inset-bottom, 0px);
}

body[data-page="login"] .login-icon-wrapper {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 30;
    pointer-events: none;
    overflow: visible;
}

body[data-page="login"] .login-container {
    overflow: visible !important;
}

body[data-page="login"] .login-container > *:not(.login-icon-wrapper) {
    position: relative;
    z-index: 1;
}

body[data-page="login"] .login-back-btn {
    top: calc(20px + env(safe-area-inset-top));
    left: 15px;
}

.login-icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    margin-top: 20px;
    /* margin-top: -50px; */
}

.login-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #056eb4;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 12px rgba(5, 110, 180, 0.3);
    position: relative;
    z-index: 30;
}

.login-icon svg {
    width: 60px;
    height: 27px;
}

.login-header {
    text-align: center;
    margin-bottom: 20px;
}

.login-title {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #056eb4;
    margin-bottom: 10px;
    letter-spacing: -0.72px;
}

.login-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #595e63;
    line-height: 1.5;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 15px;
}

body[data-page="login"] .login-container > *:not(.login-icon-wrapper) {
    flex-shrink: 0;
}

body[data-page="login"] .login-header, body[data-page="login"] .login-form, body[data-page="login"] .login-footer {
    flex-shrink: 0;
}

.login-page .form-input {
    width: 100%;
    padding: 15px 15px;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #1e201f;
    background-color: #e8f0fe !important;
    transition: border-color 0.2s ease;
    box-sizing: border-box;
}

.login-page .form-input-wrapper {
    background-color: transparent;
    padding: 0;
    border-radius: 10px;
}

.login-page .form-icon {
    left: 15px;
}

.login-page .form-input {
    padding-left: 45px;
    padding-right: 40px;
}

.login-page .password-toggle {
    right: 15px;
}

.login-submit-btn {
    width: 100%;
    background-color: #B7FF3F;
    color: #000000;
    border: none;
    border-radius: 100px;
    padding: 15px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
    -webkit-user-select: none;
    user-select: none;
    min-height: 44px;
}

.login-submit-btn:active {
    background-color: #a0e639;
    transform: scale(0.98);
}

.login-footer {
    margin-top: 30px;
    text-align: center;
}

.login-footer-text {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #1e201f;
}

.register-link {
    color: #056eb4;
    text-decoration: underline;
    font-weight: 600;
}

@media (max-width: 375px) {
    .login-title {
        font-size: 20px;
    }

    .login-subtitle {
        font-size: 13px;
    }

    .login-icon {
        width: 80px;
        height: 80px;
    }

    .login-icon svg {
        width: 50px;
        height: 50px;
    }
}

.my-account-page {
    min-height: calc(100vh - 120px - env(safe-area-inset-top));
    padding-bottom: env(safe-area-inset-bottom);
    background-color: #f4f4f4;
}

.profile-section {
    text-align: center;
    padding: 30px 20px;
    background-color: f4f4f4;
    margin-bottom: 20px;
}

.profile-image-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.profile-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #000;
    margin: 0 auto;
    border: 3px solid white;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
}

.profile-image img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.profile-edit-btn {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #056eb4;
    border: 3px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s ease;
    min-width: 36px;
    min-height: 36px;
    -webkit-user-select: none;
    user-select: none;
}

.profile-edit-btn:active {
    transform: scale(0.95);
}

.profile-edit-btn i {
    font-size: 16px;
    color: white;
}

.profile-name {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #1e201f;
    letter-spacing: -0.6px;
}

.profile-reg-date {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #1e201f;
}

.account-section {
    padding: 0 20px;
    margin-bottom: 30px;
}

.account-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.account-section .section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #1e201f;
    letter-spacing: -0.54px;
}

.account-section .view-all {
    font-size: 12px;
    color: #1e201f;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
}

.activity-card {
    background-color: white;
    border-radius: 10px;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    box-shadow: 0px 2px 2px 0px rgba(114, 110, 110, 0.09), 0px 1px 1px 0px rgba(114, 110, 110, 0.1);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    -webkit-user-select: none;
    user-select: none;
}

.activity-card:active {
    transform: scale(0.98);
    box-shadow: 0px 2px 2px 0px rgba(114, 110, 110, 0.15), 0px 1px 1px 0px rgba(114, 110, 110, 0.2);
}

.activity-content {
    flex: 1;
}

.activity-date {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    color: #595e63;
    margin-bottom: 8px;
}

.activity-title {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #1e201f;
    margin-bottom: 8px;
    letter-spacing: -0.48px;
}

.activity-location {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #595e63;
}

.activity-location i {
    font-size: 16px;
    color: #595e63;
}

.activity-thumbnail {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #000;
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
}

.activity-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.settings-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.settings-item {
    background-color: white;
    border-radius: 10px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    box-shadow: 0px 2px 2px 0px rgba(114, 110, 110, 0.09), 0px 1px 1px 0px rgba(114, 110, 110, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    -webkit-user-select: none;
    user-select: none;
    cursor: pointer;
}

.settings-item:active {
    transform: scale(0.98);
    box-shadow: 0px 2px 2px 0px rgba(114, 110, 110, 0.15), 0px 1px 1px 0px rgba(114, 110, 110, 0.2);
}

.settings-item-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #e6e6e6;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.settings-item-icon i, .settings-item-icon svg {
    font-size: 20px;
    color: #1e201f;
}

.settings-item-icon svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.settings-item-content {
    flex: 1;
}

.settings-item-title {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #1e201f;
    margin-bottom: 4px;
    letter-spacing: -0.48px;
}

.settings-item-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #595e63;
}

.settings-item-arrow {
    font-size: 20px;
    color: #595e63;
    flex-shrink: 0;
}

.logout-section {
    padding: 20px;
    text-align: center;
}

.logout-btn {
    width: 100%;
    background-color: #381919;
    color: #F87171;
    border: none;
    border-radius: 100px;
    padding: 15px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
    -webkit-user-select: none;
    user-select: none;
    min-height: 44px;
    margin-bottom: 15px;
}

.logout-btn:active {
    background-color: #B91C1C;
    transform: scale(0.98);
}

.delete-account-btn {
    width: 100%;
    background-color: transparent;
    color: #F87171;
    border: 1px solid #F87171;
    border-radius: 100px;
    padding: 7px 14px;
    font-size: 15px;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease, border-color 0.2s ease;
    -webkit-user-select: none;
    user-select: none;
    min-height: 47px;
    margin-bottom: 15px;
}

.delete-account-btn:active {
    background-color: rgba(248, 113, 113, 0.1);
    transform: scale(0.98);
}

.delete-account-btn:hover {
    background-color: rgba(248, 113, 113, 0.05);
}

.app-version {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    color: #595e63;
}

@media (max-width: 375px) {
    .profile-name {
        font-size: 18px;
    }

    .profile-image {
        width: 100px;
        height: 100px;
    }

    .profile-edit-btn {
        width: 32px;
        height: 32px;
    }
}

.notification-settings-page {
    min-height: calc(100vh - 120px - env(safe-area-inset-top));
    background-color: #f4f4f4;
    padding-bottom: calc(100px + env(safe-area-inset-bottom));
}

.notification-description-section {
    background-color: white;
    padding: 30px 20px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 15px;
}

.notification-icon-large {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #e6e6e6;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.notification-icon-large i {
    font-size: 40px;
    color: #595e63;
}

.notification-description {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    color: #1e201f;
    line-height: 1.5;
    max-width: 100%;
    text-align: left;
}

.notification-settings-container {
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.notification-card {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0px 2px 2px 0px rgba(114, 110, 110, 0.09), 0px 1px 1px 0px rgba(114, 110, 110, 0.1);
}

.notification-card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #1e201f;
    margin-bottom: 20px;
    letter-spacing: -0.54px;
}

.notification-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.notification-option {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
}

.notification-option-content {
    flex: 1;
}

.notification-option-title {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #1e201f;
    letter-spacing: -0.48px;
}

.notification-option-description {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #595e63;
    line-height: 1.4;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 28px;
    flex-shrink: 0;
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
    top: 22px;
    right: 4px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
    border-radius: 28px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

.toggle-switch input:checked + .toggle-slider {
    background-color: #B7FF3F;
}

.toggle-switch input:checked + .toggle-slider:before {
    transform: translateX(22px);
}

.toggle-switch input:focus + .toggle-slider {
    box-shadow: 0 0 1px #B7FF3F;
}

.notification-update-section {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    padding: 15px 20px;
    padding-bottom: calc(15px + env(safe-area-inset-bottom));
    box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
}

.notification-update-btn {
    width: 100%;
    background-color: #B7FF3F;
    color: #000000;
    border: none;
    border-radius: 100px;
    padding: 15px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
    -webkit-user-select: none;
    user-select: none;
    min-height: 44px;
}

.notification-update-btn:active {
    background-color: #9FE02F;
    transform: scale(0.98);
}

@media (max-width: 375px) {
    .notification-description {
        font-size: 13px;
    }

    .notification-card-title {
        font-size: 16px;
    }

    .notification-option-title {
        font-size: 14px;
    }
}

.profile-info-page {
    min-height: calc(100vh - 120px - env(safe-area-inset-top));
    background-color: #f4f4f4;
    padding-bottom: calc(100px + env(safe-area-inset-bottom));
}

.profile-form-section {
    padding: 0px 25px;
}

.profile-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.profile-info-page .form-input {
    width: 100%;
    padding: 17px 15px;
    padding-left: 45px;
    padding-right: 40px;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #1e201f;
    background-color: #ffffff;
    border: 1px solid #e6e6e6;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;
}

.profile-info-page .form-input:focus {
    outline: none;
    border-color: #056eb4;
    box-shadow: 0 0 0 3px rgba(5, 110, 180, 0.1);
}

.profile-info-page .form-input-wrapper {
    background-color: transparent;
    padding: 0;
    border-radius: 10px;
    margin-bottom: 15px;
}

.profile-info-page .form-icon {
    left: 15px;
}

.profile-info-page .password-toggle {
    right: 15px;
}

.profile-update-section {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    padding: 15px 20px;
    padding-bottom: calc(15px + env(safe-area-inset-bottom));
    box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
}

.profile-update-btn {
    width: 100%;
    background-color: #B7FF3F;
    color: #000000;
    border: none;
    border-radius: 100px;
    padding: 15px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
    -webkit-user-select: none;
    user-select: none;
    min-height: 44px;
}

.profile-update-btn:active {
    background-color: #9FE02F;
    transform: scale(0.98);
}

@media (max-width: 375px) {
    .profile-form-section {
        padding: 0 15px;
    }
}

.equipment-settings-page {
    min-height: calc(100vh - 120px - env(safe-area-inset-top));
    background-color: #f4f4f4;
    padding-bottom: calc(100px + env(safe-area-inset-bottom));
}

.equipment-tabs {
    display: flex;
    background-color: white;
    padding: 10px;
    gap: 10px;
    border-bottom: 1px solid #e6e6e6;
    margin: 25px 25px 0px 25px;
    border-radius: 65px;
}

.equipment-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border: none;
    background-color: white;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1e201f;
    -webkit-user-select: none;
    user-select: none;
    min-height: 44px;
}

.equipment-tab svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.equipment-tab.active {
    background-color: #B7FF3F;
    color: #000000;
}

.equipment-tab:active {
    transform: scale(0.98);
}

.equipment-cards-container {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.equipment-card {
    background-color: white;
    border-radius: 10px;
    padding: 10px 7px;
    border: 1px solid #E6E6E6;
    box-shadow: 0px 2px 2px 0px rgba(114, 110, 110, 0.09), 0px 1px 1px 0px rgba(114, 110, 110, 0.1);
    transition: outline 0.3s ease;
}

.equipment-card.toggle-active, .equipment-card.active {
    outline: 3px solid #B7FF3F;
    outline-offset: -3px;
}

.equipment-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.equipment-card-info {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.equipment-icon {
    width: 70px;
    height: 70px;
    /* border: 1px solid #c0c0c0; */
    border-radius: 50%;
    /* background-color: #e6e6e6; */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.equipment-icon i, .equipment-icon svg {
    font-size: 24px;
    color: #1e201f;
}

.equipment-icon svg {
    width: 24px;
    height: 24px;
}

.equipment-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    flex-shrink: 0;
    /* border: 1px solid #c0c0c0; */
    border-radius: 5px;
    /* padding-left: 7px; */
}

.equipment-text {
    flex: 1;
}

.equipment-title {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #1e201f;
    letter-spacing: -0.48px;
}

.equipment-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #595e63;
}

.equipment-card-content {
    margin-top: 15px;
}

.equipment-size-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.equipment-size-label {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1e201f;
}

.calculation-link {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #1e201f;
    text-decoration: none;
}

.equipment-size-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.size-btn {
    padding: 8px 16px;
    border: 1px solid #e6e6e6;
    background-color: white;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #1e201f;
    cursor: pointer;
    transition: all 0.2s ease;
    -webkit-user-select: none;
    user-select: none;
    min-height: 36px;
}

.size-btn:active {
    transform: scale(0.95);
}

.size-btn.active {
    background-color: #B7FF3F;
    border-color: #B7FF3F;
    color: #000000;
}

.size-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.equipment-update-section {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    padding: 15px 20px;
    padding-bottom: calc(15px + env(safe-area-inset-bottom));
    box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
}

.equipment-update-btn {
    width: 100%;
    background-color: #B7FF3F;
    color: #000000;
    border: none;
    border-radius: 100px;
    padding: 15px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
    -webkit-user-select: none;
    user-select: none;
    min-height: 44px;
}

.equipment-update-btn:active {
    background-color: #9FE02F;
    transform: scale(0.98);
}

@media (max-width: 375px) {
    .equipment-tabs {
        padding: 10px 15px;
    }

    .equipment-cards-container {
        padding: 15px;
    }

    .equipment-card {
        padding: 10px 7px;
    }
}

.success-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100dvh;
    max-height: 100dvh;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.3s ease, opacity 0.3s ease;
    overflow: hidden;
}

.success-modal-overlay.active {
    visibility: visible;
    opacity: 1;
}

.success-modal {
    background-color: white;
    border-radius: 20px;
    padding: 30px 20px;
    max-width: 300px;
    width: 90%;
    text-align: center;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.success-modal-overlay.active .success-modal {
    transform: scale(1);
}

.success-modal-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #B7FF3F;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.success-modal-icon i {
    font-size: 32px;
    color: #000000;
}

.success-modal-title {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #1e201f;
    margin-bottom: 10px;
    letter-spacing: -0.54px;
}

.success-modal-message {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #595e63;
    margin-bottom: 20px;
    line-height: 1.5;
}

.success-modal-btn {
    width: 100%;
    background-color: #B7FF3F;
    color: #000000;
    border: none;
    border-radius: 100px;
    padding: 12px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
    -webkit-user-select: none;
    user-select: none;
    min-height: 44px;
}

.success-modal-btn:active {
    background-color: #9FE02F;
    transform: scale(0.98);
}

.my-lessons-page {
    min-height: calc(100vh - 120px - env(safe-area-inset-top));
    background-color: #f4f4f4;
    padding-bottom: calc(20px + env(safe-area-inset-bottom));
}

.lessons-section {
    padding: 0 20px;
    margin: 30px 0px;
}

.lessons-section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #1e201f;
    margin-bottom: 15px;
    letter-spacing: -0.54px;
}

.lesson-card {
    background-color: white;
    border-radius: 10px;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    box-shadow: 0px 2px 2px 0px rgba(114, 110, 110, 0.09), 0px 1px 1px 0px rgba(114, 110, 110, 0.1);
    margin-bottom: 10px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    -webkit-user-select: none;
    user-select: none;
}

.lesson-card:active {
    transform: scale(0.98);
    box-shadow: 0px 2px 2px 0px rgba(114, 110, 110, 0.15), 0px 1px 1px 0px rgba(114, 110, 110, 0.2);
}

.lesson-content {
    flex: 1;
}

.lesson-date {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    color: #595e63;
}

.lesson-title {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #1e201f;
    margin-bottom: 6px;
    letter-spacing: -0.48px;
}

.lesson-location {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #595e63;
}

.lesson-location i {
    font-size: 16px;
    color: #595e63;
}

.lesson-teacher-thumbnail {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #000;
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
}

.lesson-teacher-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

@media (max-width: 375px) {
    .lessons-section {
        padding: 0 15px;
    }

    .lesson-card {
        padding: 12px;
    }
}

.lesson-details-page.app-main {
    background-color: #f4f4f4;
    padding-bottom: calc(100px + env(safe-area-inset-bottom));
    box-sizing: border-box;
    overflow-y: auto !important;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    pointer-events: auto !important;
    touch-action: pan-y;
}

.lesson-overview-section {
    background-color: #f4f4f4;
    padding: 20px;
}

.lesson-overview-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lesson-overview-title {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #1e201f;
    letter-spacing: -0.54px;
}

.lesson-status-btn {
    background-color: #B7FF3F;
    color: #000000;
    border: none;
    border-radius: 100px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
    -webkit-user-select: none;
    user-select: none;
    min-height: 32px;
}

.lesson-status-btn:active {
    background-color: #9FE02F;
    transform: scale(0.98);
}

.lesson-image-section {
    padding: 0 20px;
    margin-bottom: 20px;
}

.lesson-image-card {
    position: relative;
    width: 100%;
    height: 250px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 2px 2px 0px rgba(114, 110, 110, 0.09), 0px 1px 1px 0px rgba(114, 110, 110, 0.1);
}

.lesson-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.lesson-location-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    padding: 20px;
    color: white;
}

.lesson-location-title {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: white;
    margin-bottom: 5px;
    letter-spacing: -0.72px;
}

.lesson-location-detail {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: white;
}

.lesson-location-detail i {
    font-size: 16px;
    color: white;
}

.lesson-details-section {
    padding: 0 20px;
    margin-bottom: 20px;
}

.lesson-details-section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #1e201f;
    margin-bottom: 15px;
    letter-spacing: -0.54px;
}

.lesson-details-carousel-wrapper {
    overflow: hidden;
    position: relative;
}

.lesson-details-cards.swiper {
    overflow: visible;
}

.lesson-detail-card {
    flex: 0 0 auto;
    width: auto;
    min-width: 200px;
    /* max-width: 200px; */
    background-color: white;
    border-radius: 10px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0px 2px 2px 0px rgba(114, 110, 110, 0.09), 0px 1px 1px 0px rgba(114, 110, 110, 0.1);
    height: auto;
    box-sizing: border-box;
}

.lesson-detail-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #e6e6e6;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lesson-detail-icon i {
    font-size: 20px;
    color: #1e201f;
}

.lesson-detail-icon-img {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    object-fit: contain;
}

.lesson-detail-content {
    display: flex;
    flex-direction: column;
}

.lesson-detail-label {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #595e63;
}

.lesson-detail-value {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1e201f;
    letter-spacing: -0.42px;
}

.equipment-details-section {
    padding: 0 20px;
    margin-bottom: 20px;
}

.equipment-details-section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #1e201f;
    margin-bottom: 15px;
    letter-spacing: -0.54px;
}

.equipment-details-carousel-wrapper {
    overflow: hidden;
    position: relative;
}

.equipment-details-cards.swiper {
    overflow: visible;
}

.equipment-details-cards .swiper-wrapper {
    display: flex;
}

.equipment-detail-card {
    flex: 0 0 auto;
    width: 160px !important;
    min-width: 160px;
    max-width: 160px;
    background-color: white;
    border-radius: 10px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0px 2px 2px 0px rgba(114, 110, 110, 0.09), 0px 1px 1px 0px rgba(114, 110, 110, 0.1);
    height: auto;
    box-sizing: border-box;
}

.equipment-detail-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #e6e6e6;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.equipment-detail-icon svg, .equipment-detail-icon-img {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.equipment-detail-content {
    display: flex;
    flex-direction: column;
}

.equipment-detail-label {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #595e63;
}

.equipment-detail-value {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1e201f;
    letter-spacing: -0.42px;
}

.lesson-contact-section {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    padding: 15px 20px;
    padding-bottom: calc(15px + env(safe-area-inset-bottom));
    box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
}

.lesson-contact-btn {
    width: 100%;
    background-color: #B7FF3F;
    color: #000000;
    border: none;
    border-radius: 100px;
    padding: 15px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
    -webkit-user-select: none;
    user-select: none;
    min-height: 44px;
}

.lesson-contact-btn:active {
    background-color: #9FE02F;
    transform: scale(0.98);
}

@media (max-width: 375px) {
    .lesson-overview-section {
        padding: 15px;
    }

    .lesson-image-section {
        padding: 0 15px;
    }

    .lesson-details-section, .equipment-details-section {
        padding: 0 15px;
    }

    .lesson-image-card {
        height: 200px;
    }

    .lesson-location-title {
        font-size: 20px;
    }
}

.lesson-step-1-page {
    min-height: calc(100vh - 120px - env(safe-area-inset-top));
    background-color: #f4f4f4;
    padding-bottom: calc(100px + env(safe-area-inset-bottom));
}

.step-indicator {
    display: flex;
    gap: 6px;
    align-items: center;
}

.step-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #d0d0d0;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.step-dot.active {
    width: 24px;
    height: 6px;
    border-radius: 3px;
    background-color: #1e201f;
}

.instructor-info-card {
    background-color: white;
    border-radius: 10px;
    padding: 15px;
    margin: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0px 2px 2px 0px rgba(114, 110, 110, 0.09), 0px 1px 1px 0px rgba(114, 110, 110, 0.1);
}

.instructor-image-wrapper {
    flex-shrink: 0;
}

.instructor-image-placeholder {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #000;
}

.instructor-info-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.instructor-name-section {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.instructor-name {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #1e201f;
    letter-spacing: -0.48px;
    margin: 0;
}

.instructor-experience {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #595e63;
}

.instructor-experience i {
    font-size: 14px;
    color: #595e63;
}

.instructor-tag {
    display: inline-block;
    background-color: #f4f4f4;
    color: #1e201f;
    padding: 4px 10px;
    border-radius: 100px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    width: fit-content;
}

.instructor-rating-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
}

.instructor-rating {
    display: flex;
    align-items: center;
    gap: 4px;
}

.star-icon {
    font-size: 16px;
    color: #FFD700;
}

.rating-value {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1e201f;
}

.instructor-price {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1e201f;
}

.lesson-step-section {
    padding: 0 20px;
    margin-bottom: 25px;
}

.lesson-step-section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #1e201f;
    margin-bottom: 15px;
    letter-spacing: -0.54px;
}

.calendar-card {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0px 2px 2px 0px rgba(114, 110, 110, 0.09), 0px 1px 1px 0px rgba(114, 110, 110, 0.1);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.calendar-nav-btn {
    background: none;
    border: none;
    font-size: 18px;
    color: #1e201f;
    cursor: pointer;
    padding: 5px;
    min-width: 30px;
    min-height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calendar-header h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #1e201f;
    margin: 0;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    margin-bottom: 10px;
}

.calendar-weekdays div {
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #595e63;
    padding: 5px;
}

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

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #1e201f;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.2s ease;
    min-height: 40px;
}

.calendar-day:hover:not(.unavailable):not(.other-month):not(.selected) {
    background-color: #f4f4f4;
}

.calendar-day.selected {
    background-color: #B7FF3F;
    color: #000000;
    font-weight: 600;
}

.calendar-day.selected:active, .calendar-day.selected:hover {
    background-color: #B7FF3F !important;
    color: #000000;
    font-weight: 600;
}

.calendar-day.unavailable {
    color: #d0d0d0;
    cursor: not-allowed;
}

.calendar-day.other-month {
    color: #d0d0d0;
}

.duration-carousel-wrapper {
    overflow: hidden;
    position: relative;
}

.duration-options.swiper {
    overflow: visible;
}

.duration-options .swiper-wrapper {
    display: flex;
}

.duration-options .swiper-slide {
    width: auto !important;
    flex-shrink: 0;
}

.duration-option {
    flex: 0 0 auto;
    width: 120px;
    min-width: 120px;
    background-color: white;
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    padding: 15px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1e201f;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    min-height: 44px;
    scroll-snap-align: start;
    white-space: nowrap;
    box-sizing: border-box;
}

.duration-option:active {
    transform: scale(0.98);
}

.duration-option.active {
    background-color: #B7FF3F;
    border-color: #B7FF3F;
    color: #000000;
}

.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.time-slot-btn {
    background-color: white;
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    padding: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1e201f;
    cursor: pointer;
    transition: all 0.2s ease;
    min-height: 44px;
}

.time-slot-btn:active {
    transform: scale(0.98);
}

.time-slot-btn.active {
    background-color: #B7FF3F;
    border-color: #B7FF3F;
    color: #000000;
}

.lesson-step-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    padding: 15px 20px;
    padding-bottom: calc(15px + env(safe-area-inset-bottom));
    box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.lesson-step-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.price-amount {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #1e201f;
}

.price-unit {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #595e63;
}

.lesson-step-continue-btn {
    flex: 1;
    background-color: #B7FF3F;
    color: #000000;
    border: none;
    border-radius: 100px;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
    -webkit-user-select: none;
    user-select: none;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.lesson-step-continue-btn:active {
    background-color: #9FE02F;
    transform: scale(0.98);
}

.lesson-step-continue-btn i {
    font-size: 18px;
}

@media (max-width: 375px) {
    .instructor-info-card {
        margin: 15px;
        padding: 12px;
    }

    .lesson-step-section {
        padding: 0 15px;
    }

    .calendar-card {
        padding: 15px;
    }

    .time-slots-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.lesson-step-3-page {
    min-height: calc(100vh - 120px - env(safe-area-inset-top));
    background-color: #f4f4f4;
    padding-bottom: calc(100px + env(safe-area-inset-bottom));
}

.payment-info-box {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.payment-info-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #f4f4f4;
    border: 1px solid #e6e6e6;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.payment-info-icon-wrapper i {
    font-size: 28px;
    color: #1e201f;
}

.payment-info-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.payment-info-text p {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #1e201f;
    margin: 0;
    line-height: 1.4;
}

.cost-breakdown-card {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0px 2px 2px 0px rgba(114, 110, 110, 0.09), 0px 1px 1px 0px rgba(114, 110, 110, 0.1);
}

.cost-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.cost-item:last-of-type {
    margin-bottom: 0;
}

.cost-label {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #1e201f;
}

.cost-value {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1e201f;
}

.cost-divider {
    height: 1px;
    background-color: #e6e6e6;
    margin: 15px 0;
}

.cost-total {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e6e6e6;
}

.cost-total .cost-label {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
}

.cost-total .cost-value {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
}

.cost-note {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #595e63;
    margin-top: 10px;
    margin-bottom: 0;
    text-align: right;
}

.payment-form-card {
    background-color: white;
    border: 2px solid #B7FF3F;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0px 2px 2px 0px rgba(114, 110, 110, 0.09), 0px 1px 1px 0px rgba(114, 110, 110, 0.1);
}

.payment-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.payment-form-label {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1e201f;
}

.payment-form-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #1e201f;
    background-color: white;
    transition: border-color 0.2s ease;
    box-sizing: border-box;
}

.payment-form-input:focus {
    outline: none;
    border-color: #B7FF3F;
}

.payment-form-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.payment-form-input-wrapper .payment-form-icon {
    position: absolute;
    left: 15px;
    font-size: 20px;
    color: #595e63;
    pointer-events: none;
    z-index: 1;
}

.payment-form-input-wrapper .payment-form-input {
    padding-left: 45px;
}

.payment-form-row {
    display: flex;
    gap: 15px;
}

.payment-form-row .payment-form-group {
    flex: 1;
    margin-bottom: 0;
}

.payment-guarantee {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e6e6e6;
}

.payment-guarantee i {
    font-size: 20px;
    color: #B7FF3F;
    flex-shrink: 0;
    margin-top: 2px;
}

.payment-guarantee span {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #595e63;
    line-height: 1.5;
}

.lesson-step-3-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    padding: 15px 20px;
    padding-bottom: calc(15px + env(safe-area-inset-bottom));
    box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
}

.lesson-step-3-footer .lesson-step-continue-btn {
    width: 100%;
}

@media (max-width: 375px) {
    .payment-info-box {
        margin: 15px;
        padding: 15px;
    }

    .lesson-step-section {
        padding: 0 15px;
    }

    .cost-breakdown-card, .payment-form-card {
        padding: 15px;
    }

    .payment-form-row {
        flex-direction: column;
        gap: 0;
    }

    .payment-form-row .payment-form-group {
        margin-bottom: 15px;
    }
}

.lesson-success-page {
    position: relative;
    padding-bottom: env(safe-area-inset-bottom);
}

.success-background-image {
    position: fixed;
    top: calc(60px + env(safe-area-inset-top));
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../assets/images/thank-you-page-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    pointer-events: none;
}

.success-content-card {
    position: relative;
    z-index: 1;
    background: #b7ff3f;
    background: linear-gradient(180deg, rgb(183 255 63) 0%, rgba(255, 255, 255, 1) 25%);
    border-radius: 20px 20px 0 0;
    padding: 30px 20px;
    margin: 150px 20px 0 20px;
    box-shadow: 0px -2px 20px rgba(0, 0, 0, 0.1);
}

.reservation-id-section {
    text-align: center;
    margin-bottom: 30px;
}

.reservation-id-label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #1e201f;
    margin-bottom: 8px;
}

.reservation-id-value {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #1e201f;
    margin: 0 0 15px 0;
    letter-spacing: -0.72px;
}

.reservation-status-btn {
    background-color: #1e201f;
    color: white;
    border: none;
    border-radius: 100px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 32px;
    transition: transform 0.1s ease;
}

.reservation-status-btn:active {
    transform: scale(0.98);
}

.reservation-status-btn i {
    font-size: 18px;
    color: #FFD700;
    flex-shrink: 0;
}

.success-icon-wrapper {
    display: flex;
    justify-content: center;
    margin: 40px 0;
}

.success-icon-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: #1e201f;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-icon-circle i {
    font-size: 60px;
    color: white;
}

.success-message-section {
    text-align: center;
    margin-top: 40px;
}

.success-title {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #1e201f;
    margin: 0 0 15px 0;
    letter-spacing: -0.72px;
}

.success-description {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #595e63;
    margin: 0 0 15px 0;
    line-height: 1.5;
    padding: 0px 20px;
}

.success-email-link {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #056eb4;
    text-decoration: underline;
    display: inline-block;
}

.lesson-success-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    padding: 15px 20px;
    padding-bottom: calc(15px + env(safe-area-inset-bottom));
    box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
}

.add-to-calendar-btn {
    width: 100%;
    background-color: #B7FF3F;
    color: #000000;
    border: none;
    border-radius: 100px;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
    -webkit-user-select: none;
    user-select: none;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.add-to-calendar-btn:active {
    background-color: #9FE02F;
    transform: scale(0.98);
}

.add-to-calendar-btn i {
    font-size: 20px;
}

@media (max-width: 375px) {
    .success-content-card {
        /* padding: 25px 15px; */ border-radius: 15px 15px 0 0;
    }

    .reservation-id-value {
        font-size: 20px;
    }

    .success-icon-circle {
        width: 100px;
        height: 100px;
    }

    .success-icon-circle i {
        font-size: 50px;
    }

    .success-title {
        font-size: 20px;
    }
}

.lesson-step-2-page.app-main {
    background-color: #f4f4f4;
    padding-bottom: calc(120px + env(safe-area-inset-bottom));
    box-sizing: border-box;
}

.instruction-box {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.instruction-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #f4f4f4;
    border: 1px solid #e6e6e6;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.instruction-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.instruction-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.instruction-text p {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #1e201f;
    margin: 0;
    line-height: 1.4;
}

.activity-toggle-section {
    display: flex;
    gap: 10px;
    padding: 0 20px;
    margin-bottom: 20px;
}

.activity-toggle-btn {
    flex: 1;
    background-color: white;
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    padding: 15px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #1e201f;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    min-height: 44px;
}

.activity-toggle-btn:active {
    transform: scale(0.98);
}

.activity-toggle-btn.active {
    background-color: #B7FF3F;
    border-color: #B7FF3F;
    color: #000000;
}

.lesson-step-2-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    padding: 15px 20px;
    padding-bottom: calc(15px + env(safe-area-inset-bottom));
    box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.lesson-step-2-pricing {
    display: flex;
    flex-direction: column;
}

.pricing-item {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.pricing-item .price-amount {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #1e201f;
}

.pricing-item .price-unit {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #595e63;
}

@media (max-width: 375px) {
    .instruction-box {
        padding: 12px 15px;
    }

    .activity-toggle-section {
        padding: 0 15px;
    }

    .equipment-cards-container {
        padding: 15px;
    }

    .lesson-step-2-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .lesson-step-2-pricing {
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
    }
}

.teacher-cards-scroll-section {
    padding: 0 20px;
    margin-bottom: 30px;
}

.teacher-cards-scroll-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    margin: 0 -20px;
    padding: 0 20px;
}

.teacher-cards-scroll {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 10px 0;
    touch-action: pan-x;
    overscroll-behavior-x: contain;
}

.teacher-cards-scroll::-webkit-scrollbar {
    display: none;
}

.teacher-card-scroll {
    flex: 0 0 calc(50% - 5px);
    min-width: calc(50% - 5px);
    max-width: calc(50% - 5px);
    background-color: white;
    border: 1px solid #f5f5f5;
    border-radius: 10px;
    box-shadow: 0px 13px 4px 0px rgba(114, 110, 110, 0), 0px 9px 3px 0px rgba(114, 110, 110, 0.01), 0px 5px 3px 0px rgba(114, 110, 110, 0.05), 0px 2px 2px 0px rgba(114, 110, 110, 0.09), 0px 1px 1px 0px rgba(114, 110, 110, 0.1);
    overflow: hidden;
    box-sizing: border-box;
    scroll-snap-align: center;
    scroll-snap-stop: always; scroll-margin: 0 5px;
}

.teacher-card-scroll .teacher-image {
    width: 100%;
    height: 160px;
    background-color: #000;
    position: relative;
    border: 1px solid #f5f5f5;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
}

.teacher-card-scroll .teacher-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.teacher-card-scroll .teacher-info {
    padding: 15px;
}

.teacher-card-scroll .teacher-info h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #191a1c;
    letter-spacing: -0.48px;
    margin-bottom: 0px;
}

.teacher-card-scroll .experience {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
}

.teacher-card-scroll .experience i {
    color: #595e63;
    font-size: 15px;
}

.teacher-card-scroll .experience span {
    font-size: 12px;
    color: #595e63;
}

.teacher-card-scroll .price {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #191a1c;
    letter-spacing: -0.54px;
}

.teacher-card-scroll .price span {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #4b5563;
}

@supports (-webkit-overflow-scrolling: touch) {
    .teacher-cards-scroll {
        -webkit-overflow-scrolling: touch;
    }
}

.teacher-cards-scroll {
    -webkit-user-select: none;
    user-select: none;
}

.teacher-card-scroll {
    -webkit-user-select: none;
    user-select: none;
}

.teacher-card-scroll .teacher-info {
    -webkit-user-select: text;
    user-select: text;
}

.header-row-empty {
    height: var(--safe-top) !important;
}

.header-row-content {
    height: var(--header-h) !important;
}

.off-canvas-menu {
    position: fixed !important;
    top: var(--header-total) !important;
    bottom: 0 !important;
    left: 0;
    right: 0;
    height: auto !important;
    max-height: none !important;
    overflow: hidden;
    background: #056eb4;
}

.search-section {
    margin-top: 0 !important;
}

div[id^="ajZRkvZekViWRTV"], div[id^="akaSlwaflWjXSUW"], div[style*="z-index: 2147483647"][style*="all: initial"], div[style*="z-index: 2147483647"]:has(div[style*="all: initial"]), div[style*="z-index: 2147483647"][style*="position: relative"]:has(div[style*="all: initial"]) {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    position: absolute !important;
    left: -9999px !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
}

.off-canvas-menu .menu-nav {
    height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

/* ===========================
   SAFE AREA + HEADER (TEK KAYNAK)
   Dosyanin EN SONUNA koy.
   Alttaki eski ikinci :root override'larini SIL.
   =========================== */

:root{
  --android-safe-top: 0px;
  --android-safe-bottom: 0px;

  --ios-safe-top: env(safe-area-inset-top, 0px);
  --ios-safe-bottom: env(safe-area-inset-bottom, 0px);

  /* tek safe hesap */
  --safe-top: max(var(--ios-safe-top), var(--android-safe-top));
  --safe-bottom: max(var(--ios-safe-bottom), var(--android-safe-bottom));

  /* header sadece 60px (icerik satiri) */
  --header-h: 60px;
  --header-total: calc(var(--header-h) + var(--safe-top));
}

/* iOS eski constant() fallback */
@supports (padding: constant(safe-area-inset-top)) {
  :root{
    --ios-safe-top: constant(safe-area-inset-top);
    --ios-safe-bottom: constant(safe-area-inset-bottom);
    --safe-top: max(var(--ios-safe-top), var(--android-safe-top));
    --safe-bottom: max(var(--ios-safe-bottom), var(--android-safe-bottom));
    --header-total: calc(var(--header-h) + var(--safe-top));
  }
}

/* Header yuksekligi: toplam = safe-top + 60 */
.header.app-header{
  height: var(--header-total) !important;
}

/* Ust bosluk sadece safe-top kadar */
.header-row-empty{
  height: var(--safe-top) !important;
  padding-top: 0 !important;
}

/* Icerik satiri sabit 60 */
.header-row-content{
  height: var(--header-h) !important;
}

/* Main altta safe-bottom kadar nefes */
.app-main{
  padding-bottom: var(--safe-bottom) !important;
}

/* Off-canvas menu: header'in altindan baslar, ekranin sonuna kadar iner */
.off-canvas-menu{
  top: var(--header-total) !important;
  bottom: 0 !important;
  height: auto !important;
  max-height: none !important;
}

/* Menu ic scroll (iOS) */
.off-canvas-menu .menu-nav{
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

/* iOS "bounce" azaltma (asiriya kacmadan) */
html{
  overscroll-behavior-y: none;
}
body.app{
  overscroll-behavior-y: none;
}
