@font-face {
    font-family: "calder";
    src: url("../fonts/Calder-LC.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "calder-dark";
    src: url("../fonts/Calder-Dark.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
}

.ff-calder-dark {
    text-transform: uppercase;
    font-family: calder-dark !important;
}

.ff-calder {
    font-family: calder;
}

/*
|--------------------------------------------------------------------------|
|                                BACKGROUND                                |
|--------------------------------------------------------------------------|
*/
.bg-light-brown {
    background: #c7bfae !important;
}

.bg-brown {
    background: #964a21;
}

.bg-racket {
    background-image: url("../img/bg-racket.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    min-height: 100vh;
}

.bg-logo {
    background-image: url("../img/bg-logo.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    min-height: 100vh;
}

/*
|--------------------------------------------------------------------------|
|                                   WIDTH                                  |
|--------------------------------------------------------------------------|
*/
.w-200 {
    width: 200px !important;
    max-width: 100%;
}

.w-300 {
    width: 300px !important;
    max-width: 100%;
}

.w-400 {
    width: 400px !important;
    max-width: 100%;
}

.w-500 {
    width: 500px !important;
    max-width: 100%;
}

.h-100vh {
    min-height: 100vh;
}

/*
|--------------------------------------------------------------------------|
|                                POSITION                                  |
|--------------------------------------------------------------------------|
*/
.align-content-center {
    align-content: center;
}

.justify-center {
    justify-items: center;
}

.d-none {
    display: none !important;
}

.d-block {
    display: block !important;
}

.position-relative {
    position: relative !important;
}

.rotate-180 {
    transform: rotate(180deg);
    transition: transform 0.5s ease;
}
.chevron-open.rotate-180 {
    top: 5px !important;
}
.transition-05 {
    transition: transform 0.5s ease;
}

/*
|--------------------------------------------------------------------------|
|                                   FONT                                   |
|--------------------------------------------------------------------------|
*/
.color-brown {
    color: #964a21 !important;
}

.color-white {
    color: #fff !important;
}

.fw-600 {
    font-weight: 600;
}

.fs-14 {
    font-size: 14px !important;
}

.fs-16 {
    font-size: 16px !important;
}

.fs-18 {
    font-size: 18px !important;
}

.fs-24 {
    font-size: 24px !important;
}

.fs-32 {
    font-size: 32px;
}

/*
|--------------------------------------------------------------------------|
|                           MARGIN & PADDING                               |
|--------------------------------------------------------------------------|
*/
.mb-0 {
    margin-bottom: 0px !important;
}

.mb-5 {
    margin-bottom: 5px !important;
}

.mb-10 {
    margin-bottom: 10px !important;
}

.mb-15 {
    margin-bottom: 15px !important;
}

.mb-20 {
    margin-bottom: 20px !important;
}

.mb-30 {
    margin-bottom: 30px !important;
}

.mt-30 {
    margin-top: 30px !important;
}

.mb-40 {
    margin-bottom: 40px !important;
}

.pl-70 {
    padding-left: 70px !important;
}

.pt-140 {
    padding-top: 140px !important;
}

/*
|--------------------------------------------------------------------------|
|                                   BUTTON                                 |
|--------------------------------------------------------------------------|
*/
.btn {
    font-weight: 400;
    font-size: 16px;
    border: 0px;
    width: 100%;
    color: #fff;
    background: #964a21;
    border-radius: 16px;
    padding: 16px;
}

.btn:hover {
    background: #7a3314;
    color: #fff;
}

.btn-white,
.btn-white:hover,
.btn-white:focus {
    color: #964A21 !important;
    background: #FFFFFF !important;
}

.btn.focus,
.btn:focus {
    color: #fff;
    border: 0px;
    outline: 0px;
}

.btn-date {
    display: flex;
    align-items: center;
    width: 230px !important;
    justify-content: space-between;
}

/*
|--------------------------------------------------------------------------|
|                     Place your custom styles here                        |
|--------------------------------------------------------------------------|
*/
.fields {
    border: 3px solid #964A21;
    border-radius: 16px;
    margin-top: 20px;
    width: 100%;
    /* optional tapi biasanya dipakai */
    overflow: hidden;
}

.fields .time {
    font-family: calder-dark;
    align-content: center;
    width: 150px;
    position: relative;
    text-transform: uppercase;
    border-right: 2px solid #964A21;
    text-align: center;
    color: #964A21;
    font-size: 28px;
}

.fields .item.last .first {
    border-top-right-radius: 13px;
}

.fields .item.last .header {
    border-right: 0px;
}

.fields .item.last .third {
    /* border-bottom-right-radius: 13px; */
}

.fields .absolute {
    position: absolute;
    top: -120px;
    left: 0px;
}

.fields .item {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
}

.remove-grid {
    display: block !important;
}

.hide-scrollbar {
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* Internet Explorer 10+ */
}

.fields .header {
    align-content: center;
    font-family: calder-dark;
    text-transform: uppercase;
    background: #2A341E;
    border-right: 2px solid #964A21;
    color: #C7BFAE;
    padding: 10px;
    text-align: center;
}

.cursor-pointer {
    cursor: pointer;
}

.fields .box-schedule {
    user-select: none;
    font-size: 16px;
    border-top: 2px solid #964A21 !important;
    background: #c7bfae !important;
    color: #964A21 !important;
}

.cell.third {
    border-bottom: 2px solid #964A21;
}

.fields .box-schedule.reserved {
    border-top: 2px solid #2A341E !important;
    background: #2A341E !important;
    color: white !important;
}

.fields .box-schedule.selected {
    border-top: 2px solid #964A21 !important;
    background: #964A21 !important;
    color: white !important;
}

.bt-0 {
    border-top: 0px !important;
}

.fields .header.second {
    background: #61653A;
    color: #C7BFAE;
}

.fields .content {
    width: 100%;
    overflow-x: auto;
}

.fields.remove {
    border: 0px;
}

.fields.remove .item {
    display: block;
}

.fields.remove .header,
.fields.remove .time {
    background: none;
    border: 0px;
}

.owl-prev,
.owl-next {
    position: absolute;
    left: -70px;
    top: 20px;
    border-radius: 100px;
    text-align: center;
    height: 40px;
    background: #964A21;
    width: 40px;
}

.owl-next {
    left: unset;
    right: -70px;
}

.owl-nav-btn svg {
    margin-top: 8px;
}

/* Atur border radius pada item bulan */
.dates .item {
    background: #EEECE7;
    height: 80px;
    display: flex;
    border-radius: 16px;
    cursor: pointer;
    gap: 10px;
    justify-items: center;
    padding: 16px;
    place-content: center;
    align-items: center;
}

.dates .item.active {
    background: #964a21;
}

.dates .item.active p {
    color: #fff !important;
}

.dates .item p {
    font-size: 16px;
    margin-bottom: 0px;
}

.dates .item p.ff-calder-dark {
    font-size: 34px;
}

.hidden-month {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 0;
    height: 0;
}

.container-header {
    position: relative;
    margin-bottom: 50px;
}

.site-setting {
    display: flex;
    gap: 10px;
}

.site-setting .user {
    cursor: pointer;
}

.site-setting .user img {
    width: 48px;
    border-radius: 50px;
    object-fit: cover;
    height: 48px;
}

.primary-nav-list .menu-item {
    font-family: calder-dark;
}

.dropdown {
    user-select: none;
    position: relative;
    background: #EEECE7;
    color: #964A21;
    font-family: calder;
    font-size: 16px;
    border-radius: 50px;
    padding: 7px 10px;
}

.dropdown.category {
    width: 250px;
    position: absolute;
    right: 0px;
    top: 0px;
    border-radius: 12px;
}

.dropdown .preview {
    cursor: pointer;
    gap: 10px;
    align-items: center;
    display: flex;
}

.dropdown .preview svg {
    vertical-align: middle;
}

.dropdown .list {
    position: absolute;
    padding: 10px;
    background: #eeece7;
    width: 90%;
    border-radius: 12px;
    top: 55px;
}

.list-couch {
    flex-wrap: wrap;
    gap: 60px;
    display: flex;
    margin-bottom: 50px;
}

.list-couch img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 100px;
}

.list-couch .profile {
    width: calc(100% - 350px);
    align-content: center;
}

.list {
    display: none;
}

.list ul {
    padding-left: 0px;
    margin-bottom: 0px;
    list-style: none;
}

.list ul li {
    color: #964A21;
    cursor: pointer;
    font-size: 16px;
}

.list span {
    font-family: calder;
}

input.input-confirm {
    background: #ecfdf3;
    border: 1px solid #12b76a;
}

select.input-wrong,
input.input-wrong {
    background: #fef1f1 !important;
    border: 1px solid #ef3a3a !important;
}

select.input-wrong {
    border-right: 0px !important;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
}

.add-ons ul {
    margin-left: 10px;
    list-style: disc;
}

.add-ons ul li {
    text-align: left;
    font-family: calder;
    font-size: 16px;
}

.text-error {
    color: #ef3a3a !important;
    font-weight: 500;
    margin-bottom: 20px;
}

.select-on-input {
    position: absolute;
    border: 0px;
    color: #964a21;
    height: 56px;
    font-size: 16px;
    border-radius: 16px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    font-weight: 600;
    box-shadow: none !important;
    background: #eeece7;
    width: 68px;
}

.remove-apprearance-number {
    -moz-appearance: textfield;
    /* Firefox */
    -webkit-appearance: none;
    /* Safari & Chrome */
    appearance: none;
    margin: 0;
}

.single-slide {
    height: 100%;
    min-height: 100vh;
}

/* Hilangkan tombol increment/decrement di Chrome, Safari, Edge */
.remove-apprearance-number::-webkit-outer-spin-button,
.remove-apprearance-number::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.site-header {
    backdrop-filter: blur(10px);
    background-color: #FFFFFF99;
}

.site-header .custom-logo {
    padding: 5px 0px;
    height: 64px;
}

.site-header.small-height {
    background-color: #FFFFFF99;
    backdrop-filter: blur(10px);
}

.primary-nav-list .menu-item>a {
    color: #964A21;
}

.primary-nav .menu-item>a {
    font-size: 16px;
    opacity: 0.6;
    font-family: calder-dark;
}

.site-header .primary-nav .menu-item.active>a:hover,
.primary-nav-list .menu-item>a:hover,
.site-header .primary-nav .menu-item.active>a {
    opacity: 1;
    color: #964A21;
    border-bottom: 2px solid;
}

.site-header .primary-nav .menu-item>a {
    height: 50px;
}

.toggle-password,
.icon-input,
.button-otp {
    font-family: calder;
    position: absolute;
    top: 50%;
    right: 18px;
    transform: translateY(-50%);
    cursor: pointer;
    width: 20px;
}

.button-otp {
    width: 90px;
    user-select: none;
    background: #964a21;
    border-radius: 16px;
    color: white;
}

.phone-group {
    gap: 20px;
}

.phone-group select {
    width: 30%;
}

.d-flex {
    display: flex !important;
}

.loading {
    background: #c0927a;
    pointer-events: none;
}

.button-otp b {
    font-weight: 600;
}

.card-body {
    padding: 20px;
    background: white;
    border-radius: 24px;
}

.form-auth .tab-header {
    display: flex;
    width: 100%;
    min-height: 64px;
    border-radius: 16px;
    padding: 8px;
    background: #eeece7;
    margin-bottom: 20px;
}

.form-control,
.form-group input,
select,
.country-select button {
    margin-bottom: 20px;
    border: 0px;
    color: #964a21;
    height: 56px;
    font-size: 16px;
    border-radius: 16px;
    font-weight: 500;
    box-shadow: none !important;
    background: #eeece7;
    padding: 16px 18px;
}

.country-select button {
    width: 120px;
    align-items: center;
    gap: 5px;
    padding: 0px;
    margin-bottom: 5px;
}

.country-select button img,
.country-select img {
    margin-bottom: 0px !important;
    object-fit: cover;
    margin-right: 7px;
    width: 25px;
}

.country-select ul {
    padding: 15px;
    border-radius: 16px;
    box-shadow: 1px 1px 6px 0px #964a2175;
    border: 1px solid #c7c0ae;
    color: #964a21;
    z-index: 1000;
    font-size: 16px;
    width: 120px;
    font-weight: 500;
    position: absolute;
    background: #eeece7;
}

.country-select ul li {
    margin-bottom: 10px;
    gap: 5px;
    justify-self: left;
    cursor: pointer;
    align-items: center;
}

.country-select ul li:last-child {
    margin-bottom: 0px;
}

input[type="password"]::-ms-reveal,
input[type="password"]::-ms-clear {
    display: none !important;
}

.form-control::-webkit-input-placeholder,
.form-group input::-webkit-input-placeholder {
    color: #c0927a;
}

.form-control:-ms-input-placeholder,
.form-group input:-ms-input-placeholder {
    color: #c0927a;
}

.form-control::placeholder,
.form-group input::placeholder {
    color: #c0927a;
    opacity: 1;
}

.form-auth .tab-header button,
.form-auth .tab-header a {
    font-weight: 400;
    font-size: 14px;
    border: 0px;
    width: 50%;
    color: #964a21;
    background: #eeece7;
    border-radius: 16px;
    padding: 0px 16px;
}

.form-auth .tab-header button.active,
.form-auth .tab-header a.active {
    background: #964a21;
    color: white;
}

.form-auth img {
    margin-bottom: 25px;
}

.form-auth h4,
.form-auth h5 {
    font-weight: 400;
    font-size: 40px;
    color: #964a21 !important;
}

.form-auth h5 {
    font-size: 34px;
}

.site-footer {
    background: #964a21 !important;
    min-height: 200px;
}

.site-footer .container {
    height: 100%;
    padding-bottom: 30px;
    padding-top: 30px;
}

.copy-right-section img {
    width: 150px;
    margin-bottom: 10px;
}

.copy-right-section p {
    color: #fff;
    font-size: 13px;
}

.site-footer ul {
    margin-bottom: 0px;
    list-style: none;
}

.site-footer ul li,
.site-footer ul li a {
    color: #fff;
    font-size: 16px;
    line-height: 35px;
}

.float-button {
    border: 0px;
    width: 70px;
    height: 70px;
    background: #29a71a;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 4px 4px 8px 0px #00000029;
    position: fixed;
    z-index: 10000;
    cursor: pointer;
    /* bebas sesuaikan posisi */
    bottom: 20px;
    right: 20px;
}

.float-button svg {
    width: 40px;
    height: 40px;
}

.float-wrapper {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10000;
}

/* tooltip */
.float-tooltip {
    position: absolute;
    bottom: 90px;
    /* jarak atas dari tombol */
    right: 0;
    background: white;
    padding: 10px 15px;
    border-radius: 12px;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.15);
    font-size: 16px;
    color: #964A21;
    font-weight: 400;
    text-align: center;
    font-family: calder;
    opacity: 0;
    pointer-events: none;
    transform: translateY(5px);
    transition: opacity .25s ease, transform .25s ease;
    white-space: nowrap;
}

/* segitiga */
.float-tooltip::after {
    content: "";
    position: absolute;
    bottom: -8px;
    right: 25px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid white;
}

/* show on hover */
.float-wrapper:hover .float-tooltip {
    opacity: 1;
    transform: translateY(0);
}

.m-menu-btn span,
.m-menu-btn span:before,
.m-menu-btn span:after {
    background-color: #964a21;
}

.site-logo {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
    position: relative;
}

.site-logo img {
    height: 100px;
}

.section-lesson,
.on-profile .site-lesson {
    background: #964A2180;
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 24px 60px;

    color: white;
    margin-top: 30px;
}

.section-lesson.on-profile {
    backdrop-filter: none;
    background: transparent;
    color: #964A21;
    border-radius: 0px;
    margin-top: 0px;
    padding: 0px;
}

.on-profile .site-lesson {
    background: #EEECE7;
    color: #964A21;
}

.site-lesson:first-child {
    margin-top: 0px;
    border-top: 0px;
}

.site-lesson {
    position: relative;
    display: flex;
    gap: 50px;
    border-top: 1px solid #ffffff2b;
    padding-top: 30px;
}

.site-lesson .lesson-group,
.site-lesson .couch-group .couch-profile {
    display: flex;
    align-items: center;
    gap: 20px;
}

.site-lesson .lesson-group,
.site-lesson .couch-group {
    width: 40%;
    align-content: center;
}

.site-lesson .couch-group p {
    color: white !important;
}

.site-lesson .profile p,
.site-lesson .date {
    font-size: 24px;
    color: white !important;
    align-content: center;
    line-height: 30px;
}

.on-profile .site-lesson .svg svg path,
.on-profile .site-lesson .couch-group p,
.on-profile .site-lesson .profile p,
.on-profile .site-lesson .court p,
.on-profile .site-lesson .date {
    color: #964A21 !important;
    fill: #964A21 !important;
}

.site-lesson .chevron-next {
    position: absolute;
    /* rotate: 270deg; */
    transition: transform 0.5s ease;
    right: 20px;
    top: calc(50% - 20px);
    cursor: pointer;
}

.site-lesson .svg {
    display: flex;
    align-items: center;
}

.site-lesson .court {
    align-content: center;
}

.site-lesson .court p {
    color: white !important;
    margin-bottom: 0px;
    font-size: 18px;
    text-align: left;
    font-family: 'calder';
}

.site-lesson .couch-group .couch-profile .couch img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50px;
}

.list-contact {
    list-style: none;
}

.list-contact li {
    margin-bottom: 10px;
    display: flex;
    gap: 10px;
}

.list-contact li {
    margin-bottom: 10px;
    display: flex;
    gap: 10px;
}

.list-contact li:last-child {
    margin-bottom: 0px;
}

.list-contact li img {
    width: 48px;
    height: 48px;
}

.list-contact li span {
    align-content: center;
    font-size: 16px;
    color: #964a21 !important;
    line-height: 25px;
    font-family: calder;
}

.container-header.steps ul {
    list-style: none;
    display: flex;
    width: 100%;
    place-content: space-between;
    padding: 0px;
}

.container-header.steps ul li.active {
    color: #964A21;
}

.container-header.steps ul li {
    font-size: 16px;
    padding-bottom: 20px;
    width: 100%;
    cursor: pointer;
    color: #964a2173;
    border-bottom: 4px solid;
    font-family: calder-dark;
}

.experience {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    /* justify-content: center; */
}

.experience .content {
    background: #D8D4CB;
    width: calc(50% - 10px);
    padding: 60px 35px;
    border-radius: 16px;
    cursor: pointer;
    margin-bottom: 20px;
    align-content: center;
}

.experience .content p {
    font-family: calder-dark;
    margin-bottom: 0px;
    text-align: center;
    font-size: 32px;
}

.experience .content.active {
    background: #964a21;
}

.experience .content.active p {
    color: white !important;
}

.packages {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px auto;
}

.package-card {
    user-select: none;
    background: #EEECE7;
    width: 260px;
    border-radius: 16px;
    padding: 22px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: 0.2s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
}

.package-card.active {
    border-color: #9c4a14;
    background: #9c4a14;
    color: #fff;
}

.package-card.active h2,
.package-card.active p,
.package-card.active ul li,
.package-card.active .price {
    color: #fff !important;
}

.package-card h2 {
    font-size: 22px;
    color: #964A21;
    font-family: calder-dark;
    margin-bottom: 35px;
}

.package-card ul {
    list-style: disc;
    padding-left: 18px;
    font-size: 14px;
    margin-bottom: 35px;
}

.package-card ul li {
    color: #964A21;
    font-family: calder;
    text-transform: uppercase;
    font-size: 16px;
}

.package-card .price {
    color: #964A21;
    font-family: calder-dark;
    font-weight: bold;
    margin-bottom: 35px;
}

.extra {
    text-align: center;
    font-size: 12px;
}

.qty {
    display: flex;
    align-items: center;
    background: white;
    gap: 12px;
    justify-content: space-between;
    margin-top: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
    border-radius: 14px;
}

.qty button {
    width: auto;
    height: 24px;
    border-radius: 50%;
    border: none;
    background: #fff;
    cursor: pointer;
}

.qty span {
    font-size: 16px;
    color: #964a21;
    font-family: calder-dark;
}

.package-card.active .qty button {
    background: #fff;
}

.continue-btn {
    margin-top: 20px;
    padding: 12px 20px;
    background: #9c4a14;
    border: none;
    color: #fff;
    border-radius: 10px;
    cursor: pointer;
}

.overlay-player {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    overflow-y: auto;
    z-index: 9999;
    background: #000000c4;
    align-content: center;
}

.overlay-player .continue,
.continue {
    place-self: center;
    width: 90%;
    text-align: center;
}

/* Layout */
.profile-wrapper {
    display: flex;
    background: #C7BFAE;
    min-height: 100vh;
}

/* Profile Card */
.profile-card {
    flex: 1;
    background: white;
    padding: 25px;
    border-radius: 14px;
}

.profile-card .profile-line {
    height: 42px;
}

.profile-card .profile-line .title-profile {
    font-family: calder !important;
    font-weight: 800;
    font-size: 28px;
    line-height: 100%;
    vertical-align: middle;
    text-transform: uppercase;
    color: #964A21;
}

.profile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 56px;
    margin-top: 10px;
}

