body {
    margin: 0;
    font-family: 'Outfit', 'Poppins', sans-serif;
    background: #020617;
    overflow-x: hidden;
    width: 100%;
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
    width: 100%;
}

/* ── HIDE SCROLLBAR GLOBALLY (For Premium App Feel) ── */
* {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

*::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari and Opera */
}

/* CONTAINER */
.container {
    padding: 0 50px;
}

/* ── MOBILE RESPONSIVENESS (Fixes Scrollbar Padding Issues) ── */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
}

.categories {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 5px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.categories::-webkit-scrollbar {
    display: none;
}

.home-header {
    background: #2c365a;
    padding: 15px;
    border-radius: 20px;
    margin-top: 20px;
}

/* TOP BAR */
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

/* LOGO */
.logo {
    font-size: 22px;
    font-weight: bold;
    color: white;
}

/* ICONS */
.icons i {
    color: white;
    font-size: 18px;
    margin-left: 15px;
    background: linear-gradient(135deg, #D2AD53);
    padding: 8px;
    border-radius: 50%;
}

/* SEARCH BOX */
.search-box {
    margin-top: 8px;
    background: white;
    border-radius: 25px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.search-box i {
    color: gray;
    margin-right: 10px;
}

.search-box span {
    color: gray;
}

/* SLIDER */
.slider {
    margin-top: 15px;
    overflow: hidden;
    border-radius: 15px;
}

.slides {
    display: flex;
    width: 500%;
    animation: slide 15s infinite;
}

.slide {
    width: 100%;
    position: relative;
}

.slide img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 15px;
}

/* GRADIENT OVERLAY */
.slide::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.5),
            rgba(0, 0, 0, 0.1));
    border-radius: 15px;
}

/* TAGLINE */
.tagline {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    color: white;
    font-size: 16px;
    font-weight: bold;
    z-index: 2;
    background: rgba(0, 0, 0, 0.4);
    padding: 6px 12px;
    border-radius: 10px;
}

/* SLIDE ANIMATION */
@keyframes slide {
    0% {
        margin-left: 0;
    }

    20% {
        margin-left: 0;
    }

    25% {
        margin-left: -100%;
    }

    45% {
        margin-left: -100%;
    }

    50% {
        margin-left: -200%;
    }

    70% {
        margin-left: -200%;
    }

    75% {
        margin-left: -300%;
    }

    95% {
        margin-left: -300%;
    }

    100% {
        margin-left: -400%;
    }
}

/* DOTS */
.dots {
    text-align: center;
    margin-top: 8px;
}

.dots span {
    height: 8px;
    width: 8px;
    margin: 3px;
    background: gray;
    display: inline-block;
    border-radius: 50%;
}

/* CATEGROY */
/* CATEGORY */
.category-section {
    margin-top: 20px;
}

.category-section h3 {
    color: #fff;
}

.categories {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 5px;
}

.category {
    background: #1f2a46;
    /* new bg */
    padding: 10px;
    border-radius: 15px;

    text-align: center;
    cursor: pointer;

    min-width: fit-content;
    /* width auto */
}

.category.active {
    background: linear-gradient(135deg,#D2AD53);
    color: #000;
    font-weight: 600;
}

.category img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.category p {
    color: white;
    font-size: 13px;
}

/* SERVICES */
.services-section {
    margin-top: 20px;
}

.services-section h3 {
    color: #fff;
}

.services {
    display: flex;
    gap: 10px;
    overflow-x: auto;
}

.service {
    min-width: 120px;
    background: white;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
}

/* GRID */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

/* CARD */
.service-card {
    background: #0f172a;
    /* navy */
    border-radius: 15px;
    border: 1px solid #1e293b;
    overflow: hidden;
    color: white;
}

/* IMAGE BOX */
.img-box {
    position: relative;
    width: 100%;
    height: 120px;
    /* approx 50% feel */
}

.img-box::after {
    pointer-events: none;
}

.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* HEART */
.img-box i {
    position: absolute;
    top: 8px;
    right: 8px;

    background: #1f2a46;
    color: #fff;
    padding: 6px;
    border-radius: 50%;
    font-size: 12px;

    z-index: 5;
    cursor: pointer;
}

.wishlisted {
    color: #D2AD53 !important;
}

/* INFO */
.service-info {
    padding: 10px;
}

.service-info h4 {
    margin: 5px 0;
    font-size: 14px;
}

/* RATING */
.rating {
    font-size: 12px;
    color: #D2AD53;
}

/* PRICE ROW */
.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
}

