/*------------------main-----------------*/
.color-primary {
    color: #007090 !important;
}

.label-blue {
    z-index: 1 !important
}

/* header .top-nav .nav-container .list {
    left: 77%;
}

html[dir="rtl"] .nav-wrapper {
    direction: rtl;
}

html[dir="rtl"] header .top-nav .nav-container .list {
    position: relative;
    right: 0;
    left: auto !important;
} */

/*------------------frozen snow-----------------*/
#snowfall {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 9999;
}

.snowflake {
    position: absolute;
    top: -10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 12px;
    user-select: none;
    animation-name: fall;
    animation-timing-function: linear;
}

@keyframes fall {
    to {
        transform: translateY(110vh);
    }
}

/*------------------frozen snow-----------------*/

.page-link.active,
.active>.page-link {
    background-color: #007090 !important;
    border-color: #007090 !important;
}

.classlang {
    /* font-family: "Montserrat Medium", sans-serif; */
    background: none;
    border: none;
    font-size: 1.3rem;
    padding: 0;
    box-shadow: none;
}

.notification-list .dropdown-item div h6 {
    word-break: break-word;
    white-space: normal;
    overflow-wrap: break-word;
    max-width: 100%;
    line-height: 1.4;
}

header .top-nav .nav-container .list li a.active {
    color: #007090 !important;
}

.pname {
    min-height: 35px;
    white-space: pre-wrap;
}

.app-link-item:hover {
    background-color: #e2e6ea;
}

.app-link-item .material-symbols-outlined {
    margin-right: 8px;
    font-size: 20px;
}

@media (max-width: 768px) {
    .nav-container {
        display: none !important;
    }
}

/* Make the whole modal container ignore pointer events */
#tiktok_alert.modal {
    pointer-events: none;
}

/* But allow pointer events (clicks) inside the modal dialog/content */
#tiktok_alert.modal .modal-dialog,
#tiktok_alert.modal .modal-content {
    pointer-events: auto;
}

.btn-register {
    /* font-family: "Montserrat Regular", sans-serif; */
    background-color: #007090;
    border-radius: 8px;
    border: 1px solid #007090 !important;
    text-align: center;
    padding: 10px 12px;
    color: white;
}

/*START SETTING FOR GREECE FONT */
html[lang="el"] *:not(.material-icons):not(.material-symbols-outlined):not(.fa):not(.fas):not(.far):not(.fal):not(.fab) {
    font-family: 'Open Sans', 'Roboto', 'Noto Sans', Arial, sans-serif !important;
}

html[lang="el"] #headline-span h2 {
    font-size: 20px;
}

html[lang="el"] #headline-span p {
    font-size: 16px;
}

/*END SETTING FOR GREECE FONT */

.video-loading-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
}

.out-of-stock-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    /* dark transparent overlay */
    color: white;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-size: 14px;
    z-index: 3;
    border-radius: 0.375rem;
    /* match Bootstrap rounded */
}

/* cart-checkout-payment */
/********************* Backdrop ******************/
.layer-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    /* Semi-transparent black */
    z-index: 999;
    /* Should be lower than the loader's z-index */
}

/********************* Page Loader ******************/
.layer-loader {
    width: 24rem;
    height: 16rem;
    background-color: white;
    padding: 2rem;
    z-index: 1000;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    border-radius: 1rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ccc;
}

.layer-loader .spinner-border {
    width: 5rem;
    height: 5rem;
    border-width: 0.5rem;
    color: #007090 !important;
}

.layer-loader .material-symbols-outlined {
    font-size: 6rem;
}

.layer-loader p {
    margin-top: 2rem;
    color: black;
    font-weight: bold;
    line-height: 1.4;
}

input.payment-option[type=radio] {
    width: 3rem;
    height: 2.3rem;
    content: url(img/icon-check.png);
    opacity: 0.04 !important;
    border: none !important;
    background-color: transparent !important;
}

input.payment-option[type=radio]:checked {
    opacity: 1 !important;
}

.layer-payment {
    display: block !important;
}

/**************************** Use for signup.php ****************************/
.tooltip-custom {
    font-size: 12px !important;
    text-align: left;
}