.profile-header .subtitle-profile {
    font-family: calder !important;
    font-weight: 600;
    font-size: 20px;
    vertical-align: middle;
    color: #8B4A2E;
    /* Brown */

}

.edit-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #F4EFE7;
    /* soft cream */
    border: none;
    padding: 6px 12px;
    border-radius: 10px;
    cursor: pointer;
    font-family: calder !important;
    font-size: 16px;
    color: #8B4A2E;
}

.edit-btn svg {
    width: 16px;
    height: 16px;
}

.divider-line {
    border: none;
    border-bottom: 2px solid #c0927a;
    /* soft brown line */
    width: 100%;
    margin: 0;
    margin-bottom: 12px;
}

.avatar-box {
    margin-bottom: 25px;
    position: relative;
}

.avatar-box img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 24px;
    column-gap: 40px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.info-item label {
    font-family: calder !important;
    font-size: 18px;
    font-weight: 400;
    color: #C0927A;
    display: block;
    margin-bottom: 4px;
    letter-spacing: 0%;
    vertical-align: middle;

}

.info-item p {
    font-family: calder !important;
    font-size: 18px;
    font-weight: 400;
    color: #964A21;
    /* Dark brown */
    margin: 0;
}

/* Baris kedua hanya punya 2 kolom → auto rapi */
.info-item:nth-child(4),
.info-item:nth-child(5) {
    grid-column: span 1;
}