/* PLUS ICON */
.price-row i {
    background: linear-gradient(135deg,#D2AD53);
    color: black;
    padding: 6px;
    border-radius: 50%;
    font-size: 12px;
}

.services-list {
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 80px;
}

/* MOBILE VIEW (Screens under 768px) */
@media (max-width: 767px) {
    .services-list > div {
        width: 100%;
        margin-bottom: 15px;
    }
}

/* TABLET VIEW (Screens between 768px and 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
    .services-list > div {
        width: calc(50% - 10px);
        margin-right: 20px;
        margin-bottom: 20px;
    }
    .services-list > div:nth-child(2n) {
        margin-right: 0;
    }
}

/* DESKTOP VIEW (Screens 1024px and above) */
@media (min-width: 1024px) {
    .services-list > div {
        width: calc(33.333% - 14px);
        margin-right: 20px;
        margin-bottom: 20px;
    }
    .services-list > div:nth-child(3n) {
        margin-right: 0;
    }
}

.service-card-list {
    display: flex; /* Changed from grid to flex to avoid gap */
    align-items: center;
    background: #1f2a46;
    border-radius: 15px;
    padding: 12px;
    color: white;
    width: 100%;
    box-sizing: border-box;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card-list:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.service-card-list img {
    width: 90px;
    height: 90px;
    border-radius: 12px;
    object-fit: cover;
    margin-right: 15px; /* Replaced gap with margin */
    flex-shrink: 0;
}

.service-card-list .content {
    flex-grow: 1;
    width: calc(100% - 105px);
}

.top {
    display: flex;
    justify-content: space-between;
}

.bottom {
    display: flex;
    justify-content: space-between;
}

.bottom button {
    background: linear-gradient(135deg, #d6b561, #cfa544);
    border: none;
    padding: 5px 10px;
    border-radius: 8px;
}



/* ICON */
.nav-item i {
    font-size: 15px;
    margin-bottom: 2px;
}

/* ACTIVE (PURE YELLOW 🔥) */
.nav-item.active {
    color: #d6b561;
    /* yellow */
}

/* REMOVE old icon bg */
.nav-item.active i {
    background: none;
    color: #d6b561;
    padding: 0;
}

/* TOAST POPUP */
.toast {
    position: fixed;
    bottom: 80px;
    /* navbar ke upar */
    left: 50%;
    transform: translateX(-50%) translateY(20px);

    background: #1f2a46;
    /* blue */
    color: white;

    padding: 10px 15px;
    border-radius: 10px;

    font-size: 13px;

    display: flex;
    align-items: center;
    gap: 8px;

    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease;

    z-index: 2000;
}

/* SHOW */
.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ICON */
.toast i {
    color: #d6b561;
    /* yellow tick */
}

/* NOTIFICATION CONTAINER */
.noti-container {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* CARD */
.noti-card {
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 12px;
    border-radius: 15px;

    background: rgba(255, 255, 255, 0.08);
    /* glass effect */
    backdrop-filter: blur(10px);

    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ICON */
.noti-icon {
    background: linear-gradient(135deg, #d6b561, #cfa544);
    padding: 10px;
    border-radius: 50%;
    color: black;
}

/* TEXT */
.noti-text {
    color: white;
    font-size: 14px;
}

.page-title {
    color: white;
    margin-top: 20px;
}

/* HEADER */
.noti-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.noti-header h2 {
    color: white;
}

.noti-header button {
    background: linear-gradient(135deg, #d6b561, #cfa544);
    border: none;
    padding: 6px 12px;
    border-radius: 8px;
    cursor: pointer;
}

/* TIME */
.noti-time {
    font-size: 11px;
    color: #ccc;
}

.noti-btn {
    background-color: #1f2a46;
    color: #fff;
    padding: 7px;
    border-radius: 8px;
    border: 1px solid #fff;
}


/* SEARCH HEADER */
.search-top {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 40px;
    position: relative;
    z-index: 50;
}

.search-header {
    flex: 1;
    display: flex;
    align-items: center;
    background: #1f2a46;
    border-radius: 20px;
    padding: 12px;
}

.search-header input {
    border: none;
    outline: none;
    flex: 1;
    background: #1f2a46;
    color: #fff;
}

.clear-btn {
    display: none;
    color: #fff;
}

.filter-section h4 {
    color: #fff;
}

.filter-panel {
    display: none;
    background: #1f2a46;
    padding: 10px;
    border-radius: 10px;
    margin-top: 10px;
}

.filter-options span {
    padding: 5px 10px;
    background: #2b3555;
    border-radius: 10px;
    margin: 3px;
    display: inline-block;
    color: white;
}

.filter-options span.active {
    background: linear-gradient(135deg, #d6b561, #cfa544);
    color: black;
}

.result-count {
    color: white;
    margin: 10px 0;
}

.back-btn,
.sort-btn {
    background: #1f2a46;
    padding: 10px;
    color: #fff;
    border-radius: 50%;
}

/* SHOP PAGE */

.shop_container {
    padding: 15px 50px;
    margin-bottom: 80px;
}

/* TOP */
.shop_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
}

.shop_title {
    font-size: 18px;
}

.shop_back,
.shop_cart {
    font-size: 18px;
    cursor: pointer;
}

/* SEARCH */
.shop_search_box {
    margin-top: 15px;
    background: white;
    border-radius: 25px;
    padding: 10px;
    display: flex;
    align-items: center;
}

.shop_search_box input {
    border: none;
    outline: none;
    margin-left: 10px;
    width: 100%;
}

/* PRODUCTS GRID */
.shop_products {
    margin-top: 15px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

/* CARD */
.shop_card {
    background: #1f2a46;
    border-radius: 15px;
    padding: 10px;
    color: white;
}

.shop_card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
}

.shop_card h4 {
    margin: 8px 0;
    font-size: 14px;
}

/* PRICE */
.shop_price_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.shop_price_row button {
    background: linear-gradient(135deg, #d6b561, #cfa544);
    border: none;
    padding: 5px 10px;
    border-radius: 8px;
}

.cart_icon_box {
    position: relative;
}

.cart_badge {
    position: absolute;
    top: -5px;
    right: -8px;

    background: #d6b561;
    color: black;

    font-size: 10px;
    padding: 2px 6px;
    border-radius: 50%;
}



/* ================= CART PAGE ================= */

.cart_container {
    padding: 20px;
    padding-bottom: 100px;
}

/* TOP BAR */
.cart_top {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.cart_back {
    font-size: 18px;
    color: white;
    cursor: pointer;
}

.cart_top h2 {
    color: white;
    font-size: 18px;
}

/* CART ITEM */
.cart_item {
    display: flex;
    gap: 12px;
    background: #1f2a46;
    padding: 10px;
    border-radius: 15px;
    margin-bottom: 12px;
}

/* IMAGE */
.cart_item img {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    object-fit: cover;
}

/* INFO */
.cart_info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* TOP ROW */
.cart_top_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart_top_row h4 {
    color: white;
    font-size: 14px;
    margin: 0;
}

.cart_top_row i {
    color: #ff4d4d;
    cursor: pointer;
}

/* PRICE */
.cart_price {
    color: #d6b561;
    font-weight: bold;
    margin-top: 5px;
}

/* BOTTOM ROW */
.cart_bottom_row {
    display: flex;
    justify-content: flex-end;
}

/* QTY BOX */
.cart_qty {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart_qty button {
    background: linear-gradient(135deg, #d6b561, #cfa544);
    border: none;
    padding: 4px 8px;
    border-radius: 6px;
    cursor: pointer;
}

.cart_qty span {
    color: white;
}

/* SUMMARY BOX */
.cart_summary {
    position: fixed;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);

    width: calc(100% - 100px);
    /* container padding match */
    max-width: 100%;

    background: #1f2a46;
    padding: 15px 20px;

    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

/* ROW */
.cart_row {
    display: flex;
    justify-content: space-between;
    color: white;
    margin-bottom: 8px;
}

/* CHECKOUT BUTTON */
.cart_checkout {
    width: 100%;
    margin-top: 10px;

    background: linear-gradient(135deg, #d6b561, #cfa544);
    border: none;

    padding: 12px;
    border-radius: 10px;

    font-weight: bold;
    cursor: pointer;
}


/* BOOKING */

.booking_container {
    padding: 20px;
    padding-bottom: 100px;
}

/* STEPS */
.booking_steps {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.step {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #1f2a46;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step.active {
    background: linear-gradient(135deg, #d6b561, #cfa544);
}

.line {
    height: 2px;
    width: 50px;
    background: gray;
}

/* TITLE */
.booking_title {
    color: white;
}

/* LOCATION BTN */
.booking_location_btn {
    width: 100%;
    padding: 10px;
    margin: 10px 0;

    background: linear-gradient(135deg, #d6b561, #cfa544);
    border: none;
    border-radius: 10px;
}

/* FORM */
.booking_form input {
    width: 90%;
    /* ya 85% / 80% */
    margin: 0 auto 10px auto;
    display: block;
    padding: 10px;
    margin-bottom: 10px;

    border-radius: 8px;
    border: none;
    background: #1f2a46;
    color: #fff;
}

/* ROW */
.row {
    display: flex;
    gap: 10px;
    width: 100%;
    /* ya 85% / 80% */
    margin: 0 auto 10px auto;
    display: block;
}

/* MAP */
#map {
    height: 200px;
    border-radius: 15px;
    margin-top: 10px;
    position: relative;
}

#map-loading-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(15, 23, 42, 0.9);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    border-radius: 15px;
}

#map-loading-overlay .spinner {
    width: 30px; height: 30px;
    border: 3px solid rgba(255,255,255,0.2);
    border-top: 3px solid #d6b561;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 10px;
}

@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

/* SUMMARY */
.booking_summary {
    margin-top: 15px;
    background: #1f2a46;
    padding: 15px;
    border-radius: 15px;
}

.booking_summary p {
    color: white;
}

.booking_summary button {
    width: 100%;
    margin-top: 10px;
    padding: 12px;

    background: linear-gradient(135deg, #d6b561, #cfa544);
    border: none;
    border-radius: 10px;
}

/* STEP 2 */

/* DAYS */
.date_days,
.date_numbers {
    display: flex;
    justify-content: space-between;
    margin: 5px 0;
}

.date_days div,
.date_numbers div {
    flex: 1;
    text-align: center;
    color: white;
    font-size: 12px;
}

/* SELECTED DATE */
.date_numbers div {
    padding: 8px;
    border-radius: 8px;
    cursor: pointer;
}

.date_numbers .active {
    background: linear-gradient(135deg, #d6b561, #cfa544);
}

/* TIME */
.time_slots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 15px;
}
.time_box {
    padding: 12px;
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
    font-weight: 500;
    color: #cbd5e1;
    font-size: 13px;
}
.time_box.active {
    background: linear-gradient(135deg, #d6b561, #cfa544);
    border-color: #d6b561;
    color: #020617;
}

#step2Btn {
    width: 100%;
    margin-top: 15px;
    padding: 14px;
    border: none;
    border-radius: 12px;
    background: #1e293b;
    color: #64748b;
    font-weight: 700;
    font-size: 15px;
    transition: 0.3s;
}

.date_container {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 15px 5px;
    scrollbar-width: none;
}
.date_box {
    min-width: 75px;
    height: 95px;
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
    transition: 0.3s;
    color: #94a3b8;
}
.date_box.active {
    background: linear-gradient(135deg, #d6b561, #cfa544) !important;
    border-color: #d6b561 !important;
    color: #020617 !important;
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(214, 181, 97, 0.4);
}

.time_box.active {
    background: linear-gradient(135deg, #d6b561, #cfa544) !important;
    border-color: #d6b561 !important;
    color: #020617 !important;
}

/* COMPLETED STEP (PURE YELLOW 🔥) */
.step.completed {
    background: #d6b561;
    color: black;
}

.step.completed+.line {
    background: #d6b561;
}

/* EXPERT BOX */
.expert_box {
    background: #1f2a46;
    border-radius: 15px;
    padding: 15px;
    margin-top: 15px;
    color: white;
    text-align: center;
}

.expert_box h4 {
    margin-bottom: 5px;
}

.expert_box p {
    font-size: 13px;
    color: #ccc;
}

/* PAY BUTTON */
.pay_btn {
    width: 100%;
    margin-top: 10px;
    padding: 12px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, #d6b561, #cfa544);
    font-weight: bold;
    cursor: pointer;
}

/* CHECKOUT */
.checkout_container {
    display: flex;
    gap: 20px;
    padding: 20px;
}

.checkout_left,
.checkout_right {
    flex: 1;
    background: #1f2a46;
    padding: 15px;
    border-radius: 15px;
    color: white;
}

.order_item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.checkout_row {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.checkout_row.total {
    font-weight: bold;
}

/* PAYMENT */
.pay_option {
    background: #2c3555;
    padding: 10px;
    border-radius: 10px;
    margin-top: 10px;
    cursor: pointer;
}

.pay_option.active {
    background: #d6b561;
    color: black;
}

.pay_option.disabled {
    opacity: 0.5;
}

/* BUTTON */
#payBtn {
    width: 100%;
    margin-top: 15px;
    padding: 12px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, #d6b561, #cfa544);
}

/* SUCCESS */
.success_container {
    padding: 20px;
    text-align: center;
    color: white;
}

.success_card {
    background: #1f2a46;
    padding: 15px;
    border-radius: 15px;
    margin: 15px 0;
}

.success_btn {
    padding: 10px;
    background: #1f2a46;
    color: #fff;
    border-radius: 10px;
    border: none;
}

/* ================= BODY FIX ================= */

.profile_container{
    margin: 10px 20px;
}

/* ================= TOP BOX ================= */
.profile_top_box {
    height: 180px;
    background: linear-gradient(135deg, #d6b561, #cfa544);
    padding: 20px;
    border-radius: 0 0 40px 40px;
    color: black;
}

/* HEADER ROW */
.profile_top_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ICON */
.profile_icon {
    background: #1f2a46;
    color: #d6b561;
    padding: 10px;
    border-radius: 50%;
}

/* USER INFO */
.profile_user_info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}

/* LEFT ICON */
.profile_user_left {
    background: #1f2a46;
    color: #d6b561;

    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    font-size: 22px;
}

/* RIGHT TEXT */
.profile_user_right h3 {
    margin: 0;
    font-size: 16px;
}

.profile_user_right p {
    margin: 2px 0 0;
    font-size: 13px;
}

/* ================= OVERLAP SECTION ================= */
.profile_section {
    margin: -50px 15px 20px;
    /* 🔥 overlap magic */
}

/* ================= EDIT BUTTON ================= */
.profile_edit_btn {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 15px;
    background: #1f2a46;
    color: white;
    margin-bottom: 15px;

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* ================= GROUP CARD ================= */
.profile_group_card {
    background: #1f2a46;
    border-radius: 20px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* ================= ITEMS ================= */
.profile_item {
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #C7D2FF;
    transition: 0.2s;
    cursor: pointer;
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.profile_item:last-child {
    border-bottom: none;
}

.profile_item span {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 15px;
}

.profile_item span i {
    width: 20px;
    text-align: center;
    color: #d6b561; /* Theme gold */
}

/* HOVER */
.profile_item:hover {
    background: rgba(255, 255, 255, 0.03);
}

/* ICON RIGHT */
.profile_item > i {
    font-size: 12px;
    opacity: 0.5;
}
 
/* LOGOUT & DELETE ACCOUNT */
.profile_item.logout {
    color: #ff4d4d;
    font-weight: 600;
}

.profile_item.dlt-account {
    color: #ff4d4d;
}

/* ================= DROPDOWN ================= */
.profile_dropdown {
    display: none;
    background: #26335c;
    padding: 12px;
    border-radius: 12px;
    margin-bottom: 12px;
    font-size: 13px;
}

/* ================= VERSION ================= */
.profile_version {
    text-align: center;
    color: #8FA3C8;
    font-size: 12px;
    margin-top: 15px;
}

/* LOADING */
.orders_loading_box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 200px;
    color: #C7D2FF;
    font-size: 14px;
}

.orders_loading_box i {
    font-size: 30px;
    margin-bottom: 10px;
}

/* EMPTY STATE */
.no_orders {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
    color: #C7D2FF;
    font-size: 14px;
}

/* ORDERS */
.orders_container {
    padding: 20px;
    color: white;
}

/* TABS */
.orders_tabs {
    display: flex;
    gap: 10px;
    margin: 15px 0;
}

.tab {
    padding: 6px 12px;
    background: #1f2a46;
    border-radius: 20px;
    cursor: pointer;
    font-size: 13px;
}

.tab.active {
    background: #d6b561;
    color: black;
}

.time_box.active {
    background: linear-gradient(135deg, #d6b561, #cfa544);
    border-color: #d6b561;
    color: #020617;
}

/* CARD */
.order_card {
    background: #1f2a46;
    padding: 15px;
    border-radius: 15px;
    margin-bottom: 12px;
}

/* TOP */
.order_top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

/* STATUS COLORS */
.status {
    font-size: 12px;
    padding: 3px 8px;
    border-radius: 10px;
}

.status.upcoming {
    background: orange;
}

.status.completed {
    background: green;
}

.status.cancelled {
    background: red;
}

/* BUTTON */
.order_card button {
    margin-top: 10px;
    width: 100%;
    padding: 8px;
    border: none;
    border-radius: 10px;
    background: red;
    color: white;
}




.login-wrapper {
    font-family: system-ui;
    background: #141c33;
    /* same dark navy */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: white;
    width: 100%;
    max-width: 360px;
    text-align: center;
}

/* CARD */
.box {
    background: #18213a;
    padding: 22px;
    border-radius: 22px;
}

/* ICON */
.logo {
    width: 10px;
    height: 10px;
    margin: auto;
    background: linear-gradient(135deg, #D2AD53);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #141c33;
    font-size: 20px;
}

/* TEXT */
h1 {
    font-size: 20px;
    margin: 12px 0 5px;
}

.sub {
    font-size: 13px;
    color: #a9b4c7;
}

/* TOGGLE */
.toggle {
    display: flex;
    background: #0f172a;
    border-radius: 12px;
    padding: 4px;
    margin: 18px 0;
}

.toggle button {
    flex: 1;
    border: none;
    background: transparent;
    color: #9aa6bd;
    padding: 10px;
    border-radius: 10px;
    cursor: pointer;
}

.toggle .active {
    background: #1f2a44;
    color: white;
}

/* INPUT */
.input_box {
    display: flex;
    align-items: center;
    background: #0f172a;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid #2a3550;
}

.input_box i {
    color: #d4af37;
    margin-right: 10px;
}

.input_box input {
    border: none;
    outline: none;
    background: transparent;
    color: white;
    width: 100%;
}

/* BUTTON */
.btn {
    width: 100%;
    margin-top: 15px;
    padding: 12px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #d4af37, #b88a1d);
    color: #141c33;
    font-weight: 600;
    cursor: pointer;
}

/* LINK */
.link {
    display: block;
    margin-top: 15px;
    color: #d4af37;
    font-size: 13px;
}

/* FOOTER */
.footer {
    margin-top: 18px;
    font-size: 11px;
    color: #8fa0bc;
}

.footer span {
    color: #d4af37;
}

/* TOAST */
#toast {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #000;
    padding: 10px 18px;
    border-radius: 10px;
    opacity: 0;
    transition: 0.3s;
}

#toast.show {
    opacity: 1;
    bottom: 40px;
}

/* ── SERVICE DETAIL PAGE (Prefix: sdetail_) ── */
.sdetail_container {
    background: #020617;
    min-height: 100vh;
    padding-bottom: 90px;
    font-family: 'Poppins', sans-serif;
}

.sdetail_header {
    position: relative;
    height: 350px;
    width: 100%;
    overflow: hidden;
}

.sdetail_main_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sdetail_top_nav {
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    z-index: 10;
}

.sdetail_nav_btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e293b;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: none;
    cursor: pointer;
    transition: 0.2s;
}

.sdetail_nav_btn:active {
    transform: scale(0.9);
}

.sdetail_nav_btn.wishlist.active {
    color: #ef4444;
}

/* Boxes */
.sdetail_content {
    padding: 0 20px;
    margin-top: -50px;
    /* Overlap image */
    position: relative;
    z-index: 20;
}

.sdetail_card {
    background: #0f172a;
    padding: 20px;
    border-radius: 20px;
    margin-bottom: 15px;
    border: 1px solid #1e293b;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.sdetail_main_info h1 {
    font-size: 22px;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 8px;
}

.sdetail_meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.sdetail_rating {
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
    padding: 4px 10px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.sdetail_duration {
    font-size: 13px;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 4px;
}

.sdetail_price {
    font-size: 24px;
    font-weight: 700;
    color: #3b82f6;
}

.sdetail_section_title {
    font-size: 16px;
    font-weight: 600;
    color: #f1f5f9;
    margin-bottom: 10px;
    display: block;
}

.sdetail_text {
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.6;
}

/* Bottom Buttons */
.sdetail_actions {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #0f172a;
    padding: 15px 20px;
    display: flex;
    gap: 12px;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3);
    border-top: 1px solid #1e293b;
    z-index: 100;
}

.sdetail_btn {
    flex: 1;
    padding: 14px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    cursor: pointer;
    transition: 0.2s;
    text-decoration: none;
    border: none;
    font-family: 'Poppins', sans-serif;
}

.sdetail_btn_cart {
    background: #1e293b;
    color: #f1f5f9;
    border: 1px solid #334155;
}

.sdetail_btn_book {
    background: #3b82f6;
    color: white;
}

.sdetail_btn:active {
    transform: translateY(2px);
}

/* ── SUB-PAGE GLOBAL STYLES (For Profile Sections) ── */
.subpage_container {
    padding: 20px 50px;
    min-height: 100vh;
    background: #020617;
    color: #f1f5f9;
    padding-bottom: 100px;
}

@media (max-width: 768px) {
    .subpage_container { padding: 15px; }
}

.subpage_header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.subpage_back_btn {
    width: 40px;
    height: 40px;
    background: #1f2a46;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: 0.2s;
}

.subpage_back_btn:hover { background: #2d3b5e; transform: translateX(-3px); }

.subpage_title {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

.subpage_card {
    background: #0f172a;
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.subpage_section_title {
    font-size: 16px;
    font-weight: 600;
    color: #d6b561;
    margin-bottom: 20px;
    display: block;
}

/* Forms */
.subpage_form_group {
    margin-bottom: 20px;
}

.subpage_form_group label {
    display: block;
    font-size: 14px;
    color: #94a3b8;
    margin-bottom: 8px;
}

.subpage_input {
    width: 100%;
    background: #1e293b;
    border: 1px solid #334155;
    padding: 12px 15px;
    border-radius: 12px;
    color: white;
    outline: none;
    transition: 0.2s;
    box-sizing: border-box;
}

.subpage_input:focus { border-color: #d6b561; background: #26335c; }
.subpage_input:disabled { opacity: 0.6; cursor: not-allowed; background: #0f172a; }

.subpage_hint {
    font-size: 12px;
    color: #94a3b8;
    margin-top: 6px;
}

.subpage_btn {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s;
    border: none;
    margin-top: 10px;
}

.subpage_btn_primary {
    background: linear-gradient(135deg, #d6b561, #cfa544);
    color: #020617;
}

.subpage_btn_primary:disabled { opacity: 0.5; cursor: not-allowed; }

.subpage_btn_outline {
    background: transparent;
    border: 1px solid #334155;
    color: white;
}

/* Empty States */
.subpage_empty {
    text-align: center;
    padding: 60px 20px;
    color: #94a3b8;
}

.subpage_empty i { font-size: 50px; margin-bottom: 20px; opacity: 0.3; }
.subpage_empty h3 { color: white; margin-bottom: 10px; }

/* Responsive polish pass for customer panel */
@media (max-width: 768px) {
    .checkout_container {
        flex-direction: column;
        padding: 14px;
        gap: 14px;
        padding-bottom: 100px;
    }
    .checkout_left,
    .checkout_right {
        width: 100%;
        padding: 14px;
        border-radius: 14px;
    }
    .order_item,
    .checkout_row,
    .order_top,
    .top,
    .bottom {
        gap: 8px;
        align-items: flex-start;
    }
    .order_item,
    .order_top {
        flex-direction: column;
    }
    .checkout_row {
        align-items: center;
    }
    .pay_option,
    #payBtn {
        min-height: 44px;
    }
    .orders_container {
        padding: 16px;
        padding-bottom: 100px;
    }
    .orders_tabs,
    .orders_filters {
        overflow-x: auto;
        padding-bottom: 6px;
    }
    .orders_filters {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        gap: 10px !important;
    }
    .orders_filters input,
    .orders_filters button {
        width: 100%;
        min-height: 42px;
    }
    .orders_filters button {
        grid-column: span 1;
    }
    .order_card {
        padding: 14px;
        padding-right: 42px;
    }
    .service-card-list {
        align-items: flex-start;
        gap: 10px;
        padding: 10px;
    }
    .service-card-list img {
        width: 72px;
        height: 72px;
        margin-right: 0;
    }
    .service-card-list .content {
        width: calc(100% - 82px);
        min-width: 0;
    }
    .service-card-list h4 {
        font-size: 14px;
        margin: 0;
        overflow-wrap: anywhere;
    }
    .service-card-list .bottom button {
        min-width: 66px;
    }
    .subpage_card.invoice_card_row {
        flex-direction: column;
        align-items: stretch !important;
        gap: 14px;
    }
    .invoice_actions {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        text-align: left !important;
    }
    .invoice_actions button,
    .invoice_actions a {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 420px) {
    .orders_filters {
        grid-template-columns: 1fr;
    }
    .invoice_actions {
        grid-template-columns: 1fr;
    }
    .bottom-navbar {
        padding: 10px 0 !important;
    }
    .nav-item span {
        font-size: 10px;
    }
}