.tooltip .tooltip-inner {
    background-color: #eeeeee !important;
    /* Blue */
    color: black !important;
    /* White text */
    font-size: 14px;
    /* Optional: make text larger */
    text-align: left;
    /* Optional: align text left */
}

/* Tooltip arrow color based on placement */
.tooltip.bs-tooltip-top .tooltip-arrow::before {
    border-top-color: #eeeeee !important;
}

.tooltip.bs-tooltip-bottom .tooltip-arrow::before {
    border-bottom-color: #eeeeee !important;
}

.tooltip.bs-tooltip-start .tooltip-arrow::before,
.tooltip.bs-tooltip-left .tooltip-arrow::before {
    border-left-color: #eeeeee !important;
}

.tooltip.bs-tooltip-end .tooltip-arrow::before,
.tooltip.bs-tooltip-right .tooltip-arrow::before {
    border-right-color: #eeeeee !important;
}

.tooltip .tooltip-arrow::before,
.tooltip .tooltip-arrow::after {
    border-color: #eeeeee !important;
}

.flatpickr-calendar {
    font-size: 12px;
    /* smaller text */
    transform: scale(0.85);
    /* shrink overall */
    transform-origin: top left;
    /* adjust position */
}


/**************************** Use for payoption.php ****************************/
.dropdown-item.active,
.dropdown-item:active {
    color: white !important;
    text-decoration: none !important;
    background-color: #072A48 !important;
}

.dropdown-menu {
    z-index: 1;
}

.dropdown-item label {
    display: inline-flex !important;
    /* keep image and text in one line */
    align-items: center !important;
    /* vertical center */
    gap: 10px !important;
    /* spacing between image and text */
    margin: 0 !important;
    padding: 5px 10px !important;
    width: 100% !important;
    cursor: pointer !important;
}

.dropdown-item img {
    width: 30px !important;
    /* adjust to your icon size */
    height: auto !important;
    /* vertical-align: middle; */
    margin-left: 20px !important;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 8px;
    /* space between radio and image */
    cursor: pointer;
    font-size: 15px;
}

.payment-option img {
    width: 40px;
    height: auto;
}

.payment-option input[type="radio"] {
    accent-color: #007bff;
    /* blue highlight */
    transform: scale(1.2);
    cursor: pointer;
}

.dropdown .dropdown-menu li.dropdown-item input {
    width: 15px !important;
    height: 15px !important;
    left: 15px !important;
}


/**************************** Use for login-redirect.php ****************************/
.overlay {
    position: fixed;
    /* Cover whole page */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #072A48;
    /* Semi-transparent white */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
    /* Stay on top */
}

.overlay-content {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}

/**************************** Skeleton product listing****************************/
.skeleton {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    padding: 10px;
}

.skeleton-box {
    background: #e3e3e3;
    border-radius: 6px;
}

.skeleton-img {
    height: 180px;
    width: 100%;
    border-radius: 10px;
}

.skeleton-line {
    height: 16px;
    width: 100%;
    margin-top: 10px;
}

.skeleton-line.small {
    width: 70%;
}

/* Button skeleton */
.skeleton-btn {
    height: 38px;
    width: 100%;
    margin-top: 12px;
    border-radius: 8px;
}

/* SHIMMER EFFECT */
.skeleton::before {
    content: "";
    position: absolute;
    top: 0;
    left: -150px;
    height: 100%;
    width: 150px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    animation: loading 1.2s infinite;
}

.product-item-skeleton {
    width: 100%;
    border: 1px solid #ddd;
    margin-bottom: 1.5rem;
    padding: 1rem;
    box-shadow: none;
    border-radius: 0.6rem;
}

@keyframes loading {
    0% {
        left: -150px;
    }

    100% {
        left: 100%;
    }
}

/**************************** Skeleton product detail****************************/
.skeleton-detail {
    display: flex;
    gap: 20px;
    padding: 1rem;
}

.skeleton-detail-left,
.skeleton-detail-right {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    /* background: #e3e3e3; */
}

.skeleton-detail-left {
    flex: 0 0 45%;
    min-height: 400px;
}