.sidebar {
    width: 300px;
    border-radius: 16px;
    margin-right: 50px;
}

.sidebar ul {
    background: white;
    list-style: none;
    padding: 0;
    border-radius: 16px;
}

.sidebar li {
    padding: 12px;
    display: flex;
    gap: 10px;
    cursor: pointer;
}

.sidebar ul li {
    border: 1px solid #EEECE7;
    /* light brown */
    border-left: none;
    border-right: none;
    color: #9C6A4F;
    /* warna text brown */
}

.sidebar ul li svg.icon {
    width: 20px;
    height: 20px;
}

.sidebar ul li svg.icon path {
    fill: #C0927A;
    /* Color default */
}
.sidebar .toggle {
    display: none;
}
.sidebar ul li a span, .sidebar .toggle {
    font-family: calder !important;
    color: #C0927A;
    font-weight: 400;
    font-size: 18px;
    margin-left: 5px;
    vertical-align: super;
}

.sidebar ul li.active a span {
    color: #964A21 !important;
}

.sidebar ul li.active a svg.icon path {
    fill: #964A21 !important;
}

.sidebar ul li:first-child {
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

.sidebar ul li:last-child {
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
}

.sidebar ul li:not(:first-child):not(:last-child) {
    border-radius: 0;
    /* li tengah tidak punya radius */
}



/* Jika item aktif adalah ITEM PERTAMA */
.sidebar ul li.active:first-child {
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

/* Jika item aktif adalah ITEM TERAKHIR */
.sidebar ul li.active:last-child {
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
}

/* Jika aktif berada di tengah → tetap tanpa radius */
.sidebar ul li.active:not(:first-child):not(:last-child) {
    border-radius: 0px;
}

.sidebar .active {
    background: #eee8df;
    font-weight: 600;
}

@media (min-width: 1200px) {
    .container {
        width: 1400px;
        max-width: 100%;
    }

    .md-none {
        display: none !important;
    }
}

@media (max-width: 900px) {
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 750px) {
    .sidebar .toggle {
        cursor: pointer;
        width: 100%;
        padding: 12px;
        position: relative;
        border-radius: 16px;
        background: #eee8df;
        margin-left: 0px !important;
        color: #964A21;
        display: block;
        margin-bottom: 10px;
    }   
    .chevron-open {
        position: absolute;
        right: 10px;
        top: 10px;
        transition: transform 0.5s ease;
    }
    .sidebar ul {
        display: none;
    }
    .sidebar {
        margin-bottom: 40px;
        width: 100%;
        margin-right: 0px;
    }

    .profile-wrapper {
        flex-wrap: wrap;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .list-schedule {
        height: 300px;
        overflow-y: auto;
    }

    .fields .time {
        width: 100px !important;
        flex: 0 0 100px;
        max-width: 100px !important;
    }

    .fields .content .item {
        width: 250px !important;
        flex: 0 0 250px;
        max-width: 250px !important;
    }

    .container-header {
        overflow-x: auto;
    }

    .container-header.steps ul {
        width: 600px;
    }

    .package-card {
        width: 90%;
    }

    .packages {
        flex-wrap: wrap;
    }

    .experience .content {
        padding: 20px 0px;
    }

    .experience .content p {
        font-size: 16px;
    }

    .form-auth h4,
    .form-auth h5 {
        font-size: 32px;
    }

    .list-couch {
        place-content: center;
        gap: 20px;
    }

    .list-couch .profile {
        width: 100%;
    }

    .dropdown.category {
        justify-self: center;
        position: relative;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .site-setting {
        margin-right: 15px;
    }

    .site-setting .user {
        /* display: none !important; */
    }

    .m-menu-btn {
        position: absolute;
        right: 70px;
        top: calc(50% - 28px);
    }

    .site-lesson {
        flex-direction: column;
        gap: 20px;
    }

    .section-lesson {
        padding: 20px;
    }

    .site-lesson .lesson-group,
    .site-lesson .couch-group {
        width: 100%;
    }

    .on-profile .site-lesson .date {
        align-content: center;
        text-align: center;
    }

    .on-profile .site-lesson:first-child,
    .on-profile .site-lesson {
        padding: 20px;
    }

    .site-lesson:first-child {
        padding-top: 0px;
    }

    .site-lesson {
        margin-top: 30px;
    }

    .site-lesson .chevron-next {
        top: 24px;
    }

    .single-slide h1 {
        font-size: 22px;
    }

    .m-menu ul {
        backdrop-filter: blur(10px);
        background-color: rgba(255, 255, 255, 0.6);
    }

    .m-menu ul>.menu-item.active,
    .m-menu ul .menu-item a:hover {
        background: #964a21;
    }

    .m-menu ul .menu-item.active a,
    .m-menu ul .menu-item a:hover {
        color: white !important;
        border: 0px;
    }

    .owl-next {
        top: -90px;
        left: unset;
        right: 0px;
    }

    .owl-prev {
        top: -90px;
        left: unset;
        right: 60px;
    }
}