.skeleton-detail-right {
    flex: 0 0 50%;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Image carousel */
.skeleton-carousel {
    height: 300px;
    width: 100%;
    border-radius: 10px;
    background: #e3e3e3;
}

/* Thumbnails */
.skeleton-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.skeleton-thumb {
    width: 60px;
    height: 60px;
    background: #ccc;
    border-radius: 6px;
}

/* Product name / content */
.skeleton-line {
    height: 20px;
    width: 80%;
    margin-top: 12px;
    border-radius: 6px;
    background: #ccc;
}

/* Price blocks */
.skeleton-price {
    height: 25px;
    width: 50%;
    margin-top: 10px;
    border-radius: 6px;
    background: #ccc;
}

/* Button skeleton */
.skeleton-btn-detail {
    height: 40px;
    width: 100%;
    margin-top: 15px;
    border-radius: 8px;
    background: #ccc;
}

/* Select box skeleton */
.skeleton-select {
    height: 35px;
    width: 40%;
    border-radius: 6px;
    background: #ccc;
}

/* Shimmer effect */
.skeleton-detail-left::before,
.skeleton-detail-right::before {
    content: "";
    position: absolute;
    top: 0;
    left: -150px;
    height: 100%;
    width: 150px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    animation: loading-detail 1.2s infinite;

}

@keyframes loading-detail {
    0% {
        left: -150px;
    }

    100% {
        left: 100%;
    }
}

/**************************** Skeleton cart****************************/
.cart-item-skeleton-row {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 12px;
    background: #fff;
}

/* Skeleton boxes */
.skeleton-cart-box {
    background: #e3e3e3;
    border-radius: 6px;
}

.skeleton-cart-img {
    width: 100%;
    height: 70px;
    border-radius: 6px;
}

.skeleton-cart-checkbox {
    width: 20px;
    height: 20px;
    border-radius: 4px;
}

.skeleton-cart-line {
    border-radius: 4px;
    margin-top: 6px;
}

/* Top bar skeleton */
.skeleton-cart-top {
    position: relative;
    overflow: hidden;
}

/* Back button skeleton */
.skeleton-cart-btn {
    position: relative;
    overflow: hidden;
    background: #e3e3e3;
}

/* Shimmer effect */
.cart-item-skeleton-row::before,
.skeleton-cart-top::before,
.skeleton-cart-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -150px;
    height: 100%;
    width: 150px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    animation: loading-cart 1.2s infinite;
}

/* Animation */
@keyframes loading-cart {
    0% {
        left: -150px;
    }

    100% {
        left: 100%;
    }
}

/**************************** Skeleton order****************************/
/* Skeleton container */
.skeleton-order,
.skeleton-payment {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    background: #f3f3f3;
}

/* Skeleton boxes / lines */
.skeleton-box {
    background: #e3e3e3;
    border-radius: 6px;
}

.skeleton-line {
    height: 20px;
    margin-bottom: 10px;
}

.skeleton-btn {
    border-radius: 8px;
}

.skeleton-payment-icon {
    width: 50px;
    height: 30px;
    border-radius: 6px;
}

/* Shimmer animation */
.skeleton-order::before,
.skeleton-payment::before {
    content: "";
    position: absolute;
    top: 0;
    left: -150px;
    height: 100%;
    width: 150px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    animation: loading-skeleton 1.2s infinite;
}

@keyframes loading-skeleton {
    0% {
        left: -150px;
    }

    100% {
        left: 100%;
    }
}

/**************************** Skeleton delivery****************************/
/* Wrapper */
.skeleton-delivery {
    position: relative;
}

/* Elements */
.skeleton-delivery-title {
    height: 28px;
    width: 45%;
    background: #e3e3e3;
    border-radius: 6px;
}

.skeleton-delivery-line {
    height: 18px;
    background: #e3e3e3;
    border-radius: 6px;
    margin-bottom: 10px;
}

.skeleton-delivery-img {
    width: 100%;
    padding-top: 100%;
    background: #e3e3e3;
    border-radius: 10px;
}

.skeleton-delivery-button {
    height: 48px;
    background: #d8d8d8;
    border-radius: 12px;
}

/* Shimmer */
.skeleton-delivery-title,
.skeleton-delivery-line,
.skeleton-delivery-img,
.skeleton-delivery-button {
    overflow: hidden;
    position: relative;
}

.skeleton-delivery-title::after,
.skeleton-delivery-line::after,
.skeleton-delivery-img::after,
.skeleton-delivery-button::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: skeleton-delivery-shimmer 1.5s infinite;
}

@keyframes skeleton-delivery-shimmer {
    100% {
        left: 100%;
    }
}

/* ====================== SKELETON ADDRESS ====================== */
.skeleton-address-box {
    background: #e3e3e3;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

/* Title (Doorstep Delivery / Pick Up in Store) */
.skeleton-address-title {
    width: 40%;
    height: 32px;
}

/* Tab buttons */
.skeleton-address-tab {
    width: 150px;
    height: 40px;
    border-radius: 12px;
}

/* Textarea box */
.skeleton-address-textarea {
    width: 100%;
    height: 90px;
    border-radius: 12px;
}

/* Small text (error message placeholder) */
.skeleton-address-small {
    width: 120px;
    height: 15px;
    border-radius: 6px;
}

/* ===== SHIMMER ===== */
.skeleton-address-box::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 120%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.4),
            transparent);
    animation: skeletonAddressShimmer 1.5s infinite;
}

@keyframes skeletonAddressShimmer {
    100% {
        left: 100%;
    }
}

/* ====================== SKELETON Review ====================== */
.skeleton-review-box {
    background: #e3e3e3;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.skeleton-review-title {
    height: 26px;
    width: 40%;
    margin-bottom: 20px;
}

.skeleton-review-line {
    height: 16px;
    margin-bottom: 14px;
    width: 100%;
}

.skeleton-review-small {
    height: 12px;
    width: 35%;
    margin-bottom: 10px;
}

.skeleton-review-total {
    height: 22px;
    width: 50%;
    margin: 20px 0;
}

.skeleton-review-button {
    height: 48px;
    width: 100%;
    border-radius: 12px;
    margin-top: 20px;
}

.skeleton-review-img {
    width: 100%;
    padding-top: 100%;
    border-radius: 10px;
}

/* Shimmer Animation */
.skeleton-review-box::after,
.skeleton-review-title::after,
.skeleton-review-line::after,
.skeleton-review-small::after,
.skeleton-review-total::after,
.skeleton-review-button::after,
.skeleton-review-img::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer-review 1.5s infinite;
}

@keyframes shimmer-review {
    100% {
        left: 100%;
    }
}

/* ====================== SKELETON Payment ====================== */

/* CONTAINER */
#SkeletonLoader_payment {
    padding: 15px;
    /* border: 1px solid #ddd;
    border-radius: 8px; */
}

/* DROPDOWN TITLE */
.skeleton-dropdown {
    height: 35px;
    border-radius: 6px;
    margin-bottom: 15px;
}

/* PAYMENT OPTION ROW */
.skeleton-payment-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #efefef;
}

/* RADIO CIRCLE */
.skeleton-radio {
    width: 18px;
    height: 18px;
    border-radius: 50%;
}

/* PAYMENT ICON BOX */
.skeleton-icon {
    width: 50px;
    height: 25px;
    border-radius: 4px;
}

/* PAYMENT TEXT */
.skeleton-text {
    height: 14px;
    flex: 1;
    border-radius: 4px;
}

/* WIDTH OPTIONS */
.w-35 {
    width: 35%;
}

.w-40 {
    width: 40%;
}

.w-50 {
    width: 50%;
}

.w-60 {
    width: 60%;
}

/* APPLY SKELETON CLASS */
.skeleton-dropdown,
.skeleton-radio,
.skeleton-icon,
.skeleton-text {
    background: linear-gradient(90deg, #e6e6e6 25%, #f0f0f0 50%, #e6e6e6 75%);
    background-size: 200% 100%;
    animation: skeletonAnim 1.2s infinite ease-in-out;
}

@keyframes skeletonAnim {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* ====================== SKELETON Payment Form ====================== */
/* SKELETON BASE */
/* .skeleton {
    background: linear-gradient(90deg, #e6e6e6, #f5f5f5, #e6e6e6);
    background-size: 200% 100%;
    animation: skeletonAnim 1.2s infinite ease-in-out;
} */

@keyframes skeletonAnim {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* PAYMENT FORM SKELETON CONTAINER */
#SkeletonLoader_paymentForm {
    padding: 15px;
    border-radius: 8px;
    background: #fff;
}

/* HEADER / TITLES */
#SkeletonLoader_paymentForm .skeleton-header {
    height: 20px;
    width: 40%;
    margin-bottom: 15px;
    border-radius: 4px;
    background: linear-gradient(90deg, #e6e6e6, #f5f5f5, #e6e6e6);
    background-size: 200% 100%;
    animation: skeletonAnim 1.2s infinite ease-in-out;
}

/* IMAGE / BANNER */
#SkeletonLoader_paymentForm .skeleton-banner {
    width: 100%;
    height: 80px;
    border-radius: 6px;
    margin-bottom: 15px;
    background: linear-gradient(90deg, #e6e6e6, #f5f5f5, #e6e6e6);
    background-size: 200% 100%;
    animation: skeletonAnim 1.2s infinite ease-in-out;
}

/* FORM INPUTS */
#SkeletonLoader_paymentForm .skeleton-input-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
}

#SkeletonLoader_paymentForm .skeleton-input,
#SkeletonLoader_paymentForm .skeleton-input-text {
    background: linear-gradient(90deg, #e6e6e6, #f5f5f5, #e6e6e6);
    background-size: 200% 100%;
    animation: skeletonAnim 1.2s infinite ease-in-out;
    border-radius: 4px;
}

#SkeletonLoader_paymentForm .skeleton-input {
    width: 30%;
    height: 18px;
}

#SkeletonLoader_paymentForm .skeleton-input-text {
    width: 70%;
    height: 35px;
}

/* CHECKBOX ROW */
#SkeletonLoader_paymentForm .skeleton-checkbox-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
}

#SkeletonLoader_paymentForm .skeleton-checkbox,
#SkeletonLoader_paymentForm .skeleton-checkbox-text {
    background: linear-gradient(90deg, #e6e6e6, #f5f5f5, #e6e6e6);
    background-size: 200% 100%;
    animation: skeletonAnim 1.2s infinite ease-in-out;
    border-radius: 4px;
}

#SkeletonLoader_paymentForm .skeleton-checkbox {
    width: 18px;
    height: 18px;
}

#SkeletonLoader_paymentForm .skeleton-checkbox-text {
    width: 98%;
    height: 50px;
}

/* ====================== SKELETON Profile my order ====================== */
/* BASE (scoped) */
.skeleton-myorder {
    background: linear-gradient(90deg, #e6e6e6, #f5f5f5, #e6e6e6);
    background-size: 200% 100%;
    animation: skeletonMyOrderAnim 1.2s infinite ease-in-out;
    border-radius: 6px;
}

@keyframes skeletonMyOrderAnim {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* CONTAINER */
/* #SkeletonLoader_myorder {
    padding: 20px;
} */

/* TITLE */
.skeleton-myorder-title {
    height: 28px;
    width: 200px;
    margin: 0 auto 30px;
}

/* TABS */
.skeleton-myorder-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.skeleton-myorder-tab {
    height: 35px;
    width: 80px;
}

/* SEARCH + FILTER */
.skeleton-myorder-search {
    height: 35px;
    width: 180px;
}

.skeleton-myorder-filter {
    height: 35px;
    width: 40px;
}

/* ORDER CARD */
.skeleton-myorder-card {
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 10px;
    margin-top: 10px;
}

/* LEFT SIDE */
.skeleton-myorder-line {
    height: 14px;
    width: 60%;
    margin-bottom: 20px;
}

.skeleton-myorder-line.small {
    width: 40%;
}

.skeleton-myorder-price {
    height: 24px;
    width: 100px;
}

/* PRODUCT IMAGE */
.skeleton-myorder-img {
    width: 60px;
    height: 60px;
}

/* RIGHT TEXT */
.skeleton-myorder-btn {
    height: 16px;
    width: 100px;
}

/* ====================== SKELETON Profile my order detail ====================== */
/* BASE */
.skeleton-orderdetail {
    background: linear-gradient(90deg, #e6e6e6, #f5f5f5, #e6e6e6);
    background-size: 200% 100%;
    animation: skeletonOrderAnim 1.2s infinite ease-in-out;
    border-radius: 6px;
}

@keyframes skeletonOrderAnim {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* CONTAINER */
#SkeletonLoader_orderdetail {
    padding: 15px;
}

/* ROW LINE (label + value) */
.skeleton-orderdetail-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}

.skeleton-orderdetail-label {
    width: 35%;
    height: 14px;
}

.skeleton-orderdetail-value {
    width: 40%;
    height: 14px;
}

/* HR */
.skeleton-orderdetail-hr {
    height: 1px;
    margin: 12px 0;
}

/* SECTION TITLE */
.skeleton-orderdetail-title {
    width: 180px;
    height: 22px;
    margin: 30px 0 15px;
}

/* ADDRESS BLOCK */
.skeleton-orderdetail-address {
    width: 70%;
    height: 60px;
}

/* CARD (member section) */
.skeleton-orderdetail-card {
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 15px;
    margin-top: 20px;
}

/* MEMBER HEADER */
.skeleton-orderdetail-header-line {
    height: 16px;
    width: 60%;
    margin-bottom: 10px;
}

.skeleton-orderdetail-header-small {
    height: 14px;
    width: 30%;
}

/* PRODUCT ITEM */
.skeleton-orderdetail-product {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.skeleton-orderdetail-img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
}

.skeleton-orderdetail-product-info {
    flex: 1;
}

.skeleton-orderdetail-name {
    height: 16px;
    width: 70%;
    margin-bottom: 8px;
}

.skeleton-orderdetail-sub {
    height: 12px;
    width: 50%;
    margin-bottom: 6px;
}

.skeleton-orderdetail-price {
    height: 16px;
    width: 80px;
}

/* ====================== SKELETON Profile my performance ====================== */
/* BASE */
.sk-perf {
    background: linear-gradient(90deg, #e6e6e6, #f5f5f5, #e6e6e6);
    background-size: 200% 100%;
    animation: skPerfAnim 1.2s infinite ease-in-out;
}

@keyframes skPerfAnim {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* TITLE */
.sk-perf-title {
    height: 18px;
    width: 45%;
    border-radius: 4px;
}

.sk-perf-title.sm {
    width: 30%;
}

/* PV BOX */
.sk-perf-pvbox {
    height: 60px;
    border-radius: 12px;
}

/* SEARCH */
.sk-perf-search {
    height: 35px;
    width: 180px;
    border-radius: 20px;
}

/* FILTER BTN */
.sk-perf-filter {
    width: 40px;
    height: 35px;
    border-radius: 6px;
}

/* PRODUCT ITEM */
.sk-perf-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
}

/* IMAGE */
.sk-perf-img {
    width: 60px;
    height: 60px;
    border-radius: 6px;
}

/* TEXT */
.sk-perf-text {
    height: 14px;
    border-radius: 4px;
}

.sk-perf-text.lg {
    width: 60%;
    height: 16px;
}

.sk-perf-text.md {
    width: 40%;
}

/* VALUE RIGHT */
.sk-perf-value {
    width: 80px;
    height: 18px;
    border-radius: 4px;
    margin-left: auto;
}

/* ====================== SKELETON Profile my shipping address ====================== */
/* BASE */
.sk-addr {
    background: linear-gradient(90deg, #e6e6e6, #f5f5f5, #e6e6e6);
    background-size: 200% 100%;
    animation: skAddrAnim 1.2s infinite ease-in-out;
}

@keyframes skAddrAnim {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* LIST ITEM */
.sk-addr-item {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

/* LEFT TEXT */
.sk-addr-text {
    height: 14px;
    border-radius: 4px;
    margin-bottom: 8px;
}

.sk-addr-text.lg {
    width: 60%;
    height: 16px;
}

.sk-addr-text.md {
    width: 90%;
}

.sk-addr-text.sm {
    width: 40%;
}

/* RIGHT SIDE */
.sk-addr-badge {
    width: 60px;
    height: 20px;
    border-radius: 6px;
    margin: 0 auto 10px;
}

.sk-addr-edit {
    width: 40px;
    height: 14px;
    border-radius: 4px;
    margin: 0 auto;
}

/* RADIO */
.sk-addr-radio {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    margin-left: auto;
}

.owl-stage {
    display: flex;
    flex-wrap: wrap;
}

.owl-item {
    display: flex;
}

.product-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* optional for spacing */
    flex: 1 1 auto;
    /* allow stretching */
}

.row.equal-height {
    display: flex;
    flex-wrap: wrap;
    /* optional spacing */
}

.row.equal-height>[class*="col-"] {
    display: flex;
}

.row.equal-height>[class*="col-"] .product-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* optional if you want footer/button at bottom */
    flex: 1 1 auto;
    /* stretch to equal height */
}

#Deliveryco {
    margin: 10px 0px 0px 0px !important;
}

.form-general label {
    font-size: 1.3rem !important;
    /* font-family: unset !important; */
    text-align: start !important;
}

.hcust {
    margin-top: 0px !important;
    padding-top: 0px !important;
    font-size: 1.2rem !important;
}

.left-menu {
    min-height: 40rem !important;
}

.owl-nav {
    direction: ltr !important;
}

.owl-prev,
.owl-next {
    transform: none !important;
}

/* ====================== SELECT OPTION ====================== */
select.form-control {
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
}

select.form-control {
    background-image: url(img/icon-down.png) !important;
    background-repeat: no-repeat !important;
    background-position: right 10px center !important;
    padding-right: 30px !important;
}

html[dir="rtl"] select.form-control {
    background-position: left 10px center !important;
    padding-left: 30px !important;
    padding-right: 10px !important;
}

.form-filtering {
    font-size: 1.2rem !important;
    /* margin: 1rem !important; */
    border-radius: 2rem !important;
}

/* ===== Password container ===== */
.password {
    position: relative;
    display: block;
}

/* ===== Input field ===== */
.password input {
    width: 100%;
    padding-right: 45px;
    /* space for icon (LTR) */
}

/* ===== Eye icon ===== */
.password .icon-password {
    position: absolute !important;
    top: 50%;
    transform: translateY(-50%);
    inset-inline-end: 15px;
    /* 🔥 auto RTL/LTR */
    cursor: pointer;
    z-index: 10;
    user-select: none;
}

/* RTL override */
html[dir="rtl"] .password .icon-password {
    right: auto;
    left: 15px;
}

/* ===== RTL adjustments ===== */
html[dir="rtl"] .password input {
    padding-left: 45px;
    /* space for icon */
    padding-right: 12px;
}

/* ===== Optional: fix material icon alignment ===== */
.material-symbols-outlined {
    font-size: 20px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.form-general textarea {
    text-align: start !important;
}

html[dir="rtl"] .form-general textarea {
    text-align: right !important;
    direction: rtl !important;
}

.nav-pills {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
}

.nav-pills .nav-link {
    margin: 0 !important;
    border: 1px solid #888 !important;
    font-size: 14px !important;
    padding: 9px 25px 9px 20px !important;
    font-weight: 500 !important;
}

/* RTL FIX */
html[dir="rtl"] .nav-pills {
    flex-direction: row-reverse !important;
}

html[dir="rtl"] .form-general label {
    text-align: right !important;
}

.text-end {
    text-align: end !important;
}

/* RTL FIX: icon flip */
html[dir="rtl"] .icon-flip {
    /* display: inline-block !important; */
    transform: scaleX(-1) !important;
}

html[dir="rtl"] .collapsible h5 {
    text-align: start !important;
}

.owl-stage-center {
    display: flex !important;
    justify-content: center !important;
}

@media screen and (max-width: 768px) {
    .bar-progress {
        padding: 0 20px !important;
    }
}

.term-text {
    color: white;
    font-size: 1.3rem;
    text-decoration: none;
    cursor: pointer;
    margin: 0 8px;
    line-height: 2;
}

em {
    font-style: italic;
}