/**
 * theme.css — iFresh storefront theme (merged)
 * Sources: style.css + responsive.css + custom.css
 * Design tokens live on :root as --theme-*
 * Edit colors/radii/shadows once; they cascade through the theme.
 */

/* ==========================================================================
   Design tokens
   ========================================================================== */

:root {
    /* Brand */
    --theme-brand: #2f9e44;
    --theme-brand-dark: #248a38;
    --theme-brand-hover: #1f7a2f;
    --theme-brand-mid: #1f6b2e;
    --theme-brand-deep: #1a3d22;
    --theme-brand-deepest: #14331a;
    --theme-brand-light: #6bcf7f;
    --theme-brand-soft: #e8f6eb;
    --theme-brand-soft-alt: #e4f6e8;
    --theme-brand-muted: #5d735f;
    --theme-brand-glow: rgba(47, 158, 68, 0.22);

    /* Accent */
    --theme-accent: #ff7a1a;
    --theme-accent-dark: #e86a0c;
    --theme-accent-light: #ffb347;
    --theme-accent-soft: #fff3e8;
    --theme-accent-glow: rgba(255, 122, 26, 0.28);

    /* Ink / surfaces */
    --theme-ink: #16321a;
    --theme-ink-muted: #667566;
    --theme-ink-strong: #3a3838;
    --theme-muted: #5f5f5f;
    --theme-muted-strong: #4d4545;
    --theme-muted-soft: #999191;
    --theme-surface: #ffffff;
    --theme-surface-soft: #f3f9f4;
    --theme-surface-soft-alt: #f3f9ef;
    --theme-surface-warm: #fbf8f2;
    --theme-surface-warm-start: #fffdf8;
    --theme-surface-warm-mid: #f5faf3;
    --theme-surface-warm-end: #e8f4ea;
    --theme-surface-mist: #f4faf5;
    --theme-surface-mesh-1: #f7fcf8;
    --theme-surface-mesh-2: #eef7f0;
    --theme-surface-mesh-3: #e7f3e9;
    --theme-border: #dceadf;
    --theme-border-strong: #a8d4b0;
    --theme-danger: #e04545;
    --theme-danger-deep: #830c0f;
    --theme-white: #ffffff;
    --theme-black: #000000;
    --theme-gray-border: #e2e1e1;
    --theme-gray-hover: #f1f1f1;
    --theme-gray-soft: #f5f5f5;
    --theme-shadow-legacy: #00000040;
    --theme-loader-bg: rgba(246, 250, 244, 0.92);

    /* Radius */
    --theme-radius-sm: 0.65rem;
    --theme-radius: 1rem;
    --theme-radius-lg: 1.5rem;
    --theme-radius-pill: 999px;

    /* Shadows */
    --theme-shadow: 0 4px 6px -1px rgba(22, 50, 26, 0.04), 0 10px 28px -8px rgba(47, 158, 68, 0.12);
    --theme-shadow-lg: 0 12px 28px -8px rgba(22, 50, 26, 0.1), 0 24px 48px -16px rgba(47, 158, 68, 0.2);
    --theme-shadow-float: 0 20px 50px -18px rgba(36, 138, 56, 0.28);
    --theme-focus-ring: 0 0 0 0.2rem rgba(47, 158, 68, 0.18);
    --theme-btn-shadow: 0 10px 24px -12px rgba(47, 158, 68, 0.7);
    --theme-btn-shadow-hover: 0 12px 22px -12px var(--theme-brand-dark);

    /* Motion / type / glass */
    --theme-font: "Lexend Regular", "Helvetica", sans-serif;
    --theme-ease: cubic-bezier(0.22, 1, 0.36, 1);
    --theme-transition: 0.28s var(--theme-ease);
    --theme-glass: rgba(255, 255, 255, 0.82);
    --theme-glass-border: rgba(255, 255, 255, 0.55);

    /* Gradients */
    --theme-grad-brand: linear-gradient(135deg, var(--theme-brand-dark) 0%, var(--theme-brand) 42%, var(--theme-brand-light) 100%);
    --theme-grad-brand-hover: linear-gradient(135deg, var(--theme-brand-hover) 0%, var(--theme-brand-dark) 45%, var(--theme-brand) 100%);
    --theme-grad-brand-soft: linear-gradient(135deg, var(--theme-brand-soft-alt) 0%, var(--theme-surface-mist) 50%, var(--theme-white) 100%);
    --theme-grad-deep: linear-gradient(145deg, var(--theme-brand-deepest) 0%, var(--theme-brand-mid) 42%, var(--theme-brand) 100%);
    --theme-grad-warm: linear-gradient(180deg, var(--theme-surface-warm-start) 0%, var(--theme-surface-warm-mid) 55%, var(--theme-surface-warm-end) 100%);
    --theme-grad-accent: linear-gradient(135deg, var(--theme-accent-dark) 0%, var(--theme-accent) 50%, var(--theme-accent-light) 100%);
    --theme-grad-mesh:
        radial-gradient(ellipse 80% 50% at 0% 0%, rgba(47, 158, 68, 0.16), transparent 55%),
        radial-gradient(ellipse 55% 40% at 100% 8%, rgba(255, 122, 26, 0.1), transparent 50%),
        radial-gradient(ellipse 45% 40% at 70% 100%, rgba(255, 92, 92, 0.06), transparent 55%),
        radial-gradient(ellipse 50% 45% at 40% 100%, rgba(47, 158, 68, 0.1), transparent 55%),
        linear-gradient(180deg, var(--theme-surface-mesh-1) 0%, var(--theme-surface-mesh-2) 45%, var(--theme-surface-mesh-3) 100%);
    --theme-grad-input: linear-gradient(180deg, var(--theme-white) 0%, var(--theme-surface-warm) 100%);
    --theme-grad-outline: linear-gradient(180deg, var(--theme-white), var(--theme-surface-soft-alt));
}

/* ==========================================================================
   Body base
   ========================================================================== */

body {
    font-family: var(--theme-font);
    color: var(--theme-ink);
    background: var(--theme-grad-mesh);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100%;
}

/* ===== Legacy: style.css ===== */
/* body base moved to :root / body tokens section */
/* ============ small devices ============ */

@media (max-width: 991px) {
    .dropdown-menu .dropdown-menu {
        margin-left: 0.7rem;
        margin-right: 0.7rem;
        margin-bottom: 0.5rem;
    }
}

.offcanvas.offcanvas-start {
    width: 300px !important;
}

/* form focus ring provided by shared patterns */
.no-spin {
    /* Remove spin buttons for number input */
    appearance: textfield;
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
}

#numberInput::-webkit-inner-spin-button,
#numberInput::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

#numberInput {
    /* Firefox */
    -moz-appearance: textfield;
}

.navbar-toggler:focus {
    box-shadow: none !important;
}

.navbar-toggler:hover {
    background-color: var(--theme-gray-border);
}

ul,
ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

.dropdown-menu li {
    position: relative;
}

.sticky-nav {
    position: sticky;
    top: 0px;
}

.sm-header {
    display: none;
}

.navbar-expand .navbar-nav .nav-link {
    padding-right: 0%;
    padding-left: 0%;
}

.nav-item .submenu {
    display: none;
    position: absolute;
    left: 100%;
    top: -9px;
}

.nav-item .submenu-left {
    right: 100%;
    left: auto;
}

.dropdown-menu>li:hover {
    background-color: var(--theme-gray-hover);
}

.dropdown-menu>li:hover>.submenu {
    display: block;
}

.flex-wrap1 {
    justify-content: space-around;
    flex-wrap: wrap;
}

.navbar-toggler:hover {
    background-color: transparent !important;
    border: none !important;
}

.location-btn:hover {
    background-color: transparent !important;
    border-color: var(--theme-gray-soft) !important;
    transition: none;
}

/* Styles for tablets and mobiles */
@media only screen and (max-width: 991px) {
    .sidebar {
        position: fixed;
        top: 0;
        left: -100%;
        /* Initially off-screen */
        width: 80%;
        /* Adjust the width as needed */
        height: 100%;
        background: var(--theme-white);
        transition: left 0.3s ease;
        overflow-y: auto;
        /* Enable vertical scrollbar for small screens */
        z-index: 999;
        /* Bring sidebar above content */
    }

    .sidebar.active {
        left: 0;
        /* Slide in from the left when active class is applied */
    }

    .toggle-sidebar-btn {
        display: block;
        /* Show the toggle button on smaller screens */
    }
}

/* ########################## NAV BAR ######################### */
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    height: 72px;
    padding: 12px 8px;
    margin: 0 auto;
}

.hr-height {
    height: 6px;
}

.main-logo {
    height: 36px;
}

.navbar-toggler {
    padding: 3% 0%;
    font-size: 20px !important;
    line-height: 1;
    color: #8a8a8a !important;
    background-color: transparent;
    border: none !important;
}

.navbar-toggler-icon {
    filter: grayscale();
}

.ft-lime {
    color: var(--theme-brand);
}

.btn-nav {
    color: #666464;
    font-size: 16px;
    font-weight: 400;
    line-height: 32px;
}

.dropdown-toggle::after {
    display: none !important;
}

.form-search {
    padding: 1rem 1.8rem !important;
}

.search {
    position: relative;
    border: 1px solid #c7c7c7;
    border-radius: 30px;
    background-color: var(--theme-gray-hover);
}

.faa-search {
    color: var(--theme-muted);
    font-size: 24px !important;
}

.search input {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    text-indent: 30px;
    border: none !important;
    background-color: transparent !important;
    overflow: hidden;
    height: 40px;
}

.search input::placeholder {
    color: #b2b0b0;
}

.search input:focus {
    box-shadow: none;
    border: 2px solid blue;
}

.search .fa-search {
    color: #b2b0b0;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    position: absolute;
    top: 12px;
    right: 24px;
    cursor: pointer;
}

.searchIcon {
    display: block;
}

.search {
    position: relative;
    width: 300px;
    /* Adjust the width as needed */
}

.searchInput {
    width: 100%;
    box-sizing: border-box;
    padding-right: 30px;
    /* Space for the scrollbar */
}

.searchResults {
    position: absolute;
    top: 102%;
    left: 0;
    z-index: 1000;
    width: 100%;
    max-height: 400px;
    /* Adjust the maximum height as needed */
    overflow-y: auto;
    overflow-x: hidden;
    background-color: var(--theme-white);
    border: 1px solid var(--theme-gray-border);
    border-top: none;
    list-style-type: none;
    margin: 0;
    padding: 0;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    scrollbar-width: thin;
    scrollbar-color: var(--theme-gray-border) var(--theme-white);
}

.searchResults::-webkit-scrollbar {
    width: 6px;
}

.searchResults::-webkit-scrollbar-thumb {
    background-color: var(--theme-gray-border);
    border-radius: 6px;
}

.searchResults::-webkit-scrollbar-track {
    background-color: var(--theme-white);
    border-radius: 8px;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
}

.searchResults li {
    padding: 8px;
    cursor: pointer;
}

.searchResults li:hover {
    background-color: #f0f0f0;
}

.login-btn {
    color: var(--theme-brand);
    /* background-color: var(--theme-brand); */
    font-size: 20px;
    font-weight: 700;
    line-height: 25px;
    border-radius: 8px;
    border-color: var(--theme-brand) !important;
}

.profile-btn {
    color: var(--theme-brand);
    /* background-color: var(--theme-brand); */
    font-size: 20px;
    font-weight: 700;
    line-height: 25px;
    border-radius: 8px;
    border-color: var(--theme-brand) !important;
}

.login-btn:hover {
    background-color: var(--theme-brand);
    color: var(--theme-white);
}

.bg-lime {
    background-color: var(--theme-brand);
}

.second-nav {
    width: 100%;
}

.mx-item {
    margin: 0% 2.7%;
}

.download-app {
    font-family: "Lexend Regular";
    color: var(--theme-brand) !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    list-style: 78px !important;
    border-bottom: none !important;
}

.download-img-google {
    height: 32px;
    width: auto;
}

.download-img-app {
    height: 32px;
    width: auto;
}

.second-nav .nav-item:hover {
    border-bottom: 4.4px solid var(--theme-brand);
}

.text-navbar {
    color: white !important;
    font-size: 18px;
    font-weight: 500;
    line-height: 21px;
}

.second-nav .active {
    border-bottom: 4.4px solid var(--theme-brand);
}

.second-nav .dropdown-item {
    padding-left: 13% !important;
}

.dropdown-menu {
    --bs-dropdown-min-width: 126px !important;
}

.second-nav .dropdown-item {
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    color: var(--theme-muted) !important;
    background-color: var(--theme-white);
}

.second-nav .dropdown-item:hover {
    color: white !important;
    background-color: var(--theme-brand);
}

.second-nav .drop-item:hover {
    color: var(--theme-muted) !important;
    background-color: #dfdddd !important;
}

.second-nav .child-item:hover {
    color: var(--theme-muted) !important;
    background-color: #f0eded !important;
}

/* ############### SIDE BAR ################# */
.profile-img {
    height: 60px;
    border: 3.7px solid var(--theme-white);
    border-radius: 50%;
}

.offcanvas-body {
    padding: 0 !important;
}

.back-style {
    font-size: 24px;
    color: var(--theme-white);
}

.offcanvas-title {
    font-family: "Lexend Regular";
    color: white;
    font-size: 20px;
    font-weight: 500;
    line-height: 34px;
    margin-left: 5%;
}

.sidebar-link {
    font-family: "Lexend Regular";
    color: #747272;
    font-size: 14px;
    font-weight: 500;
    line-height: 36px;
}

.faa-profile {
    font-size: 20px;
    font-weight: 600;
    line-height: 50px;
    margin-right: 5%;
}

.faa-profile-dropdown {
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    margin-right: 5% !important;
}

.profile-item-drop {
    font-family: "Lexend Regular";
    color: #908e8e;
    font-size: 14px;
    font-weight: 400;
    line-height: 33px;
    padding-left: 15%;
}

/* #################### BANNER ####################### */

.carousel-control-next,
.carousel-control-prev {
    width: 2% !important;
    opacity: 1;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
    height: 3rem !important;
}

.banner-heading {
    font-family: "Lexend Regular";
    color: white;
    font-size: 65px;
    font-weight: 700;
    line-height: 80px;
}

.banner-heading-low {
    font-family: "Lexend Regular";
    color: white;
    font-size: 48px;
    font-weight: 700;
    line-height: 60px;
}

.text-lime {
    color: var(--theme-brand);
}

.theme-bg {
    background-color: var(--theme-brand);
}

.banner-content {
    font-family: "Lexend Regular";
    color: white;
    font-size: 18px;
    font-weight: 300;
    line-height: 28px;
    margin-right: 24%;
}

.btn-lime {
    font-family: "Lexend Regular";
    color: white;
    background-color: var(--theme-brand);
    font-size: 26px;
    font-weight: 700;
    line-height: 32px;
    padding: 0.6% 3%;
}

.btn-lime:hover {
    color: white;
    background-color: var(--theme-brand);
}

.banner-img1 {
    height: 500px;
    width: fit-content;
}

/* ################ ABOUT US ################# */
.about-heading {
    font-family: "Lexend Regular";
    color: var(--theme-brand);
    font-size: 38px;
    font-weight: 700;
}

.about-content {
    font-family: "Helvetica";
    color: #444444;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
}

.about-btn-lime {
    font-family: "Helvetica";
    color: white;
    background-color: var(--theme-brand);
    font-size: 18px;
    font-weight: 700;
    border-radius: 16px;
    padding: 1% 6%;
}

.about-btn-lime:hover {
    color: white;
    background-color: var(--theme-brand);
}

.about-img {
    height: 400px;
    width: auto;
}

/* ############### ORDER PROCESS ############### */
.bg-lime-order {
    background-color: var(--theme-brand);
}

.order-title {
    color: white;
    font-family: "Lexend Regular";
    font-size: 36px;
    font-weight: 500;
    line-height: 58px;
}

.order-img {
    height: 100px;
    width: 100px !important;
}

.order-heading {
    color: white;
    font-family: "Lexend Regular";
    font-size: 21px;
    font-weight: 400;
    line-height: 38px;
    text-align: center;
    margin-top: 8%;
}

.order-size {
    width: 20%;
}

.faa-order {
    position: absolute;
    font-size: 40px;
    left: 93%;
    top: 15%;
    color: white;
}

/* ############### Shop Categories ############### */

/* owl nav */
.owl-prev span,
.owl-next span {
    color: var(--theme-muted-soft);
}

.owl-prev,
.owl-next {
    position: absolute;
    top: 0;
    height: 100%;
}

.owl-prev {
    left: -25px;
}

.owl-next {
    right: -25px;
}

/* removing blue outline from buttons */
button:focus,
button:active {
    outline: none;
}

.bg-shop-cat {
    background-color: #e6effa;
}

.brand-carousel .owl-item {
    background-color: #fcdcd1;
}

.shop-title {
    color: #737472;
    font-family: "Lexend Regular";
    font-size: 32px;
    font-weight: 500;
    line-height: 56px;
}

.shop-btn-lime {
    font-family: "Lexend Regular";
    color: white;
    background-color: var(--theme-brand);
    font-size: 18px;
    font-weight: 400;
    border-radius: 8px;
    padding: 1.5% 10%;
}

.shop-btn-lime:hover {
    color: white;
    background-color: var(--theme-brand);
}

.shop-heading {
    color: #6f6a6a;
    font-family: "Lexend Regular";
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    text-align: center;
    margin-top: 12%;
    border-radius: 32px;
}

.shop-img-slide {
    background-color: white;
    height: 175px;
    width: 180px !important;
    overflow: hidden;
    border-radius: 50%;
    box-shadow: 0px 0px 14px 0px var(--theme-shadow-legacy);
}

.padd-card-custom {
    padding-left: 5px !important;
    padding-right: 5px !important;
}

/* ################# FOOD CART ############### */
.cat-img-abs {
    position: absolute;
    height: 486px;
    right: 0px;
}

.box-shd {
    box-shadow: 0px 0px 6px 0px var(--theme-shadow-legacy);
}

.card-padd {
    padding: 3% 1% !important;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.green-dot {
    position: absolute;
    top: 6%;
    left: 6%;
}

.faa-heart-trans {
    position: absolute;
    top: 6%;
    height: 22px;
    vertical-align: middle;
    text-align: center;
    width: 22px;
    padding: 0px !important;
    line-height: 24px;
    right: 6%;
    color: #858484;
    font-size: 14px;
    background-color: #e4e0e0cc;
    border-radius: 50%;
    opacity: 0.8;
}

.star-food {
    vertical-align: middle;
    display: inline-flex;
    font-family: "Lexend Regular";
    color: white;
    background-color: var(--theme-brand);
    font-size: 13.9px;
    font-weight: 400;
    line-height: 16px;
    border-radius: 2px;
    padding: 1% 4%;
    padding-bottom: 0.5%;
}

.fs-food {
    font-size: 10px;
    margin-right: 5%;
}

.food-title {
    font-family: "Lexend Regular";
    color: var(--theme-muted-strong) !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    line-height: 20px !important;
}

.price-discount {
    font-family: "Lexend Regular";
    color: var(--theme-muted-strong) !important;
    font-size: 20px !important;
    font-weight: 400 !important;
    line-height: 34px !important;
}

.price-mrp {
    font-family: "Lexend Regular";
    color: var(--theme-muted) !important;
    font-size: 17px !important;
    font-weight: 400 !important;
    line-height: 20px !important;
    text-decoration: line-through !important;
}

.btn-food {
    font-family: "Helvetica";
    color: white !important;
    background-color: var(--theme-brand) !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    line-height: 18px !important;
    border-radius: 6px !important;
    padding: 3% 10% !important;
    text-align: center !important;
}

.faa-food {
    color: var(--theme-white) !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    line-height: 18px !important;
}

/* ################# OFFERS ################# */
.offer-img {
    height: 180px;
    width: 100%;
}

/* ################# HANDMADE PRODUCT ################# */
.bg-img {
    background-image: url("../../img/handmade-back.png");
    background-size: cover;
    background-repeat: no-repeat;
}

.homemade-title {
    font-family: "Lexend Regular";
    color: var(--theme-danger-deep);
    font-size: 40px;
    font-weight: 500;
    line-height: 52px;
}

.homemade-content {
    font-family: "Lexend Regular";
    color: var(--theme-ink-strong);
    font-size: 24px;
    font-weight: 500;
    line-height: 34px;
}

.btn-homemade {
    background-color: transparent;
    font-family: "Lexend Regular";
    color: var(--theme-ink-strong);
    font-size: 18px;
    font-weight: 500;
    padding: 0.5% 3%;
    border: 0.7px solid #171616;
}

.btn-homemade:hover {
    background-color: var(--theme-ink-strong);
    font-family: "Lexend Regular";
    color: white;
}

.padd-home {
    padding-left: 40%;
}

/* ########### FAST FOOD ########## */
.fastfood-title {
    color: #626262;
    font-family: "Lexend Regular";
    font-size: 40px;
    font-weight: 500;
}

.fastfood-title-green {
    color: var(--theme-brand);
}

.fastfood-content {
    color: #868585;
    font-family: "Lexend Regular";
    font-size: 20px;
    font-weight: 400;
    padding-right: 32%;
}

.fastfood-img-google {
    height: 60px;
    width: 100%;
    padding: 1.5%;
}

.fastfood-img-app {
    height: 60px;
    width: 100%;
    padding: 1.5%;
}

.bg-fastfood {
    height: 350px;
    width: fit-content;
    background-color: #ddf5f0;
    border-top-left-radius: 500px;
    border-bottom-left-radius: 500px;
}

.fastfood-img {
    height: 380px;
    width: auto;
    overflow: visible;
}

/* ############### Cards ############## */
.card-container {
    display: grid !;
    /* grid-template-columns: repeat(5, 1fr); */
    /* grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)) !important;   */
    /* grid-template-rows: auto; */
    gap: 10px;
    /* align-items: center; */
}

.catg-tittle {
    font-family: "Lexend Regular";
    font-size: 40px;
    font-weight: 600;
    line-height: 46.4px;
    text-align: left;
    color: #484848;
}

.card-fig-discount {
    position: absolute;
    width: 56.36px;
    height: 17.83px;
    top: 9.5px;
    left: 0px;
    border-radius: 0px 20px 20px 0px;
    opacity: 0px;
    background-color: #e3fadd;
    font-family: "Lexend Regular";
    font-size: 10.17px;
    font-weight: 600;
    color: var(--theme-brand);
}

.custom-cardstitle {
    font-family: "Lexend Regular";
    font-size: 13.44px;
    font-weight: 500;
    line-height: 14.16px;
    text-align: left;
    color: var(--theme-muted-strong);
}

.tile-figure {
    height: 177.31px;
    overflow: hidden;
}

.tile-figure .tile-figure-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: var(--theme-gray-hover);
    aspect-ratio: 1;
}

.tile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures the image covers the figure area while maintaining its aspect ratio */
}

.tile-favorite {
    width: 25.49px;
    height: 25.49px;
    background: #C8C2BF;
    top: 8.21px;
    right: 13.93px;
}

.card-rating-text {
    font-family: "Lexend Regular";
    font-size: 9.95px;
    font-weight: 500;
    line-height: 14.93px;
    text-align: left;
    color: var(--theme-muted);
}

.card-amount {
    font-size: 18.08px;
    font-weight: 400;
    line-height: 24.3px;
    text-align: left;
    color: var(--theme-muted-strong);
}

.card-cut-amount {
    font-size: 13.95px;
    font-weight: 400;
    line-height: 15.92px;
    text-align: left;
    color: #727171;
}

.card-selectbox {
    width: 80px;
    height: 22px;
    color: #6f6e6e;
    font-size: 12.49px;
}

.card-qnty-inputbox {
    width: 75.23px;
    height: 24.92px;
    border-radius: 2px 0px 0px 0px;
    opacity: 0px;
    border: 1px solid #c9c8c8;
}

.card-Addbutton {
    width: 80.63px;
    height: 24.92px;
    border-radius: 2px;
    background-color: var(--theme-brand);
    border: none;
    color: var(--theme-white);
}

.card-Addbutton:disabled {
    background-color: #8edb76;
    cursor: not-allowed;
}

.text-xs {
    font-size: 0.775rem;
}

#addModal .select2-container {
    width: 100% !important;
}

#addModal .select2-container--default .select2-selection--single {
    height: 38px !important;
}

#addModal .select2-container--default .select2-selection--single .select2-selection__rendered {
    height: 37px !important;
    line-height: 37px !important;
}

/* ########### FAST FOOD ########## */
.wcu-fullcontainer {
    background-color: #e3fadd;
    margin-top: 70px;
    margin-bottom: 90px;
}

.wcu-heading {
    background-image: url("../../../assets/img/why-choose-us-background.png") !important;
    background-size: cover;
    background-position: center;
    font-family: "Lexend Regular";
    font-size: 35.25px;
    font-weight: 500;
    text-align: left;
    color: var(--theme-brand);
    width: 370px;
    border-radius: 0px, 200px, 200px, 0px;
    padding: 39.24px 38.59px 44.53px 44.53px;
}

.wcu-insideimg {
    border-right: 2px solid #d6cfcb;
}

.wcu-tittle {
    font-family: "Lexend Regular";
    font-size: 29.56px;
    font-weight: 600;
    color: var(--theme-brand);
    text-align: left;
}

.wcu-prg {
    font-family: "Lexend Regular";
    font-size: 11.32px;
    font-weight: 400;
    text-align: left;
    color: #666666;
    max-width: 203px;
}

/* ############### FEATURED ############## */
.featured-img-abs {
    position: absolute;
    height: 486px;
    left: 0px;
}

.featured-heading {
    color: var(--theme-brand);
    font-family: "Lexend Regular";
    font-size: 40px;
    font-weight: 500;
}

.featured-title {
    color: #626262;
    font-family: "Lexend Regular";
    font-size: 24px;
    font-weight: 500;
    margin-top: 2%;
}

.featured-content {
    color: #868585;
    font-family: "Lexend Regular";
    font-size: 14px;
    font-weight: 400;
}

.featured-img {
    height: 180px;
    width: auto;
}

/* ############ TESTIMONIAL ############# */
.testimonial_carousel_section .owl-dots {
    text-align: center;
}

.testimonial_carousel_section .owl-dot {
    display: inline-block !important;
    height: 10px !important;
    width: 50px !important;
    background-color: var(--theme-white) !important;
    opacity: 0.8;
    border-radius: 4px;
    margin: 0px 4px;
}

.testimonial_carousel_section .owl-dot.active {
    background-color: var(--theme-brand) !important;
}

.testimonial_carousel_section .owl-theme .owl-dots .owl-dot span {
    display: none !important;
}

.testimonial_carousel_section .owl-carousel .owl-dots.disabled,
.owl-carousel .owl-nav.disabled {
    display: block !important;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: transparent !important;
}

.owl-theme .owl-dots .owl-dot span {
    background: transparent !important;
}

.owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 3% !important;
}

.bg-testimonial {
    background: var(--theme-white);
}

.radd-card {
    border-radius: 14px !important;
}

.radd-card:hover {
    background-color: var(--theme-brand);
}

.radd-card:hover p {
    color: white !important;
    background-color: var(--theme-brand);
}

.testimonial-img {
    height: 75px !important;
    width: 75px !important;
    background-color: white !important;
}

.testimonial-heading {
    color: var(--theme-brand);
    font-family: "Lexend Regular";
    font-size: 40px;
    font-weight: 400;
    line-height: 54px;
}

.testimonial-heading-strong {
    color: var(--theme-brand);
    font-family: "Lexend Regular";
    font-size: 40px;
    font-weight: 700;
    line-height: 54px;
}

.testimonial-title {
    color: #696767;
    font-family: "Lexend Regular";
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 0px !important;
}

.ratings i {
    color: #ffe600;
    font-size: 12px;
}

.testimonial-content {
    color: #696767;
    font-family: "Helvetica";
    font-size: 16px;
    font-weight: 400;
}

.canvas-form {
    max-width: 100%;
    overflow: auto;
}

.btn-captcha {
    height: fit-content;
    margin: auto;
}

/* ############# FOOTER ############## */
.faa-padd {
    width: 35px;
    height: 35px;
    line-height: 35px;
    padding: 0px !important;
    margin-right: 3%;
}

.faa-padd1 {
    width: 35px;
    height: 35px;
    line-height: 35px;
    padding: 0px !important;
    margin-right: 3%;
}

.copyright {
    font-family: "Helvetica";
    color: #817b7b;
    font-size: 12px;
    font-weight: 300;
}

.footer-para {
    color: var(--theme-white);
    font-family: "Helvetica";
    font-size: 14px;
    font-weight: 400;
    padding-right: 10%;
}

.faa-footer-font {
    font-size: 14px;
    font-weight: 600;
}

.margin-footer-link {
    color: var(--theme-brand);
    font-family: "Lexend Regular";
    font-size: 18px;
    font-weight: 700;
}

.fa-ul .footer-li {
    color: #ffeaea;
    font-family: "Lexend Regular";
    font-size: 14px;
    font-weight: 400;
}

.fa-ul .footer-li-right {
    color: #ffeaea;
    text-align: left;
    font-family: "Lexend Regular";
    font-size: 14px;
    font-weight: 600;
    line-height: 28px;
    padding-bottom: 4%;
}

.faa-footer-fa {
    height: 32px;
    width: 32px;
    line-height: 32px;
    font-size: 14px;
    color: white;
    background-color: var(--theme-brand);
    border-radius: 50%;
}

/* ########################## Download  our app Section  ########################### */
.dop-container {
    background-color: #e5f1f7;
}

.dop-items img {
    width: 450px;
}

.dop-heading {
    text-transform: capitalize;
    font-family: "Lexend Regular";
    font-size: 74.79px;
    font-weight: 500;
    max-width: 393px;
    line-height: 68.06px;
    text-align: left;
    color: var(--theme-brand);
}

.dop-prg {
    font-family: "Lexend Regular";
    font-size: 23.55px;
    max-width: 407px;
    font-weight: 400;
    text-transform: capitalize;
    line-height: 34.32px;
    text-align: left;
    color: #716e6e;
}

.market-btn {
    display: inline-block;
    padding: 0.3125rem 0.875rem;
    padding-left: 2.8125rem;
    -webkit-transition: border-color 0.25s ease-in-out,
        background-color 0.25s ease-in-out;
    transition: border-color 0.25s ease-in-out,
        background-color 0.25s ease-in-out;
    border: 1px solid #e7e7e7;
    background-position: center left 0.75rem;
    background-color: #191918;
    background-size: 1.5rem 1.5rem;
    border-radius: 8px;
    background-repeat: no-repeat;
    text-decoration: none;
}

.market-btn .market-button-title {
    display: block;
    color: var(--theme-white);
    font-size: 1.125rem;
}

.market-btn .market-button-subtitle {
    display: block;
    margin-bottom: -0.25rem;
    color: var(--theme-white);
    font-size: 0.75rem;
}

.apple-btn {
    background-image: url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTkuMC4wLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeD0iMHB4IiB5PSIwcHgiIHZpZXdCb3g9IjAgMCAzMDUgMzA1IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCAzMDUgMzA1OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgd2lkdGg9IjI0cHgiIGhlaWdodD0iMjRweCI+CjxnIGlkPSJYTUxJRF8yMjhfIj4KCTxwYXRoIGlkPSJYTUxJRF8yMjlfIiBkPSJNNDAuNzM4LDExMi4xMTljLTI1Ljc4NSw0NC43NDUtOS4zOTMsMTEyLjY0OCwxOS4xMjEsMTUzLjgyQzc0LjA5MiwyODYuNTIzLDg4LjUwMiwzMDUsMTA4LjIzOSwzMDUgICBjMC4zNzIsMCwwLjc0NS0wLjAwNywxLjEyNy0wLjAyMmM5LjI3My0wLjM3LDE1Ljk3NC0zLjIyNSwyMi40NTMtNS45ODRjNy4yNzQtMy4xLDE0Ljc5Ny02LjMwNSwyNi41OTctNi4zMDUgICBjMTEuMjI2LDAsMTguMzksMy4xMDEsMjUuMzE4LDYuMDk5YzYuODI4LDIuOTU0LDEzLjg2MSw2LjAxLDI0LjI1Myw1LjgxNWMyMi4yMzItMC40MTQsMzUuODgyLTIwLjM1Miw0Ny45MjUtMzcuOTQxICAgYzEyLjU2Ny0xOC4zNjUsMTguODcxLTM2LjE5NiwyMC45OTgtNDMuMDFsMC4wODYtMC4yNzFjMC40MDUtMS4yMTEtMC4xNjctMi41MzMtMS4zMjgtMy4wNjZjLTAuMDMyLTAuMDE1LTAuMTUtMC4wNjQtMC4xODMtMC4wNzggICBjLTMuOTE1LTEuNjAxLTM4LjI1Ny0xNi44MzYtMzguNjE4LTU4LjM2Yy0wLjMzNS0zMy43MzYsMjUuNzYzLTUxLjYwMSwzMC45OTctNTQuODM5bDAuMjQ0LTAuMTUyICAgYzAuNTY3LTAuMzY1LDAuOTYyLTAuOTQ0LDEuMDk2LTEuNjA2YzAuMTM0LTAuNjYxLTAuMDA2LTEuMzQ5LTAuMzg2LTEuOTA1Yy0xOC4wMTQtMjYuMzYyLTQ1LjYyNC0zMC4zMzUtNTYuNzQtMzAuODEzICAgYy0xLjYxMy0wLjE2MS0zLjI3OC0wLjI0Mi00Ljk1LTAuMjQyYy0xMy4wNTYsMC0yNS41NjMsNC45MzEtMzUuNjExLDguODkzYy02LjkzNiwyLjczNS0xMi45MjcsNS4wOTctMTcuMDU5LDUuMDk3ICAgYy00LjY0MywwLTEwLjY2OC0yLjM5MS0xNy42NDUtNS4xNTljLTkuMzMtMy43MDMtMTkuOTA1LTcuODk5LTMxLjEtNy44OTljLTAuMjY3LDAtMC41MywwLjAwMy0wLjc4OSwwLjAwOCAgIEM3OC44OTQsNzMuNjQzLDU0LjI5OCw4OC41MzUsNDAuNzM4LDExMi4xMTl6IiBmaWxsPSIjMmUyZTJlIi8+Cgk8cGF0aCBpZD0iWE1MSURfMjMwXyIgZD0iTTIxMi4xMDEsMC4wMDJjLTE1Ljc2MywwLjY0Mi0zNC42NzIsMTAuMzQ1LTQ1Ljk3NCwyMy41ODNjLTkuNjA1LDExLjEyNy0xOC45ODgsMjkuNjc5LTE2LjUxNiw0OC4zNzkgICBjMC4xNTUsMS4xNywxLjEwNywyLjA3MywyLjI4NCwyLjE2NGMxLjA2NCwwLjA4MywyLjE1LDAuMTI1LDMuMjMyLDAuMTI2YzE1LjQxMywwLDMyLjA0LTguNTI3LDQzLjM5NS0yMi4yNTcgICBjMTEuOTUxLTE0LjQ5OCwxNy45OTQtMzMuMTA0LDE2LjE2Ni00OS43N0MyMTQuNTQ0LDAuOTIxLDIxMy4zOTUtMC4wNDksMjEyLjEwMSwwLjAwMnoiIGZpbGw9IiMyZTJlMmUiLz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8L3N2Zz4K);
}

.google-btn {
    background-image: url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTkuMC4wLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeD0iMHB4IiB5PSIwcHgiIHZpZXdCb3g9IjAgMCA1MTIgNTEyIiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCA1MTIgNTEyOyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgd2lkdGg9IjUxMnB4IiBoZWlnaHQ9IjUxMnB4Ij4KPHBvbHlnb24gc3R5bGU9ImZpbGw6IzVDREFERDsiIHBvaW50cz0iMjkuNTMsMCAyOS41MywyNTEuNTA5IDI5LjUzLDUxMiAyOTkuMDA0LDI1MS41MDkgIi8+Cjxwb2x5Z29uIHN0eWxlPSJmaWxsOiNCREVDQzQ7IiBwb2ludHM9IjM2OS4wNjcsMTgwLjU0NyAyNjIuMTc1LDExOS40NjcgMjkuNTMsMCAyOTkuMDA0LDI1MS41MDkgIi8+Cjxwb2x5Z29uIHN0eWxlPSJmaWxsOiNEQzY4QTE7IiBwb2ludHM9IjI5LjUzLDUxMiAyOS41Myw1MTIgMjYyLjE3NSwzODMuNTUxIDM2OS4wNjcsMzIyLjQ3IDI5OS4wMDQsMjUxLjUwOSAiLz4KPHBhdGggc3R5bGU9ImZpbGw6I0ZGQ0E5NjsiIGQ9Ik0zNjkuMDY3LDE4MC41NDdsLTcwLjA2Myw3MC45NjFsNzAuMDYzLDcwLjk2MWwxMDguNjg4LTYyLjg3N2M2LjI4OC0zLjU5Myw2LjI4OC0xMS42NzcsMC0xNS4yNyAgTDM2OS4wNjcsMTgwLjU0N3oiLz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPC9zdmc+Cg==);
}

/* ########################## BREADCRUMB ########################### */

.breadcrumb-item+.breadcrumb-item::before {
    float: left;
    line-height: 38px;
    padding-right: var(--bs-breadcrumb-item-padding-x);
    color: var(--bs-breadcrumb-divider-color);
    content: var(--bs-breadcrumb-divider, ">") !important;
}

.bread-head a {
    font-family: "Lexend Regular";
    font-size: 16px;
    font-weight: 400;
    color: var(--theme-brand);
    line-height: 38px;
    text-decoration: none;
}

.bread-title a {
    font-family: "Lexend Regular";
    font-size: 16px;
    font-weight: 400;
    color: var(--theme-brand);
    line-height: 38px;
    text-decoration: none;
}

.breadcrumb-item {
    font-family: "Lexend Regular";
    font-size: 16px;
    font-weight: 400;
    line-height: 38px;
    color: #8f8f8f;
}

.breadcrumb-item.bread-active {
    color: #818689 !important;
}

/* ########################## PRODUCT DETAIL PAGE ########################### */

.sidebar li .submenu {
    list-style: none;
    margin: 0;
    padding: 0;
    padding-left: 1rem;
    padding-right: 1rem;
}

/* ########################## PRODUCT NAV START ########################### */
.header-nav-wrapper {
    background-color: var(--theme-brand);
}

.header-nav-container {
    max-width: 1499px;
    padding-left: 8px;
    padding-right: 8px;
    margin: 0 auto;
}

.header-nav-l2-wrapper,
.header-nav-l2-wrapper__right,
.header-nav-l3-wrapper,
.header-nav-l3-wrapper__right {
    display: none;
}

.header-nav-l1 {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
}

.header-nav-l1-item {
    position: relative;
    padding: 0;
    border-bottom: 4px solid rgba(0, 0, 0, 0);
    margin-right: 16px;
    color: var(--theme-white);
    cursor: pointer;
    font-family: "JioType", helvetica, arial, sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: -0.07px;
}

.header-nav-l1-item:hover {
    /* border-bottom: 4px solid #ddf5f0; */
    background-color: var(--theme-brand);
}

.header-nav-l1-item:hover>.header-nav-l2-wrapper,
.header-nav-l1-item:hover>.header-nav-l2-wrapper__right {
    display: block;
}

.header-nav-l1-item-link {
    display: block;
    width: 100%;
    height: 100%;
    padding: 8px;
}

.header-nav-l2,
.header-nav-l2__right {
    max-width: 250px;
    min-width: 250px;
    max-height: 475px;
    overflow-y: auto;
    overflow-x: hidden;
    background-color: var(--theme-gray-soft);
    color: rgba(0, 0, 0, 0.65);
    padding: 8px;
    font-family: "JioType", helvetica, arial, sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: -0.08px;
    line-height: 1.5;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    border-bottom: 20px solid var(--theme-gray-soft);
}

.header-nav-l2-wrapper,
.header-nav-l2__right-wrapper {
    position: absolute;
    top: 43px;
    left: 0px;
    z-index: 20;
    padding-bottom: 15px;
    background-color: var(--theme-gray-soft);
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
}

.header-nav-l2-wrapper__right,
.header-nav-l2__right-wrapper__right {
    position: absolute;
    top: 43px;
    left: unset;
    right: 0;
    z-index: 20;
}

.header-nav-l2-item,
.header-nav-l2-item__right,
.header-nav-l2__right-item,
.header-nav-l2__right-item__right {
    padding: 0 16px;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    color: rgba(0, 0, 0, 0.65);
    overflow: hidden;
    text-overflow: ellipsis;
}

.header-nav-l2-item:hover,
.header-nav-l2-item__right:hover,
.header-nav-l2__right-item:hover,
.header-nav-l2__right-item__right:hover {
    padding: 0 16px;
    /* background-color: #e5f1f7; */
    background-color: var(--theme-brand);
    color: #141414;
    transition-property: background-color;
    transition: cubic-bezier(0.35, 0, 0.25, 1) 300ms;
}

.header-nav-l2-item:hover>.header-nav-l3-wrapper,
.header-nav-l2-item:hover>.header-nav-l3-wrapper__right,
.header-nav-l2-item__right:hover>.header-nav-l3-wrapper,
.header-nav-l2-item__right:hover>.header-nav-l3-wrapper__right,
.header-nav-l2__right-item:hover>.header-nav-l3-wrapper,
.header-nav-l2__right-item:hover>.header-nav-l3-wrapper__right,
.header-nav-l2__right-item__right:hover>.header-nav-l3-wrapper,
.header-nav-l2__right-item__right:hover>.header-nav-l3-wrapper__right {
    display: block;
}

.header-nav-l2-item-link,
.header-nav-l2-item-link__right,
.header-nav-l2-item__right-link,
.header-nav-l2-item__right-link__right,
.header-nav-l2__right-item-link,
.header-nav-l2__right-item-link__right,
.header-nav-l2__right-item__right-link,
.header-nav-l2__right-item__right-link__right {
    display: block;
    width: 100%;
    height: 100%;
    padding: 8px 0;
}

.header-nav-l2-item:hover,
.header-nav-l2__right-item:hover {
    border-top-left-radius: 250px;
    border-bottom-left-radius: 250px;
}

.header-nav-l2-item__right:hover,
.header-nav-l2__right-item__right:hover {
    border-top-right-radius: 250px;
    border-bottom-right-radius: 250px;
}

.header-nav-l2 {
    padding: 8px 0 8px 8px;
}

.header-nav-l3,
.header-nav-l3__right {
    position: absolute;
    max-width: 250px;
    min-width: 250px;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    background-color: var(--theme-white);
    color: rgba(0, 0, 0, 0.65);
    padding: 8px 16px;
    font-family: "JioType", helvetica, arial, sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: -0.08px;
    line-height: 1.5;
}

.header-nav-l3-wrapper,
.header-nav-l3__right-wrapper {
    position: absolute;
    left: calc(100% - 16px);
    top: 0;
    bottom: 0;
}

.header-nav-l3-wrapper__right,
.header-nav-l3__right-wrapper__right {
    position: absolute;
    left: calc(-100% + 8px);
    top: 0;
    bottom: 0;
}

.header-nav-l3-item,
.header-nav-l3-item__right,
.header-nav-l3__right-item,
.header-nav-l3__right-item__right {
    padding: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

.header-nav-l3-item:hover,
.header-nav-l3-item__right:hover,
.header-nav-l3__right-item:hover,
.header-nav-l3__right-item__right:hover {
    color: var(--theme-brand);
    font-family: "JioType", helvetica, arial, sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: -0.08px;
    line-height: 1.5;
}

.header-nav-l3-item-link,
.header-nav-l3-item-link__right,
.header-nav-l3-item__right-link,
.header-nav-l3-item__right-link__right,
.header-nav-l3__right-item-link,
.header-nav-l3__right-item-link__right,
.header-nav-l3__right-item__right-link,
.header-nav-l3__right-item__right-link__right {
    display: block;
    width: 100%;
    height: 100%;
    padding: 8px 0;
}

.header-nav-l3 {
    border-bottom-right-radius: 16px;
    clip-path: inset(0 0 0 0 round 0 0 16px 0);
}

.header-nav-l3__right {
    border-bottom-left-radius: 16px;
}

/* ########################## PRODUCT NAV END ########################### */

/* ########################## PRODUCT PAGE ########################### */

.hr {
    /* margin: 0 30%; */
    border-top: 4px solid;
    color: var(--theme-brand);
}

.sidebar-shado {
    box-shadow: 0px 0px 4px 1px var(--theme-shadow-legacy);
    border-radius: 13px;
}

.sidebar-header {
    font-family: "Lexend Regular";
    font-size: 28px;
    font-weight: 500;
    line-height: 42px;
    color: var(--theme-muted-strong);
}

.sidebar-title {
    font-family: "Lexend Regular";
    font-size: 18px;
    font-weight: 400;
    line-height: 36px;
    color: #73787a;
    text-decoration: none;
}

.sidebar-subtitle {
    font-family: "Lexend Regular";
    font-size: 18px;
    font-weight: 400;
    line-height: 44px;
    color: #73787a;
    text-decoration: none;
    padding: 1% 6%;
}

.btn-sort {
    font-family: "Helvetica";
    font-size: 14px;
    font-weight: 400;
    line-height: 14px;
    color: #848181 !important;
    background-color: var(--theme-white);
    border: 0.85px solid var(--theme-brand);
    border-radius: 20px;
    right: 6%;
    top: 40%;
}

.btn-sort:hover {
    border: 0.8px solid #369519;
    border-radius: 20px;
}

.btn-quant {
    color: white !important;
    background-color: var(--theme-brand) !important;
    border-radius: 6px !important;
    height: 40px;
    width: 40px;
    line-height: 40px;
    padding: 0px !important;
    margin-bottom: 2%;
}

.quantity-btn {
    border: 1.3px solid var(--theme-brand);
    border-radius: 8px;
    padding: 3% 0%;
}

.fw-quant {
    color: var(--theme-muted);
    font-size: 18px;
    font-weight: 500;
    width: 30px;
    border-radius: 6px;
}

.faa-quant {
    color: var(--theme-white) !important;
    font-size: 16px !important;
    font-weight: 500 !important;
}

/* ##################### PRODUCT DETAIL PAGE #################### */

.image-gallery {
    margin: 0 auto;
    display: flex;
}

.primary,
.thumbnails {
    display: flex;
}

.primary {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    background-color: #cccccc;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.thumbnail-image {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    margin: 20px auto;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

/* Bottom Bar */
.bottombar {
    display: none;
    position: fixed;
    width: 100%;
    bottom: 0;
    z-index: 10;
    border-top-left-radius: 1.5rem;
    border-top-right-radius: 1.5rem;
    background-color: var(--theme-gray-soft);
    color: var(--theme-muted-strong);
    transition: transform 0.3s ease;
}

.bottombar.hidden {
    transform: translateY(100%);
}

.bottombar_container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 1rem;
}

.bottombar_link {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 0.5rem;
    gap: 5px;
}

.text-subtle-medium {
    font-size: 12px;
    line-height: 16px;
    font-weight: 500;
}

.nav-postion {
    position: fixed;
    z-index: 99;
    width: 100%;
    top: 0;
}

.content-margin {
    margin-top: 138px;
}

.cf:before,
.cf:after {
    content: "";
    display: table;
}

.cf:after {
    clear: both;
}

.cf {
    zoom: 1;
}

#content {
    max-width: 650px;
    text-align: center;
}

#featured_img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    background: var(--theme-gray-hover);
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 400px;
    margin: auto;
    padding: 10px;
    margin-bottom: 20px;
}

#featured_img img,
#thumb_img img {
    max-width: 100%;
    max-height: 100%;
}

#thumb_img {
    margin-top: 2%;

    img {
        float: left;
        max-width: 32%;
        width: 32%;
        cursor: pointer;
        margin-right: 2%;
        border: 2px solid #eee;
        box-sizing: border-box;

        &.active {
            border: 2px solid #cac6b8;
        }

        &:last-child {
            margin-right: 0;
        }
    }
}

.img-pro-detail {
    padding-top: 3%;
    padding-right: 1%;
}

.img-pro-detail-last {
    padding-top: 3%;
}

.btn-pro {
    font-family: "Helvetica";
    color: white !important;
    background-color: var(--theme-brand) !important;
    font-size: 20px !important;
    font-weight: 500 !important;
    border-radius: 18px !important;
    padding: 1% 8% !important;
    text-align: center !important;
}

.faa-pro {
    color: white !important;
    background-color: var(--theme-brand) !important;
    font-size: 18px !important;
    font-weight: 500 !important;
    padding-right: 8px;
}

.pro-title {
    font-family: "Lexend Regular";
    color: var(--theme-muted-strong);
    font-size: 28px;
    font-weight: 600;
    line-height: 36px;
}

.special {
    font-family: "Helvetica";
    color: var(--theme-muted-strong);
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
}

.pro-discount {
    font-family: "Lexend Regular";
    color: var(--theme-muted-strong);
    font-size: 26px;
    font-weight: 600;
    line-height: 36px;
}

.pro-mrp {
    font-family: "Lexend Regular";
    color: var(--theme-muted);
    font-size: 26px;
    font-weight: 400;
    line-height: 32px;
    text-decoration: line-through;
    margin-left: 10px;
}

#heart {
    color: gray;
    font-size: 26px;
    vertical-align: middle;
}

#heart.red {
    color: red;
}

.faa-share {
    vertical-align: middle;
    font-size: 26px;
    color: gray;
    font-weight: 600;
}

.star-pro {
    vertical-align: middle;
    display: inline-flex;
    font-family: "Lexend Regular";
    color: white;
    background-color: var(--theme-brand);
    font-size: 14px;
    font-weight: 400;
    line-height: 14px;
    border-radius: 2px;
    padding: 1% 4%;
    padding-bottom: 1%;
    vertical-align: middle;
}

.border-pro {
    border-bottom: 1px solid #b7b7b7;
}

.pro-li {
    font-family: "Helvetica";
    font-size: 18px;
    font-weight: 500;
    line-height: 32px;
    color: var(--theme-muted-strong);
}

.medium {
    font-family: "Lexend Regular";
    font-size: 10px;
    font-weight: 400;
    line-height: 14px;
    color: var(--theme-muted-strong);
}

.faa-plus {
    color: var(--theme-white) !important;
    font-size: 18px !important;
    font-weight: 500 !important;
    line-height: 20px !important;
}

.food-pro-title {
    font-family: "Lexend Regular";
    color: var(--theme-muted-strong) !important;
    font-size: 20px !important;
    font-weight: 500 !important;
    line-height: 28px !important;
}

.btn-faa-pro {
    font-family: "Helvetica";
    color: white !important;
    background-color: var(--theme-brand) !important;
    font-size: 19px !important;
    font-weight: 500 !important;
    line-height: 22px !important;
    border-radius: 6px !important;
    padding: 4% 12% !important;
    text-align: center !important;
}

/* ###################### Order Summary Page #####################  */
.card-order {
    box-shadow: 0px 1.0453660488128662px 4.181464195251465px 1.0453660488128662px var(--theme-shadow-legacy);
    border-radius: 12px;
}

.padd-img-order {
    padding: 1.2%;
}

.pro-order-title {
    font-family: "Lexend Regular";
    color: var(--theme-muted-strong);
    font-size: 22px;
    font-weight: 600;
    line-height: 30px;
    max-width: 92%;
}

.pro-order-discount {
    font-family: "Lexend Regular";
    color: var(--theme-muted-strong);
    font-weight: 400;
    margin-bottom: 5px;
}

p.pro-order-discount {
    font-size: 16px;
}

.pro-order-discount.text-big {
    font-weight: 600;
    font-size: 22px;
}

.pro-order-mrp {
    font-family: "Lexend Regular";
    color: var(--theme-muted);
    text-decoration: line-through;
}

.quant-order-btn {
    border: 2px solid var(--theme-brand);
    border-radius: 10px;
}

.quant-order-btn:hover {
    border: 2.5px solid var(--theme-brand) !important;
    border-radius: 10px;
}

.bg-order-pm {
    color: white !important;
    background-color: var(--theme-brand) !important;
    border: none !important;
    border-radius: 50%;
    height: 25px;
    width: 25px;
    line-height: 25px;
    text-align: center;
    vertical-align: middle;
    display: inline-block;
}

.faa-trash {
    color: #981212;
    background-color: #eaeaea;
    border-radius: 50%;
    font-size: 16px;
    font-weight: 500;
    height: 40px;
    width: 40px;
    line-height: 40px;
    text-align: center;
    vertical-align: middle;
    font-weight: 600;
}

.fw-quant-order {
    color: var(--theme-white);
    font-size: 16px;
    font-weight: 500;
    font-weight: 600;
}

.fw-quant-order-value {
    color: #564e4e;
    font-size: 18px;
    font-weight: 500;
    vertical-align: middle;
}

.display-pmt {
    display: -webkit-box;
}

.abs-btn1 {
    top: 14px;
    right: 14px;
    position: absolute;
}

.abs-btn2 {
    bottom: 14px;
    right: 14px;
    position: absolute;
}

.card-order-place {
    box-shadow: 0px 0px 4px 1px var(--theme-shadow-legacy);
}

.order-place-title {
    font-family: "Lexend Regular";
    color: #20241f;
    font-size: 22px;
    font-weight: 700;
    line-height: 24px;
    margin-top: 10%;
}

.order-place-subtitle {
    color: #c8c8c8;
    font-size: 10px;
    font-family: "Lexend Regular";
    font-weight: 600;
    line-height: 0px;
}

.form-order-place {
    font-family: "Lexend Regular";
    color: #aeaeae;
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
    padding: 0.75rem 0.75rem !important;
    border-radius: 0;
    background-color: #f0eeee;
}

.btn-order-coupon {
    font-family: "Lexend Regular";
    color: var(--theme-white);
    background-color: var(--theme-brand);
    text-transform: capitalize;
    font-size: 14px;
    font-weight: 500;
    border-radius: 0;
    line-height: 17px;
}

.order-price-box {
    box-shadow: 0px 0px 4px 0px var(--theme-shadow-legacy);
    border-radius: 7px, 7px, 0px, 0px;
}

.order-place-content {
    font-family: "Lexend Regular";
    color: #20241f;
    font-size: 16px;
    font-weight: 700;
    line-height: 18px;
    margin-top: 6%;
}

.btn-order-place {
    font-family: "Helvetica";
    color: white !important;
    background-color: var(--theme-brand) !important;
    font-size: 20px !important;
    font-weight: 500 !important;
    border-radius: 12px !important;
    padding: 0.8% 8% !important;
    text-align: center !important;
}

/* ############### SHIP ORDER PAGE ###############  */
.ship-category {
    font-family: "Lexend Regular";
    color: #6d726c;
    font-size: 32px;
    font-weight: 500;
    line-height: 52px;
}

.btn-order-ship {
    font-family: "Helvetica";
    color: white !important;
    background-color: var(--theme-brand) !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    border-radius: 6.8px !important;
    padding: 0.5% 5% !important;
    text-align: center !important;
}

.card-order-ship {
    border: 2.5px solid var(--theme-brand);
    border-radius: 14px;
    box-shadow: 0px 0px 8px 0px var(--theme-shadow-legacy);
}

.faa-ship {
    color: var(--theme-brand) !important;
    background-color: white !important;
    font-size: 22px !important;
    font-weight: 600 !important;
    line-height: 32px !important;
    padding-right: 10px;
}

.order-ship-title {
    font-family: "Lexend Regular";
    color: var(--theme-muted);
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    padding-bottom: 15px;
    border-bottom: 0.88px solid #e0e0e0;
}

.order-ship-content {
    font-family: "Lexend Regular";
    color: #888888;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: -0.42 px;
    padding-bottom: 10px;
}

.order-ship-box {
    border: 2px solid var(--theme-gray-border);
    border-radius: 10px;
}

.border-ship {
    box-shadow: 0px 0px 4px 1px var(--theme-shadow-legacy);
    border-radius: 12px;
}

.h-ship {
    height: 75px;
}

.cart-card-product-h {
    max-height: 120px;
    max-width: 120px;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: var(--theme-gray-hover);
    aspect-ratio: 1;
}

.mini-image {
    width: 100%;
    max-height: 75px;
    object-fit: contain;
}

.pro-ship-title {
    font-family: "Lexend Regular";
    color: var(--theme-muted-strong);
    font-size: 18px;
    font-weight: 600;
    line-height: 26px;
}

.pro-ship-discount {
    font-family: "Lexend Regular";
    color: var(--theme-muted-strong);
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
}

.pro-ship-mrp {
    font-family: "Lexend Regular";
    color: var(--theme-muted);
    font-size: 22px;
    font-weight: 400;
    line-height: 26px;
    text-decoration: line-through;
}

.pro-ship-quant {
    font-family: "Lexend Regular";
    color: var(--theme-muted-strong);
    font-size: 18px;
    font-weight: 500;
    line-height: 20px;
}

.active>.page-link,
.page-link.active {
    color: white !important;
    background-color: var(--theme-brand) !important;
    border: 1px solid var(--theme-brand) !important;
}

/* ############### MODAL ONE ###############  */
.card-modal-ship-active {
    border: 2px solid var(--theme-brand);
    border-radius: 14px;
    box-shadow: 0px 0px 8px 0px var(--theme-shadow-legacy);
}

.card-modal-ship-inactive {
    border: 2px solid #cdcdcd;
    border-radius: 14.03px;
    box-shadow: 0px 0px 8px 0px var(--theme-shadow-legacy);
}

.modal-category {
    font-family: "Lexend Regular";
    color: #3c3c3c;
    font-size: 32px;
    font-weight: 400;
    line-height: 54px;
}

.modal-ship-title {
    font-family: "Lexend Regular";
    color: var(--theme-muted);
}

.faa-modal {
    color: var(--theme-brand) !important;
    background-color: white !important;
    font-size: 22px !important;
    font-weight: 600 !important;
    line-height: 32px !important;
    padding-right: 8px;
}

.modal-ship-content {
    font-family: "Lexend Regular";
    color: #888888;
    font-size: 16px;
    font-weight: 400;
    padding-bottom: 0px;
    margin-bottom: 5px;
}

.faa-dott {
    color: var(--theme-brand) !important;
    background-color: #eeeeee;
    border-radius: 50%;
    height: 40px;
    font-size: 16px;
    text-align: center;
    width: 40px;
    line-height: 40px;
}

.btn-modal-active {
    font-family: "Helvetica";
    color: white !important;
    background-color: var(--theme-brand) !important;
}

.btn-modal-inactive {
    font-family: "Helvetica";
    color: #696262 !important;
    background-color: #cdcdcd !important;
}

/* ############ MODAL TWO Add Address #############  */
.validate-input {
    position: relative;
}

.wrap-input3 {
    width: 100%;
    position: relative;
    border-bottom: 2px solid #d7d7d7;
    margin-bottom: 27px;
}

.faa-form-input {
    color: var(--theme-brand);
    font-size: 30px;
}

input.input3 {
    padding-left: 6%;
    height: 45px;
}

.input3 {
    display: block;
    width: 100%;
    background: 0 0;
    font-family: "Helvetica";
    font-size: 24px;
    color: #858484;
    line-height: 34px;
    padding: 0 5px;
    outline: none;
    border: none;
    overflow: visible;
}

.focus-input3 {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: -4px;
    left: 0;
    pointer-events: none;
}

.focus-input3::before {
    content: "";
    display: block;
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
    background: var(--theme-white);
}

/* ############ MODAL Three Order Placed #############  */
.order-confirm-img {
    height: 300px;
}

.order-confirm-title1 {
    font-family: "Lexend Regular";
    color: var(--theme-muted);
    font-size: 36px;
    font-weight: 500;
    line-height: 46px;
    text-transform: uppercase;
    margin-bottom: 0px;
}

.order-confirm-title2 {
    font-family: "Lexend Regular";
    color: var(--theme-brand);
    font-size: 50px;
    font-weight: 600;
    line-height: 80px;
    text-transform: uppercase;
}

.z-index-1000 {
    z-index: 10000;
}

.order-confirm-title3 {
    font-family: "Lexend Regular";
    color: var(--theme-muted);
    font-size: 32px;
    font-weight: 400;
    line-height: 32px;
    text-transform: capitalize;
}

/* ######### location popover ########## */
.popover1 {
    display: none;
    position: absolute;
    width: 500px;
    z-index: 200;
    top: 54%;
    left: 18%;
    background-color: var(--theme-white);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 20px;
    text-align: justify;
}

.close-btn-icon {
    border: none;
    background-color: var(--theme-white);
}

.close-btn-icon:hover {
    background-color: #f0eded;
}

.popover1 h4 {
    color: var(--theme-muted);
    font-weight: 800;
}

.popover1 p {
    color: var(--theme-muted);
}

.current-location-btn {
    background-color: var(--theme-brand);
    color: var(--theme-white);
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 40px;
}

.current-location-btn:hover {
    color: white;
    background-color: var(--theme-brand);
}

/* ################### ABOUT US ################# */
.bg-aboutus {
    background-image: url("../../img/breadcrumb-img.png");
    background-size: cover;
    background-repeat: no-repeat;
}

.bread-heading {
    font-family: "Lexend Regular";
    color: var(--theme-white);
    font-size: 44px;
    font-weight: 600;
}

.bread-subheading {
    font-family: "Lexend Regular";
    color: var(--theme-white);
    font-size: 16px;
    font-weight: 400;
}

.text-about-justi {
    text-align: justify;
}

.contact {
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-shadow: 0px 1px 6px 2px var(--theme-shadow-legacy);
    border-radius: 30px;
}

.form {
    background-color: white;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.contact-getintouch {
    font-family: "Lexend Regular";
    color: var(--theme-brand);
    font-size: 38px;
    font-weight: 600;
}

.contact-detail {
    font-family: "Lexend Regular";
    color: #696868;
    font-size: 20px;
    font-weight: 500;
}

.form form {
    display: flex;
    flex-direction: column;
}

.flex-rev {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
    width: 100%;
}

.flex-rev input,
.flex-rev textarea {
    border: none;
    background-color: #f2f2f2;
    padding: 12px 10px;
    font-size: 16px;
    resize: none;
    margin-top: 7px;
    margin-bottom: 16px;
    border-radius: 5px;
    color: #243342;
    outline-color: #243342;
    outline-width: thin;
    -webkit-appearance: none;
}

.flex-rev textarea {
    height: 150px;
}

.circle-icon {
    background: white;
    border: 2.75px solid var(--theme-brand);
    font-size: 20px;
    color: var(--theme-brand);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    text-align: center;
    line-height: 55px;
    vertical-align: middle;
    margin-right: 3%;
}

.contct-iconp {
    font-family: "Lexend Regular";
    color: #5c5c5c;
    font-size: 20px;
    font-weight: 500;
    padding: 1% 2%;
}

.contact-img {
    height: 400px;
    width: 100%;
}

/* ############# Login Page ############## */
.login-img {
    height: 600px;
    width: auto;
}

.login-name {
    font-family: "Lexend Regular";
    color: var(--theme-brand);
    font-size: 36px;
    font-weight: 600;
}

.input-text-style {
    color: var(--theme-muted) !important;
    width: 74px !important;
    background-color: var(--theme-brand);
    border-bottom-right-radius: 30px !important;
    border-top-right-radius: 30px !important;
    border-top-left-radius: 12px !important;
    border-bottom-left-radius: 12px !important;
}

.faa-login {
    font-size: 26px;
    color: white;
    background-color: var(--theme-brand);
    margin: auto;
}

.input-grp {
    box-shadow: 0px 0px 7px 0px var(--theme-shadow-legacy) !important;
    background-color: white !important;
    border-radius: 15px !important;
}

.login-input {
    color: var(--theme-muted) !important;
    background-color: white !important;
    border: none !important;
    font-size: 18px !important;
    font-weight: 400 !important;
}

.login-detail {
    font-family: "Lexend Regular";
    color: #708090;
    font-size: 22px;
    font-weight: 400;
}

.login-detail-reg {
    font-family: "Lexend Regular";
    color: var(--theme-brand);
    font-size: 22px;
    font-weight: 400;
    text-decoration: none;
}

/* ############# OTP ############ */

.form-otp {
    font-size: 2rem !important;
}

.otp-input {
    height: 60px;
    width: 60px;
}

.login-detail {
    font-family: "Lexend Regular";
    color: #aaaaaa;
    font-size: 18px;
    font-weight: 400;
}

.login-detail-reg {
    font-family: "Lexend Regular";
    color: var(--theme-brand);
    font-size: 18px;
    font-weight: 400;
    text-decoration: none;
}

/* #################### Dashboard ##################  */
.card-dash {
    border: 2px solid #4a4f4833;
}

.dash-category {
    font-family: "Lexend Regular";
    color: #3e3939;
    font-size: 28px;
    font-weight: 500;
}

.dash-number {
    font-family: "Lexend Regular";
    color: var(--theme-brand);
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 1% !important;
}

.dash-total {
    font-family: "Lexend Regular";
    color: #3e3939;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 0% !important;
}

.card-dash-padd {
    padding: 3% 5% !important;
}

.dash-abs-img {
    right: -25px;
    top: 20px;
}

.bg-dash-in {
    background-color: var(--theme-brand);
    border-color: var(--theme-brand);
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 0px !important;
    border-top-left-radius: 0px !important;
}

.bg-dash-out {
    margin-right: 10%;
    background-color: var(--theme-brand);
    border-top-right-radius: 100px;
    border-bottom-right-radius: 100px;
}

.dash-balance {
    font-family: "Lexend Regular";
    color: white;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 0% !important;
}

.dash-money {
    font-family: "Lexend Regular";
    color: white;
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 0% !important;
}

/* ############### My Order Page ################ */
.card-myorder {
    border: 1.25px solid #eaeaea;
    border-radius: 16px;
}

.myorder-id {
    font-family: "Lexend Regular";
    color: #939393;
    font-size: 16px;
    font-weight: 500;
    text-align: left;
    margin-bottom: 1% !important;
}

.myorder-detail {
    font-family: "Lexend Regular";
    color: var(--theme-muted);
    font-size: 16px;
    font-weight: 500;
    text-align: left;
    margin-bottom: 1% !important;
}

.myorder-date {
    font-family: "Lexend Regular";
    color: var(--theme-muted);
    font-size: 16px;
    font-weight: 500;
    text-align: right;
}

.btn-myorder-del {
    font-family: "Lexend Regular";
    font-size: 16px !important;
    color: #29ac5d !important;
    background-color: #e2fded !important;
    border-radius: 6px;
    padding: 2% 8%;
    font-weight: 500;
}

.btn-myorder-can {
    font-family: "Lexend Regular";
    font-size: 16px !important;
    color: #d55453 !important;
    background-color: #ffe1e1 !important;
    border-radius: 6px;
    padding: 2% 8%;
    font-weight: 500;
}

.btn-myorder-ship {
    font-family: "Lexend Regular";
    font-size: 16px !important;
    color: #f19407 !important;
    background-color: #fff0d9 !important;
    border-radius: 6px;
    padding: 2% 8%;
    font-weight: 500;
}

.btn-myorder-con {
    font-family: "Lexend Regular";
    font-size: 16px !important;
    color: #605f5f !important;
    background-color: #e3e2e2 !important;
    border-radius: 6px;
    padding: 2% 8%;
    font-weight: 500;
}

.btn-myorder-plac {
    font-family: "Lexend Regular";
    font-size: 16px !important;
    color: #334476 !important;
    background-color: #d1dcfb !important;
    border-radius: 6px;
    padding: 2% 8%;
    font-weight: 500;
}

/* ############### Order View Page ############# */
.faa-order-view {
    font-size: 30px;
    color: var(--theme-muted);
    margin-right: 3%;
}

.btn-orderview {
    font-family: "Lexend Regular";
    color: var(--theme-muted) !important;
    font-size: 22px !important;
    font-weight: 700 !important;
}

.accordion-button:not(.collapsed)::after {
    background-size: 26px;
    width: 30px;
}

.accordion-button::after {
    background-size: 26px;
    width: 30px;
}

.order-view-text-left {
    font-family: "Lexend Regular";
    font-size: 14px;
    font-weight: 500;
    color: var(--theme-muted);
    margin-bottom: 10px !important;
}

.order-view-text-right {
    font-family: "Lexend Regular";
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px !important;
}

.orderview-img {
    border-radius: 6px;
}

.orderview-title {
    font-family: "Lexend Regular";
    font-size: 18px;
    font-weight: 500;
    color: var(--theme-black);
    margin-bottom: 0px !important;
}

.orderview-para {
    font-family: "Lexend Regular";
    font-size: 10px;
    font-weight: 500;
    color: #585858;
    margin-bottom: 10px !important;
}

.ordership-date {
    font-family: "Lexend Regular";
    font-size: 12px;
    font-weight: 700;
    color: var(--theme-muted);
    margin-bottom: 5px !important;
}

.orderview-mrp {
    font-family: "Lexend Regular";
    font-size: 16px;
    font-weight: 400;
    color: var(--theme-black);
    margin-bottom: 0px !important;
}

.btn-faa-orderview {
    font-family: "Helvetica";
    color: white !important;
    background-color: var(--theme-brand) !important;
    font-size: 20px !important;
    font-weight: 500 !important;
    line-height: 22px !important;
    border-radius: 6px !important;
    padding: 3% 12% !important;
    text-align: center !important;
}

.faa-download {
    color: var(--theme-white) !important;
    font-size: 22px !important;
    font-weight: 500 !important;
    line-height: 20px !important;
}

.order-view-title {
    font-family: "Lexend Regular";
    font-size: 14px;
    font-weight: 700;
    color: var(--theme-muted);
    margin-bottom: 10px !important;
}

.order-view-detail {
    font-family: "Lexend Regular";
    font-size: 12px;
    font-weight: 400;
    color: #666060;
    margin-bottom: 10px !important;
}

/* ############### Notification Page ############# */
.card-noti {
    box-shadow: 0px 0px 4px 0px var(--theme-shadow-legacy);
}

.noti-para {
    font-family: "Lexend Regular";
    font-size: 12px;
    font-weight: 400;
    color: var(--theme-muted);
    margin-bottom: 5px !important;
}

.noti-time {
    font-family: "Lexend Regular";
    font-size: 10px;
    font-weight: 500;
    color: #444242;
    margin-bottom: 0px !important;
}

/* ############### Order List Page ############# */
.card-orderlist {
    box-shadow: 0px 0px 6px 0px var(--theme-shadow-legacy);
    padding: 1% 2%;
}

.orderlist-title {
    font-family: "Lexend Regular";
    font-size: 20px;
    font-weight: 500;
    color: var(--theme-black);
    margin-bottom: 0px !important;
}

.orderlist-para {
    font-family: "Lexend Regular";
    font-size: 12px;
    font-weight: 500;
    color: #585858;
    margin-bottom: 0px !important;
}

.sidebar-title:hover {
    color: var(--theme-black);
}

.orderlist-mrp {
    font-family: "Lexend Regular";
    font-size: 20px;
    font-weight: 400;
    color: var(--theme-black);
    margin-bottom: 0px !important;
}

/* ############## Order Balance ################ */
.bg-i-wallet {
    background-color: #459c2b;
}

.card-wallet-brd {
    box-shadow: 0px 0px 8px 0px var(--theme-shadow-legacy);
    border-radius: 14px;
}

.wallet-i {
    background-color: white;
    display: inline-block;
    height: 85px;
    width: 85px;
    line-height: 85px;
    text-align: center;
    border-radius: 50%;
}

.faa-wallet-i {
    font-size: 44px !important;
    font-weight: 600;
    color: var(--theme-brand) !important;
    line-height: inherit;
}

.orderbal-name {
    font-family: "Lexend Regular";
    font-size: 20px;
    font-weight: 600;
    color: var(--theme-muted);
    margin-bottom: 0px !important;
}

.orderbal-date {
    font-family: "Lexend Regular";
    font-size: 14px;
    font-weight: 600;
    color: var(--theme-muted);
    margin-bottom: 0px !important;
}

.orderbal-detail {
    font-family: "Lexend Regular";
    font-size: 16px;
    font-weight: 400;
    color: var(--theme-muted);
    margin-bottom: 0px !important;
}

.orderbal-bal {
    font-family: "Lexend Regular";
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 0px !important;
}

.btn-wallet-main {
    color: var(--theme-brand) !important;
    font-size: 18px;
    font-weight: 700;
}

/* ################ Confirm Password ################ */
.form-confirmpass {
    box-shadow: 0px 0px 4px 1px var(--theme-shadow-legacy);
    border-radius: 24px;
}

.fa-eye-pass {
    font-size: 16px !important;
    color: #c5c1c1 !important;
}

.z-index-n1 {
    z-index: -5;
}

.get-profile {
    color: var(--theme-muted) !important;
    background-color: white !important;
    box-shadow: 0px 0px 4px 0px var(--theme-shadow-legacy) !important;
    background-color: white !important;
    border-radius: 8px !important;
    font-size: 18px !important;
    font-weight: 400 !important;
}

.notification-div {
    width: 250px;
    left: -60px !important;
    top: 120% !important;
    max-height: 375px;
    overflow-y: auto;
}

.notification-hover:hover {
    background-color: var(--theme-gray-hover);
}

/* WebKit browsers (Chrome, Safari) */
.notification-div::-webkit-scrollbar {
    width: 4px;
}

.notification-div::-webkit-scrollbar-thumb {
    background-color: var(--theme-gray-border);
}

.notification-div::-webkit-scrollbar-track {
    background-color: var(--theme-gray-hover);
}

/* Firefox */
.notification-div {
    scrollbar-width: thin;
    scrollbar-color: #888 var(--theme-gray-hover);
}

.notification-div .notification .title {
    font-size: 16px;
    font-weight: 700;
}

.notification-div .notification .message {
    font-size: 14px;
    font-weight: 500;
    color: #555;
    padding-top: 4px;
}

.notification-div .notification .time {
    font-size: 12px;
    font-weight: 400;
    color: #888;
}

.star-rating .fa {
    font-size: 24px;
    cursor: pointer;
}

.star-rating .fa-star {
    color: gold;
}

@media (max-width: 1192px) {
    .notification-div {
        left: -100px !important;
    }
}

/* is new feature bedge  */
.tile-new-badge {
    top: 8px;
    left: 8px;
    background: var(--theme-black);
    color: var(--theme-white);
    font-size: 11px;
    font-weight: 500;
    padding: 3px 6px;
    border-radius: 4px;
    z-index: 2;
}

.tile-favorite {
    top: 8px;
    right: 8px;
    z-index: 2;
}

/* ===== Legacy: responsive.css ===== */
@media (min-width: 1400px) {
    .shop-img-slide {
        background-color: white;
        height: 165px;
        width: 170px !important;
        overflow: hidden;
        border-radius: 50%;
        box-shadow: 0px 0px 14px 0px var(--theme-shadow-legacy);
    }

    .btn-sort {
        right: 6%;
        top: 46%;
    }
}

@media (min-width: 1200px) and (max-width: 1400px) {
    .shop-img-slide {
        background-color: white;
        height: 155px;
        width: 150px !important;
        overflow: hidden;
        border-radius: 50%;
        box-shadow: 0px 0px 14px 0px var(--theme-shadow-legacy);
    }
}

@media (max-width: 1280px) {
    .header-nav-wrapper {
        display: none;
    }

    .content-margin {
        margin-top: 98px;
    }

    .popover1 {
        top: 74%;
        left: 20%;
    }
}

@media (max-width: 1024px) {
    .popover1 {
        top: 100%;
    }

    .lg-header {
        display: none;
    }

    .sm-header {
        display: block;
    }

    .search {
        width: 100%;
    }

    .nav-container {
        gap: 10px;
    }

    .address-div {
        margin-left: 5%;
    }

    .navbar-toggler {
        padding: 1% 0;
    }

    .bottombar {
        display: block;
    }

    .content-margin {
        margin-top: 140px;
    }

    .offcanvas-title {
        font-size: 18px;
    }
}

@media (min-width: 992px) and (max-width: 1200px) {
    .abs-btn1 {
        top: 6px;
        right: 6px;
        position: absolute;
    }

    .abs-btn2 {
        bottom: 6px;
        right: 6px;
        position: absolute;
    }

    .text-navbar {
        color: white !important;
        font-size: 16px;
        font-weight: 500;
        line-height: 20px;
    }

    .navbar {
        --bs-navbar-nav-link-padding-x: 0rem;
    }

    .offer-img {
        height: 143px;
        width: fit-content;
    }

    .about-content {
        font-size: 18px;
    }

    .fastfood-title {
        font-size: 34px;
        font-weight: 500;
    }

    .fastfood-content {
        font-size: 18px;
        font-weight: 400;
        padding-right: 10%;
    }

    .price-discount {
        font-size: 22px !important;
        font-weight: 400 !important;
        line-height: 34.11px !important;
    }

    .card-footer {
        padding: 6% 1% !important;
    }

    .shop-img-slide {
        background-color: white;
        height: 125px;
        width: 120px !important;
    }

    .about-img {
        height: 340px;
        width: auto;
    }

    .about-content {
        font-size: 18px;
    }

    /* ============= Product Detail ============== */
    .btn-sort {
        top: 36%;
    }

    .sidebar-title {
        line-height: 30px;
    }

    .sidebar-subtitle {
        line-height: 34px;
    }

    #content {
        max-width: 650px;
        margin: auto;
        text-align: center;
    }

    .special {
        line-height: 22px;
    }

    .pro-title {
        font-size: 26px;
        line-height: 36px;
    }

    .pro-discount {
        font-size: 26px;
        line-height: 36px;
    }

    .img-pro-detail {
        height: 110px;
    }

    .img-pro-detail-last {
        height: 110px;
    }

    .food-pro-title {
        font-family: "Lexend Regular";
        font-size: 14px !important;
        line-height: 18px !important;
    }

    .btn-pro {
        font-size: 22px !important;
        padding: 1.5% 10% !important;
    }

    .faa-pro {
        font-size: 24px !important;
    }

    .btn-faa-pro {
        padding: 4% 7% !important;
    }

    /* ########### Order Place Page ###########  */
    .pro-order-title {
        font-size: 20px;
        font-weight: 600;
        line-height: 30px;
    }

    .pro-order-discount {
        font-size: 20px;
        font-weight: 600;
        line-height: 30px;
    }

    .pro-order-mrp {
        font-size: 20px;
    }

    .fw-quant-order-value {
        font-size: 14px;
        line-height: 26px;
    }

    .btn-order-place {
        font-size: 18px !important;
        padding: 1% 14% !important;
    }

    .padd-img-order {
        padding: 1%;
    }

    .faa-trash {
        font-size: 14px;
        height: 32px;
        width: 32px;
        line-height: 32px;
    }

    .quant-order-btn {
        padding: 3px 5px !important;
    }

    .bg-order-pm {
        height: 22px;
        width: 22px;
        line-height: 22px;
    }

    /* ############### SHIP ORDER PAGE ###############  */
    .pro-ship-title {
        font-size: 18px;
        line-height: 26px;
    }

    p.pro-order-discount {
        font-size: 16px;
        font-weight: 500;
    }

    .pro-ship-discount {
        font-size: 24px;
        line-height: 32px;
    }

    .pro-ship-mrp {
        font-size: 18px;
        line-height: 18px;
    }

    .pro-ship-quant {
        font-size: 16px;
        line-height: 16px;
    }

    .card-ship-padd {
        padding: 3% 3% !important;
    }

    .card-order {
        border-radius: 10px;
    }

    .ship-category {
        font-size: 30px;
        line-height: 50px;
    }

    .order-ship-title {
        font-size: 24px;
    }

    .order-ship-content {
        font-size: 20px;
        line-height: 30px;
        padding-bottom: 0px;
    }

    .h-ship {
        height: 75px;
    }

    .order-ship-content {
        font-size: 18px;
        line-height: 26px;
    }

    input.input3 {
        padding-left: 8%;
        height: 45px;
    }

    /* ################### ABOUT US ################# */

    .contact-detail {
        font-size: 18px;
    }

    .contct-iconp {
        font-size: 18px;
    }

    .contact-img {
        height: 380px;
    }

    /* ################ Login ################ */
    .login-img {
        height: 500px;
        width: auto;
    }

    .faa-login {
        font-size: 26px;
    }

    .input-text-style {
        width: 70px !important;
    }

    .login-input {
        font-size: 16px !important;
        line-height: 20px;
    }

    .login-detail {
        font-size: 20px;
    }

    .login-detail-reg {
        font-size: 20px;
    }

    /* ############# OTP ############ */

    .form-otp {
        font-size: 1.5rem !important;
    }

    .otp-input {
        height: 60px;
        width: 60px;
    }

    .padd-img-ship {
        padding: 0.5% 0.5%;
    }

    /* ############ DashBoard ############ */
    .dash-category {
        font-size: 26px;
        margin-bottom: 0px !important;
    }

    .dash-number {
        font-size: 34px;
        margin-bottom: 0% !important;
    }

    .dash-total {
        font-size: 16px;
    }

    .dash-balance {
        font-size: 18px;
    }

    .dash-money {
        font-size: 40px;
    }

    /* ############### My Order Page ################ */
    .myorder-detail {
        font-size: 14px;
    }

    .myorder-date {
        font-size: 16px;
    }

    .btn-myorder-del {
        font-size: 14px !important;
    }

    .btn-myorder-can {
        font-size: 14px !important;
    }

    .btn-myorder-ship {
        font-size: 14px !important;
    }

    .btn-myorder-con {
        font-size: 14px !important;
    }

    .btn-myorder-plac {
        font-size: 14px !important;
    }

    /* ############### Order View Page ############# */
    .btn-orderview {
        font-size: 20px !important;
        font-weight: 600 !important;
    }

    .faa-order-view {
        font-size: 24px;
    }

    .orderview-title {
        font-size: 16px;
    }

    .orderview-mrp {
        font-family: "Lexend Regular";
        font-size: 12px;
    }

    /* ############## Order Balance ################ */
    .wallet-i {
        height: 70px;
        width: 70px;
        line-height: 70px;
    }

    .faa-wallet-i {
        font-size: 36px !important;
    }

    .orderbal-name {
        font-size: 18px;
    }

    .orderbal-date {
        font-size: 14px;
    }

    .orderbal-detail {
        font-size: 16px;
    }

    .orderbal-bal {
        font-size: 22px;
    }

    .btn-quant {
        height: 35px;
        width: 35px;
        line-height: 33px;
    }

    .modal-ship-content {
        font-size: 16px;
    }

    .card-padd-ord {
        padding: 3% 2% !important;
    }

    .offcanvas-title {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .popover1 {
        width: 90%;
        left: 20px;
    }
}

@media (min-width: 768px) and (max-width: 992px) {
    .abs-btn1 {
        top: 6px;
        right: 6px;
        position: absolute;
    }

    .abs-btn2 {
        bottom: 6px;
        right: 6px;
        position: absolute;
    }

    .padd-img-ship {
        padding: 0.5% 0.5%;
    }

    .bg-order-pm {
        height: 22px;
        width: 22px;
        line-height: 16px;
    }

    .offcanvas-title {
        font-size: 16px;
    }

    .faa-quant {
        font-size: 14px !important;
        line-height: 14px !important;
    }

    .navbar-over {
        overflow-x: scroll !important;
    }

    .flex-wrap1 {
        flex-wrap: unset;
        justify-content: initial;
    }

    .offer-img {
        height: 100px;
        width: fit-content;
    }

    .card-footer {
        padding: 6% 1% !important;
    }

    .homemade-title {
        font-size: 42px;
        font-weight: 500;
        line-height: 50px;
        margin-bottom: 10px;
    }

    .homemade-content {
        font-size: 26px;
        font-weight: 500;
        line-height: 34px;
        margin-bottom: 10px;
    }

    .faa-order {
        font-size: 38px;
    }

    .order-heading {
        color: white;
        font-family: "Lexend Regular";
        font-size: 24px;
        font-weight: 400;
        line-height: 32.5px;
    }

    .fastfood-img {
        height: 300px;
        width: auto;
        aspect-ratio: 1;
        overflow: visible;
        aspect-ratio: 1;
    }

    .bg-fastfood {
        height: 300px;
    }

    .featured-img {
        height: 120px;
        width: auto;
        aspect-ratio: 1;
    }

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

    .featured-content {
        font-size: 12px;
    }

    /* ============= Product Detail ============== */
    .img-pro-detail {
        height: 80px;
        padding-top: 1%;
        padding-right: 0%;
    }

    .img-pro-detail-last {
        height: 80px;
        padding-top: 1%;
    }

    .btn-sort {
        top: 43%;
    }

    .sidebar-title {
        font-size: 14px;
        line-height: 22px;
    }

    .sidebar-subtitle {
        font-size: 14px;
        line-height: 30px;
    }

    .fw-quant {
        color: var(--theme-muted);
        font-size: 14px;
        font-weight: 500;
        line-height: 16px;
    }

    .food-pro-title {
        font-size: 16.01px !important;
    }

    #content {
        max-width: 650px;
        margin: auto;
        text-align: center;
    }

    .special {
        line-height: 22.58px;
        font-size: 17px;
        text-align: justify;
    }

    .pro-title {
        font-size: 24px;
        line-height: 36px;
    }

    .pro-discount {
        font-size: 22px;
        line-height: 32px;
    }

    .pro-mrp {
        font-size: 22px;
    }

    .pro-li {
        font-size: 18px;
        line-height: 30px;
    }

    .btn-pro {
        font-size: 20px !important;
        padding: 1.5% 10% !important;
    }

    .faa-pro {
        font-size: 22px !important;
    }

    .btn-faa-pro {
        padding: 4% 7% !important;
    }

    /* ########### Order Place Page ###########  */

    .btn-order-place {
        font-size: 20px !important;
        padding: 1.5% 16% !important;
    }

    .padd-img-order {
        padding: 1%;
    }

    .pro-img-order {
        margin-left: 6%;
    }

    .pro-order-title {
        font-size: 18px;
        line-height: 22px;
    }

    .pro-order-discount {
        font-size: 22px;
        line-height: 32px;
    }

    .pro-order-mrp {
        font-size: 22px;
        line-height: 32px;
    }

    .fw-quant-order {
        font-size: 8px;
    }

    .fw-quant-order-value {
        font-size: 14px;
        line-height: 26px;
    }

    .quant-order-btn {
        padding: 3px 7px;
        border: 2px solid var(--theme-brand);
        border-radius: 8px;
    }

    .faa-trash {
        font-size: 12px;
        height: 30px;
        width: 30px;
        line-height: 30px;
    }

    .quant-order-btn {
        padding: 1px 5px !important;
    }

    /* ############### SHIP ORDER PAGE ###############  */
    .pro-img-order {
        margin-left: 0%;
    }

    .pro-ship-title {
        font-size: 16px;
        line-height: 24px;
    }

    p.pro-order-discount {
        font-size: 14px;
    }

    .pro-ship-discount {
        font-size: 24px;
        line-height: 30px;
        margin-bottom: 0px;
    }

    .pro-ship-mrp {
        font-size: 18.99px;
        line-height: 18.82px;
    }

    .pro-ship-quant {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 0px;
    }

    .card-ship-padd {
        padding: 3% 3% !important;
    }

    .card-order {
        border-radius: 10px;
    }

    .ship-category {
        font-size: 26px;
        line-height: 40px;
    }

    .order-ship-title {
        font-size: 18px;
    }

    .order-ship-content {
        font-size: 20px;
        line-height: 30px;
        padding-bottom: 0px;
    }

    .h-ship {
        height: 75px;
    }

    .order-ship-content {
        font-size: 16px;
        line-height: 24px;
        padding-bottom: 0px;
    }

    .btn-order-place {
        font-size: 18px !important;
        border-radius: 10px !important;
        margin: auto;
        padding: 1% 14% !important;
    }

    .order-place-title {
        font-size: 20px;
        margin-top: 6%;
    }

    /* ############### MODAL ONE ###############  */
    .modal-category {
        font-size: 28px;
        line-height: 44px;
    }

    .btn-order-ship {
        line-height: 16px !important;
    }

    .modal-ship-content {
        font-size: 18px;
        line-height: 28px;
        padding-bottom: 0px;
    }

    .faa-dott {
        height: 35px;
        width: 35px;
        line-height: 35px;
    }

    .modal-ship-title {
        font-size: 22px;
        line-height: 26px;
    }

    /* ############### MODAL TWO ###############  */
    input.input3 {
        padding-left: 10%;
        height: 30px;
    }

    .input3 {
        font-size: 19px;
        line-height: 30px;
    }

    .faa-form-input {
        font-size: 24px;
    }

    .focus-input3 {
        top: -6px;
    }

    /* ############ MODAL Three Order Placed #############  */
    .order-confirm-img {
        height: 350px;
    }

    .order-confirm-title1 {
        font-size: 28px;
        line-height: 38px;
    }

    .order-confirm-title2 {
        font-size: 50px;
        line-height: 56px;
    }

    .order-confirm-title3 {
        font-size: 22px;
        line-height: 22px;
    }

    .about-img {
        height: 360px;
        width: auto;
    }

    /* ################### ABOUT US ################# */

    .contact-detail {
        font-size: 20px;
    }

    .contct-iconp {
        font-size: 18px;
        padding: 1% 0%;
    }

    .circle-icon {
        border: 2px solid var(--theme-brand);
        width: 50px;
        height: 50px;
        line-height: 50px;
        vertical-align: middle;
        margin-right: 2%;
    }

    .contact-img {
        height: 300px;
    }

    .flex-rev input,
    .flex-rev textarea {
        margin-bottom: 2px;
    }

    /* ################ Login ################ */
    .login-img {
        height: 400px;
        width: auto;
    }

    .faa-login {
        font-size: 26px;
    }

    .input-text-style {
        width: 70px !important;
    }

    .login-input {
        font-size: 18px !important;
        line-height: 20px;
    }

    .login-detail {
        font-size: 20px;
    }

    .login-detail-reg {
        font-size: 20px;
    }

    /* ############# OTP ############ */

    .form-otp {
        font-size: 1.5rem !important;
    }

    .otp-input {
        height: 50px;
        width: 50px;
    }

    .login-detail {
        font-size: 16px;
    }

    .login-detail-reg {
        font-size: 16px;
    }

    /* ############ DashBoard ############ */
    .dash-category {
        font-size: 26px;
        margin-bottom: 0px !important;
    }

    .dash-number {
        font-size: 34px;
        margin-bottom: 0% !important;
    }

    .dash-total {
        font-size: 16px;
    }

    .dash-balance {
        font-size: 18px;
    }

    .dash-money {
        font-size: 40px;
    }

    /* ############### My Order Page ################ */
    .myorder-detail {
        font-size: 16px;
    }

    .myorder-date {
        font-size: 18px;
    }

    .btn-myorder-del {
        font-size: 14px !important;
    }

    .btn-myorder-can {
        font-size: 14px !important;
    }

    .btn-myorder-ship {
        font-size: 14px !important;
    }

    .btn-myorder-con {
        font-size: 14px !important;
    }

    .btn-myorder-plac {
        font-size: 14px !important;
    }

    /* ############### Order View Page ############# */
    .btn-orderview {
        font-size: 20px !important;
        font-weight: 600 !important;
    }

    .faa-order-view {
        font-size: 24px;
    }

    .orderview-title {
        font-size: 18px;
    }

    .orderview-mrp {
        font-family: "Lexend Regular";
        font-size: 16px;
    }

    /* ############### Order List Page ############# */
    .orderlist-title {
        font-size: 22px;
    }

    .orderlist-mrp {
        font-size: 24px;
    }

    /* ############## Order Balance ################ */
    .wallet-i {
        height: 70px;
        width: 70px;
        line-height: 70px;
    }

    .faa-wallet-i {
        font-size: 36px !important;
    }

    .orderbal-name {
        font-size: 20px;
    }

    .orderbal-date {
        font-size: 14px;
    }

    .orderbal-detail {
        font-size: 16px;
    }

    .orderbal-bal {
        font-size: 24px;
    }

    .btn-quant {
        height: 35px;
        width: 35px;
        line-height: 33px;
    }

    .card-padd-ord {
        padding: 3% 2% !important;
    }
}

@media (min-width: 576px) and (max-width: 768px) {
    .bg-fastfood {
        height: 300px;
    }

    .padd-img-ship {
        padding: 1% 1%;
    }

    .fw-quant {
        width: 24px;
        font-size: 16px;
    }

    .pro-order-title {
        font-size: 18px;
        line-height: 26px;
    }

    .pro-order-discount {
        font-size: 18px;
        line-height: 26px;
    }

    .pro-order-discount.text-big {
        font-weight: 600;
        font-size: 18px;
    }

    .pro-order-mrp {
        font-size: 18px;
        line-height: 26px;
    }

    .faa-trash {
        font-size: 14px;
        height: 30px;
        width: 30px;
        line-height: 30px;
    }

    .quant-order-btn {
        padding: 2px 5px;
    }

    .fw-quant-order-value {
        font-size: 16px;
        line-height: 28px;
    }

    .bg-order-pm {
        height: 22px;
        width: 22px;
        line-height: 22px;
    }

    .fw-quant-order {
        font-size: 12px;
    }

    .card-footer {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }

    .pro-title {
        font-size: 24px;
        line-height: 36px;
    }

    .pro-discount {
        font-size: 22px;
        line-height: 32px;
    }

    .pro-mrp {
        font-size: 22px;
    }

    .navbar-toggler-icon {
        display: inline-block;
        width: 1.2em;
        height: 1.2em;
    }

    .shop-title {
        font-size: 24px;
    }

    .btn-nav {
        font-size: 16px;
        font-weight: 400;
        line-height: 24px;
    }

    .search input {
        font-size: 14px;
        line-height: 20px;
        text-indent: 26px;
    }

    .form-search {
        padding: 0.5rem 0.5rem !important;
    }

    .search .fa-search {
        font-size: 14px;
        font-weight: 400;
        line-height: 2px;
        right: 18px;
        top: 18px;
    }

    .faa-location {
        font-size: 16px;
    }

    .faa-search {
        color: var(--theme-muted);
        font-size: 24px !important;
        line-height: 30px;
    }

    .login-btn {
        color: var(--theme-muted);
        font-size: 16px;
        font-weight: 700;
        line-height: 22px;
    }

    .btn .badge {
        font-size: 9px;
        line-height: 11px;
    }

    .text-navbar {
        color: white !important;
        font-size: 12px;
        font-weight: 500;
        line-height: 20px;
        overflow: scroll;
    }

    .navbar {
        --bs-navbar-nav-link-padding-x: 0rem;
    }

    .navbar-over {
        overflow-x: scroll !important;
    }

    .flex-wrap1 {
        flex-wrap: unset;
        justify-content: initial;
    }

    .bg-img {
        background-image: url(../../img/handmade/handmade-back.png);
        background-size: cover;
        background-repeat: no-repeat;
        padding-left: 10%;
    }

    .fastfood-title {
        font-size: 26px;
        font-weight: 500;
    }

    .fastfood-content {
        font-size: 16px;
        font-weight: 400;
        padding-right: 0%;
    }

    .fastfood-img-google {
        height: 50px;
        width: 100%;
        padding: 1.5%;
    }

    .fastfood-img-app {
        height: 50px;
        width: 100%;
        padding: 1.5%;
    }

    .testimonial-content {
        font-size: 16px;
        font-weight: 400;
        line-height: 22px;
        margin-bottom: 5px;
    }

    .footer-para {
        padding-right: 0%;
    }

    .btn-quant {
        height: 30px;
        width: 34px;
        line-height: 26px;
    }

    /* ============= Product Detail ============== */
    .bread-head a {
        font-size: 14px;
    }

    .bread-title a {
        font-size: 14px;
    }

    .bread-active {
        font-size: 14px;
    }

    .btn-sort {
        right: 6%;
        top: 36%;
    }

    .sidebar-title {
        font-size: 14px;
        line-height: 22px;
    }

    .sidebar-subtitle {
        font-size: 14px;
        line-height: 30px;
    }

    .faa-food {
        font-size: 14px !important;
    }

    .faa-quant {
        font-size: 14px !important;
    }

    .btn-quant {
        margin-bottom: 3.2%;
    }

    .quantity-btn {
        padding: 3.2% 0%;
    }

    /* ########### Order Place Page ###########  */
    .padd-home {
        padding-left: 0 !important;
    }

    .homemade-title {
        font-family: "Lexend Regular";
        color: var(--theme-danger-deep);
        font-size: 36px;
    }

    .homemade-content {
        font-family: "Lexend Regular";
        color: var(--theme-ink-strong);
        font-size: 22px;
    }

    /* ############### MODAL ONE ###############  */
    .modal-category {
        font-size: 28px;
        line-height: 44px;
    }

    .btn-order-ship {
        line-height: 16px !important;
    }

    .modal-ship-content {
        font-size: 16px;
        padding-bottom: 0px;
    }

    .faa-dott {
        height: 30px;
        width: 30px;
        line-height: 30px;
    }

    .modal-ship-title {
        font-size: 20px;
    }

    .faa-modal {
        font-size: 20px !important;
        line-height: 20px !important;
        padding-right: 5px;
    }

    /* ############### MODAL TWO ###############  */
    input.input3 {
        padding-left: 10%;
        height: 30px;
    }

    .input3 {
        font-size: 19px;
        line-height: 30px;
    }

    .faa-form-input {
        font-size: 24px;
    }

    .focus-input3 {
        top: -6px;
    }

    /* ############ MODAL Three Order Placed #############  */
    .order-confirm-img {
        height: 350px;
    }

    .order-confirm-title1 {
        font-size: 28px;
        line-height: 38px;
    }

    .order-confirm-title2 {
        font-size: 50px;
        line-height: 56px;
    }

    .order-confirm-title3 {
        font-size: 22px;
        line-height: 22px;
    }

    /* ################### ABOUT US ################# */

    .contact-getintouch {
        font-size: 36px;
    }

    .contact-detail {
        font-size: 18px;
    }

    .contct-iconp {
        font-size: 18px;
        padding: 1% 0%;
    }

    .circle-icon {
        border: 2px solid var(--theme-brand);
        width: 45px;
        height: 45px;
        line-height: 45px;
        vertical-align: middle;
        margin-right: 2%;
    }

    .flex-rev input,
    .flex-rev textarea {
        padding: 10px 10px;
    }

    .contact-img {
        height: 300px;
    }

    .flex-rev input,
    .flex-rev textarea {
        margin-bottom: 2px;
    }

    /* ################ Login ################ */
    .login-img {
        height: 380px;
        width: auto;
    }

    .faa-login {
        font-size: 24px;
    }

    .input-text-style {
        width: 65px !important;
    }

    .login-input {
        font-size: 16px !important;
        line-height: 18px;
    }

    .login-detail {
        font-size: 18px;
    }

    .login-detail-reg {
        font-size: 18px;
    }

    /* ############# OTP ############ */

    .form-otp {
        font-size: 1.5rem !important;
    }

    .otp-input {
        height: 60px;
        width: 60px;
        margin: 4px;
    }

    .login-detail {
        font-size: 16px;
    }

    .login-detail-reg {
        font-size: 16px;
    }

    .green-dot {
        top: 4%;
    }

    .faa-heart-trans {
        top: 4%;
    }

    /* ############ DashBoard ############ */
    .dash-category {
        font-size: 26px;
        margin-bottom: 0px !important;
    }

    .dash-number {
        font-size: 34px;
        margin-bottom: 0% !important;
    }

    .dash-total {
        font-size: 16px;
    }

    .dash-balance {
        font-size: 18px;
    }

    .dash-money {
        font-size: 36px;
    }

    /* ############### My Order Page ################ */
    .myorder-detail {
        font-size: 14px;
    }

    .myorder-date {
        font-size: 16px;
    }

    .btn-myorder-del {
        font-size: 14px !important;
    }

    .btn-myorder-can {
        font-size: 14px !important;
    }

    .btn-myorder-ship {
        font-size: 14px !important;
    }

    .btn-myorder-con {
        font-size: 14px !important;
    }

    .btn-myorder-plac {
        font-size: 14px !important;
    }

    /* ############### Order View Page ############# */
    .btn-orderview {
        font-size: 20px !important;
        font-weight: 600 !important;
    }

    .faa-order-view {
        font-size: 24px;
    }

    .orderview-title {
        font-size: 18px;
    }

    .orderview-mrp {
        font-family: "Lexend Regular";
        font-size: 16px;
    }

    .faa-profile {
        font-size: 16px;
    }

    .sidebar-link {
        font-size: 13px;
    }

    /* ############### Order List Page ############# */
    .orderlist-title {
        font-size: 20px;
    }

    .orderlist-mrp {
        font-size: 18px;
    }

    .heart-icon i {
        font-size: 18px !important;
    }

    /* ############## Order Balance ################ */
    .wallet-i {
        height: 70px;
        width: 70px;
        line-height: 70px;
    }

    .faa-wallet-i {
        font-size: 36px !important;
    }

    .orderbal-name {
        font-size: 18px;
    }

    .orderbal-date {
        font-size: 12px;
    }

    .orderbal-detail {
        font-size: 14px;
    }

    .orderbal-bal {
        font-size: 20px;
    }

    .card-padd-ord {
        padding: 4% 2% !important;
    }

    .abs-btn1 {
        top: 6px;
        right: 6px;
    }

    .abs-btn2 {
        bottom: 6px;
        right: 6px;
    }
}

@media (min-width: 320px) and (max-width: 576px) {
    .card-footer {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }

    .m-auto-custom {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .navbar-brand {
        padding-left: 50px !important;
    }

    .btn-nav {
        font-size: 16px;
        line-height: 30px;
    }

    .search .fa-search {
        font-size: 16px;
        top: 12px;
        right: 18px;
    }

    .search input {
        font-size: 18px;
        line-height: 20px;
    }

    .form-search {
        padding: 0.6rem 0.6rem !important;
    }

    .faa-search {
        color: var(--theme-muted);
        font-size: 30px !important;
    }

    .badge {
        font-size: 0.65em !important;
    }

    .login-btn {
        margin-top: 3%;
    }

    .text-navbar {
        color: white !important;
        font-size: 12px;
        font-weight: 500;
        text-align: center;
        line-height: 15px;
    }

    .navbar {
        --bs-navbar-nav-link-padding-x: 0rem;
    }

    .fastfood-img {
        height: 300px;
        aspect-ratio: 1;
    }

    .btn-homemade {
        font-size: 12px;
    }

    .shop-img-slide {
        background-color: white;
        height: 140px;
        width: 140px !important;
        overflow: hidden;
        border-radius: 50%;
        box-shadow: 0px 0px 10px 0px var(--theme-shadow-legacy);
    }

    .bg-fastfood {
        height: 285px;
    }

    .featured-img {
        height: 120px;
        width: auto;
        aspect-ratio: 1;
    }

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

    .featured-content {
        font-size: 12px;
    }

    .navbar-over {
        overflow-x: scroll !important;
    }

    .flex-wrap1 {
        flex-wrap: unset;
        justify-content: initial;
    }

    .flex-wrap {
        flex-wrap: nowrap;
    }

    .about-img {
        height: 300px;
        width: auto;
    }

    .faa-food {
        color: var(--theme-white) !important;
        font-size: 14px !important;
    }

    .bg-img {
        background-image: url(../../img/handmade/handmade-back.png);
        background-repeat: no-repeat;
        background-position: center;
    }

    .about-img {
        height: 300px;
        width: auto;
    }

    .about-content {
        font-size: 16px;
    }

    .about-btn-lime {
        font-size: 16px;
    }

    .faa-order {
        left: 82%;
    }

    .offer-img {
        height: 110px;
        width: 100%;
    }

    .padd-home {
        padding-left: 0 !important;
    }

    .homemade-title {
        font-family: "Lexend Regular";
        color: var(--theme-danger-deep);
        font-size: 30px;
        line-height: 30px;
    }

    .card-padd-ord {
        padding: 4% 2% !important;
    }

    .homemade-content {
        font-family: "Lexend Regular";
        color: var(--theme-ink-strong);
        font-size: 18px;
        line-height: 18px;
    }

    .fastfood-title {
        font-size: 32px;
        text-align: center;
        font-weight: 500;
    }

    .fastfood-content {
        font-size: 18px;
        font-weight: 400;
        text-align: justify;
        padding-right: 0 !important;
    }

    .owl-carousel.owl-drag .owl-item {
        text-align: -webkit-center !important;
    }

    .owl-prev {
        left: 0px;
    }

    .owl-next {
        right: 0px;
    }

    .footer-para {
        padding-right: 0%;
    }

    .margin-footer-link {
        margin-left: 0%;
    }

    .mrg-ul {
        list-style-type: none;
        margin-left: 0 !important;
        padding-left: 0;
    }

    .testimonial-content {
        font-size: 16px;
        line-height: 20px;
        margin-bottom: 5px;
    }

    /* ============= Product Detail ============== */
    .fw-quant {
        width: 26px;
        font-size: 16px;
    }

    .faa-quant {
        font-size: 14px !important;
        line-height: 14px !important;
    }

    .bread-head a {
        font-size: 14px;
    }

    .bread-title a {
        font-size: 14px;
    }

    .bread-active {
        font-size: 14px;
    }

    .btn-sort {
        right: 4%;
        top: 37%;
    }

    .padd-card-custom {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    .sidebar-title {
        line-height: 22px;
    }

    .sidebar-subtitle {
        font-size: 14px;
        line-height: 30px;
    }

    .btn-quant {
        margin-bottom: 3%;
        height: 33px;
        width: 36px;
        line-height: 30px;
    }

    #content {
        margin: auto;
    }

    #heart {
        color: gray;
        font-size: 20px;
    }

    .faa-share {
        font-size: 20px;
        color: gray;
        font-weight: 600;
    }

    .img-pro-detail {
        height: 90px;
        padding-top: 0%;
        padding-right: 1%;
    }

    .img-pro-detail-last {
        height: 90px;
        padding-top: 0%;
    }

    .btn-pro {
        font-size: 20px !important;
        padding: 1.5% 10% !important;
    }

    .faa-pro {
        font-size: 20px !important;
    }

    .pro-title {
        font-size: 24px;
        line-height: 36px;
    }

    .pro-discount {
        font-size: 22px;
        line-height: 32px;
    }

    .pro-mrp {
        font-size: 22px;
    }

    .btn-faa-pro {
        font-size: 24px !important;
    }

    .faa-plus {
        font-size: 24px !important;
    }

    /* ########### Order Place Page ###########  */
    .padd-img-order {
        text-align: center;
    }

    .padd-img-order img {
        width: 96%;
        margin-top: 2%;
    }

    .align-order-body {
        text-align: left;
    }

    .abs-btn1 {
        right: 6px;
        top: 6px;
        position: absolute;
    }

    .abs-btn2 {
        position: absolute;
        bottom: 6px;
        right: 6px;
    }

    .fw-quant-order-value {
        font-size: 22px;
        line-height: 30px;
    }

    .display-pmt {
        display: inline-block;
    }

    .btn-order-place {
        font-size: 20px !important;
        line-height: 34px !important;
    }

    /* ############### SHIP ORDER PAGE ###############  */
    .pro-img-order {
        margin-left: 0%;
    }

    .pro-ship-title {
        font-size: 18px;
        line-height: 26px;
    }

    p.pro-order-discount {
        font-size: 16px;
    }

    .pro-ship-discount {
        font-size: 24px;
        line-height: 30px;
        margin-bottom: 0px;
    }

    .pro-ship-mrp {
        font-size: 18.99px;
        line-height: 18.82px;
    }

    .pro-ship-quant {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 0px;
    }

    .card-ship-padd {
        padding: 3% 3% !important;
    }

    .card-order {
        border-radius: 10px;
    }

    .ship-category {
        font-size: 28px;
        line-height: 40px;
    }

    .order-ship-title {
        font-size: 22px;
    }

    .order-ship-content {
        font-size: 20px;
        line-height: 30px;
        padding-bottom: 0px;
    }

    .h-ship {
        height: 75px;
    }

    .order-ship-content {
        font-size: 16px;
        line-height: 24px;
        padding-bottom: 0px;
    }

    .btn-order-place {
        font-size: 16px !important;
        border-radius: 12px !important;
        padding: 0.8% 14% !important;
    }

    .padd-img-ship {
        padding: 3% 3%;
    }

    .shop-title {
        font-size: 24px;
        line-height: 40px;
    }

    /* ############### MODAL ONE ###############  */
    .modal-category {
        font-size: 26px;
        line-height: 40px;
    }

    .btn-order-ship {
        font-size: 12px !important;
    }

    .modal-ship-content {
        font-size: 14px;
        padding-bottom: 0px;
    }

    .faa-dott {
        height: 30px;
        width: 30px;
        line-height: 30px;
    }

    .modal-ship-title {
        font-size: 18px;
    }

    .faa-modal {
        font-size: 20px !important;
        line-height: 26px !important;
        padding-right: 5px;
    }

    .faa-wallet-trash {
        font-size: 14px !important;
    }

    .btn-modal-active {
        font-size: 16px !important;
        border-radius: 8px !important;
        padding: 1% 8% !important;
    }

    .btn-modal-inactive {
        font-size: 16px !important;
        border-radius: 8px !important;
        padding: 1% 8% !important;
    }

    /* ############### MODAL TWO ###############  */
    input.input3 {
        padding-left: 10%;
        height: 30px;
    }

    .input3 {
        font-size: 19px;
        line-height: 30px;
    }

    .faa-form-input {
        font-size: 24px;
    }

    .focus-input3 {
        top: -6px;
    }

    /* ############ MODAL Three Order Placed #############  */
    .order-confirm-img {
        height: 300px;
    }

    .order-confirm-title1 {
        font-size: 28px;
        line-height: 38px;
    }

    .order-confirm-title2 {
        font-size: 50px;
        line-height: 56px;
    }

    .order-confirm-title3 {
        font-size: 22px;
        line-height: 22px;
    }

    .fastfood-img-google {
        height: 45px;
    }

    .fastfood-img-app {
        height: 45px;
    }

    /* ################### ABOUT US ################# */
    .contact-padd {
        padding: 0% 6%;
    }

    .contact {
        padding: 10px;
        border-radius: 20px;
    }

    .contact-detail {
        font-size: 18px;
    }

    .contact-getintouch {
        text-align: center;
        font-size: 36px;
    }

    .contct-iconp {
        font-size: 18px;
        padding: 1% 0%;
    }

    .circle-icon {
        border: 2px solid var(--theme-brand);
        width: 50px;
        height: 50px;
        line-height: 50px;
        vertical-align: middle;
        margin-right: 2%;
    }

    .contact-img {
        height: 300px;
    }

    .flex-rev input,
    .flex-rev textarea {
        margin-bottom: 2px;
        padding: 10px 10px;
    }

    /* ################ Login ################ */
    .login-img {
        height: 380px;
        width: auto;
    }

    .faa-login {
        font-size: 24px;
    }

    .input-text-style {
        width: 65px !important;
    }

    .login-input {
        font-size: 16px !important;
        line-height: 18px;
    }

    .login-detail {
        font-size: 18px;
    }

    .login-detail-reg {
        font-size: 18px;
    }

    .login-name {
        font-size: 40px;
        margin-bottom: 10%;
    }

    /* ############# OTP ############ */

    .form-otp {
        font-size: 1.5rem !important;
    }

    .otp-input {
        height: 50px;
        width: 50px;
        margin: 2px;
    }

    .login-detail {
        font-size: 16px;
    }

    .login-detail-reg {
        font-size: 16px;
    }

    .green-dot {
        top: 4%;
    }

    .faa-heart-trans {
        top: 4%;
    }

    /* ############ DashBoard ############ */
    .dash-category {
        font-size: 26px;
        margin-top: 20px;
        margin-bottom: 0px !important;
    }

    .dash-number {
        font-size: 34px;
        margin-bottom: 0% !important;
    }

    .dash-total {
        font-size: 16px;
    }

    .dash-balance {
        font-size: 18px;
        padding-left: 12%;
    }

    .dash-money {
        font-size: 36px;
        padding-left: 12%;
    }

    /* ############### My Order Page ################ */
    .myorder-detail {
        font-size: 14px;
    }

    .myorder-date {
        font-size: 16px;
    }

    .btn-myorder-del {
        font-size: 14px !important;
        text-align: center;
    }

    .btn-myorder-can {
        font-size: 14px !important;
        text-align: center;
    }

    .btn-myorder-ship {
        font-size: 14px !important;
        text-align: center;
    }

    .btn-myorder-con {
        font-size: 14px !important;
        text-align: center;
    }

    .btn-myorder-plac {
        font-size: 14px !important;
        text-align: center;
    }

    .padd-small {
        padding: 1%;
    }

    /* ############### Order View Page ############# */
    .btn-orderview {
        font-size: 20px !important;
        font-weight: 600 !important;
    }

    .faa-order-view {
        font-size: 24px;
    }

    .orderview-title {
        font-size: 16px;
    }

    .orderview-mrp {
        font-size: 16px;
    }

    .accordion-button:not(.collapsed)::after {
        background-size: 20px;
        width: 20px;
    }

    .accordion-button::after {
        background-size: 20px;
        width: 20px;
    }

    /* ############### Order List Page ############# */
    .orderlist-title {
        font-size: 18px;
    }

    .orderlist-mrp {
        font-size: 18px;
    }

    .heart-icon i {
        font-size: 18px !important;
    }

    /* ############## Order Balance ################ */
    .wallet-i {
        height: 70px;
        width: 70px;
        line-height: 70px;
    }

    .faa-wallet-i {
        font-size: 36px !important;
    }

    .orderbal-name {
        font-size: 18px;
    }

    .orderbal-date {
        font-size: 12px;
    }

    .orderbal-detail {
        font-size: 14px;
    }

    .orderbal-bal {
        font-size: 22px;
    }

    .pro-order-title {
        font-size: 18px;
        line-height: 22px;
    }

    .pro-order-discount.text-big {
        font-weight: 600;
        font-size: 20px;
    }

    .pro-order-discount {
        font-size: 18px;
        line-height: 24px;
    }

    .pro-order-mrp {
        font-size: 18px;
        line-height: 24px;
    }

    .fw-quant-order-value {
        font-size: 14px;
        line-height: 25px;
    }

    .bg-order-pm {
        height: 20px;
        width: 20px;
        line-height: 18px;
    }

    .fw-quant-order {
        font-size: 14px;
    }

    .faa-trash {
        font-size: 12px;
        height: 25px;
        width: 25px;
        line-height: 25px;
    }

    .quant-order-btn {
        padding: 1px 5px !important;
    }

    .order-place-title {
        font-size: 20px;
        margin-top: 4%;
    }

    .order-place-content {
        font-size: 14px;
        margin-top: 4%;
    }

    .owl-prev span,
    .owl-next span {
        color: var(--theme-muted-soft);
        font-size: 22px;
    }

    .bread-heading {
        font-size: 32px;
    }
}

@media (min-width: 321px) and (max-width: 375px) {
    .shop-img-slide {
        background-color: white;
        height: 120px;
        width: 120px !important;
        overflow: hidden;
        border-radius: 50%;
        box-shadow: 0px 0px 10px 0px var(--theme-shadow-legacy);
    }

    .bread-heading {
        font-size: 32px;
    }

    .bread-subheading {
        font-size: 14px;
    }
}

@media (max-width: 320px) {
    .bread-heading {
        font-size: 26px;
    }

    .bread-subheading {
        font-size: 14px;
    }

    .shop-title {
        font-size: 24px;
        line-height: 40px;
    }

    .owl-prev span,
    .owl-next span {
        color: var(--theme-muted-soft);
        font-size: 22px;
    }

    .btn-quant {
        margin-bottom: 3%;
        height: 32px;
        width: 36px;
        line-height: 28px;
    }

    .navbar-brand {
        padding-left: 0px !important;
    }

    .pro-order-title {
        font-size: 16px;
        line-height: 22px;
    }

    .pro-order-discount {
        font-size: 16px;
        line-height: 20px;
        margin-bottom: 5px;
    }

    .shop-img-slide {
        background-color: white;
        height: 100px;
        width: 100px !important;
        overflow: hidden;
        border-radius: 50%;
        box-shadow: 0px 0px 8px 0px var(--theme-shadow-legacy);
    }

    .pro-order-mrp {
        font-size: 16px;
        line-height: 20px;
    }

    .pro-order-discount.text-big {
        font-weight: 600;
        font-size: 18px;
    }

    .fw-quant-order-value {
        font-size: 12px;
        line-height: 25px;
        width: 20px;
    }

    .fw-quant-order {
        font-size: 10px;
    }

    .bg-order-pm {
        height: 16px;
        width: 16px;
        line-height: 16px;
    }

    .quant-order-btn {
        padding: 0px 5px !important;
    }

    .faa-trash {
        font-size: 10px;
        height: 23px;
        width: 24px;
        line-height: 24px;
    }

    .btn-nav {
        font-size: 16px;
        line-height: 30px;
    }

    .search .fa-search {
        font-size: 14px;
        top: 10px;
        right: 16px;
    }

    .search input {
        font-size: 14px;
        line-height: 20px;
        text-indent: 26px;
    }

    .form-search {
        padding: 0.6rem 0.2rem !important;
    }

    .faa-search {
        color: var(--theme-muted);
        font-size: 24px !important;
    }

    .badge {
        font-size: 0.55em !important;
    }

    .login-btn {
        font-size: 16px;
        margin-top: 3%;
        padding: 0px 6px !important;
    }

    .text-navbar {
        color: white !important;
        font-size: 12px;
        font-weight: 500;
        text-align: center;
        line-height: 15px;
    }

    .navbar {
        --bs-navbar-nav-link-padding-x: 0rem;
    }

    .fastfood-img {
        height: 275px;
        width: auto;
        aspect-ratio: 1;
    }

    .testimonial-heading {
        font-size: 30px;
        line-height: 42px;
    }

    .testimonial-heading-strong {
        font-size: 30px;
        line-height: 42px;
    }

    .about-heading {
        font-size: 34px;
    }

    .featured-heading {
        font-size: 34px;
    }

    .featured-heading {
        font-size: 34px;
    }

    .bg-fastfood {
        height: 258px;
        width: 100%;
    }

    .navbar-over {
        overflow-x: scroll !important;
    }

    .flex-wrap1 {
        flex-wrap: unset;
        justify-content: initial;
    }

    .bg-img {
        background-image: url(../../img/handmade/handmade-back.png);
        background-repeat: no-repeat;
        background-position: center;
    }

    .about-img {
        height: 200px;
        width: auto;
    }

    .btn-homemade {
        font-size: 12px;
    }

    .about-content {
        font-size: 14px;
    }

    .faa-order {
        left: 82%;
    }

    .offer-img {
        height: 90px;
        width: 100%;
    }

    .padd-home {
        padding-left: 0 !important;
    }

    .homemade-title {
        font-size: 26px;
        line-height: 32px;
        margin-bottom: 5px;
    }

    .homemade-content {
        font-size: 14px;
        line-height: 16px;
    }

    .shop-btn-lime {
        font-size: 14px;
        padding: 1% 12%;
    }

    .fastfood-title {
        font-size: 26px;
        text-align: center;
        font-weight: 500;
    }

    .fastfood-content {
        font-size: 14px;
        font-weight: 400;
        text-align: justify;
        padding-right: 0 !important;
    }

    .testimonial-content {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 5px;
    }

    .owl-carousel.owl-drag .owl-item {
        text-align: -webkit-center !important;
    }

    .owl-prev {
        left: 0px;
    }

    .owl-next {
        right: 0px;
    }

    .footer-para {
        padding-right: 0%;
    }

    .margin-footer-link {
        margin-left: 0%;
    }

    .mrg-ul {
        list-style-type: none;
        margin-left: 0 !important;
        padding-left: 0;
    }

    /* ============= Product Detail ============== */
    .bread-head a {
        font-size: 14px;
    }

    .bread-title a {
        font-size: 14px;
    }

    .bread-active {
        font-size: 14px;
    }

    .btn-sort {
        right: 4%;
        top: 79%;
    }

    .padd-card-custom {
        padding-left: 6px !important;
        padding-right: 6px !important;
    }

    .sidebar-title {
        line-height: 22px;
    }

    .sidebar-subtitle {
        font-size: 14px;
        line-height: 30px;
    }

    #content {
        margin: auto;
    }

    #heart {
        color: gray;
        font-size: 20px;
    }

    .faa-share {
        font-size: 20px;
        color: gray;
        font-weight: 600;
    }

    .special {
        text-align: justify;
    }

    .pro-li {
        font-family: "Helvetica";
        font-size: 18px;
    }

    .img-pro-detail {
        height: 65px;
        padding-top: 0%;
        padding-right: 1%;
    }

    .img-pro-detail-last {
        height: 65px;
        padding-top: 0%;
    }

    .btn-pro {
        font-size: 18px !important;
        padding: 1.5% 10% !important;
    }

    .faa-pro {
        font-size: 20px !important;
    }

    .pro-title {
        font-size: 22px;
        line-height: 36px;
    }

    .pro-discount {
        font-size: 22px;
        line-height: 32px;
    }

    .pro-mrp {
        font-size: 22px;
    }

    .btn-faa-pro {
        font-size: 20px !important;
        line-height: 22px !important;
    }

    .faa-plus {
        font-size: 20px !important;
    }

    .fw-quant {
        width: 22px;
        font-size: 14px;
        font-weight: 500;
    }

    .btn-food {
        padding: 4.2% 10% !important;
    }

    /* ########### Order Place Page ###########  */

    .padd-img-order {
        text-align: center;
    }

    .padd-img-order img {
        width: 96%;
        margin-top: 2%;
    }

    .quant-order-btn {
        border: 2px solid var(--theme-brand);
        border-radius: 6px;
    }

    .abs-btn1 {
        right: 6px;
        top: 2px;
        position: absolute;
    }

    .abs-btn2 {
        position: absolute;
        bottom: 4px;
        right: 6px;
    }

    .display-pmt {
        display: inline-block;
    }

    /* ############### SHIP ORDER PAGE ###############  */
    .pro-img-order {
        margin-left: 0%;
    }

    .pro-ship-title {
        font-size: 16px;
        line-height: 28px;
    }

    p.pro-order-discount {
        font-size: 14px;
    }

    .pro-ship-discount {
        font-size: 22px;
        line-height: 28px;
        margin-bottom: 0px;
    }

    .pro-ship-mrp {
        font-size: 18.99px;
        line-height: 18.82px;
    }

    .pro-ship-quant {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 0px;
    }

    .card-ship-padd {
        padding: 3% 3% !important;
    }

    .card-order {
        border-radius: 10px;
    }

    .ship-category {
        font-size: 26px;
        line-height: 40px;
    }

    .order-ship-title {
        font-size: 20px;
    }

    .order-ship-content {
        font-size: 20px;
        line-height: 30px;
        padding-bottom: 0px;
    }

    .faa-ship {
        font-size: 22px !important;
        line-height: 26px !important;
    }

    .h-ship {
        height: 70px;
    }

    .order-ship-content {
        font-size: 16px;
        line-height: 24px;
        padding-bottom: 0px;
    }

    .btn-order-place {
        font-size: 16px !important;
        border-radius: 12px !important;
        padding: 0.8% 14% !important;
    }

    .padd-img-ship {
        padding: 1% 1%;
    }

    .order-place-title {
        font-size: 18px;
        line-height: 24px;
        margin-top: 2%;
    }

    .order-place-content {
        font-size: 14px;
        line-height: 18px;
        margin-top: 4%;
    }

    /* ############### MODAL ONE ###############  */
    .modal-category {
        font-size: 18px;
        font-weight: 600;
        line-height: 44px;
    }

    .btn-order-ship {
        font-size: 10px !important;
        line-height: 18px !important;
    }

    .modal-ship-content {
        font-size: 12px;
        padding-bottom: 0px;
    }

    .faa-dott {
        font-size: 12px;
        height: 25px;
        width: 25px;
        line-height: 25px;
    }

    .modal-ship-title {
        font-size: 16px;
        line-height: 20px;
    }

    .btn-modal-active {
        font-size: 14px !important;
        border-radius: 8px !important;
        padding: 1.4% 8% !important;
    }

    .btn-modal-inactive {
        font-size: 14px !important;
        border-radius: 8px !important;
        padding: 1.4% 8% !important;
    }

    .faa-modal {
        font-size: 18px !important;
        line-height: 22px !important;
        padding-right: 0px;
    }

    input.input3 {
        padding-left: 15%;
        height: 28px;
    }

    .input3 {
        font-size: 18px;
        line-height: 30px;
    }

    .faa-form-input {
        font-size: 22px;
    }

    /* ############ MODAL Three Order Placed #############  */
    .order-confirm-img {
        height: 220px;
    }

    .order-confirm-title1 {
        font-size: 20px;
        line-height: 26px;
    }

    .order-confirm-title2 {
        font-size: 34px;
        line-height: 38px;
        margin-bottom: 5px;
    }

    .order-confirm-title3 {
        font-size: 16px;
        line-height: 16px;
    }

    .fastfood-img-google {
        height: 40px;
    }

    .fastfood-img-app {
        height: 40px;
    }

    /* ################### ABOUT US ################# */
    .contact-padd {
        padding: 0% 6%;
    }

    .contact {
        padding: 10px;
        border-radius: 20px;
    }

    .contact-detail {
        text-align: justify;
        font-size: 18px;
    }

    .contact-getintouch {
        font-size: 36px;
        text-align: center;
    }

    .contct-iconp {
        font-size: 16px;
        padding: 1% 0%;
    }

    .circle-icon {
        border: 2px solid var(--theme-brand);
        width: 40px;
        height: 40px;
        line-height: 40px;
        vertical-align: middle;
        margin-right: 2%;
    }

    .contact-img {
        height: 250px;
    }

    .flex-rev input,
    .flex-rev textarea {
        margin-bottom: 2px;
        padding: 10px 10px;
    }

    /* ################ Login ################ */
    .login-img {
        height: 380px;
        width: auto;
    }

    .faa-login {
        font-size: 24px;
    }

    .input-text-style {
        width: 65px !important;
    }

    .login-input {
        font-size: 16px !important;
        line-height: 18px;
    }

    .login-detail {
        font-size: 18px;
    }

    .login-detail-reg {
        font-size: 18px;
    }

    .login-name {
        font-size: 40px;
        margin-bottom: 10%;
    }

    /* ############# OTP ############ */

    .form-otp {
        font-size: 1rem !important;
    }

    .otp-input {
        height: 40px;
        width: 40px;
        margin: 2px;
    }

    .login-detail {
        font-size: 14px;
    }

    .login-detail-reg {
        font-size: 14px;
    }

    .green-dot {
        top: 4%;
    }

    .faa-heart-trans {
        top: 4%;
    }

    /* ############ DashBoard ############ */
    .dash-category {
        font-size: 26px;
        margin-top: 20px;
        margin-bottom: 0px !important;
    }

    .dash-number {
        font-size: 30px;
        margin-bottom: 0% !important;
    }

    .dash-total {
        font-size: 14px;
    }

    .dash-balance {
        font-size: 18px;
        padding-left: 8%;
    }

    .dash-money {
        font-size: 28px;
        padding-left: 8%;
    }

    /* ############### My Order Page ################ */
    .myorder-id {
        font-size: 14px;
    }

    .myorder-detail {
        font-size: 14px;
    }

    .myorder-date {
        font-size: 14px;
    }

    .btn-myorder-del {
        font-size: 12px !important;
        text-align: center;
    }

    .btn-myorder-can {
        font-size: 12px !important;
        text-align: center;
    }

    .btn-myorder-ship {
        font-size: 12px !important;
        text-align: center;
    }

    .btn-myorder-con {
        font-size: 12px !important;
        text-align: center;
    }

    .btn-myorder-plac {
        font-size: 12px !important;
        text-align: center;
    }

    .padd-small {
        padding: 1%;
    }

    /* ############### Order View Page ############# */
    .btn-orderview {
        font-size: 20px !important;
        font-weight: 600 !important;
    }

    .faa-order-view {
        font-size: 24px;
    }

    .orderview-title {
        font-size: 14px;
    }

    .orderview-mrp {
        font-size: 10px;
    }

    .orderview-para {
        margin-bottom: 5px !important;
    }

    .ordership-date {
        font-size: 11px;
    }

    .accordion-button:not(.collapsed)::after {
        background-size: 20px;
        width: 20px;
    }

    .accordion-button::after {
        background-size: 20px;
        width: 20px;
    }

    /* ############### Order List Page ############# */
    .orderlist-title {
        font-size: 14px;
    }

    .orderlist-para {
        font-size: 10px;
    }

    .orderlist-mrp {
        font-size: 14px;
    }

    .card-orderlist {
        padding: 0% 1%;
    }

    .heart-icon i {
        font-size: 14px !important;
    }

    /* ############## Order Balance ################ */
    .wallet-i {
        height: 70px;
        width: 70px;
        line-height: 70px;
    }

    .faa-wallet-i {
        font-size: 36px !important;
    }

    .orderbal-name {
        font-size: 18px;
    }

    .orderbal-date {
        font-size: 12px;
    }

    .orderbal-detail {
        font-size: 14px;
    }

    .orderbal-bal {
        font-size: 16px;
    }
}

/* ############### Cards ############## */
@media screen and (max-width: 1200px) {
    .card-container {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media screen and (max-width: 980px) {
    .card-container {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .card-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 480px) {
    .card-container {
        grid-template-columns: 2fr;
    }
}

/* ############### Download Our Product ############## */
@media screen and (max-width: 893px) {
    .dop-container {
        padding: 20px 0;
    }

    .dop-items {
        display: flex;
        flex-direction: column-reverse;
    }

    .dop-items img {
        width: 350px;
    }

    .dop-heading {
        max-width: 100%;
        text-align: center;
    }

    .dop-prg {
        max-width: 100%;
        text-align: center;
    }

    .download-button {
        text-align: center;
    }
}

@media screen and (max-width: 893px) {
    .dop-heading {
        font-size: 50px;
    }
}

/* ==========================================================================
   Shared / reusable patterns (theme overrides)
   ========================================================================== */

/* ==========================================================================
   Shared / reusable patterns
   ========================================================================== */

.btn-lime,
.btn-order-place,
.btn-green,
.btn-success {
    background-color: var(--theme-brand) !important;
    background-image: var(--theme-grad-brand) !important;
    border-color: var(--theme-brand) !important;
    color: var(--theme-white) !important;
    border-radius: var(--theme-radius-pill) !important;
    font-weight: 500;
    letter-spacing: 0.02em;
    box-shadow: var(--theme-btn-shadow);
    transition: background var(--theme-transition), transform var(--theme-transition), box-shadow var(--theme-transition), filter var(--theme-transition);
    padding-inline: 1.35rem;
    position: relative;
    overflow: hidden;
}

.btn-lime:hover,
.btn-order-place:hover,
.btn-green:hover,
.btn-success:hover {
    background-color: var(--theme-brand-dark) !important;
    background-image: var(--theme-grad-brand-hover) !important;
    border-color: var(--theme-brand-dark) !important;
    color: var(--theme-white) !important;
    transform: translateY(-1px);
    box-shadow: var(--theme-btn-shadow-hover);
}

.btn-outline-success {
    color: var(--theme-brand) !important;
    border-color: var(--theme-brand) !important;
    border-radius: var(--theme-radius-pill) !important;
    border-width: 1.5px !important;
    transition: all var(--theme-transition);
    background: var(--theme-grad-outline);
}

.btn-outline-success:hover {
    background-color: var(--theme-brand) !important;
    color: var(--theme-white) !important;
    box-shadow: 0 10px 22px -14px rgba(47, 158, 68, 0.8);
    transform: translateY(-1px);
}

.form-control,
.form-select,
.login-input {
    border-radius: var(--theme-radius-sm);
    border-color: var(--theme-border);
    background-color: var(--theme-surface);
    transition: border-color var(--theme-transition), box-shadow var(--theme-transition);
    min-height: 46px;
    padding: 0.65rem 0.95rem;
    border-width: 1.5px;
    background: var(--theme-grad-input);
}

.form-control:focus,
.form-select:focus,
.login-input:focus {
    border-color: var(--theme-brand) !important;
    box-shadow: var(--theme-focus-ring) !important;
}

.card,
.card-dash {
    background: var(--theme-surface);
    border: 1px solid var(--theme-border);
    border-radius: var(--theme-radius);
    box-shadow: var(--theme-shadow);
    transition: transform var(--theme-transition), box-shadow var(--theme-transition);
}

.card:hover,
.card-dash:hover {
    box-shadow: var(--theme-shadow-lg);
}

/* ==========================================================================
   Theme layer (formerly custom.css / theme-v2)
   ========================================================================== */

/* ==========================================================================
 1. Global / base
 ========================================================================== */

a {
 transition: color var(--theme-transition);
}

/* Cap heavy weights for the themed storefront */
.fw-bold,
.fw-bolder,
.fw-semibold,
strong,
b,
h1,
h2,
h3,
h4,
h5,
h6 {
 font-weight: 500 !important;
}

.content-margin {
 min-height: 50vh;
 animation: themePageIn 0.45s var(--theme-ease) both;
 position: relative;
 isolation: isolate;
 max-width: 100%;
 overflow-x: clip;
}

#loader {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    z-index: 9999;
    background: var(--theme-loader-bg);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

#loader .loader,
.loader {
    box-sizing: border-box;
    display: block;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border: 3px solid var(--theme-border);
    border-top-color: var(--theme-brand);
    border-radius: 50%;
    animation: themeSpin 0.75s linear infinite;
}

.pro-title, .login-name, .dash-category, .bread-heading {
 color: var(--theme-brand-deep);
 letter-spacing: -0.01em;
}

.text-muted, .footer-para {
 color: var(--theme-ink-muted) !important;
}

.ft-lime, .bg-lime, .btn-lime, .bg-lime-order {
 --bs-bg-opacity: 1;
}

.ft-lime {
 color: var(--theme-brand) !important;
}

/* .bg-lime,
.bg-lime-order {
 background-color: var(--theme-brand) !important;
} */

.hr-height {
 height: 5px;
 background: var(--theme-grad-brand);
 opacity: 1 !important;
 background-size: 200% 100%;
 animation: themeShine 8s linear infinite;
 box-shadow: 0 2px 12px rgba(47, 158, 68, 0.45);
}

/* (moved to shared patterns) */

/* (moved to shared patterns) */

/* (moved to shared patterns) */

/* (moved to shared patterns) */

.btn-secondary {
 border-radius: var(--theme-radius-sm);
}

/* (moved to shared patterns) */

/* (moved to shared patterns) */

.input-text-style {
 background: var(--theme-brand-soft);
 border-color: var(--theme-border);
 color: var(--theme-brand);
 min-width: 48px;
 justify-content: center;
}

/* (moved to shared patterns) */

/* (moved to shared patterns) */

.card-img-top.tv2-product-img, .tv2-product-img {
 max-height: 200px;
 object-fit: contain;
 aspect-ratio: 1;
 background-color: #eef3ea;
}

.tv2-cover-img {
 object-fit: cover;
}

.tv2-cover-140 {
 height: 140px;
 object-fit: cover;
}

.tv2-cover-160 {
 height: 160px;
 object-fit: cover;
}

.tv2-mrp {
 font-size: small;
}

.theme-bg {
 background-color: var(--theme-brand) !important;
 background: var(--theme-grad-brand) !important;
 box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15);
}

/* Breadcrumbs Ã¢â‚¬â€ clean text trail (not chips/badges) */

.tv2-breadcrumb, nav[aria-label="breadcrumb"] {
 margin: 0.35rem 0 0.75rem;
}

.breadcrumb {
 --bs-breadcrumb-divider: "➢";
 background: transparent !important;
 padding: 0 !important;
 margin: 0;
 display: flex;
 flex-wrap: wrap;
 align-items: center;
 gap: 0;
 row-gap: 0.15rem;
}

.breadcrumb-item {
 background: none !important;
 border: none !important;
 border-radius: 0 !important;
 padding: 0 !important;
 font-size: 0.92rem;
 line-height: 1.4;
 color: var(--theme-ink-muted);
 display: inline-flex;
 align-items: center;
}

.breadcrumb-item+.breadcrumb-item {
 padding-left: 0 !important;
}

.breadcrumb-item+.breadcrumb-item::before {
 content: var(--bs-breadcrumb-divider, 'Ã¢â‚¬Âº') !important;
 float: none;
 padding: 0 0.55rem;
 color: rgba(36, 51, 66, 0.35);
 font-weight: 400;
 line-height: 1;
}

.bread-head a {
 color: var(--theme-brand-muted);
 text-decoration: none;
 font-weight: 500;
 transition: color var(--theme-transition);
}

.bread-head a:hover {
 color: var(--theme-brand);
}

.breadcrumb-item:not(.bread-head):not(.bread-active) a {
 color: var(--theme-ink-muted);
 text-decoration: none;
}

.breadcrumb-item:not(.bread-head):not(.bread-active) a:hover {
 color: var(--theme-brand);
}

.bread-active {
 color: var(--theme-brand-deep) !important;
 font-weight: 500;
 font-size: 1rem !important;
}

.bread-active a {
 color: var(--theme-brand-deep) !important;
}

.tv2-catalog-toolbar {
 padding: 0.35rem 0 0.15rem;
 position: relative;
 z-index: 20;
 overflow: visible;
}

.alert-success {
 background: linear-gradient(135deg, #e8f7e3, #f5fbf2);
 border-color: rgba(47, 158, 68, 0.3);
 color: var(--theme-brand-deep);
 border-radius: var(--theme-radius-sm);
}

.badge.bg-danger {
 background-color: var(--theme-danger) !important;
}

.cart_counter, .notification_counter {
 background-color: var(--theme-accent) !important;
}

.badge.rounded-pill {
 font-weight: 500;
}

/* Utility: hide via class instead of inline */

.tv2-hidden {
 display: none !important;
}

.tv2-map {
 width: 100%;
 height: 250px;
 border-radius: var(--theme-radius-sm);
 overflow: hidden;
 border: 1px solid var(--theme-border);
}

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

.tv2-avatar-80 {
 height: 80px;
 width: 80px;
 object-fit: cover;
 border-radius: 50%;
 border: 3px solid var(--theme-border);
}

.tv2-avatar-round {
 border-radius: 50% !important;
}

.tv2-thumb-70 {
 width: 70px;
 height: 70px;
 object-fit: cover;
}

.tv2-video-max {
 max-height: 400px;
}

.tv2-decor-left {
 height: 500px;
}

.tv2-decor-right {
 height: 300px;
}

.tv2-contact-value {
 background-color: #f2f2f2;
 padding: 12px 10px;
 color: #243342;
}

.tv2-btn-sm-text {
 font-size: 14px;
}

.tv2-error-text {
 color: #660014;
}

.tv2-icon-lg {
 font-size: 24px;
}

.tv2-icon-md {
 font-size: 1.2rem;
}

.tv2-heading-ink {
 color: #0a2f44;
}

/* ==========================================================================
 2. Chrome Ã¢â‚¬â€ header / nav / search
 ========================================================================== */

.nav-postion {
 box-shadow: 0 8px 30px -18px rgba(22, 50, 26, 0.28);
 position: fixed;
 top: 0;
 z-index: 1040;
 width: 100%;
 background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(244, 250, 245, 0.88) 100%);
 backdrop-filter: blur(16px) saturate(1.35);
 -webkit-backdrop-filter: blur(16px) saturate(1.35);
 border-bottom: 1px solid rgba(47, 158, 68, 0.14);
 left: 0;
 right: 0;
 max-width: 100%;
 box-sizing: border-box;
}

.lg-header, .sm-header, .navbar.bg-body-tertiary {
 background: transparent !important;
 backdrop-filter: none;
}

.main-logo {
 max-height: 52px;
 width: auto;
 transition: transform var(--theme-transition), filter var(--theme-transition);
}

.location-btn {
 border-radius: 999px !important;
 border: 1px solid rgba(47, 158, 68, 0.25) !important;
 background: linear-gradient(180deg, var(--theme-white), var(--theme-surface-soft-alt)) !important;
 color: var(--theme-ink) !important;
 font-size: 0.875rem;
 padding: 0.4rem 0.9rem !important;
 box-shadow: inset 0 0 0 1px transparent;
 transition: all var(--theme-transition);
}

.location-btn:hover {
 border-color: var(--theme-brand) !important;
 background: var(--theme-brand-soft) !important;
}

.search {
 position: relative;
}

.form-search, .searchInput {
 border-radius: 999px !important;
 border: 1.5px solid rgba(47, 158, 68, 0.2) !important;
 background: linear-gradient(180deg, var(--theme-white), #f6faf3) !important;
 padding-left: 2.5rem;
 min-width: 0 !important;
 max-width: 100%;
 box-sizing: border-box;
 height: 42px;
 box-shadow: inset 0 1px 2px rgba(20, 32, 22, 0.04);
 transition: all var(--theme-transition);
}

.form-search:focus, .searchInput:focus {
 background: var(--theme-white) !important;
 border-color: var(--theme-brand) !important;
 box-shadow: 0 0 0 4px rgba(47, 158, 68, 0.16) !important;
}

.searchIcon {
 color: var(--theme-brand);
}

.login-btn {
 color: var(--theme-brand) !important;
 border-color: rgba(47, 158, 68, 0.45) !important;
 background: linear-gradient(180deg, var(--theme-white), var(--theme-brand-soft)) !important;
}

.login-btn:hover {
 background: var(--theme-grad-brand) !important;
 border-color: var(--theme-brand) !important;
 color: var(--theme-white) !important;
}

a:hover .faa-search {
 color: var(--theme-accent);
}

.searchResults {
 border-radius: var(--theme-radius);
 border: 1px solid var(--theme-border);
 box-shadow: var(--theme-shadow-lg);
 overflow: hidden;
 margin-top: 0.5rem;
 backdrop-filter: blur(12px);
 background: rgba(255, 255, 255, 0.95);
 animation: themeDropIn 0.22s var(--theme-ease);
}

.searchResults li:hover, .dropdown-menu>li:hover {
 background-color: var(--theme-brand-soft);
}

.faa-search {
 font-size: 1.25rem;
 color: var(--theme-ink);
 transition: background var(--theme-transition), color var(--theme-transition), transform var(--theme-transition);
 width: 40px;
 height: 40px;
 display: inline-flex;
 align-items: center;
 justify-content: center;
 border-radius: 50%;
}

a:hover .faa-search {
 color: var(--theme-brand);
}

.profile-img {
 border: 2px solid var(--theme-border);
 box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
 transition: transform var(--theme-transition), box-shadow var(--theme-transition);
}

.notification-div {
 border-radius: var(--theme-radius);
 border: 1px solid var(--theme-border);
 box-shadow: var(--theme-shadow-lg);
 overflow: hidden;
}

.notification-hover:hover {
 background: var(--theme-brand-soft);
}

.dropdown-menu {
 border-radius: var(--theme-radius-sm);
 border-color: var(--theme-border);
 box-shadow: var(--theme-shadow);
}

.nav-item .nav-link.active, span.active {
 color: var(--theme-brand) !important;
}

/* ==========================================================================
 3. Chrome Ã¢â‚¬â€ footer / bottom bar
 ========================================================================== */

footer.bg-dark {
 background: linear-gradient(165deg, #0f2414 0%, #163820 40%, #1f4d28 100%) !important;
 margin-top: 3rem !important;
 border-top: 3px solid var(--theme-brand);
 position: relative;
 overflow: hidden;
 box-shadow: 0 -8px 40px rgba(15, 36, 20, 0.28);
}

footer .footer-li a, footer .footer-li-right {
 color: var(--theme-glass);
 transition: color var(--theme-transition);
}

footer .footer-li a:hover {
 color: var(--theme-white);
}

footer .btn-floating {
 border: 1px solid rgba(255, 255, 255, 0.2);
 transition: background var(--theme-transition), transform var(--theme-transition);
 width: 42px;
 height: 42px;
 display: inline-flex;
 align-items: center;
 justify-content: center;
}

footer .btn-floating:hover {
 background: var(--theme-brand) !important;
 color: var(--theme-white) !important;
 transform: translateY(-2px);
}

.copyright {
 background: linear-gradient(90deg, #0a140a, #122012, #0a140a) !important;
 color: rgba(255, 255, 255, 0.7);
}

.bottombar {
 background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(243, 249, 239, 0.98));
 border-top: 1px solid rgba(47, 158, 68, 0.15);
 box-shadow: 0 -10px 30px rgba(20, 32, 22, 0.1);
 backdrop-filter: blur(8px);
 padding: 0.35rem 0.5rem calc(0.35rem + env(safe-area-inset-bottom));
}

.bottombar_link {
 color: var(--theme-ink-muted);
 border-radius: var(--theme-radius-sm);
 padding: 0.35rem 0.5rem;
 flex: 1;
 gap: 0.15rem;
 position: relative;
 transition: all var(--theme-transition);
}

.bottombar_link i {
 font-size: 24px;
}

.bottombar_link.bg-primary-500, .bottombar_link:hover {
 color: var(--theme-brand);
 background: var(--theme-brand-soft) !important;
}

/* ==========================================================================
 4. Sidebars / dashboard chrome
 ========================================================================== */

.sidebar, aside .list-group, .list-group-item {
 border-color: var(--theme-border);
}

.list-group-item.active, .list-group-item:hover {
 background: var(--theme-brand-soft);
 color: var(--theme-brand-deep);
 border-color: var(--theme-border-strong);
}

#dashboard .card-dash {
 border-left: none;
 position: relative;
 overflow: hidden;
 background: linear-gradient(145deg, var(--theme-white) 0%, #f5faf2 100%);
 border-radius: var(--theme-radius) !important;
 border: 1px solid rgba(47, 158, 68, 0.14);
 box-shadow: var(--theme-shadow);
 transition: transform var(--theme-transition), box-shadow var(--theme-transition);
}

.dash-number {
 color: transparent;
 font-weight: 500;
 font-size: 1.65rem;
 letter-spacing: -0.03em;
 background: var(--theme-grad-brand);
 -webkit-background-clip: text;
 background-clip: text;
}

.dash-total {
 color: var(--theme-ink-muted);
 font-size: 0.9rem;
}

/* ==========================================================================
 5. Home / catalog Ã¢â‚¬â€ video ads (migrated from index.blade.php)
 ========================================================================== */

.video-ads-highlight {
 background: linear-gradient(180deg, #dff5d4 0%, #f3fbeb 40%, var(--theme-white) 100%);
 border-top: 4px solid var(--theme-brand);
 border-bottom: 4px solid var(--theme-brand);
 padding: 2.5rem 0 3rem;
 position: relative;
 overflow: hidden;
 box-shadow: inset 0 0 0 1px rgba(47, 158, 68, 0.15), var(--theme-shadow-lg);
 border-radius: var(--theme-radius-lg);
 margin: 1rem 0;
}

.video-ads-highlight::before {
 content: '';
 position: absolute;
 top: -80px;
 right: -80px;
 width: 220px;
 height: 220px;
 border-radius: 50%;
 background: rgba(47, 158, 68, 0.12);
 pointer-events: none;
}

.video-ads-highlight::after {
 content: '';
 position: absolute;
 bottom: -60px;
 left: -60px;
 width: 180px;
 height: 180px;
 border-radius: 50%;
 background: rgba(47, 158, 68, 0.08);
 pointer-events: none;
}

.video-ads-head {
 position: relative;
 z-index: 1;
}

.video-ads-badge {
 display: inline-block;
 background: var(--theme-brand);
 color: var(--theme-white);
 font-size: 0.75rem;
 font-weight: 500;
 letter-spacing: 0.06em;
 text-transform: uppercase;
 padding: 0.35rem 0.9rem;
 border-radius: 999px;
 margin-bottom: 0.75rem;
}

.video-ads-title {
 color: var(--theme-brand-deep);
 font-size: clamp(1.35rem, 2.5vw, 2rem);
 font-weight: 500;
 margin-bottom: 0.35rem;
}

.video-ads-subtitle {
 color: var(--theme-brand-muted);
 font-size: clamp(0.9rem, 1.8vw, 1rem);
 margin-bottom: 0;
}

.video-ads-carousel-wrap {
 position: relative;
 z-index: 1;
 padding: 0 3.75rem;
 max-width: 820px;
 margin: 0 auto;
}

.video-ads-card {
 background: var(--theme-white);
 border: 2px solid rgba(47, 158, 68, 0.35);
 border-radius: 1.25rem;
 box-shadow: 0 12px 32px rgba(47, 158, 68, 0.18);
 padding: 0.75rem;
}

.video-ad-slide {
 border-radius: 1rem;
 overflow: hidden;
}

.video-ad-slide .video-ad-player {
 display: block;
 width: 100%;
 aspect-ratio: 16 / 9;
 object-fit: cover;
 background: #000;
 border: 4px solid var(--theme-brand) !important;
 border-radius: 0.85rem !important;
 max-height: min(62vw, 420px);
}

.video-ad-slide .video-ad-play-btn {
 position: absolute;
 top: 50%;
 left: 50%;
 transform: translate(-50%, -50%);
 width: clamp(52px, 12vw, 72px);
 height: clamp(52px, 12vw, 72px);
 line-height: 1;
 padding: 0;
 z-index: 2;
 border: 3px solid var(--theme-brand);
 color: var(--theme-brand);
 font-size: clamp(1rem, 3vw, 1.35rem);
}

.video-ad-slide .video-ad-play-btn:hover {
 background: var(--theme-brand);
 color: var(--theme-white);
}

.video-ad-slide .video-ad-link {
 position: absolute;
 right: 12px;
 bottom: 51px;
 z-index: 2;
 font-size: 0.8rem;
 padding: 0.35rem 0.85rem;
}

.btn-green {
 color: var(--theme-white) !important;
 background-color: var(--theme-brand);
 border: 2px solid var(--theme-brand) !important;
 box-shadow: 0 10px 20px -10px var(--theme-brand);
}

.btn-green:hover, .btn-green:focus {
 color: #000 !important;
 background-color: white !important;
 box-shadow: none;
 border: 2px solid var(--theme-brand) !important;
}

.video-ad-slide.is-playing .video-ad-play-btn {
 display: none;
}

#videoAdsCarousel .video-ads-control {
 position: absolute;
 top: 50%;
 transform: translateY(-50%);
 width: 52px;
 height: 52px;
 border-radius: 50%;
 background: var(--theme-brand);
 border: 3px solid var(--theme-white);
 color: var(--theme-white);
 display: flex;
 align-items: center;
 justify-content: center;
 box-shadow: 0 6px 18px rgba(47, 158, 68, 0.45);
 opacity: 1;
 z-index: 6;
 transition: transform 0.2s ease, background 0.2s ease;
}

#videoAdsCarousel .video-ads-control:hover {
 background: var(--theme-brand-dark);
 transform: translateY(-50%) scale(1.06);
}

#videoAdsCarousel .video-ads-control-prev {
 left: -0.25rem;
}

#videoAdsCarousel .video-ads-control-next {
 right: -0.25rem;
}

#videoAdsCarousel .video-ads-control i {
 font-size: 1.15rem;
 line-height: 1;
}

#videoAdsCarousel .carousel-indicators {
 position: static;
 margin: 1rem 0 0;
 gap: 0.5rem;
}

#videoAdsCarousel .carousel-indicators [data-bs-target] {
 width: 10px;
 height: 10px;
 border-radius: 50%;
 background-color: #c5deb8;
 border: none;
 opacity: 1;
 margin: 0;
}

#videoAdsCarousel .carousel-indicators .active {
 background-color: var(--theme-brand);
 transform: scale(1.2);
}

@media (max-width: 767.98px) {
 .video-ads-highlight {
 padding: 1.75rem 0 2.25rem;
 }

 .video-ads-carousel-wrap {
 padding: 0 2.85rem;
 }

 #videoAdsCarousel .video-ads-control {
 width: 44px;
 height: 44px;
 }

 #videoAdsCarousel .video-ads-control i {
 font-size: 1rem;
 }

 .video-ads-card {
 padding: 0.5rem;
 }

}

@media (max-width: 575.98px) {
 .video-ads-carousel-wrap {
 padding: 0 2.1rem;
 }

 #videoAdsCarousel .video-ads-control {
 width: 36px;
 height: 36px;
 border-width: 2px;
 }

 #videoAdsCarousel .video-ads-control-prev {
 left: 0;
 }

 #videoAdsCarousel .video-ads-control-next {
 right: 0;
 }

 .video-ad-slide .video-ad-link {
 right: 8px;
 bottom: 8px;
 font-size: 0.72rem;
 }

}

#carouselExampleIndicators {
 width: 100% !important;
 max-width: 100% !important;
 margin: 0 !important;
 border: none !important;
 border-radius: 0 !important;
 overflow: hidden;
 box-shadow: 0 12px 28px -20px rgba(45, 80, 22, 0.35);
 margin-left: 0 !important;
 margin-right: 0 !important;
 margin-bottom: 0 !important;
 left: 0;
 right: 0;
}

#carouselExampleIndicators .carousel-inner, #carouselExampleIndicators .carousel-item {
 width: 100%;
}

#carouselExampleIndicators .carousel-item img, .tv2-banner-img {
 max-width: 100% !important;
 height: auto;
 display: block;
 object-fit: contain;
 margin: 0 auto;
}

.section-title, h2.fw-bold, .home-heading {
 color: var(--theme-brand-deep);
}

.product-card .card-body, .offer-card {
 padding: 1rem;
}

.like_product i, .rm_like_product i {
 color: var(--theme-brand);
 transition: transform var(--theme-transition);
}

/* ==========================================================================
 6. Product detail (migrated from product_detail.blade.php)
 ========================================================================== */

#featured_img .main_video {
 max-width: 100%;
 max-height: 100%;
}

.video-thumb {
 position: relative;
 overflow: hidden;
 border-radius: var(--theme-radius-sm);
}

.video-thumb img {
 width: 100%;
 display: block;
}

.video-thumb .video-play-overlay {
 position: absolute;
 inset: 0;
 display: flex;
 align-items: center;
 justify-content: center;
 background: rgba(0, 0, 0, 0.35);
 color: var(--theme-white);
 font-size: 1.1rem;
 pointer-events: none;
}

#featured_img .main_image, #featured_img #img {
 border-radius: var(--theme-radius);
 border: 1px solid var(--theme-border);
}

.mini-image {
 border-radius: var(--theme-radius-sm);
 cursor: pointer;
 transition: border-color var(--theme-transition), transform var(--theme-transition);
 box-shadow: 0 2px 8px rgba(20, 32, 22, 0.08);
}

.mini-image:hover, .mini-image.border-primary {
 border-color: var(--theme-brand) !important;
 transform: scale(1.04);
}

/* ==========================================================================
 7. Cart / checkout / pay
 ========================================================================== */

.cart-table, .checkout-summary {
 background: var(--theme-surface);
 border-radius: var(--theme-radius);
 border: 1px solid var(--theme-border);
 box-shadow: var(--theme-shadow);
}

/* .cart-class is often a grid column wrapper Ã¢â‚¬â€ only style when it IS the card */

.card.cart-class {
 background: var(--theme-surface);
 border-radius: var(--theme-radius);
 border: 1px solid var(--theme-border);
 box-shadow: var(--theme-shadow);
}

.empty-cart-div {
 padding: 2rem 1rem;
 color: var(--theme-ink-muted);
}

.sub-one, .add-one {
 background: var(--theme-brand-soft);
 color: var(--theme-brand-deep);
 border-radius: 50%;
}

.table> :not(caption)>*>* {
 border-bottom-color: var(--theme-border);
}

/* ==========================================================================
 8. Auth pages
 ========================================================================== */

.login-page {
 background: transparent !important;
 padding: 1.5rem 0 3rem;
}

.form-right {
 background: radial-gradient(500px 220px at 100% -10%, rgba(47, 158, 68, 0.16), transparent 60%),
 radial-gradient(400px 180px at 0% 100%, rgba(255, 196, 90, 0.1), transparent 55%),
 var(--theme-white);
 border-radius: var(--theme-radius-lg);
 border: 1px solid rgba(47, 158, 68, 0.16);
 box-shadow: var(--theme-shadow-lg);
 padding-left: 1.5rem !important;
 padding-right: 1.5rem !important;
}

.login-name {
 font-size: clamp(1.6rem, 3vw, 2rem);
 font-weight: 500;
 color: transparent !important;
 letter-spacing: -0.03em;
 background: var(--theme-grad-brand);
 -webkit-background-clip: text;
 background-clip: text;
}

.login-detail-reg {
 color: var(--theme-brand) !important;
 font-weight: 500;
}

.input-grp {
 border-radius: var(--theme-radius) !important;
 overflow: hidden;
 box-shadow: var(--theme-shadow);
}

/* ==========================================================================
 9. Auctions
 ========================================================================== */

#featured_img .main_image {
 max-width: 100%;
 max-height: 420px;
 object-fit: contain;
}

.auction-card .badge, .badge.bg-success {
 background-color: var(--theme-brand) !important;
}

.list-group-item {
 background: var(--theme-surface);
}

/* ==========================================================================
 10. Remedies
 ========================================================================== */

.remedy-card img, .tv2-cover-img {
 border-bottom: 1px solid var(--theme-border);
}

.remedy-article-body, .article-content {
 line-height: 1.75;
 color: var(--theme-ink);
}

.plan-card {
 text-align: center;
}

.plan-card .card-body {
 padding: 1.5rem 1.25rem;
}

/* ==========================================================================
 11. CMS Ã¢â‚¬â€ FAQs (migrated from faqs.blade.php @section css)
 ========================================================================== */

#faq_section {
 background: linear-gradient(to bottom, var(--theme-white), var(--theme-surface-soft));
 border-radius: var(--theme-radius-lg);
 padding: 1rem 0 2rem;
}

#faq_section .accordion-item {
 transition: all 0.3s ease;
 border: 1px solid rgba(0, 0, 0, 0.05) !important;
 border-radius: var(--theme-radius-sm) !important;
 margin-bottom: 0.75rem;
 overflow: hidden;
}

#faq_section .accordion-item:hover {
 transform: translateY(-2px);
 box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.08) !important;
 border-color: rgba(47, 158, 68, 0.35) !important;
}

#faq_section .accordion-button {
 font-size: 1.1rem;
 padding: 1.25rem 1.5rem;
 transition: all 0.3s ease;
}

#faq_section .accordion-button:not(.collapsed) {
 background: linear-gradient(45deg, var(--theme-brand-soft), var(--theme-gray-soft));
 color: var(--theme-brand-deep);
 box-shadow: none;
}

#faq_section .accordion-button:focus {
 box-shadow: none;
 border-color: rgba(47, 158, 68, 0.35);
}

#faq_section .badge {
 font-size: 0.9rem;
 padding: 0.5rem 0.75rem;
 border-radius: 8px;
 transition: all 0.3s ease;
}

#faq_section .badge.bg-info {
 background: linear-gradient(45deg, var(--theme-brand), var(--theme-brand)) !important;
 font-size: 0.75rem;
 padding: 0.35rem 0.65rem;
 border-radius: 50px;
 animation: themeFadeIn 0.3s ease;
}

@keyframes themeFadeIn {
 from {
 opacity: 0;
 transform: translateX(-10px);
 }

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

}

#faq_section .accordion-button:hover .badge {
 background-color: var(--theme-brand-dark) !important;
}

#faq_section .search-wrapper:not(.tv2-faq-search) {
 position: relative;
 border-radius: 50px;
 overflow: hidden;
}

#faq_section .search-wrapper:not(.tv2-faq-search) .input-group-text {
 border-radius: 50px 0 0 50px;
 border: 1px solid #dee2e6;
 padding-left: 1.25rem;
}

#faq_section .search-wrapper:not(.tv2-faq-search) #faqSearch {
 border-radius: 0 50px 50px 0;
 border-left: none;
 padding: 0.875rem 1rem;
 font-size: 1rem;
 border: 1px solid #dee2e6;
 transition: all 0.3s ease;
}

#faq_section .search-wrapper:not(.tv2-faq-search) #faqSearch:focus {
 border-color: var(--theme-brand);
 box-shadow: 0 0 0 0.2rem rgba(47, 158, 68, 0.15);
}

#faq_section .search-wrapper:not(.tv2-faq-search) #clearSearch {
 border-radius: 0 50px 50px 0;
 padding: 0.875rem 1.5rem;
 transition: all 0.3s ease;
}

#faq_section mark {
 padding: 0.1em 0.25em;
 border-radius: 0.2rem;
 background-color: #fff3cd !important;
 color: var(--theme-brand-deep);
 background: rgba(255, 196, 90, 0.35) !important;
}

#faq_section .answer-content {
 line-height: 1.8;
 color: #4a5568;
 font-size: 1.05rem;
}

#faq_section .answer-content p {
 margin-bottom: 1rem;
}

#faq_section .answer-content ul, #faq_section .answer-content ol {
 padding-left: 1.5rem;
 margin-bottom: 1rem;
}

#faq_section .bg-light.rounded-4 {
 background: linear-gradient(145deg, var(--theme-white), var(--theme-gray-soft)) !important;
 border: 1px solid rgba(47, 158, 68, 0.15);
}

#faq_section .faq-item {
 animation: themeFadeInUp 0.5s ease;
}

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

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

}

.faq-container::-webkit-scrollbar {
 width: 8px;
}

.faq-container::-webkit-scrollbar-track {
 background: var(--theme-gray-hover);
 border-radius: 10px;
}

.faq-container::-webkit-scrollbar-thumb {
 background: #c1c1c1;
 border-radius: 10px;
}

.faq-container::-webkit-scrollbar-thumb:hover {
 background: #a8a8a8;
}

@media (max-width: 768px) {
 #faq_section .accordion-button {
 font-size: 1rem;
 padding: 1rem;
 }

 #faq_section .badge {
 font-size: 0.8rem;
 padding: 0.4rem 0.6rem;
 }

}

#faq_section.tv2-faq {
 background: transparent;
 border: none;
 box-shadow: none;
 padding: 0 0 2.5rem;
}

.tv2-faq-shell {
 background: linear-gradient(160deg, var(--theme-white) 0%, #f6faf3 100%);
 border: 1px solid rgba(47, 158, 68, 0.14);
 border-radius: var(--theme-radius-lg);
 box-shadow: var(--theme-shadow-lg);
 padding: 1.75rem 1.35rem 2rem;
}

@media (min-width: 768px) {
 .tv2-faq-shell {
 padding: 2.25rem 2rem 2.5rem;
 }

}

.tv2-faq-eyebrow {
 display: inline-block;
 font-size: 0.72rem;
 font-weight: 500;
 letter-spacing: 0.08em;
 text-transform: uppercase;
 color: var(--theme-brand);
 background: rgba(47, 158, 68, 0.12);
 border-radius: 999px;
 padding: 0.25rem 0.7rem;
 margin: 0;
}

.tv2-faq-title {
 font-size: clamp(1.45rem, 2.6vw, 2rem);
 font-weight: 500;
 color: var(--theme-brand-deep);
 letter-spacing: -0.02em;
 line-height: 1.25;
}

.tv2-faq-sub {
 color: var(--theme-ink-muted);
 font-size: 1rem;
 line-height: 1.6;
 max-width: 36rem;
 margin-left: auto;
 margin-right: auto;
}

.tv2-faq-search {
 position: relative;
 border-radius: 0;
 overflow: visible;
}

.tv2-faq-search__group {
 --theme-faq-search-radius: 999px;
 display: flex;
 align-items: stretch;
 border-radius: var(--theme-faq-search-radius) !important;
 overflow: hidden;
 border: 1.5px solid rgba(47, 158, 68, 0.2);
 background: var(--theme-white);
 box-shadow: 0 4px 14px rgba(20, 32, 22, 0.06);
 transition: border-color var(--theme-transition), box-shadow var(--theme-transition);
}

.tv2-faq-search__group:focus-within {
 border-color: var(--theme-brand);
 box-shadow: 0 0 0 4px rgba(47, 158, 68, 0.12);
}

.tv2-faq-search .input-group-text, .tv2-faq-search .form-control, .tv2-faq-search .btn, .tv2-faq-search #faqSearch, .tv2-faq-search #clearSearch {
 border: none !important;
 box-shadow: none !important;
 border-radius: 0 !important;
}

.tv2-faq-search .input-group-text {
 background: transparent !important;
 color: var(--theme-brand);
 padding-left: 1.1rem;
 display: inline-flex;
 align-items: center;
}

.tv2-faq-search #faqSearch {
 min-height: 48px;
 font-size: 0.98rem;
 padding: 0.65rem 0.5rem;
 background: transparent !important;
}

.tv2-faq-search #faqSearch:focus {
 box-shadow: none !important;
 outline: none;
}

.tv2-faq-search__clear {
 background: transparent !important;
 color: var(--theme-ink-muted);
 padding: 0 1rem;
 display: inline-flex;
 align-items: center;
}

.tv2-faq-search__clear:hover {
 color: var(--theme-brand-deep);
}

.tv2-faq-search__info {
 font-size: 0.85rem;
 color: var(--theme-ink-muted);
 text-align: center;
}

.tv2-faq-accordion {
 display: flex;
 flex-direction: column;
 gap: 0.65rem;
}

.tv2-faq-item.accordion-item {
 background: var(--theme-white);
 border: 1px solid rgba(47, 158, 68, 0.14) !important;
 border-radius: var(--theme-radius) !important;
 margin-bottom: 0 !important;
 box-shadow: none !important;
 overflow: hidden;
}

.tv2-faq-item.accordion-item:hover {
 transform: none;
 border-color: rgba(47, 158, 68, 0.28) !important;
 box-shadow: 0 6px 16px rgba(47, 158, 68, 0.1) !important;
}

.tv2-faq-question.accordion-button {
 display: flex;
 align-items: flex-start;
 gap: 0.85rem;
 background: var(--theme-white) !important;
 color: var(--theme-brand-deep);
 font-weight: 500;
 font-size: 1rem;
 padding: 1rem 1.15rem;
 box-shadow: none !important;
}

.tv2-faq-question.accordion-button:not(.collapsed) {
 background: linear-gradient(90deg, rgba(47, 158, 68, 0.1), transparent 85%) !important;
 color: var(--theme-brand-deep);
}

.tv2-faq-question.accordion-button::after {
 flex-shrink: 0;
 margin-left: auto;
 background-size: 1rem;
}

.tv2-faq-num {
 flex-shrink: 0;
 display: inline-flex;
 align-items: center;
 justify-content: center;
 min-width: 2.25rem;
 height: 2.25rem;
 padding: 0 0.5rem;
 border-radius: var(--theme-radius-sm);
 background: var(--theme-grad-brand);
 color: var(--theme-white);
 font-size: 0.8rem;
 font-weight: 500;
}

.tv2-faq-question-text {
 flex: 1;
 text-align: left;
 line-height: 1.45;
 padding-top: 0.2rem;
}

.tv2-faq-match {
 background: rgba(47, 158, 68, 0.15) !important;
 color: var(--theme-brand-deep) !important;
 font-weight: 500;
 font-size: 0.72rem;
 border-radius: 999px;
}

.tv2-faq-answer {
 padding: 0 1.15rem 1.15rem 1.15rem;
 background: var(--theme-white) !important;
 border-top: 1px dashed rgba(47, 158, 68, 0.2);
}

.tv2-faq-answer .answer-content {
 color: var(--theme-ink-muted);
 font-size: 0.95rem;
 line-height: 1.75;
 padding-left: 0;
}

.tv2-faq-empty__icon {
 color: rgba(47, 158, 68, 0.45);
}

.tv2-faq-empty h4 {
 font-weight: 500;
 color: var(--theme-brand-deep);
}

.tv2-faq-cta__inner {
 background: linear-gradient(145deg, rgba(47, 158, 68, 0.08), rgba(47, 158, 68, 0.02));
 border: 1px solid rgba(47, 158, 68, 0.18);
 border-radius: var(--theme-radius-lg);
 padding: 1.75rem 1.25rem;
}

.tv2-faq-cta__title {
 font-size: 1.2rem;
 font-weight: 500;
 color: var(--theme-brand-deep);
 margin: 0;
}

.tv2-faq-cta__text {
 color: var(--theme-ink-muted);
 font-size: 0.95rem;
 max-width: 28rem;
 margin-left: auto;
 margin-right: auto;
 line-height: 1.6;
}

.about-section, .contact-section, .terms-content, .policy-content {
 background: var(--theme-surface);
 border-radius: var(--theme-radius-lg);
 border: 1px solid var(--theme-border);
 box-shadow: var(--theme-shadow);
 padding: 1.5rem;
}

/* ==========================================================================
 12. Privacy policy page (migrated from standalone privacy-policy.blade.php)
 ========================================================================== */

.page-privacy-policy {
 padding: 1.5rem 0 3rem;
}

.policy-card {
 background: white;
 border-radius: 28px;
 box-shadow: var(--theme-shadow-lg);
 transition: all 0.2s ease;
 border: 1px solid var(--theme-border);
}

.policy-header {
 border-bottom: 2px solid #eef2f8;
 padding-bottom: 1rem;
 margin-bottom: 1.5rem;
}

.section-badge {
 background: var(--theme-grad-brand) !important;
 color: var(--theme-white) !important;
 font-weight: 500;
 font-size: 0.75rem;
 padding: 0.3rem 0.8rem;
 border-radius: 40px;
 display: inline-block;
 letter-spacing: 0.3px;
 box-shadow: inset 0 0 0 1px rgba(47, 158, 68, 0.15);
}

.policy-card h2 {
 font-size: 1.35rem;
 font-weight: 500;
 color: var(--theme-brand-deep);
 margin-top: 0.75rem;
}

.policy-card h3 {
 font-size: 1.05rem;
 font-weight: 500;
 color: var(--theme-ink);
 margin-top: 1.25rem;
}

.list-custom {
 list-style: none;
 padding-left: 0;
}

.list-custom li {
 position: relative;
 padding-left: 1.35rem;
 margin-bottom: 0.5rem;
 color: var(--theme-ink-muted);
}

.list-custom li::before {
 content: '';
 position: absolute;
 left: 0;
 top: 0.55em;
 width: 7px;
 height: 7px;
 border-radius: 50%;
 background: var(--theme-brand);
}

.info-box {
 background: var(--theme-brand-soft);
 border-left: 4px solid var(--theme-brand);
 border-radius: 0 var(--theme-radius-sm) var(--theme-radius-sm) 0;
 padding: 0.85rem 1rem;
 margin: 1rem 0;
 color: var(--theme-brand-deep);
}

.contact-block {
 background: var(--theme-surface-soft);
 border-radius: var(--theme-radius);
 padding: 1.25rem;
 border: 1px solid var(--theme-border);
}

.contact-block a {
 color: var(--theme-brand-deep);
}

.contact-block a:hover {
 color: var(--theme-brand);
}

.page-privacy-policy .contact-card {
 background: var(--theme-brand-soft);
 border-radius: 20px;
 padding: 1.2rem;
 transition: all 0.2s;
}

.page-privacy-policy .contact-card i {
 width: 28px;
 color: var(--theme-brand);
}

.page-privacy-policy .contact-highlight {
 background: var(--theme-white);
 border: 1px solid var(--theme-border);
 transition: 0.2s;
}

.page-privacy-policy .contact-highlight:hover {
 border-color: var(--theme-border-strong);
 box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.page-privacy-policy .consent-notice {
 background: #eef6ef;
 border-radius: 24px;
 padding: 1rem 1.5rem;
 border: 1px solid #cfe3cf;
}

.page-privacy-policy .badge-permission {
 background: #e9ecef;
 color: var(--theme-brand-deep);
 padding: 6px 12px;
 border-radius: 40px;
 font-size: 0.8rem;
 font-weight: 500;
 display: inline-flex;
 align-items: center;
 gap: 6px;
}

.page-privacy-policy hr {
 opacity: 0.4;
 margin: 2rem 0;
}

.page-privacy-policy .privacy-page-footer {
 font-size: 0.85rem;
 border-top: 1px solid var(--theme-border);
 padding-top: 1rem;
}

.tv2-search-price {
 font-size: 13px;
 color: var(--theme-ink-muted);
 margin-bottom: 0;
}

/* ==========================================================================
 13. Responsive polish
 ========================================================================== */

@media (max-width: 991px) {
 .form-search, .searchInput {
 min-width: 0;
 width: 100%;
 max-width: 100%;
 }

 .form-right {
 margin-top: 1rem !important;
 }

}

@media (max-width: 575.98px) {
 .card:hover, .card-dash:hover {
 transform: none;
 }

}

/* ==========================================================================
 14. Page polish Ã¢â‚¬â€ about / terms / policy / product / cart / auctions
 ========================================================================== */

#about_us, #privacy_policy, #terms, #contact_us {
 background: var(--theme-surface);
 border-radius: var(--theme-radius-lg);
 border: 1px solid var(--theme-border);
 box-shadow: var(--theme-shadow);
 margin-bottom: 2rem;
}

#about_us .about-img {
 border-radius: var(--theme-radius);
 box-shadow: var(--theme-shadow);
 max-width: 100%;
}

#about_us .about-content, #privacy_policy .about-content, .terms-content, .text-about-justi {
 line-height: 1.75;
 color: var(--theme-ink);
}

.btn-sort {
 border: 1px solid var(--theme-brand-glow) !important;
 border-radius: var(--theme-radius-pill) !important;
 background: linear-gradient(180deg, var(--theme-white), var(--theme-surface-soft-alt)) !important;
 color: var(--theme-brand-deep) !important;
 font-weight: 500;
 padding: 0.45rem 1rem !important;
}

.btn-sort:hover, .btn-sort:focus {
 border-color: var(--theme-brand) !important;
 color: var(--theme-brand) !important;
 background: var(--theme-brand-soft) !important;
}

.card-order {
 border-radius: var(--theme-radius) !important;
 border: 1px solid rgba(47, 158, 68, 0.12) !important;
 box-shadow: var(--theme-shadow);
 overflow: hidden;
 background: linear-gradient(180deg, var(--theme-white), #f7fbf4);
}

.card-order:hover {
 border-color: var(--theme-border-strong) !important;
}

.pro-order-title {
 color: var(--theme-brand-deep);
 font-weight: 500;
}

.cart-items .pro-img-order {
 border-radius: var(--theme-radius-sm);
}

.pagination .page-link {
 color: var(--theme-brand-deep);
 border-color: var(--theme-border);
}

.pagination .page-item.active .page-link {
 background-color: var(--theme-brand);
 border-color: var(--theme-brand);
 background: var(--theme-grad-brand);
 border: none;
 box-shadow: 0 6px 14px rgba(47, 158, 68, 0.35);
}

.pagination .page-link:hover {
 background-color: var(--theme-brand-soft);
 color: var(--theme-brand-dark);
}

.offer .card, .offers-section .card {
 border-top: 3px solid var(--theme-brand);
}

.contact .form-control, .contact textarea {
 background: var(--theme-surface-soft);
}

.login-page .btn-order-place {
 min-width: 160px;
 padding: 0.65rem 1.5rem;
 letter-spacing: 0.04em;
}

.sidebar_inner a.active, .sidebar_inner .active {
 color: var(--theme-brand) !important;
 font-weight: 500;
}

.orderview-img {
 border: 2px solid var(--theme-border);
}

.wallet-card, .referral-box {
 border-radius: var(--theme-radius);
 border: 1px solid var(--theme-border);
 background: var(--theme-surface);
 box-shadow: var(--theme-shadow);
}

.noui-target, .noUi-connect {
 background: var(--theme-brand);
}

.noUi-handle {
 border-color: var(--theme-brand);
 box-shadow: 0 2px 6px var(--theme-brand-glow);
}

.sidebar-header, .sidebar-title {
 color: var(--theme-brand-deep) !important;
 font-weight: 500;
}

.sidebar-shado {
 background: linear-gradient(180deg, var(--theme-white) 0%, #f2f8ee 100%) !important;
 border-radius: var(--theme-radius);
 border: 1px solid rgba(47, 158, 68, 0.14);
 box-shadow: var(--theme-shadow-lg);
 color: var(--theme-ink) !important;
 padding-bottom: 1rem !important;
}

.sidebar-shado .nav-link a, .sidebar-shado span {
 color: var(--theme-ink);
}

.sidebar-shado span.active {
 color: var(--theme-brand) !important;
 position: relative;
 padding-left: 0.35rem;
}

.auction-card, [class*="auction"] .card {
 border-top: 3px solid var(--theme-brand);
}

.cart-class .text-primary, .text-primary {
 color: var(--theme-brand) !important;
}

.tile-new-badge.bg-success {
 background-color: var(--theme-brand) !important;
}

.tile-figure-img {
 border-radius: var(--theme-radius-sm);
}

/* Auction cards Ã¢â‚¬â€ match product card look */

.tv2-auction-card {
 border: 1px solid rgba(226, 235, 217, 0.9);
 background: linear-gradient(180deg, var(--theme-white) 0%, #fbfef9 100%);
 box-shadow: var(--theme-shadow);
 border-radius: var(--theme-radius);
 overflow: hidden;
 transition: transform var(--theme-transition), box-shadow var(--theme-transition), border-color var(--theme-transition);
}

.tv2-auction-card:hover {
 transform: translateY(-6px);
 border-color: var(--theme-border-strong);
 box-shadow: var(--theme-shadow-float);
}

.tv2-auction-card .tile-figure {
 border-radius: calc(var(--theme-radius) - 2px) calc(var(--theme-radius) - 2px) 0 0;
 overflow: hidden;
 margin: -0.25rem -0.25rem 0;
}

.tv2-auction-card .food-title, .tv2-auction-card .custom-cardstitle {
 font-size: 0.95rem;
 line-height: 1.35;
 display: -webkit-box;
 -webkit-line-clamp: 2;
 -webkit-box-orient: vertical;
 overflow: hidden;
 min-height: 2.5em;
}

.tv2-auction-card .btn-food, .btn-food, .btn-theme, .shop-btn-lime {
 background: var(--theme-grad-brand, linear-gradient(135deg, var(--theme-brand-dark) 0%, var(--theme-brand) 45%, var(--theme-brand-light) 100%)) !important;
 color: var(--theme-white) !important;
 border: none !important;
 border-radius: var(--theme-radius-pill) !important;
 font-weight: 500;
 box-shadow: 0 8px 18px -10px rgba(47, 158, 68, 0.7);
 transition: transform var(--theme-transition), box-shadow var(--theme-transition);
}

.tv2-auction-card .btn-food:hover, .btn-food:hover, .btn-theme:hover, .shop-btn-lime:hover {
 color: var(--theme-white) !important;
 transform: translateY(-1px);
 box-shadow: 0 12px 22px -12px rgba(63, 154, 42, 0.85);
}

#Active-Auctions.bg-white {
 background: transparent !important;
}

#Active-Auctions>.container {
 background: rgba(255, 255, 255, 0.72);
 backdrop-filter: blur(8px);
 border: 1px solid rgba(47, 158, 68, 0.1);
 border-radius: var(--theme-radius-lg);
 padding: 1.25rem 1rem 1.5rem;
 box-shadow: var(--theme-shadow);
}

/* ==========================================================================
 15. Modern polish layer Ã¢â‚¬â€ depth, motion, glass, product UX
 ========================================================================== */

::selection {
 background: rgba(47, 158, 68, 0.28);
 color: var(--theme-brand-deep);
}

:focus-visible {
 outline: 2px solid var(--theme-brand);
 outline-offset: 3px;
}

@keyframes themePageIn {
 from {
 opacity: 0;
 transform: translateY(10px);
 }

 to {
 opacity: 1;
 transform: none;
 }

}

@keyframes themeShine {
 0% {
 background-position: 0% 50%;
 }

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

}

.navbar-brand:hover .main-logo {
 transform: scale(1.03);
 filter: drop-shadow(0 6px 12px rgba(47, 158, 68, 0.25));
}

.form-search:hover, .searchInput:hover {
 border-color: var(--theme-border-strong) !important;
}

@keyframes themeDropIn {
 from {
 opacity: 0;
 transform: translateY(-6px);
 }

 to {
 opacity: 1;
 transform: none;
 }

}

/* Opacity-only Ã¢â‚¬â€ safe with Bootstrap Popper (which also uses transform) */

@keyframes themeFadeSoft {
 from {
 opacity: 0;
 }

 to {
 opacity: 1;
 }

}

a:hover .faa-search, .nav-link:hover .faa-search {
 background: var(--theme-brand-soft);
 color: var(--theme-brand);
 transform: translateY(-1px);
}

.cart_counter, .notification_counter {
 min-width: 1.15rem;
 height: 1.15rem;
 font-size: 0.65rem;
 line-height: 1.15rem;
 padding: 0 0.3rem;
 box-shadow: 0 4px 10px var(--theme-accent-glow);
}

.profile-img:hover {
 transform: scale(1.06);
 box-shadow: 0 0 0 3px var(--theme-brand-soft), 0 8px 18px rgba(47, 158, 68, 0.25);
}

.dropdown-menu, .notification-div {
 backdrop-filter: blur(14px);
 background: rgba(255, 255, 255, 0.96) !important;
 animation: themeFadeSoft 0.15s ease;
}

.dropdown-item {
 border-radius: 0.5rem;
 margin: 0.15rem 0.35rem;
 width: auto;
 transition: background var(--theme-transition), color var(--theme-transition);
}

.dropdown-item:hover, .dropdown-item:focus {
 background: var(--theme-brand-soft);
 color: var(--theme-brand-deep);
}

.btn-lime::after, .btn-order-place::after, .btn-success::after {
 content: '';
 position: absolute;
 inset: 0;
 background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.28) 45%, transparent 70%);
 transform: translateX(-120%);
 transition: transform 0.55s var(--theme-ease);
}

.btn-lime:hover::after, .btn-order-place:hover::after, .btn-success:hover::after {
 transform: translateX(120%);
}

.btn:active:not(:disabled) {
 transform: translateY(0) scale(0.98);
}

.form-control:hover, .form-select:hover, .login-input:hover {
 border-color: var(--theme-border-strong);
}

.card, .card-dash, .card-order {
 border: 1px solid rgba(226, 235, 217, 0.9);
 background: linear-gradient(180deg, var(--theme-white) 0%, #fbfef9 100%);
 box-shadow: var(--theme-shadow);
 transition: transform var(--theme-transition), box-shadow var(--theme-transition), border-color var(--theme-transition);
}

.card:hover, .card-dash:hover, .card-order:hover {
 transform: translateY(-6px);
 border-color: var(--theme-border-strong);
 box-shadow: var(--theme-shadow-float);
}

/* Reset column wrappers that incorrectly reuse .cart-class */

[class*="col-"].cart-class, .padd-card-custom.cart-class {
 background: transparent !important;
 border: none !important;
 box-shadow: none !important;
 border-radius: 0 !important;
 transform: none !important;
}

.tile-figure {
 overflow: hidden;
 border-radius: var(--theme-radius) var(--theme-radius) 0 0;
 background: radial-gradient(circle at 30% 20%, rgba(47, 158, 68, 0.08), transparent 45%),
 #eef3ea;
}

.tile-figure-img, .card-img-top, .tv2-product-img, .tv2-cover-140, .tv2-cover-160 {
 transition: transform 0.55s var(--theme-ease), filter var(--theme-transition);
}

.card:hover .tile-figure-img, .card:hover .card-img-top, .card:hover .tv2-product-img, .card:hover .tv2-cover-140, .card:hover .tv2-cover-160 {
 transform: scale(1.06);
}

.custom-cardstitle, .pro-title, .pro-order-title {
 letter-spacing: -0.02em;
 line-height: 1.35;
 transition: color var(--theme-transition);
}

.card:hover .custom-cardstitle, .card:hover .pro-title {
 color: var(--theme-brand);
}

.tile-new-badge {
 border-radius: var(--theme-radius-pill) !important;
 font-size: 0.7rem;
 font-weight: 500;
 letter-spacing: 0.04em;
 text-transform: uppercase;
 padding: 0.3rem 0.65rem;
 box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
 backdrop-filter: blur(4px);
 background: var(--theme-grad-brand) !important;
 color: var(--theme-white) !important;
}

/* Home banner Ã¢â‚¬â€ edge-to-edge full width */

#carouselExampleIndicators .carousel-item {
 text-align: left;
}

/* #carouselExampleIndicators .carousel-item img,
.tv2-banner-img {
 width: 100% !important;
 max-width: none !important;
 height: auto;
 min-height: 180px;
 display: block;
 object-fit: cover;
 filter: none;
} */

#carouselExampleIndicators .carousel-control-prev, #carouselExampleIndicators .carousel-control-next {
 width: 48px !important;
 height: 48px !important;
 top: 50%;
 bottom: auto;
 transform: translateY(-50%);
 border-radius: 50% !important;
 background: rgba(255, 255, 255, 0.95);
 backdrop-filter: blur(8px);
 opacity: 1;
 box-shadow: 0 6px 18px rgba(20, 32, 22, 0.18);
 margin: 0 1rem;
 padding: 0;
 display: flex;
 align-items: center;
 justify-content: center;
 border: 1px solid rgba(47, 158, 68, 0.2);
}

#carouselExampleIndicators .carousel-control-prev {
 left: 0.75rem;
}

#carouselExampleIndicators .carousel-control-next {
 right: 0.75rem;
}

#carouselExampleIndicators .carousel-control-prev-icon, #carouselExampleIndicators .carousel-control-next-icon {
 width: 1.1rem !important;
 height: 1.1rem !important;
 background-size: 100% 100% !important;
 filter: invert(42%) sepia(62%) saturate(530%) hue-rotate(65deg);
 display: block;
 flex-shrink: 0;
}

#carouselExampleIndicators .carousel-control-prev:hover, #carouselExampleIndicators .carousel-control-next:hover {
 background: var(--theme-white);
 opacity: 1;
 box-shadow: 0 8px 22px rgba(47, 158, 68, 0.28);
}

h2.fw-bold, .section-title, .home-heading, .dash-category {
 position: relative;
 display: inline-block;
 padding-bottom: 0.35rem;
 margin-bottom: 0.5rem !important;
}

h2.fw-bold::after, .section-title::after, .dash-category::after {
 content: '';
 position: absolute;
 left: 0;
 bottom: 0;
 width: 42%;
 height: 3px;
 border-radius: var(--theme-radius-pill);
 background: linear-gradient(90deg, var(--theme-brand), transparent);
}

#dashboard .card-dash::before {
 content: '';
 position: absolute;
 left: 0;
 top: 0;
 bottom: 0;
 width: 5px;
 background: var(--theme-grad-brand);
}

.sidebar-shado .nav-link {
 border-radius: var(--theme-radius-sm);
 margin: 0.15rem 0;
 transition: background var(--theme-transition), transform var(--theme-transition);
}

.sidebar-shado .nav-link:hover {
 background: var(--theme-brand-soft);
 transform: translateX(3px);
}

.sidebar-shado span.active::before {
 content: '';
 display: inline-block;
 width: 6px;
 height: 6px;
 border-radius: 50%;
 background: var(--theme-brand);
 margin-right: 0.4rem;
 vertical-align: middle;
 box-shadow: 0 0 0 3px rgba(47, 158, 68, 0.2);
}

footer.bg-dark::before {
 content: '';
 position: absolute;
 inset: auto auto -80px -60px;
 width: 260px;
 height: 260px;
 border-radius: 50%;
 background: rgba(47, 158, 68, 0.12);
 pointer-events: none;
}

.bottombar_link.bg-primary-500 {
 background: transparent !important;
 color: var(--theme-brand);
}

.bottombar_link.bg-primary-500::after {
 content: '';
 position: absolute;
 bottom: 0.15rem;
 left: 50%;
 transform: translateX(-50%);
 width: 18px;
 height: 3px;
 border-radius: var(--theme-radius-pill);
 background: var(--theme-brand);
}

.bottombar_link:active {
 transform: scale(0.96);
}

.alert {
 border-radius: var(--theme-radius);
 border-width: 1px;
 box-shadow: var(--theme-shadow);
}

.badge {
 letter-spacing: 0.02em;
}

.table {
 border-collapse: separate;
 border-spacing: 0;
 overflow: hidden;
 border-radius: var(--theme-radius);
}

.table thead th {
 background: var(--theme-brand-soft);
 color: var(--theme-brand-deep);
 border-bottom: none;
 font-weight: 500;
}

.table tbody tr {
 transition: background var(--theme-transition);
}

.table tbody tr:hover {
 background: rgba(238, 248, 234, 0.55);
}

#featured_img {
 background: linear-gradient(180deg, #f4f8f1, var(--theme-white));
 border-radius: var(--theme-radius-lg);
 padding: 0.75rem;
 border: 1px solid var(--theme-border);
 box-shadow: var(--theme-shadow);
}

.plan-card .card-body h5, .remedy-card .card-title {
 letter-spacing: -0.02em;
}

@keyframes themeSpin {
 to {
 transform: rotate(360deg);
 }

}

::-webkit-scrollbar {
 width: 10px;
 height: 10px;
}

::-webkit-scrollbar-track {
 background: transparent;
}

::-webkit-scrollbar-thumb {
 background: #c5d8bc;
 border-radius: var(--theme-radius-pill);
 border: 2px solid transparent;
 background-clip: padding-box;
}

::-webkit-scrollbar-thumb:hover {
 background: var(--theme-brand);
 border: 2px solid transparent;
 background-clip: padding-box;
}

@media (prefers-reduced-motion: reduce) { * {
 animation: none !important;
 transition-duration: 0.01ms !important;
 scroll-behavior: auto !important;
 }

 .content-margin {
 opacity: 1;
 transform: none;
 }

}

@media (max-width: 991px) {
 .nav-postion {
 backdrop-filter: blur(12px);
 }

}

@media (max-width: 575.98px) {
 .card:hover, .card-dash:hover, .card-order:hover {
 transform: translateY(-2px);
 }

 .breadcrumb-item {
 font-size: 0.82rem;
 padding: 0 !important;
 }

 #carouselExampleIndicators .carousel-control-prev, #carouselExampleIndicators .carousel-control-next {
 width: 40px !important;
 height: 40px !important;
 margin: 0 0.5rem;
 }

 #carouselExampleIndicators .carousel-control-prev-icon, #carouselExampleIndicators .carousel-control-next-icon {
 width: 0.95rem !important;
 height: 0.95rem !important;
 }

}

/* Offcanvas sidebar Ã¢â‚¬â€ full viewport height */

#offcanvasNavbar.offcanvas {
 height: 100dvh;
 max-height: 100dvh;
 display: flex;
 flex-direction: column;
}

#offcanvasNavbar .offcanvas-body {
 flex: 1 1 auto;
 min-height: 0;
 overflow-y: auto;
 -webkit-overflow-scrolling: touch;
 background: linear-gradient(180deg, var(--theme-white) 0%, #f5faf2 100%);
}

/* ==========================================================================
 16. Premium visual layer Ã¢â‚¬â€ gradients, glow, section atmosphere
 ========================================================================== */

/* Soft floating orbs Ã¢â‚¬â€ kept inside viewport to avoid horizontal scroll */

.content-margin::before, .content-margin::after {
 content: '';
 position: absolute;
 border-radius: 50%;
 pointer-events: none;
 z-index: -1;
 filter: blur(40px);
 opacity: 0.45;
}

.content-margin::before {
 width: min(280px, 40vw);
 height: min(280px, 40vw);
 top: 12%;
 left: 0;
 transform: translateX(-35%);
 background: var(--theme-brand-glow);
}

.content-margin::after {
 width: min(240px, 35vw);
 height: min(240px, 35vw);
 top: 48%;
 right: 0;
 transform: translateX(35%);
 background: rgba(255, 196, 90, 0.16);
}

/* Header glass with green tint Ã¢â‚¬â€ stay within viewport */

.nav-container, .lg-header, .navbar {
 max-width: 100%;
 box-sizing: border-box;
}

@media (min-width: 992px) {
 .form-search, .searchInput {
 min-width: 180px !important;
 max-width: 320px;
 }

}

/* Prevent decorative absolute elements from widening the page */

.video-ads-highlight, #Order-Process, .bg-lime-order, footer.bg-dark {
 overflow: hidden;
 max-width: 100%;
}

#offcanvasNavbar .offcanvas-header.bg-lime {
 background: var(--theme-grad-deep) !important;
 padding-top: 1.25rem;
 padding-bottom: 1.25rem;
 box-shadow: 0 8px 24px rgba(31, 61, 18, 0.25);
}

#offcanvasNavbar .navbar-nav .nav-link {
 border-radius: var(--theme-radius-sm);
 margin: 0.15rem 0.75rem;
 padding: 0.65rem 0.9rem !important;
 transition: background var(--theme-transition), transform var(--theme-transition), color var(--theme-transition);
}

#offcanvasNavbar .navbar-nav .nav-link:hover {
 background: var(--theme-brand-soft);
 color: var(--theme-brand-deep);
 transform: translateX(4px);
}

/* #carouselExampleIndicators .carousel-item img,
.tv2-banner-img {
 width: 100% !important;
 max-width: 100% !important;
 display: block;
 object-fit: cover;
} */

/* Home Ã¢â‚¬â€ about section (do NOT target page breadcrumb #page_banner) */

main>section[id="about us"] {
 position: relative;
}

main>section[id="about us"]>.container {
 background: var(--theme-grad-brand-soft);
 border: 1px solid rgba(47, 158, 68, 0.15);
 border-radius: var(--theme-radius-lg);
 padding: 2rem 1.5rem;
 box-shadow: var(--theme-shadow-lg);
}

.about-heading {
 background: var(--theme-grad-brand);
 -webkit-background-clip: text;
 background-clip: text;
 color: transparent !important;
 font-weight: 500;
 letter-spacing: -0.02em;
 font-size: clamp(1.5rem, 3vw, 2.1rem) !important;
}

.about-content {
 color: var(--theme-ink-muted);
 line-height: 1.75;
}

/* .about-img {
 border-radius: var(--theme-radius-lg);
 box-shadow: var(--theme-shadow-float);
 border: 4px solid var(--theme-white);
} */

.about-btn-lime {
 background: var(--theme-grad-brand) !important;
 color: var(--theme-white) !important;
 border: none !important;
 border-radius: var(--theme-radius-pill) !important;
 padding: 0.65rem 1.6rem !important;
 font-weight: 500;
 box-shadow: 0 12px 28px -12px rgba(47, 158, 68, 0.85);
 transition: transform var(--theme-transition), box-shadow var(--theme-transition);
}

.about-btn-lime:hover {
 transform: translateY(-2px);
 box-shadow: 0 16px 32px -12px rgba(63, 154, 42, 0.9);
 color: var(--theme-white) !important;
}

#Order-Process, .bg-lime-order {
 background: var(--theme-grad-deep) !important;
 position: relative;
 overflow: hidden;
 border-radius: var(--theme-radius-lg);
 margin: 1.5rem auto;
 max-width: 1320px;
 box-shadow: var(--theme-shadow-float);
}

#Order-Process::before {
 content: '';
 position: absolute;
 width: 280px;
 height: 280px;
 border-radius: 50%;
 background: rgba(255, 255, 255, 0.08);
 top: -100px;
 right: -40px;
 pointer-events: none;
}

#Order-Process::after {
 content: '';
 position: absolute;
 width: 180px;
 height: 180px;
 border-radius: 50%;
 background: rgba(255, 255, 255, 0.06);
 bottom: -60px;
 left: 8%;
 pointer-events: none;
}

.order-title {
 color: var(--theme-white) !important;
 font-weight: 500;
 letter-spacing: -0.02em;
 text-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
 position: relative;
 z-index: 1;
}

.order-heading {
 color: rgba(255, 255, 255, 0.95) !important;
 font-weight: 500;
 position: relative;
 z-index: 1;
 font-size: 19px !important;
}

.order-img {
 filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.2));
 transition: transform var(--theme-transition);
 position: relative;
 z-index: 1;
}

.single-logo:hover .order-img {
 transform: translateY(-6px) scale(1.05);
}

#Shop-Cat, .bg-shop-cat {
 background: transparent !important;
}

#Shop-Cat .container, .bg-shop-cat .container {
 background: linear-gradient(160deg, var(--theme-white) 0%, #f5faf1 100%);
 border: 1px solid rgba(47, 158, 68, 0.14);
 border-radius: var(--theme-radius-lg);
 padding-top: 1.5rem;
 padding-bottom: 1.5rem;
 box-shadow: var(--theme-shadow);
}

.single-logo {
 display: flex;
 flex-direction: column;
 justify-content: center;
 align-items: center;
}

.single-logo img {
 max-width: 120px;
 max-height: 120px;
 object-fit: contain;
}

.shop-heading {
 font-weight: 500;
 color: var(--theme-brand-deep) !important;
 transition: color var(--theme-transition);
 margin-top: 0 !important;
}

#Shop-Cat a:hover .shop-heading {
 color: var(--theme-brand) !important;
}

#Shop-Cat img, .brand-carousel img {
 border-radius: 50%;
 box-shadow: 0 8px 20px rgba(45, 80, 22, 0.12);
 border: 3px solid var(--theme-white);
 transition: transform var(--theme-transition), box-shadow var(--theme-transition);
}

#Shop-Cat a:hover img, .brand-carousel a:hover img {
 transform: scale(1.08);
 box-shadow: 0 12px 28px rgba(47, 158, 68, 0.28);
}

/* Owl carousel nav Ã¢â‚¬â€ circular controls (Shop-Cat & others) */

.owl-carousel .owl-nav {
 margin: 0;
}

.owl-carousel .owl-nav button.owl-prev, .owl-carousel .owl-nav button.owl-next, .brand-carousel .owl-prev, .brand-carousel .owl-next, .order-carousel .owl-prev, .order-carousel .owl-next {
 position: absolute !important;
 top: 50% !important;
 transform: translateY(-50%) !important;
 width: 44px !important;
 height: 44px !important;
 margin: 0 !important;
 padding: 0 !important;
 border: 1px solid rgba(47, 158, 68, 0.2) !important;
 border-radius: 50% !important;
 background: rgba(255, 255, 255, 0.95) !important;
 box-shadow: 0 6px 18px rgba(20, 32, 22, 0.16) !important;
 display: inline-flex !important;
 align-items: center !important;
 justify-content: center !important;
 line-height: 1 !important;
 opacity: 1 !important;
 z-index: 3;
 transition: background var(--theme-transition), box-shadow var(--theme-transition), transform var(--theme-transition);
}

.owl-carousel .owl-nav button.owl-prev, .brand-carousel .owl-prev, .order-carousel .owl-prev {
 left: 0 !important;
}

.owl-carousel .owl-nav button.owl-next, .brand-carousel .owl-next, .order-carousel .owl-next {
 right: 0 !important;
}

.owl-carousel .owl-nav button.owl-prev:hover, .owl-carousel .owl-nav button.owl-next:hover, .brand-carousel .owl-prev:hover, .brand-carousel .owl-next:hover {
 background: var(--theme-white) !important;
 box-shadow: 0 8px 22px rgba(47, 158, 68, 0.28) !important;
 transform: translateY(-50%) scale(1.05) !important;
}

.owl-carousel .owl-nav button span, .brand-carousel .owl-prev span, .brand-carousel .owl-next span, .order-carousel .owl-prev span, .order-carousel .owl-next span {
 font-size: 0.95rem !important;
 line-height: 1 !important;
 color: var(--theme-brand) !important;
 display: block;
 width: auto;
 height: auto;
}

#Shop-Cat .brand-carousel, .brand-carousel.owl-carousel {
 padding: 0 2.5rem;
}

#Top-Cat, section.bg-white {
 background: transparent !important;
}

/* #Top-Cat .container,
section.bg-white > .container {
 background: rgba(255, 255, 255, 0.72);
 backdrop-filter: blur(8px);
 border: 1px solid rgba(47, 158, 68, 0.1);
 border-radius: var(--theme-radius-lg);
 padding: 1.25rem 1rem 1.5rem;
 box-shadow: var(--theme-shadow);
} */

.food-title {
 font-weight: 500;
 letter-spacing: -0.015em;
 color: var(--theme-ink);
 transition: color var(--theme-transition);
}

.card:hover .food-title {
 color: var(--theme-brand);
}

.price-discount {
 background: var(--theme-grad-brand);
 -webkit-background-clip: text;
 background-clip: text;
 color: transparent !important;
 font-weight: 500 !important;
 font-size: 1.05rem !important;
}

.card {
 position: relative;
}

.card::after {
 content: '';
 position: absolute;
 inset: 0;
 border-radius: inherit;
 padding: 1px;
 background: linear-gradient(145deg, rgba(47, 158, 68, 0.35), transparent 40%, rgba(143, 212, 122, 0.2));
 -webkit-mask: linear-gradient(var(--theme-white) 0 0) content-box, linear-gradient(var(--theme-white) 0 0);
 mask: linear-gradient(var(--theme-white) 0 0) content-box, linear-gradient(var(--theme-white) 0 0);
 -webkit-mask-composite: xor;
 mask-composite: exclude;
 opacity: 0;
 transition: opacity var(--theme-transition);
 pointer-events: none;
}

.card:hover::after {
 opacity: 1;
}

.tv2-product-img {
 background: linear-gradient(160deg, #eef6ea 0%, #f8fbf6 50%, #e8f2e3 100%) !important;
}

/* Video ads band already green Ã¢â‚¬â€ boost glow */

.btn-lime, .btn-order-place, .btn-success {
 background: var(--theme-grad-brand) !important;
 border: none !important;
}

.sidebar_inner .offcanvas-header.bg-lime, .offcanvas-header.bg-lime {
 background: var(--theme-grad-deep) !important;
}

footer.bg-dark::after {
 content: '';
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 height: 4px;
 background: var(--theme-grad-brand);
}

.bottombar_link.bg-primary-500 i {
 background: var(--theme-grad-brand);
 -webkit-background-clip: text;
 background-clip: text;
 color: transparent;
}

.badge.bg-success {
 background: var(--theme-grad-brand) !important;
}

.btn-order-place {
 background: var(--theme-grad-brand) !important;
 box-shadow: 0 14px 32px -14px rgba(47, 158, 68, 0.9);
 border-radius: var(--theme-radius-pill) !important;
}

.policy-card, .plan-card {
 background: linear-gradient(160deg, var(--theme-white) 0%, #f6faf3 100%);
 border: 1px solid rgba(47, 158, 68, 0.14);
}

@media (max-width: 767.98px) {
 .content-margin::before, .content-margin::after {
 opacity: 0.25;
 width: 140px;
 height: 140px;
 }

 #Order-Process, .bg-lime-order {
 margin-left: 0.75rem;
 margin-right: 0.75rem;
 max-width: calc(100% - 1.5rem);
 border-radius: var(--theme-radius);
 }

 main>section[id="about us"]>.container,
 #Shop-Cat .container,
 #Top-Cat .container,
 #Active-Auctions>.container,
 #BHARAT-SPICE .container,
 #Order-Fast-Food .container,
 #Featured .container {
 margin-left: auto;
 margin-right: auto;
 max-width: calc(100% - 1rem);
 width: 100%;
 box-sizing: border-box;
 }

}

/* ==========================================================================
 17. Next pages Ã¢â‚¬â€ catalog, detail, cart, auth, dashboard
 ========================================================================== */

.tv2-catalog-grid, .tv2-detail-gallery, .tv2-detail-info, .tv2-detail-desc, .tv2-empty-state {
 background: linear-gradient(160deg, var(--theme-white) 0%, #f6faf3 100%);
 border: 1px solid rgba(47, 158, 68, 0.14);
 border-radius: var(--theme-radius-lg);
 box-shadow: var(--theme-shadow);
}

.tv2-catalog-grid, .tv2-detail-gallery, .tv2-detail-info, .tv2-detail-desc {
 padding: 1rem 1.1rem 1.25rem;
}

.tv2-empty-state {
 padding: 2.5rem 1.5rem;
}

.tv2-product-card {
 border: 1px solid rgba(226, 235, 217, 0.9);
 background: linear-gradient(180deg, var(--theme-white) 0%, #fbfef9 100%);
 box-shadow: var(--theme-shadow);
 border-radius: var(--theme-radius);
 overflow: hidden;
 transition: transform var(--theme-transition), box-shadow var(--theme-transition), border-color var(--theme-transition);
}

.tv2-product-card:hover {
 transform: translateY(-6px);
 border-color: var(--theme-border-strong);
 box-shadow: var(--theme-shadow-float);
}

.tv2-product-card .tile-figure {
 border-radius: calc(var(--theme-radius) - 2px) calc(var(--theme-radius) - 2px) 0 0;
 overflow: hidden;
 margin: -0.25rem -0.25rem 0;
}

.tv2-product-card .food-title, .tv2-product-card .custom-cardstitle {
 font-size: 0.95rem;
 line-height: 1.35;
 display: -webkit-box;
 -webkit-line-clamp: 2;
 -webkit-box-orient: vertical;
 overflow: hidden;
 min-height: 2.5em;
 margin-bottom: 0.35rem;
}

.tv2-product-card .card-amount, .tv2-product-card .price-discount {
 font-size: 1.05rem;
}

.tv2-product-card .card-selectbox, .card-selectbox {
 border-radius: var(--theme-radius-pill) !important;
 border-color: var(--theme-border) !important;
 min-height: 32px;
 font-size: 0.8rem;
 max-width: 120px;
}

.tv2-product-card .card-Addbutton, .card-Addbutton {
 background: var(--theme-grad-brand) !important;
 color: var(--theme-white) !important;
 border: none !important;
 border-radius: var(--theme-radius-pill) !important;
 font-weight: 500;
 min-height: 40px;
 box-shadow: 0 8px 18px -10px rgba(47, 158, 68, 0.7);
}

.tv2-product-card .card-Addbutton:hover, .card-Addbutton:hover {
 color: var(--theme-white) !important;
 transform: translateY(-1px);
}

.tv2-product-card .card-Addbutton:disabled, .card-Addbutton:disabled {
 opacity: 0.55;
 box-shadow: none;
}

.tile-favorite {
 background: rgba(255, 255, 255, 0.92);
 box-shadow: 0 4px 12px rgba(20, 32, 22, 0.12);
 width: 34px;
 height: 34px;
 display: flex;
 align-items: center;
 justify-content: center;
 top: 8px;
 right: 8px;
 z-index: 2;
 padding: 0;
 line-height: 1;
}

.tile-favorite .clk {
 display: flex;
 align-items: center;
 justify-content: center;
 width: 100%;
 height: 100%;
 line-height: 1;
}

.tile-favorite .faa-heart-trans, .tile-favorite .fa-heart {
 position: static !important;
 top: auto !important;
 right: auto !important;
 left: auto !important;
 width: auto !important;
 height: auto !important;
 padding: 0 !important;
 margin: 0 !important;
 line-height: 1 !important;
 font-size: 0.95rem !important;
 background: transparent !important;
 border-radius: 0 !important;
 opacity: 1 !important;
 display: inline-flex !important;
 align-items: center;
 justify-content: center;
 vertical-align: middle;
}

.tv2-catalog-actions {
 position: relative;
 z-index: 21;
}

.tv2-catalog-actions .dropdown {
 position: relative;
}

.tv2-catalog-actions .dropdown-menu {
 z-index: 1080;
 min-width: 10rem;
 padding: 0.4rem;
 border: 1px solid rgba(47, 158, 68, 0.16);
 border-radius: var(--theme-radius-sm);
 box-shadow: var(--theme-shadow-lg);
 animation: themeFadeSoft 0.15s ease;
}

.tv2-catalog-actions .dropdown-item {
 font-size: 0.9rem;
 font-weight: 500;
 color: var(--theme-ink);
 border-radius: 0.45rem;
 padding: 0.45rem 0.75rem;
}

.btn-sort:hover, .btn-sort:focus, .btn-sort.show {
 background: var(--theme-brand-soft) !important;
 border-color: var(--theme-brand) !important;
 color: var(--theme-brand-deep) !important;
}

.tv2-page-product-detail .pro-title {
 font-size: clamp(1.25rem, 2.4vw, 1.75rem);
 font-weight: 500;
 letter-spacing: -0.02em;
 margin-bottom: 0.85rem;
}

.tv2-detail-info .pro-discount, .pro-discount {
 background: var(--theme-grad-brand);
 -webkit-background-clip: text;
 background-clip: text;
 color: transparent !important;
 font-size: 1.5rem;
 font-weight: 500;
}

.tv2-detail-gallery #featured_img {
 background: linear-gradient(180deg, #f4f8f1, var(--theme-white));
 border-radius: var(--theme-radius);
 padding: 0.75rem;
 border: 1px solid var(--theme-border);
 margin-bottom: 0.75rem;
}

.tv2-detail-gallery .main_image {
 width: 100%;
 max-height: 420px;
 object-fit: contain;
 display: block;
 margin: 0 auto;
}

.tv2-detail-gallery .mini-image, .img-pro-detail {
 border-radius: var(--theme-radius-sm);
 border: 2px solid transparent;
 transition: border-color var(--theme-transition), transform var(--theme-transition);
}

.tv2-detail-gallery .mini-image.active, .img-pro-detail.active {
 border-color: var(--theme-brand) !important;
}

.btn-pro, .tv2-detail-info .add_cart {
 background: var(--theme-grad-brand) !important;
 color: var(--theme-white) !important;
 border: none !important;
 border-radius: var(--theme-radius-pill) !important;
 font-weight: 500;
 padding: 0.65rem 1.4rem !important;
 box-shadow: 0 12px 28px -12px rgba(47, 158, 68, 0.85);
}

.quant-order-btn {
 background: var(--theme-brand-soft) !important;
 border: 1px solid var(--theme-border) !important;
 border-radius: var(--theme-radius-pill) !important;
 padding: 0.25rem 0.4rem !important;
}

.bg-order-pm {
 width: 32px;
 height: 32px;
 border-radius: 50% !important;
 background: var(--theme-grad-brand) !important;
 display: inline-flex !important;
 align-items: center;
 justify-content: center;
 cursor: pointer;
}

.bg-order-pm i {
 color: var(--theme-white) !important;
 font-size: 0.75rem;
}

.tv2-detail-desc {
 margin-top: 0.5rem;
 line-height: 1.7;
 color: var(--theme-ink);
}

.border-pro {
 border-color: var(--theme-border) !important;
}

.tv2-page-cart {
 padding-bottom: 1rem;
}

.tv2-cart-list, .tv2-cart-summary {
 background: linear-gradient(160deg, var(--theme-white) 0%, #f6faf3 100%);
 border: 1px solid rgba(47, 158, 68, 0.14);
 border-radius: var(--theme-radius-lg);
 box-shadow: var(--theme-shadow);
}

.tv2-cart-list__head, .tv2-cart-summary__title {
 display: flex;
 align-items: center;
 justify-content: space-between;
 gap: 0.75rem;
 padding: 0.95rem 1.15rem;
 border-bottom: 1px solid rgba(47, 158, 68, 0.12);
 background: linear-gradient(90deg, rgba(47, 158, 68, 0.08), transparent 70%);
}

.tv2-cart-list__title, .tv2-cart-summary__title {
 margin: 0;
 font-size: 1.05rem;
 font-weight: 500;
 color: var(--theme-brand-deep);
}

.tv2-cart-list__count {
 font-size: 0.78rem;
 font-weight: 500;
 color: var(--theme-ink-muted);
 background: rgba(47, 158, 68, 0.1);
 border-radius: 999px;
 padding: 0.2rem 0.65rem;
}

.tv2-cart-list__items {
 display: flex;
 flex-direction: column;
}

.tv2-cart-item {
 display: grid;
 grid-template-columns: 108px minmax(0, 1fr);
 gap: 1rem;
 padding: 1.05rem 1.15rem;
 border-bottom: 1px solid rgba(47, 158, 68, 0.1);
 background: transparent;
 box-shadow: none !important;
 border-radius: 0 !important;
 margin: 0 !important;
}

.tv2-cart-item:last-child {
 border-bottom: none;
}

.tv2-cart-item__media {
 display: block;
 border-radius: var(--theme-radius-sm);
 overflow: hidden;
 background: linear-gradient(160deg, #eef6ea, #f8fbf6);
 border: 1px solid rgba(47, 158, 68, 0.12);
 align-self: start;
}

.tv2-cart-item__img {
 width: 100%;
 height: 108px;
 object-fit: cover;
 display: block;
}

.tv2-cart-item__body {
 min-width: 0;
 display: flex;
 flex-direction: column;
 gap: 0.75rem;
}

.tv2-cart-item__top {
 display: flex;
 align-items: flex-start;
 justify-content: space-between;
 gap: 0.75rem;
}

.tv2-cart-item__name-link {
 text-decoration: none !important;
}

.tv2-cart-item__name {
 margin: 0;
 font-size: 1rem;
 font-weight: 500;
 color: var(--theme-brand-deep);
 line-height: 1.35;
}

.tv2-cart-item__food {
 display: inline-flex;
 margin-top: 0.35rem;
 color: var(--theme-brand);
}

.tv2-cart-item__attrs {
 display: flex;
 flex-wrap: wrap;
 gap: 0.35rem;
 margin-top: 0.45rem;
}

.tv2-cart-item__attr {
 display: inline-flex;
 font-size: 0.72rem;
 font-weight: 500;
 color: var(--theme-brand-deep);
 background: rgba(47, 158, 68, 0.12);
 border-radius: 999px;
 padding: 0.15rem 0.55rem;
}

.tv2-cart-item__unit {
 margin-top: 0.45rem;
 font-size: 0.9rem;
 color: var(--theme-ink-muted);
}

.tv2-cart-item__unit span {
 color: var(--theme-ink);
}

.tv2-cart-item__price-note {
 margin-top: 0.3rem;
 font-size: 0.8rem;
 font-weight: 500;
}

.tv2-cart-item__price-note.is-up {
 color: #c0392b;
}

.tv2-cart-item__price-note.is-down {
 color: var(--theme-brand-deep);
}

.tv2-cart-item__remove {
 width: 36px;
 height: 36px;
 border: 1px solid rgba(192, 57, 43, 0.25);
 border-radius: 50%;
 background: rgba(192, 57, 43, 0.06);
 color: #c0392b;
 display: inline-flex;
 align-items: center;
 justify-content: center;
 flex: 0 0 auto;
 cursor: pointer;
 transition: background var(--theme-transition), transform var(--theme-transition);
}

.tv2-cart-item__remove:hover {
 background: rgba(192, 57, 43, 0.12);
 transform: scale(1.05);
}

.tv2-cart-item__footer {
 display: flex;
 align-items: center;
 justify-content: space-between;
 gap: 0.75rem;
 flex-wrap: wrap;
}

.tv2-cart-qty {
 display: inline-flex;
 align-items: center;
 border: 1.5px solid var(--theme-brand-glow);
 border-radius: var(--theme-radius-pill);
 overflow: hidden;
 background: var(--theme-white);
}

.tv2-cart-qty__btn {
 width: 34px;
 height: 34px;
 display: inline-flex;
 align-items: center;
 justify-content: center;
 background: var(--theme-grad-brand) !important;
 color: var(--theme-white) !important;
 cursor: pointer;
 border: none;
}

.tv2-cart-qty__btn i {
 color: var(--theme-white) !important;
 font-size: 0.75rem;
}

.tv2-cart-qty__input {
 width: 48px;
 height: 34px;
 border: none !important;
 text-align: center;
 font-weight: 500;
 color: var(--theme-brand-deep);
 background: var(--theme-white) !important;
 outline: none;
}

.tv2-cart-item__line-total {
 font-size: 1.05rem;
 font-weight: 500;
 color: var(--theme-brand-deep);
}

/* Kill legacy absolute cart button placement */

.tv2-cart-item .abs-btn1, .tv2-cart-item .abs-btn2 {
 position: static !important;
 top: auto !important;
 right: auto !important;
 bottom: auto !important;
}

.tv2-cart-summary {
 padding: 0 0 1.15rem;
 position: sticky;
 top: 6.5rem;
}

.tv2-cart-summary__title {
 display: block;
 border-radius: var(--theme-radius-lg) var(--theme-radius-lg) 0 0;
}

.tv2-cart-coupon, .tv2-cart-coupon-applied, .tv2-cart-totals {
 padding: 0 1.15rem;
}

.tv2-cart-coupon {
 padding-top: 1rem;
}

.tv2-cart-coupon__label {
 display: block;
 margin-bottom: 0.5rem;
 font-size: 0.82rem;
 font-weight: 500;
 color: var(--theme-brand-deep);
}

.tv2-cart-coupon__row {
 display: flex;
 align-items: stretch;
 gap: 0;
 border: 1.5px solid var(--theme-brand-glow);
 border-radius: var(--theme-radius-pill);
 overflow: hidden;
 background: var(--theme-white);
 box-shadow: inset 0 1px 2px rgba(20, 32, 22, 0.03);
 transition: border-color var(--theme-transition), box-shadow var(--theme-transition);
}

.tv2-cart-coupon__row:focus-within {
 border-color: var(--theme-brand);
 box-shadow: 0 0 0 4px rgba(47, 158, 68, 0.12);
}

.tv2-cart-coupon__icon {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 width: 42px;
 flex: 0 0 auto;
 color: var(--theme-brand);
 background: rgba(47, 158, 68, 0.08);
 font-size: 0.9rem;
}

.tv2-cart-coupon__input.form-control, .tv2-cart-coupon__row .form-order-place {
 flex: 1 1 auto;
 min-width: 0;
 border: none !important;
 box-shadow: none !important;
 border-radius: 0 !important;
 min-height: 46px;
 background: var(--theme-white) !important;
 color: var(--theme-ink) !important;
 font-size: 0.9rem !important;
 padding: 0.55rem 0.65rem !important;
}

.tv2-cart-coupon__input::placeholder {
 color: var(--theme-ink-muted);
 opacity: 0.85;
}

.tv2-cart-coupon__btn.btn-order-coupon, .tv2-cart-coupon__row .btn-order-coupon {
 flex: 0 0 auto;
 align-self: stretch;
 min-height: 46px;
 margin: 0 !important;
 border: none !important;
 border-radius: 0 !important;
 background: var(--theme-grad-brand) !important;
 color: var(--theme-white) !important;
 font-weight: 500 !important;
 font-size: 0.88rem !important;
 letter-spacing: 0.02em;
 text-transform: none !important;
 white-space: nowrap;
 padding: 0 1.15rem !important;
 box-shadow: none !important;
 transition: filter var(--theme-transition), opacity var(--theme-transition);
}

.tv2-cart-coupon__btn.btn-order-coupon:hover, .tv2-cart-coupon__row .btn-order-coupon:hover {
 filter: brightness(1.05);
 color: var(--theme-white) !important;
}

.tv2-cart-coupon__btn.btn-order-coupon:active {
 filter: brightness(0.96);
}

.tv2-cart-coupon-applied {
 margin-top: 0.85rem;
 padding: 0.85rem 1rem !important;
 margin-left: 1.15rem;
 margin-right: 1.15rem;
 border-radius: var(--theme-radius-sm);
 background: rgba(47, 158, 68, 0.08);
 border: 1px solid rgba(47, 158, 68, 0.18);
}

.tv2-cart-coupon-applied__top {
 display: flex;
 align-items: center;
 justify-content: space-between;
 gap: 0.5rem;
 margin-bottom: 0.35rem;
 color: var(--theme-brand-deep);
}

.tv2-cart-coupon-applied__remove {
 width: 28px;
 height: 28px;
 padding: 0 !important;
 border-radius: 50% !important;
 line-height: 1;
 color: #c0392b !important;
 background: rgba(192, 57, 43, 0.08) !important;
}

.tv2-cart-coupon-applied__code {
 display: inline-flex;
 font-size: 0.75rem;
 font-weight: 500;
 letter-spacing: 0.04em;
 text-transform: uppercase;
 color: var(--theme-brand-deep);
 background: var(--theme-white);
 border-radius: 999px;
 padding: 0.15rem 0.55rem;
}

.tv2-cart-coupon-applied__desc {
 margin-top: 0.45rem;
 font-size: 0.85rem;
 color: var(--theme-ink-muted);
}

.tv2-cart-coupon-applied__status {
 margin-top: 0.45rem;
 font-size: 0.85rem;
 font-weight: 500;
}

.tv2-cart-coupon-applied__status.is-ok {
 color: var(--theme-brand-deep);
}

.tv2-cart-coupon-applied__status.is-error {
 color: #c0392b;
}

.tv2-cart-totals {
 margin-top: 1rem;
 padding-top: 0.85rem !important;
 padding-bottom: 0.35rem !important;
 border-top: 1px solid rgba(47, 158, 68, 0.12);
}

.tv2-cart-totals__row {
 display: flex;
 justify-content: space-between;
 gap: 1rem;
 padding: 0.35rem 0;
 font-size: 0.92rem;
 color: var(--theme-ink-muted);
}

.tv2-cart-totals__row strong {
 color: var(--theme-ink);
 font-weight: 500;
}

.tv2-cart-totals__row--grand {
 margin-top: 0.35rem;
 padding-top: 0.7rem;
 border-top: 1px dashed rgba(47, 158, 68, 0.25);
 color: var(--theme-brand-deep);
 font-size: 1rem;
}

.tv2-cart-totals__row--grand strong {
 color: var(--theme-brand-deep);
 font-size: 1.15rem;
}

.tv2-cart-summary__checkout {
 display: block;
 margin: 1rem 1.15rem 0;
 width: calc(100% - 2.3rem) !important;
 border-radius: var(--theme-radius-pill) !important;
 font-weight: 500 !important;
 padding: 0.7rem 1.25rem !important;
}

@media (max-width: 575.98px) {
 .tv2-cart-item {
 grid-template-columns: 84px minmax(0, 1fr);
 gap: 0.75rem;
 padding: 0.95rem 1rem;
 }

 .tv2-cart-item__img {
 height: 84px;
 }

 .tv2-cart-summary {
 position: static;
 }

}

#products-div .card-order, .checkout-summary, .card.p-2 {
 border-radius: var(--theme-radius) !important;
 border: 1px solid rgba(47, 158, 68, 0.14);
 box-shadow: var(--theme-shadow);
 background: linear-gradient(180deg, var(--theme-white), #f7fbf4);
}

.login-page .form-right {
 padding: 2rem 1.75rem !important;
}

.login-detail {
 color: var(--theme-ink-muted);
}

#page_banner.bg-aboutus, .bg-aboutus {
 border-radius: 0 0 var(--theme-radius-lg) var(--theme-radius-lg);
 margin-bottom: 1rem;
 box-shadow: var(--theme-shadow-lg);
 position: relative;
}

/* Keep breadcrumb container clean Ã¢â‚¬â€ no home-about card styles */

#page_banner>.container, .bg-aboutus>.container {
 background: transparent !important;
 border: none !important;
 box-shadow: none !important;
 border-radius: 0 !important;
 padding-top: 0.5rem;
 padding-bottom: 0.5rem;
}

#page_banner .bread-heading, .bg-aboutus .bread-heading {
 color: var(--theme-white) !important;
 font-weight: 500;
 letter-spacing: -0.02em;
 text-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

#page_banner .bread-subheading, #page_banner .bread-subheading a, .bg-aboutus .bread-subheading, .bg-aboutus .bread-subheading a {
 color: rgba(255, 255, 255, 0.88) !important;
}

#dashboard .container {
 position: relative;
}

#dashboard .card-dash:hover {
 transform: translateY(-4px);
 box-shadow: var(--theme-shadow-float);
}

.sidebar .offcanvas-header.bg-lime {
 background: var(--theme-grad-deep) !important;
 border-radius: var(--theme-radius) !important;
}

.sidebar .navbar-nav {
 border: 1px solid rgba(47, 158, 68, 0.14) !important;
 border-radius: var(--theme-radius);
 overflow: hidden;
 box-shadow: var(--theme-shadow);
}

.sidebar .nav-item {
 transition: background var(--theme-transition);
}

.sidebar .nav-item:hover:not(.bg-lime) {
 background: var(--theme-brand);
}

.sidebar .nav-item.bg-lime {
 background: var(--theme-grad-brand) !important;
}

.sidebar-link {
 font-weight: 500;
}

.toggle-sidebar-btn {
 background: var(--theme-brand-soft);
 color: var(--theme-brand-deep);
 border-radius: var(--theme-radius-sm);
 padding: 0.4rem 0.7rem;
}

/* Auctions / remedies listing pages share catalog feel */

#faq_section, .contact.bg-white {
 border-radius: var(--theme-radius-lg);
}

.contact.bg-white {
 background: linear-gradient(160deg, var(--theme-white), #f6faf3) !important;
 padding: 1.5rem;
}

@media (max-width: 767.98px) {
 .tv2-detail-gallery, .tv2-detail-info, .tv2-detail-desc, .tv2-catalog-grid {
 padding: 0.85rem;
 }

 .bg-aboutus {
 border-radius: 0;
 }

}

/* ==========================================================================
 18. Auth pages Ã¢â‚¬â€ login / register / OTP
 ========================================================================== */

.tv2-page-auth {
 padding: 1.75rem 0 3.5rem;
 min-height: calc(100vh - 220px);
 display: flex;
 align-items: center;
}

.tv2-page-auth>.container {
 width: 100%;
}

.tv2-auth-shell {
 overflow: hidden;
 border-radius: calc(var(--theme-radius-lg) + 0.25rem);
 border: 1px solid rgba(47, 158, 68, 0.16);
 box-shadow: var(--theme-shadow-float);
 background: var(--theme-white);
 min-height: 520px;
}

.tv2-auth-visual {
 background: var(--theme-grad-deep);
 position: relative;
 overflow: hidden;
 display: flex !important;
 align-items: center;
 justify-content: center;
 padding: 2.5rem 2rem;
 text-align: left !important;
}

.tv2-auth-visual::before, .tv2-auth-visual::after {
 content: '';
 position: absolute;
 border-radius: 50%;
 pointer-events: none;
}

.tv2-auth-visual::before {
 width: 280px;
 height: 280px;
 background: rgba(255, 255, 255, 0.08);
 top: -90px;
 right: -70px;
}

.tv2-auth-visual::after {
 width: 180px;
 height: 180px;
 background: rgba(255, 255, 255, 0.06);
 bottom: -50px;
 left: -40px;
}

.tv2-auth-visual-inner {
 position: relative;
 z-index: 1;
 width: 100%;
 max-width: 360px;
}

.tv2-auth-badge {
 display: inline-block;
 background: rgba(255, 255, 255, 0.16);
 color: var(--theme-white);
 border: 1px solid rgba(255, 255, 255, 0.25);
 border-radius: var(--theme-radius-pill);
 padding: 0.35rem 0.85rem;
 font-size: 0.75rem;
 font-weight: 500;
 letter-spacing: 0.04em;
 text-transform: uppercase;
 margin-bottom: 1rem;
}

.tv2-auth-visual-title {
 color: var(--theme-white);
 font-size: clamp(1.5rem, 2.4vw, 2rem);
 font-weight: 500;
 letter-spacing: -0.03em;
 line-height: 1.25;
 margin-bottom: 0.75rem;
}

.tv2-auth-visual-text {
 color: rgba(255, 255, 255, 0.86);
 font-size: 0.95rem;
 line-height: 1.6;
 margin-bottom: 1.5rem;
}

.tv2-auth-visual .login-img {
 max-width: 100%;
 width: 100% !important;
 height: auto;
 aspect-ratio: 1/1;
 filter: drop-shadow(0 16px 30px rgba(0, 0, 0, 0.25));
}

.tv2-auth-card.form-right {
 margin: 0 !important;
 padding: clamp(1.5rem, 4vw, 2.75rem) !important;
 border: none !important;
 border-radius: 0 !important;
 box-shadow: none !important;
 background: radial-gradient(520px 240px at 100% 0%, rgba(47, 158, 68, 0.1), transparent 55%),
 var(--theme-white) !important;
 display: flex;
 flex-direction: column;
 justify-content: center;
}

.tv2-auth-form {
 width: 100%;
 max-width: 520px;
 margin: 0 auto;
}

.tv2-auth-head .login-name {
 background: var(--theme-grad-brand);
 -webkit-background-clip: text;
 background-clip: text;
 color: transparent !important;
 font-size: clamp(1.75rem, 3vw, 2.25rem);
 font-weight: 500;
 letter-spacing: -0.03em;
}

.tv2-auth-sub {
 color: var(--theme-ink-muted);
 font-size: 0.95rem;
}

.tv2-auth-label {
 display: block;
 font-size: 0.82rem;
 font-weight: 500;
 color: var(--theme-brand-deep);
 margin-bottom: 0.4rem;
}

.tv2-auth-card .input-grp {
 border-radius: var(--theme-radius) !important;
 overflow: hidden;
 border: 1.5px solid var(--theme-border);
 box-shadow: none !important;
 transition: border-color var(--theme-transition), box-shadow var(--theme-transition);
 background: var(--theme-white);
}

.tv2-auth-card .input-grp:focus-within {
 border-color: var(--theme-brand);
 box-shadow: 0 0 0 4px rgba(47, 158, 68, 0.14) !important;
}

.tv2-auth-card .input-text-style {
 background: var(--theme-brand-soft) !important;
 border: none !important;
 color: var(--theme-brand) !important;
 min-width: 48px;
 justify-content: center;
}

.tv2-auth-card .login-input, .tv2-auth-card .form-control {
 border: none !important;
 box-shadow: none !important;
 background: var(--theme-white) !important;
 min-height: 48px;
}

.tv2-auth-btn.btn-order-place {
 min-width: 180px;
 min-height: 48px;
 border-radius: var(--theme-radius-pill) !important;
 background: var(--theme-grad-brand) !important;
 border: none !important;
 font-weight: 500;
 letter-spacing: 0.02em;
 box-shadow: 0 14px 28px -14px rgba(47, 158, 68, 0.9);
}

.tv2-auth-btn.btn-order-place:hover {
 transform: translateY(-2px);
}

.tv2-auth-btn.btn-order-place:disabled {
 opacity: 0.55;
 transform: none;
 box-shadow: none;
}

.tv2-auth-forgot {
 font-size: 0.82rem;
 font-weight: 500;
}

.tv2-auth-footer .login-detail {
 color: var(--theme-ink-muted);
}

.tv2-auth-footer .login-detail-reg {
 color: var(--theme-brand) !important;
 font-weight: 500;
 margin-left: 0.25rem;
}

.tv2-otp-row .otp-input, .tv2-otp-row .form-otp {
 width: 48px;
 height: 52px;
 border: 1.5px solid var(--theme-border) !important;
 border-radius: var(--theme-radius-sm) !important;
 font-size: 1.25rem;
 font-weight: 500;
 color: var(--theme-brand-deep);
 background: linear-gradient(180deg, var(--theme-white), #f6faf3) !important;
 box-shadow: none !important;
}

.tv2-otp-row .otp-input:focus {
 border-color: var(--theme-brand) !important;
 box-shadow: 0 0 0 4px rgba(47, 158, 68, 0.14) !important;
}

.tv2-auth-resend {
 border: 1px solid var(--theme-border) !important;
 border-radius: var(--theme-radius-pill) !important;
 background: var(--theme-white) !important;
 color: var(--theme-brand-deep) !important;
 font-weight: 500;
 padding: 0.4rem 1rem;
}

.tv2-auth-resend:hover {
 background: var(--theme-brand-soft) !important;
 border-color: var(--theme-brand) !important;
}

.tv2-otp-timer {
 background: var(--theme-brand-soft);
 color: var(--theme-brand-deep) !important;
 border-radius: var(--theme-radius-pill);
 padding: 0.35rem 0.85rem;
 font-weight: 500;
 font-variant-numeric: tabular-nums;
}

@media (max-width: 991.98px) {
 .tv2-auth-shell {
 border-radius: var(--theme-radius-lg);
 min-height: 0;
 }

 .tv2-auth-card.form-right {
 padding: 1.5rem 1.15rem !important;
 }

 .tv2-page-auth {
 padding-top: 1rem;
 min-height: auto;
 }

}

@media (max-width: 575.98px) {
 .tv2-otp-row .otp-input, .tv2-otp-row .form-otp {
 width: 42px;
 height: 46px;
 font-size: 1.1rem;
 }

 .tv2-auth-btn.btn-order-place {
 width: 100%;
 min-width: 0;
 }

}

/* ==========================================================================
 19. Remaining pages Ã¯Â¿Â½ checkout, pay, dashboard, remedies, CMS, offer
 ========================================================================== */

.tv2-page-checkout .ship-category, .tv2-page-checkout .dash-category, .tv2-page-pay .head-pay {
 color: var(--theme-brand-deep);
 font-weight: 500;
 letter-spacing: -0.02em;
}

.tv2-page-checkout .btn-order-ship, .btn-order-ship {
 background: var(--theme-grad-brand) !important;
 color: var(--theme-white) !important;
 border: none !important;
 border-radius: var(--theme-radius-pill) !important;
 font-weight: 500;
 box-shadow: 0 8px 18px -10px rgba(47, 158, 68, 0.7);
}

.tv2-checkout {
 display: flex;
 flex-direction: column;
 gap: 1rem;
}

.tv2-checkout-panel, .tv2-checkout-bag {
 background: linear-gradient(160deg, var(--theme-white) 0%, #f6faf3 100%);
 border: 1px solid rgba(47, 158, 68, 0.14);
 border-radius: var(--theme-radius-lg);
 box-shadow: var(--theme-shadow);
 overflow: hidden;
}

.tv2-checkout-panel__head, .tv2-checkout-bag__head {
 display: flex;
 align-items: center;
 justify-content: space-between;
 gap: 0.75rem;
 flex-wrap: wrap;
 padding: 0.9rem 1.15rem;
 border-bottom: 1px solid rgba(47, 158, 68, 0.12);
 background: linear-gradient(90deg, rgba(47, 158, 68, 0.08), transparent 70%);
}

.tv2-checkout-panel__title, .tv2-checkout-bag__title {
 margin: 0;
 display: inline-flex;
 align-items: center;
 gap: 0.5rem;
 font-size: 1rem;
 font-weight: 500;
 color: var(--theme-brand-deep);
}

.tv2-checkout-panel__title i {
 color: var(--theme-brand);
 font-size: 0.9rem;
}

.tv2-checkout-panel__action {
 font-size: 0.82rem !important;
 padding: 0.4rem 0.9rem !important;
}

.tv2-checkout-panel__body {
 padding: 1.05rem 1.15rem 1.15rem;
}

.tv2-checkout-address, .tv2-checkout-address-option {
 border: 1px solid rgba(47, 158, 68, 0.16) !important;
 border-radius: var(--theme-radius) !important;
 background: var(--theme-white) !important;
 padding: 0.95rem 1rem !important;
 box-shadow: none !important;
}

.tv2-checkout-address .modal-ship-title, .tv2-checkout-address-option .modal-ship-title {
 font-weight: 500;
 color: var(--theme-brand-deep);
}

.tv2-checkout-address .modal-ship-content, .tv2-checkout-address-option .modal-ship-content {
 margin-top: 0.45rem;
 color: var(--theme-ink-muted);
 line-height: 1.5;
}

.tv2-checkout-empty {
 text-align: center;
 padding: 1rem 0.5rem;
 color: var(--theme-ink-muted);
}

.tv2-checkout-wallet {
 display: flex;
 align-items: center;
 justify-content: space-between;
 gap: 1rem;
 flex-wrap: wrap;
 padding: 0.85rem 1rem;
 border-radius: var(--theme-radius);
 background: rgba(47, 158, 68, 0.08);
 border: 1px solid rgba(47, 158, 68, 0.16);
}

.tv2-checkout-wallet__label {
 font-size: 0.78rem;
 font-weight: 500;
 letter-spacing: 0.04em;
 text-transform: uppercase;
 color: var(--theme-ink-muted);
}

.tv2-checkout-wallet__amount {
 font-size: 1.2rem;
 font-weight: 500;
 color: var(--theme-brand-deep);
}

.tv2-checkout-wallet__check .form-check-input:checked {
 background-color: var(--theme-brand);
 border-color: var(--theme-brand);
}

.tv2-checkout-pay-card {
 height: 100%;
 border: 1.5px solid rgba(47, 158, 68, 0.18) !important;
 border-radius: var(--theme-radius) !important;
 background: var(--theme-white);
 cursor: pointer;
 transition: border-color var(--theme-transition), box-shadow var(--theme-transition), transform var(--theme-transition);
 position: relative;
}

.tv2-checkout-pay-card:hover, .tv2-checkout-pay-card.active {
 border-color: var(--theme-brand) !important;
 box-shadow: 0 0 0 4px rgba(47, 158, 68, 0.12);
 transform: translateY(-1px);
}

.tv2-checkout-pay-card__label {
 margin-top: 0.5rem;
 font-size: 0.85rem;
 font-weight: 500;
 color: var(--theme-brand-deep);
}

.tv2-checkout-totals__row {
 display: flex;
 justify-content: space-between;
 gap: 1rem;
 padding: 0.4rem 0;
 font-size: 0.92rem;
 color: var(--theme-ink-muted);
 margin: 0 !important;
}

.tv2-checkout-totals__row strong {
 color: var(--theme-ink);
 font-weight: 500;
}

.tv2-checkout-totals__row--grand {
 margin-top: 0.4rem !important;
 padding-top: 0.7rem;
 border-top: 1px dashed rgba(47, 158, 68, 0.25);
 color: var(--theme-brand-deep);
 font-size: 1rem;
}

.tv2-checkout-totals__row--grand strong {
 color: var(--theme-brand-deep);
 font-size: 1.15rem;
}

.tv2-checkout-actions {
 margin-top: 1rem;
 padding-top: 0.25rem;
}

.tv2-checkout-place {
 width: 100%;
 border-radius: var(--theme-radius-pill) !important;
 padding: 0.75rem 1.25rem !important;
 font-weight: 500 !important;
}

.tv2-checkout-place.tv2-disabled, .tv2-checkout-place:disabled {
 opacity: 0.55;
 cursor: not-allowed;
}

.tv2-checkout-bag {
 position: sticky;
 top: 6.5rem;
}

.tv2-checkout-bag__count {
 font-size: 0.78rem;
 font-weight: 500;
 color: var(--theme-ink-muted);
 background: rgba(47, 158, 68, 0.1);
 border-radius: 999px;
 padding: 0.2rem 0.65rem;
}

.tv2-checkout-bag__items {
 display: flex;
 flex-direction: column;
}

.tv2-checkout-bag-item {
 display: grid;
 grid-template-columns: 84px minmax(0, 1fr);
 gap: 0.85rem;
 padding: 0.95rem 1.1rem;
 border-bottom: 1px solid rgba(47, 158, 68, 0.1);
 margin: 0 !important;
 box-shadow: none !important;
 border-radius: 0 !important;
 background: transparent !important;
}

.tv2-checkout-bag-item:last-child {
 border-bottom: none;
}

.tv2-checkout-bag-item__media {
 display: block;
 border-radius: var(--theme-radius-sm);
 overflow: hidden;
 border: 1px solid rgba(47, 158, 68, 0.12);
 background: linear-gradient(160deg, #eef6ea, #f8fbf6);
}

.tv2-checkout-bag-item__img {
 width: 100%;
 height: 84px;
 object-fit: cover;
 display: block;
}

.tv2-checkout-bag-item__name {
 margin: 0 0 0.3rem;
 font-size: 0.95rem;
 font-weight: 500;
 color: var(--theme-brand-deep);
 line-height: 1.35;
}

.tv2-checkout-bag-item__unit {
 font-size: 0.85rem;
 color: var(--theme-ink-muted);
}

.tv2-checkout-bag-item__attrs {
 display: flex;
 flex-wrap: wrap;
 gap: 0.3rem;
 margin: 0.35rem 0;
}

.tv2-checkout-bag-item__attr {
 font-size: 0.7rem;
 font-weight: 500;
 color: var(--theme-brand-deep);
 background: rgba(47, 158, 68, 0.12);
 border-radius: 999px;
 padding: 0.12rem 0.5rem;
}

.tv2-checkout-bag-item__total {
 font-size: 0.98rem;
 font-weight: 500;
 color: var(--theme-brand-deep);
}

.tv2-checkout-coupon {
 margin: 0.75rem 1.1rem 1.1rem;
 padding: 0.85rem 1rem;
 border-radius: var(--theme-radius-sm);
 border: 1px solid rgba(47, 158, 68, 0.18);
 background: rgba(47, 158, 68, 0.08);
}

.tv2-checkout-coupon.is-error {
 border-color: rgba(192, 57, 43, 0.25);
 background: rgba(192, 57, 43, 0.06);
}

.tv2-checkout-coupon__top {
 display: flex;
 align-items: center;
 justify-content: space-between;
 gap: 0.5rem;
 margin-bottom: 0.35rem;
 color: var(--theme-brand-deep);
}

.tv2-checkout-coupon__code {
 font-size: 0.72rem;
 font-weight: 500;
 letter-spacing: 0.04em;
 text-transform: uppercase;
 background: var(--theme-white);
 border-radius: 999px;
 padding: 0.15rem 0.55rem;
}

.tv2-checkout-address-option.is-active, .tv2-checkout-address-option.card-modal-ship-active {
 border-color: var(--theme-brand) !important;
 box-shadow: 0 0 0 3px rgba(47, 158, 68, 0.12);
}

.tv2-checkout-address-option .switch-address, .btn-modal-active, .btn-modal-inactive {
 border-radius: var(--theme-radius-pill) !important;
 font-size: 0.78rem;
 font-weight: 500;
 padding: 0.35rem 0.85rem;
}

.btn-modal-active {
 background: var(--theme-grad-brand) !important;
 color: var(--theme-white) !important;
 border: none !important;
}

.btn-modal-inactive {
 background: var(--theme-white) !important;
 color: var(--theme-brand-deep) !important;
 border: 1px solid rgba(47, 158, 68, 0.35) !important;
}

.tv2-checkout-pay-card .form-check, .tv2-checkout-pay-card input[type="radio"] {
 position: absolute;
 opacity: 0;
 pointer-events: none;
}

.tv2-checkout-pay-card .h-ship {
 max-height: 52px;
 width: auto;
 margin: 0 auto;
}

@media (max-width: 767.98px) {
 .tv2-checkout-bag {
 position: static;
 }

}

.tv2-page-checkout .card, .tv2-page-checkout .address-card, .tv2-panel {
 background: linear-gradient(160deg, var(--theme-white) 0%, #f6faf3 100%);
 border: 1px solid rgba(47, 158, 68, 0.14) !important;
 border-radius: var(--theme-radius-lg) !important;
 box-shadow: var(--theme-shadow);
}

.tv2-page-pay .shooping_cart .card, .shooping_cart .card {
 background: linear-gradient(160deg, var(--theme-white), #f6faf3);
 border: 1px solid rgba(47, 158, 68, 0.16);
 border-radius: var(--theme-radius-lg);
 box-shadow: var(--theme-shadow-lg);
 padding: 1.25rem !important;
}

.shooping_cart .head-pay {
 background: var(--theme-grad-brand);
 -webkit-background-clip: text;
 background-clip: text;
 color: transparent;
}

.shooping_cart .table {
 border-radius: var(--theme-radius);
 overflow: hidden;
}

#dashboard .form-right, #dashboard .form-confirmpass, #dashboard .card-myorder, .tv2-dash-panel {
 background: linear-gradient(160deg, var(--theme-white) 0%, #f6faf3 100%) !important;
 border: 1px solid rgba(47, 158, 68, 0.14) !important;
 border-radius: var(--theme-radius-lg) !important;
 box-shadow: var(--theme-shadow);
}

#dashboard .form-control, #dashboard .form-select {
 border-radius: var(--theme-radius-sm);
 border-color: var(--theme-border);
 min-height: 44px;
}

#dashboard .form-label {
 font-weight: 500;
 color: var(--theme-brand-deep);
 font-size: 0.85rem;
}

#dashboard .btn-order-place, #dashboard .btn-success, #dashboard .btn-theme {
 border-radius: var(--theme-radius-pill) !important;
}

#dashboard .card-myorder, .card-myorder {
 border-radius: var(--theme-radius) !important;
 border: 1px solid rgba(47, 158, 68, 0.14);
 box-shadow: var(--theme-shadow);
 transition: transform var(--theme-transition), box-shadow var(--theme-transition);
 overflow: hidden;
}

#dashboard .card-myorder:hover, .card-myorder:hover {
 transform: translateY(-3px);
 box-shadow: var(--theme-shadow-float);
}

.tv2-page-remedies .tv2-catalog-grid, .tv2-page-remedies .tv2-remedy-hero {
 background: linear-gradient(160deg, var(--theme-white) 0%, #f6faf3 100%);
 border: 1px solid rgba(47, 158, 68, 0.14);
 border-radius: var(--theme-radius-lg);
 box-shadow: var(--theme-shadow);
 padding: 1.25rem 1.1rem;
}

.tv2-page-remedies .card, .tv2-remedy-card {
 border: 1px solid rgba(226, 235, 217, 0.9);
 border-radius: var(--theme-radius);
 background: linear-gradient(180deg, var(--theme-white), #fbfef9);
 box-shadow: var(--theme-shadow);
 overflow: hidden;
 transition: transform var(--theme-transition), box-shadow var(--theme-transition);
}

.tv2-page-remedies .card:hover, .tv2-remedy-card:hover {
 transform: translateY(-5px);
 box-shadow: var(--theme-shadow-float);
}

.tv2-page-remedies .card-title, .tv2-page-remedies h2.fw-bold {
 color: var(--theme-brand-deep);
 letter-spacing: -0.02em;
}

.tv2-remedy-eyebrow {
 display: inline-block;
 font-size: 0.72rem;
 font-weight: 500;
 letter-spacing: 0.08em;
 text-transform: uppercase;
 color: var(--theme-brand);
 background: rgba(47, 158, 68, 0.12);
 border-radius: 999px;
 padding: 0.25rem 0.7rem;
 margin: 0;
}

.tv2-remedy-title {
 font-size: clamp(1.45rem, 2.6vw, 2rem);
 font-weight: 500;
 color: var(--theme-brand-deep);
 letter-spacing: -0.02em;
 line-height: 1.25;
 margin: 0;
}

.tv2-remedy-sub {
 color: var(--theme-ink-muted);
 font-size: 0.98rem;
 line-height: 1.65;
 max-width: 36rem;
 margin-left: auto;
 margin-right: auto;
}

.tv2-remedy-social {
 display: flex;
 align-items: center;
 flex-wrap: wrap;
 gap: 0.55rem;
}

.tv2-remedy-social__btn {
 width: 38px;
 height: 38px;
 border-radius: 50%;
 display: inline-flex;
 align-items: center;
 justify-content: center;
 background: var(--theme-white);
 border: 1px solid rgba(47, 158, 68, 0.18);
 color: var(--theme-brand-deep);
 font-size: 0.95rem;
 text-decoration: none;
 transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.tv2-remedy-social__btn:hover {
 transform: translateY(-1px);
 box-shadow: 0 4px 12px rgba(47, 158, 68, 0.18);
 color: var(--theme-white);
}

.tv2-remedy-social__btn--instagram:hover {
 background: #e4405f;
 border-color: #e4405f;
}

.tv2-remedy-social__btn--facebook:hover {
 background: #1877f2;
 border-color: #1877f2;
}

.tv2-remedy-social__btn--linkedin:hover {
 background: #0a66c2;
 border-color: #0a66c2;
}

.tv2-remedy-social__btn--youtube:hover {
 background: #ff0000;
 border-color: #ff0000;
}

.tv2-remedy-list-title {
 font-size: 1.15rem;
 font-weight: 500;
 color: var(--theme-brand-deep);
 letter-spacing: -0.015em;
}

.tv2-remedy-list-sub {
 font-size: 0.88rem;
 color: var(--theme-ink-muted);
 margin-top: 0.2rem;
}

.tv2-remedy-plan {
 border-radius: var(--theme-radius) !important;
 border: 1px solid var(--theme-brand-glow) !important;
 background: linear-gradient(135deg, #e8f7e3, #f5fbf2) !important;
}

.tv2-remedy-cat {
 display: block;
 height: 100%;
 color: inherit;
}

.tv2-remedy-cat__card {
 display: flex;
 flex-direction: column;
 height: 100%;
 background: linear-gradient(180deg, var(--theme-white) 0%, #fbfef9 100%);
 border: 1px solid rgba(47, 158, 68, 0.14);
 border-radius: var(--theme-radius);
 box-shadow: var(--theme-shadow);
 overflow: hidden;
 transition: transform var(--theme-transition), box-shadow var(--theme-transition), border-color var(--theme-transition);
}

.tv2-remedy-cat:hover .tv2-remedy-cat__card {
 transform: translateY(-4px);
 border-color: rgba(47, 158, 68, 0.35);
 box-shadow: var(--theme-shadow-float);
}

.tv2-remedy-cat__media {
 position: relative;
 aspect-ratio: 16 / 10;
 background: linear-gradient(160deg, #eef6ea, #f8fbf6);
 overflow: hidden;
}

.tv2-remedy-cat__img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 display: block;
 transition: transform var(--theme-transition);
}

.tv2-remedy-cat:hover .tv2-remedy-cat__img {
 transform: scale(1.04);
}

.tv2-remedy-cat__placeholder {
 width: 100%;
 height: 100%;
 display: flex;
 align-items: center;
 justify-content: center;
 color: rgba(47, 158, 68, 0.45);
 font-size: 2rem;
}

.tv2-remedy-cat__body {
 display: flex;
 flex-direction: column;
 flex: 1;
 padding: 1rem 1.05rem 1.1rem;
 gap: 0.45rem;
}

.tv2-remedy-cat__title {
 margin: 0;
 font-size: 1rem;
 font-weight: 500;
 color: var(--theme-brand-deep);
 line-height: 1.35;
 letter-spacing: -0.015em;
 display: -webkit-box;
 -webkit-line-clamp: 2;
 -webkit-box-orient: vertical;
 overflow: hidden;
}

.tv2-remedy-cat:hover .tv2-remedy-cat__title {
 color: var(--theme-brand);
}

.tv2-remedy-cat__desc {
 margin: 0;
 font-size: 0.86rem;
 color: var(--theme-ink-muted);
 line-height: 1.55;
 display: -webkit-box;
 -webkit-line-clamp: 2;
 -webkit-box-orient: vertical;
 overflow: hidden;
 flex: 1;
}

.tv2-remedy-cat__meta {
 display: flex;
 align-items: center;
 justify-content: space-between;
 gap: 0.75rem;
 margin-top: 0.35rem;
 padding-top: 0.7rem;
 border-top: 1px dashed var(--theme-brand-glow);
}

.tv2-remedy-cat__count {
 font-size: 0.75rem;
 font-weight: 500;
 color: var(--theme-brand-deep);
 background: rgba(47, 158, 68, 0.12);
 border-radius: 999px;
 padding: 0.22rem 0.65rem;
}

.tv2-remedy-cat__cta {
 font-size: 0.82rem;
 font-weight: 500;
 color: var(--theme-brand);
 display: inline-flex;
 align-items: center;
 gap: 0.35rem;
}

.tv2-remedy-cat:hover .tv2-remedy-cat__cta i {
 transform: translateX(3px);
}

.tv2-remedy-cat__cta i {
 font-size: 0.72rem;
 transition: transform var(--theme-transition);
}

.tv2-remedy-empty {
 color: var(--theme-ink-muted);
}

.tv2-remedy-empty i {
 color: rgba(47, 158, 68, 0.45);
}

.tv2-remedy-empty h4 {
 font-weight: 500;
 color: var(--theme-brand-deep);
}

.tv2-remedy-back {
 flex-shrink: 0;
}

.tv2-remedy-notice {
 border-radius: var(--theme-radius) !important;
 border: 1px solid rgba(47, 158, 68, 0.2) !important;
 background: linear-gradient(135deg, #eef9ea, #f8fcf6) !important;
 color: var(--theme-ink) !important;
}

.tv2-remedy-notice__link {
 font-weight: 500;
 color: var(--theme-brand-deep) !important;
 text-decoration: underline;
 text-underline-offset: 2px;
}

.tv2-remedy-article {
 display: flex;
 flex-direction: column;
 background: linear-gradient(180deg, var(--theme-white) 0%, #fbfef9 100%);
 border: 1px solid rgba(47, 158, 68, 0.14);
 border-radius: var(--theme-radius);
 box-shadow: var(--theme-shadow);
 overflow: hidden;
 transition: transform var(--theme-transition), box-shadow var(--theme-transition), border-color var(--theme-transition);
}

.tv2-remedy-article:hover {
 transform: translateY(-4px);
 border-color: rgba(47, 158, 68, 0.35);
 box-shadow: var(--theme-shadow-float);
}

.tv2-remedy-article__media {
 position: relative;
 aspect-ratio: 16 / 10;
 background: linear-gradient(160deg, #eef6ea, #f8fbf6);
 overflow: hidden;
}

.tv2-remedy-article__img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 display: block;
 transition: transform var(--theme-transition);
}

.tv2-remedy-article:hover .tv2-remedy-article__img {
 transform: scale(1.04);
}

.tv2-remedy-article__placeholder {
 width: 100%;
 height: 100%;
 display: flex;
 align-items: center;
 justify-content: center;
 color: rgba(47, 158, 68, 0.45);
 font-size: 2rem;
}

.tv2-remedy-article__badges {
 position: absolute;
 top: 0.65rem;
 left: 0.65rem;
 display: flex;
 flex-wrap: wrap;
 gap: 0.35rem;
 z-index: 1;
}

.tv2-remedy-badge {
 display: inline-flex;
 align-items: center;
 gap: 0.3rem;
 font-size: 0.7rem;
 font-weight: 500;
 border-radius: 999px;
 padding: 0.22rem 0.55rem;
 line-height: 1.2;
 box-shadow: 0 4px 10px rgba(20, 32, 22, 0.12);
}

.tv2-remedy-badge--video {
 background: rgba(26, 58, 20, 0.88);
 color: var(--theme-white);
}

.tv2-remedy-badge--read {
 background: rgba(255, 255, 255, 0.95);
 color: var(--theme-brand-deep);
}

.tv2-remedy-article__body {
 display: flex;
 flex-direction: column;
 flex: 1;
 padding: 1rem 1.05rem 1.1rem;
 gap: 0.85rem;
}

.tv2-remedy-article__title {
 margin: 0;
 font-size: 1.02rem;
 font-weight: 500;
 color: var(--theme-brand-deep);
 line-height: 1.4;
 letter-spacing: -0.015em;
 display: -webkit-box;
 -webkit-line-clamp: 2;
 -webkit-box-orient: vertical;
 overflow: hidden;
 flex: 1;
}

.tv2-remedy-article:hover .tv2-remedy-article__title {
 color: var(--theme-brand);
}

.tv2-remedy-article__actions {
 margin-top: auto;
 padding-top: 0.35rem;
 border-top: 1px dashed var(--theme-brand-glow);
}

.tv2-remedy-article__cta {
 width: 100%;
 display: inline-flex !important;
 align-items: center;
 justify-content: center;
 gap: 0.45rem;
 min-height: 40px;
 font-size: 0.9rem !important;
 padding: 0.5rem 1rem !important;
}

.tv2-remedy-article__cta i {
 font-size: 0.75rem;
 transition: transform var(--theme-transition);
}

.tv2-remedy-article:hover .tv2-remedy-article__cta i {
 transform: translateX(3px);
}

.tv2-remedy-plan-card {
 display: flex;
 flex-direction: column;
 background: linear-gradient(180deg, var(--theme-white) 0%, #fbfef9 100%);
 border: 1px solid rgba(47, 158, 68, 0.14);
 border-radius: var(--theme-radius);
 box-shadow: var(--theme-shadow);
 overflow: hidden;
 transition: transform var(--theme-transition), box-shadow var(--theme-transition), border-color var(--theme-transition);
}

.tv2-remedy-plan-card:hover {
 transform: translateY(-4px);
 border-color: rgba(47, 158, 68, 0.35);
 box-shadow: var(--theme-shadow-float);
}

.tv2-remedy-plan-card.is-free {
 border-color: rgba(47, 158, 68, 0.28);
}

.tv2-remedy-plan-card__media {
 position: relative;
 aspect-ratio: 16 / 10;
 background: linear-gradient(160deg, #eef6ea, #f8fbf6);
 overflow: hidden;
}

.tv2-remedy-plan-card__img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 display: block;
 transition: transform var(--theme-transition);
}

.tv2-remedy-plan-card:hover .tv2-remedy-plan-card__img {
 transform: scale(1.04);
}

.tv2-remedy-plan-card__placeholder {
 width: 100%;
 height: 100%;
 display: flex;
 align-items: center;
 justify-content: center;
 color: rgba(47, 158, 68, 0.45);
 font-size: 2rem;
 background: radial-gradient(circle at 30% 20%, rgba(47, 158, 68, 0.16), transparent 55%),
 linear-gradient(160deg, #eef6ea, #f8fbf6);
}

.tv2-remedy-plan-card__ribbon {
 position: absolute;
 top: 0.7rem;
 left: 0.7rem;
 font-size: 0.72rem;
 font-weight: 500;
 letter-spacing: 0.04em;
 text-transform: uppercase;
 color: var(--theme-white);
 background: var(--theme-grad-brand);
 border-radius: 999px;
 padding: 0.25rem 0.65rem;
 box-shadow: 0 6px 14px rgba(47, 158, 68, 0.35);
}

.tv2-remedy-plan-card__body {
 display: flex;
 flex-direction: column;
 flex: 1;
 padding: 1.05rem 1.1rem 1.15rem;
 gap: 0.55rem;
}

.tv2-remedy-plan-card__name {
 margin: 0;
 font-size: 1.1rem;
 font-weight: 500;
 color: var(--theme-brand-deep);
 letter-spacing: -0.015em;
 line-height: 1.3;
}

.tv2-remedy-plan-card__desc {
 margin: 0;
 font-size: 0.86rem;
 color: var(--theme-ink-muted);
 line-height: 1.55;
 display: -webkit-box;
 -webkit-line-clamp: 2;
 -webkit-box-orient: vertical;
 overflow: hidden;
}

.tv2-remedy-plan-card__price {
 margin: 0.15rem 0 0;
 font-size: clamp(1.55rem, 2.4vw, 1.9rem);
 font-weight: 500;
 line-height: 1.15;
 letter-spacing: -0.02em;
 background: var(--theme-grad-brand);
 -webkit-background-clip: text;
 background-clip: text;
 color: transparent;
}

.tv2-remedy-plan-card__features {
 display: flex;
 flex-direction: column;
 gap: 0.4rem;
 margin-top: 0.25rem;
 padding: 0.75rem 0.85rem;
 border-radius: var(--theme-radius-sm);
 background: rgba(47, 158, 68, 0.07);
 border: 1px solid rgba(47, 158, 68, 0.12);
}

.tv2-remedy-plan-card__features li {
 display: flex;
 align-items: center;
 gap: 0.55rem;
 font-size: 0.88rem;
 color: var(--theme-ink-muted);
}

.tv2-remedy-plan-card__features i {
 width: 1rem;
 text-align: center;
 color: var(--theme-brand);
 font-size: 0.8rem;
}

.tv2-remedy-plan-card__actions {
 margin-top: auto;
 padding-top: 0.85rem;
}

.tv2-remedy-plan-card__btn {
 width: 100%;
 min-height: 42px;
 display: inline-flex !important;
 align-items: center;
 justify-content: center;
 font-size: 0.92rem !important;
 font-weight: 500 !important;
}

.tv2-remedy-plan-card__btn.is-disabled, .tv2-remedy-plan-card__btn:disabled {
 background: #e8ece6 !important;
 color: #7a8578 !important;
 border: none !important;
 box-shadow: none !important;
 cursor: not-allowed;
 opacity: 1;
}

.tv2-remedy-reader {
 background: linear-gradient(160deg, var(--theme-white) 0%, #fbfef9 100%);
 border: 1px solid rgba(47, 158, 68, 0.14);
 border-radius: var(--theme-radius-lg);
 box-shadow: var(--theme-shadow);
 overflow: hidden;
 padding: 1.35rem 1.2rem 1.5rem;
}

@media (min-width: 768px) {
 .tv2-remedy-reader {
 padding: 1.75rem 1.75rem 1.85rem;
 }

}

.tv2-remedy-reader__title {
 font-size: clamp(1.4rem, 2.6vw, 1.95rem);
 font-weight: 500;
 color: var(--theme-brand-deep);
 letter-spacing: -0.02em;
 line-height: 1.3;
}

.tv2-remedy-langs {
 display: flex;
 flex-wrap: wrap;
 align-items: center;
 gap: 0.55rem 0.75rem;
 padding: 0.85rem 1rem;
 border-radius: var(--theme-radius);
 background: rgba(47, 158, 68, 0.07);
 border: 1px solid rgba(47, 158, 68, 0.14);
}

.tv2-remedy-langs__label {
 font-size: 0.75rem;
 font-weight: 500;
 letter-spacing: 0.06em;
 text-transform: uppercase;
 color: var(--theme-ink-muted);
}

.tv2-remedy-langs__list {
 display: flex;
 flex-wrap: wrap;
 gap: 0.4rem;
}

.tv2-remedy-lang {
 display: inline-flex;
 align-items: center;
 min-height: 34px;
 padding: 0.3rem 0.85rem;
 border-radius: var(--theme-radius-pill);
 border: 1px solid var(--theme-brand-glow);
 background: var(--theme-white);
 color: var(--theme-brand-deep) !important;
 text-decoration: none !important;
 font-size: 0.85rem;
 font-weight: 500;
 transition: background var(--theme-transition), border-color var(--theme-transition), color var(--theme-transition);
}

.tv2-remedy-lang:hover {
 border-color: var(--theme-brand);
 background: rgba(47, 158, 68, 0.08);
}

.tv2-remedy-lang.is-active {
 background: var(--theme-grad-brand);
 border-color: transparent;
 color: var(--theme-white) !important;
}

.tv2-remedy-langs__fallback {
 font-size: 0.75rem;
 font-weight: 500;
 color: #8a6d1d;
 background: #fff4d6;
 border-radius: 999px;
 padding: 0.2rem 0.6rem;
}

.tv2-remedy-reader__media {
 margin: 1.25rem 0 1rem;
 border-radius: var(--theme-radius);
 overflow: hidden;
 border: 1px solid rgba(47, 158, 68, 0.12);
 background: linear-gradient(160deg, #eef6ea, #f8fbf6);
}

.tv2-remedy-reader__img {
 width: 100%;
 max-height: 420px;
 object-fit: cover;
 display: block;
}

.tv2-remedy-reader__video {
 margin: 1rem 0 1.25rem;
 border-radius: var(--theme-radius);
 overflow: hidden;
 border: 1px solid rgba(47, 158, 68, 0.12);
 background: #0f1a0f;
}

.tv2-remedy-reader__video video {
 display: block;
 max-height: 420px;
 background: #000;
}

.tv2-remedy-reader__content {
 color: var(--theme-ink);
 font-size: 1.02rem;
 line-height: 1.8;
}

.tv2-remedy-reader__content h1, .tv2-remedy-reader__content h2, .tv2-remedy-reader__content h3, .tv2-remedy-reader__content h4 {
 color: var(--theme-brand-deep);
 font-weight: 500;
 letter-spacing: -0.015em;
 margin-top: 1.4rem;
 margin-bottom: 0.65rem;
}

.tv2-remedy-reader__content p {
 margin-bottom: 1rem;
 color: var(--theme-ink-muted);
}

.tv2-remedy-reader__content ul, .tv2-remedy-reader__content ol {
 padding-left: 1.25rem;
 margin-bottom: 1rem;
 color: var(--theme-ink-muted);
}

.tv2-remedy-reader__content img {
 max-width: 100%;
 height: auto;
 border-radius: var(--theme-radius-sm);
}

.tv2-remedy-reader__content a {
 color: var(--theme-brand-deep);
 font-weight: 500;
}

.tv2-remedy-reader__foot {
 display: flex;
 flex-wrap: wrap;
 align-items: center;
 justify-content: space-between;
 gap: 0.75rem;
 margin-top: 1.5rem;
 padding-top: 1rem;
 border-top: 1px dashed rgba(47, 158, 68, 0.25);
}

.tv2-remedy-reader__quota {
 display: inline-flex;
 align-items: center;
 gap: 0.55rem;
 font-size: 0.9rem;
 color: var(--theme-ink-muted);
 background: rgba(47, 158, 68, 0.08);
 border: 1px solid rgba(47, 158, 68, 0.16);
 border-radius: var(--theme-radius-pill);
 padding: 0.45rem 0.9rem;
}

.tv2-remedy-reader__quota i {
 color: var(--theme-brand);
}

.tv2-remedy-reader__quota strong {
 color: var(--theme-brand-deep);
 font-weight: 500;
}

.tv2-remedy-reader__quota-link {
 font-size: 0.88rem;
 font-weight: 500;
 color: var(--theme-brand) !important;
 text-decoration: none !important;
}

.tv2-remedy-reader__quota-link:hover {
 color: var(--theme-brand-deep) !important;
 text-decoration: underline !important;
}

.tv2-page-cms #about_us .container, .tv2-page-cms #contact_us .contact, .tv2-page-cms #privacy_policy .container, .tv2-page-cms #terms .container, .tv2-cms-panel {
 background: linear-gradient(160deg, var(--theme-white) 0%, #f6faf3 100%);
 border: 1px solid rgba(47, 158, 68, 0.14);
 border-radius: var(--theme-radius-lg);
 box-shadow: var(--theme-shadow);
 padding: 1.5rem;
}

.tv2-page-cms .about-img {
 border-radius: var(--theme-radius-lg);
 box-shadow: var(--theme-shadow-lg);
 border: 4px solid var(--theme-white);
}

.tv2-page-cms .contact-getintouch, .tv2-page-cms .about-content {
 color: var(--theme-ink);
 line-height: 1.7;
}

.tv2-page-cms .flex-rev input, .tv2-page-cms .flex-rev textarea, #contact_us input, #contact_us textarea {
 border: 1.5px solid var(--theme-border) !important;
 border-radius: var(--theme-radius-sm) !important;
 min-height: 46px;
 padding: 0.65rem 0.9rem;
 width: 100%;
 background: var(--theme-white);
 transition: border-color var(--theme-transition), box-shadow var(--theme-transition);
}

#contact_us input:focus, #contact_us textarea:focus {
 border-color: var(--theme-brand) !important;
 box-shadow: 0 0 0 4px rgba(47, 158, 68, 0.14);
 outline: none;
}

#contact_us button[type="submit"], .tv2-page-cms .btn-order-place {
 background: var(--theme-grad-brand) !important;
 color: var(--theme-white) !important;
 border: none !important;
 border-radius: var(--theme-radius-pill) !important;
 font-weight: 500;
 padding: 0.65rem 1.5rem;
}

#contact_us.tv2-contact {
 background: transparent;
 border: none;
 box-shadow: none;
 margin-bottom: 2rem;
}

.tv2-contact-shell {
 background: linear-gradient(160deg, var(--theme-white) 0%, #f6faf3 100%);
 border: 1px solid rgba(47, 158, 68, 0.14);
 border-radius: var(--theme-radius-lg);
 box-shadow: var(--theme-shadow-lg);
 overflow: hidden;
}

.tv2-contact-form-col {
 padding: 1.75rem 1.5rem 2rem;
}

@media (min-width: 992px) {
 .tv2-contact-form-col {
 padding: 2.25rem 2rem 2.5rem;
 }

}

.tv2-contact-eyebrow {
 display: inline-block;
 font-size: 0.72rem;
 font-weight: 500;
 letter-spacing: 0.08em;
 text-transform: uppercase;
 color: var(--theme-brand);
 background: rgba(47, 158, 68, 0.12);
 border-radius: 999px;
 padding: 0.25rem 0.7rem;
 margin: 0;
}

.tv2-contact-title, .tv2-contact .contact-getintouch {
 font-size: clamp(1.55rem, 2.8vw, 2.1rem) !important;
 font-weight: 500 !important;
 color: var(--theme-brand-deep) !important;
 letter-spacing: -0.02em;
 margin: 0.35rem 0 0.75rem;
 line-height: 1.25;
}

.tv2-contact-lead, .tv2-contact .contact-detail {
 color: var(--theme-ink-muted);
 line-height: 1.7;
 font-size: 0.98rem;
}

.tv2-contact-lead p {
 margin-bottom: 0.65rem;
}

.tv2-contact-label {
 display: block;
 font-size: 0.8rem;
 font-weight: 500;
 color: var(--theme-brand-deep);
 margin-bottom: 0.35rem;
}

.tv2-contact-form .flex-rev {
 display: block;
}

.tv2-contact-form textarea.form-control {
 min-height: 120px;
 resize: vertical;
}

.tv2-contact-captcha {
 background: var(--theme-white);
 border: 1.5px solid var(--theme-border);
 border-radius: var(--theme-radius-sm);
 padding: 0.35rem 0.45rem;
 min-height: 46px;
}

.tv2-contact-captcha__img {
 display: inline-flex;
 align-items: center;
 flex: 1;
 min-width: 0;
}

.tv2-contact-captcha__img img {
 max-height: 38px;
 width: auto;
}

.tv2-contact-reload {
 width: 40px;
 height: 40px;
 border-radius: 50% !important;
 background: var(--theme-grad-brand) !important;
 color: var(--theme-white) !important;
 border: none !important;
 font-size: 1.15rem;
 line-height: 1;
 padding: 0 !important;
 flex-shrink: 0;
}

.tv2-contact-reload:hover {
 color: var(--theme-white) !important;
 transform: rotate(-30deg);
}

.tv2-contact-submit {
 min-width: 160px;
}

.tv2-contact-info-col {
 background: radial-gradient(420px 220px at 100% 0%, rgba(47, 158, 68, 0.18), transparent 60%),
 linear-gradient(165deg, #1a3a14 0%, #2d5c22 45%, var(--theme-brand-dark) 100%);
 color: var(--theme-white);
}

.tv2-contact-info {
 padding: 1.75rem 1.5rem 2rem;
 height: 100%;
}

@media (min-width: 992px) {
 .tv2-contact-info {
 padding: 2.25rem 2rem 2.5rem;
 }

}

.tv2-contact-info__title {
 font-size: 1.35rem;
 font-weight: 500;
 margin: 0 0 0.4rem;
 letter-spacing: -0.02em;
}

.tv2-contact-info__sub {
 color: rgba(255, 255, 255, 0.78);
 font-size: 0.92rem;
 line-height: 1.55;
}

.tv2-contact-channel {
 display: flex;
 align-items: flex-start;
 gap: 0.9rem;
 padding: 0.85rem 0;
 border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.tv2-contact-channel:last-child {
 border-bottom: none;
}

.tv2-contact-channel__icon {
 width: 42px;
 height: 42px;
 border-radius: 50%;
 display: inline-flex;
 align-items: center;
 justify-content: center;
 background: rgba(255, 255, 255, 0.14);
 border: 1px solid rgba(255, 255, 255, 0.2);
 flex-shrink: 0;
 color: var(--theme-white);
}

.tv2-contact-channel__label {
 display: block;
 font-size: 0.72rem;
 letter-spacing: 0.06em;
 text-transform: uppercase;
 color: rgba(255, 255, 255, 0.65);
 margin-bottom: 0.15rem;
 font-weight: 500;
}

.tv2-contact-channel__value {
 color: var(--theme-white) !important;
 text-decoration: none !important;
 font-size: 0.98rem;
 line-height: 1.45;
 word-break: break-word;
}

a.tv2-contact-channel__value:hover {
 color: #e8f7e3 !important;
}

.tv2-contact-media {
 margin-top: 1.5rem;
 border-radius: var(--theme-radius);
 overflow: hidden;
 border: 2px solid rgba(255, 255, 255, 0.2);
 background: rgba(255, 255, 255, 0.08);
}

.tv2-contact-media .contact-img {
 width: 100%;
 max-height: 260px;
 object-fit: cover;
 display: block;
 margin: 0 auto;
}

@media (max-width: 991.98px) {
 .tv2-contact-shell {
 border-radius: var(--theme-radius);
 }

}

.tv2-page-auction-detail #featured_img .main_video {
 max-width: 100%;
 width: 100%;
 max-height: 420px;
 object-fit: contain;
 background: #000;
}

.tv2-page-auction-detail .video-thumb {
 width: 70px;
 height: 70px;
 padding: 0;
 position: relative;
 overflow: hidden;
}

.tv2-page-auction-detail .video-thumb img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 display: block;
}

.tv2-page-auction-detail .tv2-detail-gallery, .tv2-page-auction-detail .tv2-detail-info {
 background: linear-gradient(160deg, var(--theme-white), #f6faf3);
 border: 1px solid rgba(47, 158, 68, 0.14);
 border-radius: var(--theme-radius-lg);
 box-shadow: var(--theme-shadow);
 padding: 1.1rem;
}

.tv2-page-auction-detail .list-group-item {
 border-color: var(--theme-border);
 background: transparent;
}

.tv2-auction-panel {
 background: linear-gradient(160deg, var(--theme-white) 0%, #f6faf3 100%);
 border: 1px solid rgba(47, 158, 68, 0.14);
 border-radius: var(--theme-radius-lg);
 box-shadow: var(--theme-shadow);
 overflow: hidden;
}

.tv2-auction-panel__head {
 display: flex;
 align-items: center;
 justify-content: space-between;
 gap: 0.75rem;
 padding: 0.75rem 1.15rem;
 border-bottom: 1px solid rgba(47, 158, 68, 0.12);
 background: linear-gradient(90deg, rgba(47, 158, 68, 0.08), transparent 70%);
}

.tv2-auction-panel__title {
 margin: 0;
 font-size: 1.05rem;
 font-weight: 500;
 color: var(--theme-brand-deep);
 letter-spacing: -0.01em;
}

.tv2-auction-panel__meta {
 font-size: 0.8rem;
 font-weight: 500;
 color: var(--theme-ink-muted);
 background: rgba(47, 158, 68, 0.1);
 border-radius: 999px;
 padding: 0.2rem 0.65rem;
}

.tv2-auction-social {
 display: flex;
 align-items: center;
 flex-wrap: wrap;
 gap: 0.45rem;
}

.tv2-auction-social__btn {
 width: 34px;
 height: 34px;
 border-radius: 50%;
 display: inline-flex;
 align-items: center;
 justify-content: center;
 background: var(--theme-white);
 border: 1px solid rgba(47, 158, 68, 0.18);
 color: var(--theme-brand-deep);
 font-size: 0.9rem;
 text-decoration: none;
 transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.tv2-auction-social__btn:hover {
 transform: translateY(-1px);
 box-shadow: 0 4px 12px rgba(47, 158, 68, 0.18);
 color: var(--theme-white);
}

.tv2-auction-social__btn--youtube:hover { background: #ff0000; border-color: #ff0000; }
.tv2-auction-social__btn--facebook:hover { background: #1877f2; border-color: #1877f2; }
.tv2-auction-social__btn--instagram:hover { background: #e4405f; border-color: #e4405f; }
.tv2-auction-social__btn--linkedin:hover { background: #0a66c2; border-color: #0a66c2; }

.tv2-auction-panel__body {
 padding: 1.1rem 1.15rem 1.25rem;
}

.tv2-auction-description {
 color: var(--theme-ink);
 line-height: 1.75;
 font-size: 0.95rem;
}

.tv2-auction-description p:last-child {
 margin-bottom: 0;
}

.tv2-auction-rules {
 color: var(--theme-ink);
 line-height: 1.7;
 font-size: 0.95rem;
 list-style-type: decimal !important;
}

.tv2-auction-rules li:last-child {
 margin-bottom: 0 !important;
}

.tv2-bid-list__head, .tv2-bid-list__row {
 display: grid;
 grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr);
 gap: 0.75rem;
 align-items: center;
 padding: 0.85rem 1.15rem;
}

.tv2-bid-list__head {
 font-size: 0.75rem;
 font-weight: 500;
 letter-spacing: 0.05em;
 text-transform: uppercase;
 color: var(--theme-ink-muted);
 background: rgba(47, 158, 68, 0.05);
 border-bottom: 1px solid rgba(47, 158, 68, 0.1);
}

.tv2-bid-list__row {
 border-bottom: 1px solid rgba(47, 158, 68, 0.08);
 transition: background var(--theme-transition);
}

.tv2-bid-list__row:last-child {
 border-bottom: none;
}

.tv2-bid-list__row:hover {
 background: rgba(47, 158, 68, 0.04);
}

.tv2-bid-list__row.is-leading {
 background: linear-gradient(90deg, rgba(47, 158, 68, 0.12), rgba(47, 158, 68, 0.03));
}

.tv2-bid-list__bidder {
 display: flex;
 align-items: center;
 gap: 0.7rem;
 min-width: 0;
}

.tv2-bid-list__avatar {
 width: 36px;
 height: 36px;
 border-radius: 50%;
 display: inline-flex;
 align-items: center;
 justify-content: center;
 flex: 0 0 auto;
 background: var(--theme-grad-brand);
 color: var(--theme-white);
 font-size: 0.85rem;
 font-weight: 500;
}

.tv2-bid-list__name {
 display: block;
 font-weight: 500;
 color: var(--theme-ink);
 line-height: 1.3;
}

.tv2-bid-list__tag {
 display: inline-block;
 margin-top: 0.15rem;
 font-size: 0.68rem;
 font-weight: 500;
 letter-spacing: 0.04em;
 text-transform: uppercase;
 color: var(--theme-brand-deep);
 background: rgba(47, 158, 68, 0.16);
 border-radius: 999px;
 padding: 0.1rem 0.45rem;
}

.tv2-bid-list__amount {
 font-weight: 500;
 color: var(--theme-brand-deep);
 font-size: 1rem;
}

.tv2-bid-list__time {
 color: var(--theme-ink-muted);
 font-size: 0.9rem;
 line-height: 1.35;
}

.tv2-bid-list__time-sub {
 display: block;
 font-size: 0.8rem;
 opacity: 0.85;
}

@media (max-width: 767.98px) {
 .tv2-bid-list__row {
 grid-template-columns: 1fr;
 gap: 0.45rem;
 padding: 1rem 1.05rem;
 }

 .tv2-bid-list__amount, .tv2-bid-list__time {
 display: flex;
 justify-content: space-between;
 align-items: baseline;
 gap: 0.75rem;
 }

 .tv2-bid-list__amount::before, .tv2-bid-list__time::before {
 content: attr(data-label);
 font-size: 0.72rem;
 font-weight: 500;
 letter-spacing: 0.04em;
 text-transform: uppercase;
 color: var(--theme-ink-muted);
 }

 .tv2-bid-list__time-sub {
 display: inline;
 margin-left: 0.35rem;
 }

}

.tv2-page-offer #Top-Cat>.container, .tv2-page-offer .card-myorder {
 background: linear-gradient(160deg, var(--theme-white), #f6faf3);
 border: 1px solid rgba(47, 158, 68, 0.14);
 border-radius: var(--theme-radius-lg);
 box-shadow: var(--theme-shadow);
}

.tv2-page-offer .shop-title {
 color: var(--theme-brand-deep) !important;
 font-weight: 500;
}

.page-privacy-policy .policy-card {
 border: 1px solid rgba(47, 158, 68, 0.14);
}

.modal-content {
 border-radius: var(--theme-radius-lg);
 border: 1px solid rgba(47, 158, 68, 0.14);
 box-shadow: var(--theme-shadow-lg);
}

.modal-header {
 border-bottom-color: var(--theme-border);
 background: linear-gradient(180deg, #f6faf3, var(--theme-white));
}

.modal-footer {
 border-top-color: var(--theme-border);
}

/* Keep modals above frosted header (z-index 1040) */

.modal {
 z-index: 1065;
}

.modal-backdrop {
 z-index: 1060;
}

.select2-container--open {
 z-index: 1070;
}

.select2-container--default .select2-selection--single {
 border-radius: var(--theme-radius-sm) !important;
 border-color: var(--theme-border) !important;
 min-height: 44px;
 display: flex;
 align-items: center;
}

.wallet-card, .referral-box, .orderbal-detail {
 color: var(--theme-ink-muted);
}

.razorpay-btn, #rzp-button1 {
 background: var(--theme-grad-brand) !important;
 color: var(--theme-white) !important;
 border: none !important;
 border-radius: var(--theme-radius-pill) !important;
 font-weight: 500;
 padding: 0.7rem 1.5rem !important;
 box-shadow: 0 12px 28px -12px rgba(47, 158, 68, 0.85);
}

.tv2-page-cms #terms_and_conditions .container, .tv2-page-cms #privacy_policy .container {
 background: linear-gradient(160deg, var(--theme-white) 0%, #f6faf3 100%);
 border: 1px solid rgba(47, 158, 68, 0.14);
 border-radius: var(--theme-radius-lg);
 box-shadow: var(--theme-shadow);
 padding: 1.5rem;
}

/* ==========================================================================
 Catalog sidebar Ã¢â‚¬â€ responsive filters
 ========================================================================== */

.tv2-sidebar-col {
 margin-bottom: 0.25rem;
}

.tv2-sidebar {
 width: 100%;
}

.tv2-sidebar-toggle {
 width: 100%;
 display: flex;
 align-items: center;
 justify-content: space-between;
 gap: 0.75rem;
 padding: 0.85rem 1rem;
 margin-bottom: 0.75rem;
 border: 1px solid var(--theme-brand-glow);
 border-radius: var(--theme-radius);
 background: linear-gradient(160deg, var(--theme-white) 0%, var(--theme-surface-soft-alt) 100%);
 color: var(--theme-brand-deep);
 font-weight: 500;
 font-size: 0.95rem;
 box-shadow: var(--theme-shadow);
 transition: border-color var(--theme-transition), box-shadow var(--theme-transition);
}

.tv2-sidebar-toggle:hover, .tv2-sidebar-toggle:focus-visible {
 border-color: var(--theme-brand);
 box-shadow: 0 8px 20px rgba(47, 158, 68, 0.12);
 outline: none;
}

.tv2-sidebar-toggle[aria-expanded="true"] .tv2-sidebar-toggle-icon {
 transform: rotate(180deg);
}

.tv2-sidebar-toggle-icon {
 transition: transform 0.2s ease;
 font-size: 0.8rem;
 opacity: 0.7;
}

.tv2-sidebar-panel {
 background: linear-gradient(180deg, var(--theme-white) 0%, #f5faf2 100%);
 border: 1px solid rgba(47, 158, 68, 0.14);
 border-radius: var(--theme-radius-lg);
 box-shadow: var(--theme-shadow);
 padding: 1rem 0.9rem 1.15rem;
 color: var(--theme-ink);
}

.tv2-sidebar-section+.tv2-sidebar-section {
 margin-top: 1.1rem;
 padding-top: 1rem;
 border-top: 1px solid rgba(47, 158, 68, 0.12);
}

.tv2-sidebar-heading {
 margin: 0 0 0.65rem;
 font-size: 0.78rem;
 font-weight: 500;
 letter-spacing: 0.06em;
 text-transform: uppercase;
 color: var(--theme-brand-deep);
}

.tv2-sidebar-hint {
 margin: -0.25rem 0 1.1rem;
 font-size: 0.8rem;
 color: var(--theme-ink-muted);
}

.tv2-sidebar-list, .tv2-sidebar-sublist {
 list-style: none;
 margin: 0;
 padding: 0;
}

.tv2-sidebar-item {
 margin: 0;
}

.tv2-sidebar-row {
 display: flex;
 align-items: center;
 gap: 0.25rem;
}

.tv2-sidebar-link {
 flex: 1;
 min-width: 0;
 display: block;
 padding: 0.55rem 0.7rem;
 border-radius: var(--theme-radius-sm);
 color: var(--theme-ink) !important;
 text-decoration: none !important;
 font-size: 0.92rem;
 font-weight: 500;
 line-height: 1.35;
 transition: background var(--theme-transition), color var(--theme-transition), transform var(--theme-transition);
}

.tv2-sidebar-link:hover {
 background: var(--theme-brand-soft);
 color: var(--theme-brand-deep) !important;
}

.tv2-sidebar-link.is-active {
 background: linear-gradient(135deg, rgba(47, 158, 68, 0.16), rgba(47, 158, 68, 0.06));
 color: var(--theme-brand-deep) !important;
 box-shadow: inset 3px 0 0 var(--theme-brand);
}

.tv2-sidebar-expand {
 flex: 0 0 auto;
 width: 34px;
 height: 34px;
 display: inline-flex;
 align-items: center;
 justify-content: center;
 border: 1px solid transparent;
 border-radius: var(--theme-radius-sm);
 background: transparent;
 color: var(--theme-ink-muted);
 transition: background var(--theme-transition), color var(--theme-transition), transform var(--theme-transition);
}

.tv2-sidebar-expand:hover, .tv2-sidebar-expand:focus-visible {
 background: var(--theme-brand-soft);
 color: var(--theme-brand-deep);
 outline: none;
}

.tv2-sidebar-expand[aria-expanded="true"] i, .tv2-sidebar-item.is-open>.tv2-sidebar-row .tv2-sidebar-expand i {
 transform: rotate(180deg);
}

.tv2-sidebar-expand i {
 font-size: 0.72rem;
 transition: transform 0.2s ease;
}

.tv2-sidebar-sublist {
 margin: 0.15rem 0 0.35rem 0.55rem;
 padding-left: 0.55rem;
 border-left: 2px solid rgba(47, 158, 68, 0.18);
}

.tv2-sidebar-sublist .tv2-sidebar-link {
 font-size: 0.88rem;
 font-weight: 500;
 padding: 0.42rem 0.65rem;
 color: var(--theme-ink-muted) !important;
}

.tv2-sidebar-sublist .tv2-sidebar-link.is-active {
 color: var(--theme-brand-deep) !important;
}

.tv2-sidebar-sublist--nested {
 margin-left: 0.4rem;
}

.tv2-sidebar-price {
 padding-bottom: 0.35rem;
}

.tv2-price-slider {
 margin: 1.75rem 0.55rem 0.85rem;
}

.tv2-price-slider .noUi-target {
 background: #e7f0e2;
 border: none;
 box-shadow: none;
 height: 8px;
 border-radius: 999px;
}

.tv2-price-slider .noUi-connect {
 background: var(--theme-grad-brand);
}

.tv2-price-slider .noUi-handle {
 width: 18px !important;
 height: 18px !important;
 right: -9px !important;
 top: -6px !important;
 border-radius: 50%;
 border: 2px solid var(--theme-white);
 background: var(--theme-brand);
 box-shadow: 0 4px 10px rgba(47, 158, 68, 0.45);
 cursor: grab;
}

.tv2-price-slider .noUi-handle::before, .tv2-price-slider .noUi-handle::after {
 display: none;
}

.tv2-price-slider .noUi-tooltip {
 background: var(--theme-brand-deep);
 color: var(--theme-white);
 border: none;
 border-radius: 999px;
 font-size: 0.72rem;
 font-weight: 500;
 padding: 0.2rem 0.45rem;
 bottom: 140%;
}

@media (min-width: 768px) {
 .tv2-sidebar-panel {
 position: sticky;
 top: 6.5rem;
 max-height: calc(100vh - 7.5rem);
 overflow-y: auto;
 overscroll-behavior: contain;
 scrollbar-width: thin;
 scrollbar-color: rgba(47, 158, 68, 0.35) transparent;
 }

 .tv2-sidebar-panel::-webkit-scrollbar {
 width: 6px;
 }

 .tv2-sidebar-panel::-webkit-scrollbar-thumb {
 background: rgba(47, 158, 68, 0.35);
 border-radius: 999px;
 }

}

@media (max-width: 767.98px) {
 .tv2-sidebar-panel {
 margin-bottom: 0.5rem;
 max-height: min(70vh, 520px);
 overflow-y: auto;
 }

 .tv2-sidebar-link {
 font-size: 0.95rem;
 padding: 0.65rem 0.75rem;
 }

 .tv2-sidebar-expand {
 width: 40px;
 height: 40px;
 }

}

.user-static {
 width: 50px;
 height: 50px;
 display: flex;
 justify-content: center;
 align-items: center;
}

/* ==========================================================================
 Dashboard Ã¢â‚¬â€ My Orders list
 ========================================================================== */

.tv2-order-list {
 display: flex;
 flex-direction: column;
 gap: 1rem;
}

.tv2-order-list__header {
 display: flex;
 align-items: center;
 justify-content: space-between;
 gap: 0.75rem;
 flex-wrap: wrap;
 margin-bottom: 0.25rem;
}

.tv2-order-list__count {
 font-size: 0.8rem;
 font-weight: 500;
 color: var(--theme-ink-muted);
 background: rgba(47, 158, 68, 0.1);
 border-radius: 999px;
 padding: 0.25rem 0.7rem;
}

.tv2-order-list__items {
 display: flex;
 flex-direction: column;
 gap: 0.85rem;
}

.tv2-order-card {
 display: flex;
 flex-direction: column;
 gap: 1rem;
 background: linear-gradient(160deg, var(--theme-white) 0%, #f6faf3 100%);
 border: 1px solid rgba(47, 158, 68, 0.14);
 border-radius: var(--theme-radius-lg);
 box-shadow: var(--theme-shadow);
 padding: 1.05rem 1.15rem 1.1rem;
 transition: transform var(--theme-transition), box-shadow var(--theme-transition), border-color var(--theme-transition);
}

.tv2-order-card:hover {
 transform: translateY(-2px);
 box-shadow: var(--theme-shadow-float);
 border-color: rgba(47, 158, 68, 0.28);
}

.tv2-order-card__top {
 display: flex;
 align-items: flex-start;
 justify-content: space-between;
 gap: 0.75rem;
 flex-wrap: wrap;
 margin-bottom: 0.85rem;
}

.tv2-order-card__id {
 display: inline-flex;
 flex-wrap: wrap;
 align-items: baseline;
 gap: 0.35rem 0.5rem;
 text-decoration: none !important;
 color: var(--theme-brand-deep) !important;
 min-width: 0;
}

.tv2-order-card__id:hover .tv2-order-card__id-value {
 text-decoration: underline;
}

.tv2-order-card__id-label {
 font-size: 0.72rem;
 font-weight: 500;
 letter-spacing: 0.05em;
 text-transform: uppercase;
 color: var(--theme-ink-muted);
}

.tv2-order-card__id-value {
 font-size: 0.98rem;
 font-weight: 500;
 word-break: break-all;
}

.tv2-order-card__id i {
 font-size: 0.72rem;
 opacity: 0.65;
 align-self: center;
}

.tv2-order-card__status {
 display: inline-flex;
 align-items: center;
 border-radius: 999px !important;
 padding: 0.28rem 0.75rem !important;
 font-size: 0.75rem !important;
 font-weight: 500 !important;
 letter-spacing: 0.02em;
 line-height: 1.2;
 border: none !important;
 color: var(--theme-white) !important;
 white-space: nowrap;
}

.tv2-order-card__meta {
 display: grid;
 grid-template-columns: repeat(4, minmax(0, 1fr));
 gap: 0.75rem 1rem;
}

.tv2-order-card__meta-label {
 display: block;
 font-size: 0.7rem;
 font-weight: 500;
 letter-spacing: 0.04em;
 text-transform: uppercase;
 color: var(--theme-ink-muted);
 margin-bottom: 0.2rem;
}

.tv2-order-card__meta-value {
 display: block;
 font-size: 0.92rem;
 font-weight: 500;
 color: var(--theme-ink);
 line-height: 1.35;
 word-break: break-word;
}

.tv2-order-card__amount {
 display: block;
 font-size: 1.15rem;
 font-weight: 500;
 color: var(--theme-brand-deep);
 letter-spacing: -0.02em;
}

.tv2-order-card__actions {
 display: flex;
 flex-wrap: wrap;
 gap: 0.55rem;
 padding-top: 0.9rem;
 border-top: 1px solid rgba(47, 158, 68, 0.1);
 margin-top: 0.15rem;
}

.tv2-order-card__btn-view {
 background: var(--theme-grad-brand) !important;
 color: var(--theme-white) !important;
 border: none !important;
 border-radius: var(--theme-radius-pill) !important;
 font-weight: 500 !important;
 font-size: 0.85rem !important;
 padding: 0.45rem 1.1rem !important;
 box-shadow: 0 8px 18px -10px rgba(47, 158, 68, 0.85);
}

.tv2-order-card__btn-view:hover {
 color: var(--theme-white) !important;
 filter: brightness(1.05);
}

.tv2-order-card__btn-cancel {
 background: transparent !important;
 color: #c0392b !important;
 border: 1.5px solid rgba(192, 57, 43, 0.35) !important;
 border-radius: var(--theme-radius-pill) !important;
 font-weight: 500 !important;
 font-size: 0.85rem !important;
 padding: 0.4rem 1rem !important;
}

.tv2-order-card__btn-cancel:hover {
 background: rgba(192, 57, 43, 0.08) !important;
 border-color: #c0392b !important;
}

.tv2-order-empty {
 text-align: center;
 background: linear-gradient(160deg, var(--theme-white) 0%, #f6faf3 100%);
 border: 1px dashed rgba(47, 158, 68, 0.28);
 border-radius: var(--theme-radius-lg);
 padding: 2.75rem 1.5rem;
}

.tv2-order-empty__icon {
 width: 64px;
 height: 64px;
 margin: 0 auto 1rem;
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 background: rgba(47, 158, 68, 0.12);
 color: var(--theme-brand);
 font-size: 1.4rem;
}

.tv2-order-empty__title {
 margin: 0 0 0.35rem;
 font-size: 1.2rem;
 font-weight: 500;
 color: var(--theme-brand-deep);
}

.tv2-order-empty__text {
 margin: 0 0 1.15rem;
 color: var(--theme-ink-muted);
}

@media (max-width: 991.98px) {
 .tv2-order-card__meta {
 grid-template-columns: repeat(2, minmax(0, 1fr));
 }

}

@media (max-width: 575.98px) {
 .tv2-order-card {
 padding: 0.95rem 0.95rem 1rem;
 }

 .tv2-order-card__meta {
 grid-template-columns: 1fr 1fr;
 gap: 0.7rem;
 }

 .tv2-order-card__meta-item--amount {
 grid-column: 1 / -1;
 padding-top: 0.35rem;
 border-top: 1px solid rgba(47, 158, 68, 0.1);
 }

 .tv2-order-card__actions {
 flex-direction: column;
 }

 .tv2-order-card__btn-view, .tv2-order-card__btn-cancel {
 width: 100%;
 }

}

/* ==========================================================================
 Dashboard Ã¢â‚¬â€ Order details
 ========================================================================== */

.tv2-order-detail {
 display: flex;
 flex-direction: column;
 gap: 1rem;
}

.tv2-order-detail__header {
 display: flex;
 align-items: flex-start;
 justify-content: space-between;
 gap: 1rem;
 flex-wrap: wrap;
 margin-bottom: 0.25rem;
}

.tv2-order-detail__back {
 display: inline-flex;
 align-items: center;
 gap: 0.4rem;
 margin-bottom: 0.45rem;
 font-size: 0.85rem;
 font-weight: 500;
 color: var(--theme-brand-muted) !important;
 text-decoration: none !important;
}

.tv2-order-detail__back:hover {
 color: var(--theme-brand) !important;
}

.tv2-order-detail__order-no {
 color: var(--theme-ink-muted);
 font-size: 0.92rem;
}

.tv2-order-detail__order-no span {
 font-size: 0.72rem;
 font-weight: 500;
 letter-spacing: 0.05em;
 text-transform: uppercase;
 margin-right: 0.35rem;
}

.tv2-order-detail__order-no strong {
 color: var(--theme-brand-deep);
 word-break: break-all;
}

.tv2-order-detail__header-actions {
 display: flex;
 flex-wrap: wrap;
 align-items: center;
 gap: 0.55rem;
}

.tv2-order-detail__invoice {
 background: var(--theme-grad-brand) !important;
 color: var(--theme-white) !important;
 border: none !important;
 border-radius: var(--theme-radius-pill) !important;
 font-weight: 500 !important;
 font-size: 0.85rem !important;
 padding: 0.45rem 1rem !important;
 box-shadow: 0 8px 18px -10px rgba(47, 158, 68, 0.85);
}

.tv2-order-panel {
 background: linear-gradient(160deg, var(--theme-white) 0%, #f6faf3 100%);
 border: 1px solid rgba(47, 158, 68, 0.14);
 border-radius: var(--theme-radius-lg);
 box-shadow: var(--theme-shadow);
 overflow: hidden;
 height: 100%;
}

.tv2-order-panel__head {
 display: flex;
 align-items: center;
 justify-content: space-between;
 gap: 0.75rem;
 padding: 0.9rem 1.1rem;
 border-bottom: 1px solid rgba(47, 158, 68, 0.12);
 background: linear-gradient(90deg, rgba(47, 158, 68, 0.08), transparent 70%);
}

.tv2-order-panel__title {
 margin: 0;
 display: inline-flex;
 align-items: center;
 gap: 0.55rem;
 font-size: 1rem;
 font-weight: 500;
 color: var(--theme-brand-deep);
}

.tv2-order-panel__title i {
 color: var(--theme-brand);
 font-size: 0.9rem;
}

.tv2-order-panel__body {
 padding: 1rem 1.1rem 1.15rem;
}

.tv2-order-dl {
 margin: 0;
}

.tv2-order-dl__row {
 display: flex;
 justify-content: space-between;
 align-items: flex-start;
 gap: 1rem;
 padding: 0.55rem 0;
 border-bottom: 1px solid rgba(47, 158, 68, 0.08);
}

.tv2-order-dl__row:last-child {
 border-bottom: none;
 padding-bottom: 0;
}

.tv2-order-dl__row dt {
 margin: 0;
 font-size: 0.78rem;
 font-weight: 500;
 letter-spacing: 0.04em;
 text-transform: uppercase;
 color: var(--theme-ink-muted);
 flex: 0 0 auto;
}

.tv2-order-dl__row dd {
 margin: 0;
 text-align: right;
 font-size: 0.92rem;
 font-weight: 500;
 color: var(--theme-ink);
 word-break: break-word;
}

.tv2-order-dl__row--block {
 flex-direction: column;
 gap: 0.35rem;
}

.tv2-order-dl__row--block dd {
 text-align: left;
 line-height: 1.55;
 font-weight: 500;
}

.tv2-order-mono {
 font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
 font-size: 0.82rem !important;
}

.tv2-order-amount {
 color: var(--theme-brand-deep) !important;
 font-size: 1.05rem !important;
 font-weight: 500 !important;
}

.tv2-order-pill {
 display: inline-flex;
 align-items: center;
 border-radius: 999px;
 padding: 0.2rem 0.65rem;
 font-size: 0.75rem;
 font-weight: 500;
 color: var(--theme-white);
}

.tv2-order-pill--success {
 background: var(--theme-brand);
}

.tv2-order-pill--danger {
 background: #c0392b;
}

.tv2-order-products {
 display: flex;
 flex-direction: column;
}

.tv2-order-product {
 display: grid;
 grid-template-columns: 88px minmax(0, 1fr);
 gap: 0.9rem;
 padding: 1rem 1.1rem;
 border-bottom: 1px solid rgba(47, 158, 68, 0.1);
}

.tv2-order-product__media img {
 width: 88px;
 height: 88px;
 object-fit: cover;
 border-radius: var(--theme-radius-sm);
 border: 1px solid rgba(47, 158, 68, 0.14);
 background: var(--theme-white);
}

.tv2-order-product__top {
 display: flex;
 justify-content: space-between;
 align-items: flex-start;
 gap: 0.75rem;
 margin-bottom: 0.35rem;
}

.tv2-order-product__name {
 margin: 0;
 font-size: 0.98rem;
 font-weight: 500;
 color: var(--theme-ink);
 line-height: 1.35;
}

.tv2-order-product__qty {
 flex: 0 0 auto;
 font-size: 0.75rem;
 font-weight: 500;
 color: var(--theme-brand-deep);
 background: rgba(47, 158, 68, 0.12);
 border-radius: 999px;
 padding: 0.2rem 0.55rem;
}

.tv2-order-product__attr {
 display: inline-block;
 margin-bottom: 0.45rem;
 font-size: 0.75rem;
 font-weight: 500;
 color: var(--theme-brand-deep);
 background: rgba(47, 158, 68, 0.1);
 border-radius: var(--theme-radius-sm);
 padding: 0.15rem 0.5rem;
}

.tv2-order-product__prices {
 display: flex;
 flex-wrap: wrap;
 gap: 0.55rem 1rem;
 font-size: 0.85rem;
 color: var(--theme-ink-muted);
}

.tv2-order-product__prices strong {
 color: var(--theme-ink);
}

.tv2-order-product__line-total {
 margin-left: auto;
 font-weight: 500;
 color: var(--theme-brand-deep) !important;
 font-size: 0.98rem;
}

.tv2-order-product__actions {
 display: flex;
 flex-wrap: wrap;
 gap: 0.45rem;
 margin-top: 0.65rem;
}

.tv2-order-product__btn-review {
 border-radius: var(--theme-radius-pill) !important;
 background: rgba(47, 158, 68, 0.12) !important;
 color: var(--theme-brand-deep) !important;
 border: 1px solid rgba(47, 158, 68, 0.25) !important;
 font-weight: 500 !important;
}

.tv2-order-product__btn-return {
 border-radius: var(--theme-radius-pill) !important;
 background: transparent !important;
 color: #c0392b !important;
 border: 1px solid rgba(192, 57, 43, 0.35) !important;
 font-weight: 500 !important;
}

.tv2-order-totals {
 padding: 0.85rem 1.1rem 1.1rem;
 background: rgba(47, 158, 68, 0.04);
 border-top: 1px solid rgba(47, 158, 68, 0.12);
}

.tv2-order-totals__row {
 display: flex;
 justify-content: space-between;
 gap: 1rem;
 padding: 0.35rem 0;
 font-size: 0.9rem;
 color: var(--theme-ink-muted);
}

.tv2-order-totals__row strong {
 color: var(--theme-ink);
 font-weight: 500;
}

.tv2-order-totals__row--grand {
 margin-top: 0.35rem;
 padding-top: 0.65rem;
 border-top: 1px dashed rgba(47, 158, 68, 0.25);
 font-size: 1rem;
 color: var(--theme-brand-deep);
}

.tv2-order-totals__row--grand strong {
 color: var(--theme-brand-deep);
 font-size: 1.15rem;
 font-weight: 500;
}

.tv2-order-timeline__item {
 position: relative;
 display: grid;
 grid-template-columns: 16px minmax(0, 1fr);
 gap: 0.85rem;
 padding-bottom: 1.1rem;
}

.tv2-order-timeline__item:last-child {
 padding-bottom: 0;
}

.tv2-order-timeline__item:not(:last-child)::before {
 content: '';
 position: absolute;
 left: 7px;
 top: 16px;
 bottom: 0;
 width: 2px;
 background: rgba(47, 158, 68, 0.2);
}

.tv2-order-timeline__dot {
 width: 14px;
 height: 14px;
 margin-top: 0.25rem;
 border-radius: 50%;
 background: var(--theme-brand);
 box-shadow: 0 0 0 4px rgba(47, 158, 68, 0.15);
}

.tv2-order-timeline__top {
 display: flex;
 flex-wrap: wrap;
 align-items: center;
 justify-content: space-between;
 gap: 0.45rem 0.75rem;
 margin-bottom: 0.25rem;
}

.tv2-order-timeline__date {
 font-size: 0.8rem;
 color: var(--theme-ink-muted);
 font-weight: 500;
}

.tv2-order-timeline__comment {
 margin: 0;
 color: var(--theme-ink-muted);
 font-size: 0.9rem;
 line-height: 1.5;
}

.tv2-order-timeline__empty {
 color: var(--theme-ink-muted);
 text-align: center;
 padding: 0.75rem 0;
}

@media (max-width: 575.98px) {
 .tv2-order-product {
 grid-template-columns: 72px minmax(0, 1fr);
 padding: 0.9rem;
 }

 .tv2-order-product__media img {
 width: 72px;
 height: 72px;
 }

 .tv2-order-product__line-total {
 margin-left: 0;
 width: 100%;
 }

 .tv2-order-detail__header-actions {
 width: 100%;
 }

 .tv2-order-detail__invoice {
 width: 100%;
 }

}

/* ==========================================================================
 Dashboard Ã¢â‚¬â€ My Addresses
 ========================================================================== */

.tv2-address-list {
 display: flex;
 flex-direction: column;
 gap: 1rem;
}

.tv2-address-list__header {
 display: flex;
 align-items: flex-start;
 justify-content: space-between;
 gap: 0.85rem;
 flex-wrap: wrap;
}

.tv2-address-list__sub {
 margin-top: 0.25rem;
 font-size: 0.85rem;
 color: var(--theme-ink-muted);
}

.tv2-address-list__add {
 background: var(--theme-grad-brand) !important;
 color: var(--theme-white) !important;
 border: none !important;
 border-radius: var(--theme-radius-pill) !important;
 font-weight: 500 !important;
 font-size: 0.88rem !important;
 padding: 0.5rem 1.15rem !important;
 box-shadow: 0 8px 18px -10px rgba(47, 158, 68, 0.85);
}

.tv2-address-list__items {
 display: flex;
 flex-direction: column;
 gap: 0.85rem;
}

.tv2-address-card {
 background: linear-gradient(160deg, var(--theme-white) 0%, #f6faf3 100%);
 border: 1px solid rgba(47, 158, 68, 0.14);
 border-radius: var(--theme-radius-lg);
 box-shadow: var(--theme-shadow);
 padding: 1.05rem 1.15rem 1.1rem;
 transition: transform var(--theme-transition), box-shadow var(--theme-transition), border-color var(--theme-transition);
}

.tv2-address-card:hover {
 transform: translateY(-2px);
 box-shadow: var(--theme-shadow-float);
 border-color: rgba(47, 158, 68, 0.28);
}

.tv2-address-card__top {
 display: flex;
 align-items: flex-start;
 justify-content: space-between;
 gap: 0.75rem;
 flex-wrap: wrap;
 margin-bottom: 0.75rem;
 padding-bottom: 0.75rem;
 border-bottom: 1px solid rgba(47, 158, 68, 0.1);
}

.tv2-address-card__type {
 display: flex;
 align-items: flex-start;
 gap: 0.75rem;
 min-width: 0;
}

.tv2-address-card__type-icon {
 width: 42px;
 height: 42px;
 border-radius: 50%;
 display: inline-flex;
 align-items: center;
 justify-content: center;
 flex: 0 0 auto;
 background: rgba(47, 158, 68, 0.12);
 color: var(--theme-brand);
 font-size: 0.95rem;
}

.tv2-address-card__type-label {
 margin: 0 0 0.15rem;
 font-size: 1rem;
 font-weight: 500;
 color: var(--theme-brand-deep);
}

.tv2-address-card__name {
 font-size: 0.9rem;
 font-weight: 500;
 color: var(--theme-ink);
}

.tv2-address-card__name span {
 color: var(--theme-ink-muted);
 font-weight: 500;
}

.tv2-address-card__actions {
 display: flex;
 flex-wrap: wrap;
 gap: 0.4rem;
}

.tv2-address-card__btn-edit, .tv2-address-card__btn-delete {
 display: inline-flex;
 align-items: center;
 gap: 0.35rem;
 border-radius: var(--theme-radius-pill) !important;
 font-size: 0.8rem !important;
 font-weight: 500 !important;
 padding: 0.35rem 0.8rem !important;
}

.tv2-address-card__btn-edit {
 background: rgba(47, 158, 68, 0.12) !important;
 color: var(--theme-brand-deep) !important;
 border: 1px solid rgba(47, 158, 68, 0.25) !important;
}

.tv2-address-card__btn-delete {
 background: transparent !important;
 color: #c0392b !important;
 border: 1px solid rgba(192, 57, 43, 0.3) !important;
}

.tv2-address-card__lines {
 margin: 0 0 0.85rem;
 color: var(--theme-ink);
 font-size: 0.92rem;
 line-height: 1.55;
}

.tv2-address-card__meta {
 display: grid;
 grid-template-columns: repeat(4, minmax(0, 1fr));
 gap: 0.55rem 0.85rem;
}

.tv2-address-card__meta span {
 display: block;
 font-size: 0.85rem;
 color: var(--theme-ink);
 font-weight: 500;
 line-height: 1.4;
 word-break: break-word;
}

.tv2-address-card__meta strong {
 display: block;
 font-size: 0.68rem;
 font-weight: 500;
 letter-spacing: 0.04em;
 text-transform: uppercase;
 color: var(--theme-ink-muted);
 margin-bottom: 0.15rem;
}

.tv2-address-empty {
 text-align: center;
 background: linear-gradient(160deg, var(--theme-white) 0%, #f6faf3 100%);
 border: 1px dashed rgba(47, 158, 68, 0.28);
 border-radius: var(--theme-radius-lg);
 padding: 2.75rem 1.5rem;
}

.tv2-address-empty__icon {
 width: 64px;
 height: 64px;
 margin: 0 auto 1rem;
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 background: rgba(47, 158, 68, 0.12);
 color: var(--theme-brand);
 font-size: 1.4rem;
}

.tv2-address-empty__title {
 margin: 0 0 0.35rem;
 font-size: 1.2rem;
 font-weight: 500;
 color: var(--theme-brand-deep);
}

.tv2-address-empty__text {
 margin: 0 0 1.15rem;
 color: var(--theme-ink-muted);
}

.tv2-address-modal .form-label {
 font-weight: 500;
 color: var(--theme-brand-deep);
 font-size: 0.85rem;
}

.tv2-address-modal #suggestions {
 z-index: 1080;
 background: var(--theme-white);
 box-shadow: var(--theme-shadow-lg);
}

@media (max-width: 991.98px) {
 .tv2-address-card__meta {
 grid-template-columns: repeat(2, minmax(0, 1fr));
 }

}

@media (max-width: 575.98px) {
 .tv2-address-list__add {
 width: 100%;
 }

 .tv2-address-card__actions {
 width: 100%;
 }

 .tv2-address-card__btn-edit, .tv2-address-card__btn-delete {
 flex: 1;
 justify-content: center;
 }

 .tv2-address-card__meta {
 grid-template-columns: 1fr 1fr;
 }

}

/* ==========================================================================
 Dashboard Ã¢â‚¬â€ My Wallet
 ========================================================================== */

.tv2-wallet {
 display: flex;
 flex-direction: column;
 gap: 1rem;
}

.tv2-wallet-balance {
 display: flex;
 align-items: center;
 gap: 1rem;
 flex-wrap: wrap;
 padding: 1.2rem 1.25rem;
 border-radius: var(--theme-radius-lg);
 background: var(--theme-grad-deep, linear-gradient(135deg, #1f3d12 0%, #2f6b22 55%, var(--theme-brand) 100%));
 color: var(--theme-white);
 box-shadow: var(--theme-shadow-lg);
 position: relative;
 overflow: hidden;
}

.tv2-wallet-balance::before {
 content: '';
 position: absolute;
 width: 180px;
 height: 180px;
 border-radius: 50%;
 background: rgba(255, 255, 255, 0.08);
 top: -70px;
 right: -30px;
 pointer-events: none;
}

.tv2-wallet-balance__icon {
 width: 52px;
 height: 52px;
 border-radius: 50%;
 display: inline-flex;
 align-items: center;
 justify-content: center;
 background: rgba(255, 255, 255, 0.14);
 font-size: 1.25rem;
 flex: 0 0 auto;
 z-index: 1;
}

.tv2-wallet-balance__info {
 flex: 1 1 auto;
 min-width: 0;
 z-index: 1;
}

.tv2-wallet-balance__label {
 font-size: 0.8rem;
 font-weight: 500;
 letter-spacing: 0.04em;
 text-transform: uppercase;
 opacity: 0.85;
 margin-bottom: 0.2rem !important;
}

.tv2-wallet-balance__amount {
 font-size: clamp(1.45rem, 3vw, 1.85rem);
 font-weight: 500;
 letter-spacing: -0.02em;
}

.tv2-wallet-balance__refresh {
 z-index: 1;
 display: inline-flex;
 align-items: center;
 gap: 0.4rem;
 background: rgba(255, 255, 255, 0.16) !important;
 color: var(--theme-white) !important;
 border: 1px solid rgba(255, 255, 255, 0.28) !important;
 border-radius: var(--theme-radius-pill) !important;
 font-weight: 500 !important;
 font-size: 0.85rem !important;
 padding: 0.45rem 0.95rem !important;
}

.tv2-wallet-balance__refresh:hover, .tv2-wallet-balance__refresh:focus-visible {
 background: rgba(255, 255, 255, 0.24) !important;
 color: var(--theme-white) !important;
}

.tv2-wallet-balance__refresh:disabled {
 opacity: 0.75;
}

.tv2-wallet-list {
 background: linear-gradient(160deg, var(--theme-white) 0%, #f6faf3 100%);
 border: 1px solid rgba(47, 158, 68, 0.14);
 border-radius: var(--theme-radius-lg);
 box-shadow: var(--theme-shadow);
 overflow: hidden;
}

.tv2-wallet-list__head {
 display: flex;
 align-items: center;
 justify-content: space-between;
 gap: 0.75rem;
 padding: 0.95rem 1.15rem;
 border-bottom: 1px solid rgba(47, 158, 68, 0.12);
 background: linear-gradient(90deg, rgba(47, 158, 68, 0.08), transparent 70%);
}

.tv2-wallet-list__title {
 margin: 0;
 font-size: 1rem;
 font-weight: 500;
 color: var(--theme-brand-deep);
}

.tv2-wallet-list__count {
 font-size: 0.78rem;
 font-weight: 500;
 color: var(--theme-ink-muted);
 background: rgba(47, 158, 68, 0.1);
 border-radius: 999px;
 padding: 0.2rem 0.65rem;
}

.tv2-wallet-list__items {
 display: flex;
 flex-direction: column;
}

.tv2-wallet-tx {
 display: grid;
 grid-template-columns: 44px minmax(0, 1fr);
 gap: 0.85rem;
 padding: 1rem 1.15rem;
 border-bottom: 1px solid rgba(47, 158, 68, 0.08);
 transition: background var(--theme-transition);
}

.tv2-wallet-tx:last-child {
 border-bottom: none;
}

.tv2-wallet-tx:hover {
 background: rgba(47, 158, 68, 0.04);
}

.tv2-wallet-tx__icon {
 width: 44px;
 height: 44px;
 border-radius: 50%;
 display: inline-flex;
 align-items: center;
 justify-content: center;
 font-size: 0.95rem;
 flex: 0 0 auto;
}

.tv2-wallet-tx.is-credit .tv2-wallet-tx__icon {
 background: rgba(47, 158, 68, 0.14);
 color: var(--theme-brand-deep);
}

.tv2-wallet-tx.is-debit .tv2-wallet-tx__icon {
 background: rgba(192, 57, 43, 0.12);
 color: #c0392b;
}

.tv2-wallet-tx__top {
 display: flex;
 align-items: flex-start;
 justify-content: space-between;
 gap: 0.75rem;
 margin-bottom: 0.35rem;
}

.tv2-wallet-tx__name {
 margin: 0;
 font-size: 0.98rem;
 font-weight: 500;
 color: var(--theme-ink);
 line-height: 1.35;
 min-width: 0;
}

.tv2-wallet-tx__amount {
 flex: 0 0 auto;
 font-size: 1.05rem;
 font-weight: 500;
 letter-spacing: -0.01em;
}

.tv2-wallet-tx.is-credit .tv2-wallet-tx__amount {
 color: var(--theme-brand-deep);
}

.tv2-wallet-tx.is-debit .tv2-wallet-tx__amount {
 color: #c0392b;
}

.tv2-wallet-tx__meta {
 display: flex;
 flex-wrap: wrap;
 align-items: center;
 gap: 0.45rem 0.7rem;
 margin-bottom: 0.35rem;
}

.tv2-wallet-tx__badge {
 display: inline-flex;
 align-items: center;
 border-radius: 999px;
 padding: 0.15rem 0.55rem;
 font-size: 0.7rem;
 font-weight: 500;
 letter-spacing: 0.03em;
 text-transform: uppercase;
}

.tv2-wallet-tx.is-credit .tv2-wallet-tx__badge {
 background: rgba(47, 158, 68, 0.14);
 color: var(--theme-brand-deep);
}

.tv2-wallet-tx.is-debit .tv2-wallet-tx__badge {
 background: rgba(192, 57, 43, 0.1);
 color: #c0392b;
}

.tv2-wallet-tx__date {
 font-size: 0.8rem;
 color: var(--theme-ink-muted);
 font-weight: 500;
}

.tv2-wallet-tx__detail {
 margin: 0;
 font-size: 0.88rem;
 color: var(--theme-ink-muted);
 line-height: 1.5;
}

.tv2-wallet-list__pagination {
 display: flex;
 justify-content: center;
 padding: 0.85rem 1rem 1.1rem;
 border-top: 1px solid rgba(47, 158, 68, 0.1);
}

.tv2-wallet-empty {
 text-align: center;
 padding: 2.5rem 1.25rem;
}

.tv2-wallet-empty__icon {
 width: 58px;
 height: 58px;
 margin: 0 auto 0.9rem;
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 background: rgba(47, 158, 68, 0.12);
 color: var(--theme-brand);
 font-size: 1.25rem;
}

.tv2-wallet-empty__title {
 margin: 0 0 0.3rem;
 font-size: 1.1rem;
 font-weight: 500;
 color: var(--theme-brand-deep);
}

.tv2-wallet-empty__text {
 color: var(--theme-ink-muted);
}

@media (max-width: 575.98px) {
 .tv2-wallet-balance__refresh {
 width: 100%;
 justify-content: center;
 }

 .tv2-wallet-tx {
 padding: 0.95rem 1rem;
 }

 .tv2-wallet-tx__amount {
 font-size: 0.98rem;
 }

}

/* ==========================================================================
 Dashboard Ã¢â‚¬â€ Referrals
 ========================================================================== */

.tv2-referral {
 display: flex;
 flex-direction: column;
 gap: 1rem;
}

.tv2-referral-code {
 display: flex;
 align-items: center;
 justify-content: space-between;
 gap: 1rem;
 flex-wrap: wrap;
 padding: 1.15rem 1.25rem;
 border-radius: var(--theme-radius-lg);
 background: var(--theme-grad-deep, linear-gradient(135deg, #1f3d12 0%, #2f6b22 55%, var(--theme-brand) 100%));
 color: var(--theme-white);
 box-shadow: var(--theme-shadow-lg);
 position: relative;
 overflow: hidden;
}

.tv2-referral-code::before {
 content: '';
 position: absolute;
 width: 160px;
 height: 160px;
 border-radius: 50%;
 background: rgba(255, 255, 255, 0.08);
 top: -60px;
 right: -20px;
 pointer-events: none;
}

.tv2-referral-code__info {
 position: relative;
 z-index: 1;
 min-width: 0;
}

.tv2-referral-code__label {
 font-size: 0.78rem;
 font-weight: 500;
 letter-spacing: 0.04em;
 text-transform: uppercase;
 opacity: 0.85;
 margin-bottom: 0.25rem !important;
}

.tv2-referral-code__value {
 font-size: clamp(1.35rem, 3vw, 1.7rem);
 font-weight: 500;
 letter-spacing: 0.08em;
 word-break: break-all;
}

.tv2-referral-code__copy {
 position: relative;
 z-index: 1;
 display: inline-flex;
 align-items: center;
 gap: 0.4rem;
 background: rgba(255, 255, 255, 0.16) !important;
 color: var(--theme-white) !important;
 border: 1px solid rgba(255, 255, 255, 0.28) !important;
 border-radius: var(--theme-radius-pill) !important;
 font-weight: 500 !important;
 font-size: 0.85rem !important;
 padding: 0.45rem 0.95rem !important;
}

.tv2-referral-code__copy:hover, .tv2-referral-code__copy.is-copied {
 background: rgba(255, 255, 255, 0.28) !important;
 color: var(--theme-white) !important;
}

.tv2-referral-list {
 background: linear-gradient(160deg, var(--theme-white) 0%, #f6faf3 100%);
 border: 1px solid rgba(47, 158, 68, 0.14);
 border-radius: var(--theme-radius-lg);
 box-shadow: var(--theme-shadow);
 overflow: hidden;
}

.tv2-referral-list__head {
 display: flex;
 align-items: center;
 justify-content: space-between;
 gap: 0.75rem;
 padding: 0.95rem 1.15rem;
 border-bottom: 1px solid rgba(47, 158, 68, 0.12);
 background: linear-gradient(90deg, rgba(47, 158, 68, 0.08), transparent 70%);
}

.tv2-referral-list__title {
 margin: 0;
 font-size: 1rem;
 font-weight: 500;
 color: var(--theme-brand-deep);
}

.tv2-referral-list__count {
 font-size: 0.78rem;
 font-weight: 500;
 color: var(--theme-ink-muted);
 background: rgba(47, 158, 68, 0.1);
 border-radius: 999px;
 padding: 0.2rem 0.65rem;
}

.tv2-referral-list__items {
 display: flex;
 flex-direction: column;
}

.tv2-referral-item {
 display: grid;
 grid-template-columns: 44px minmax(0, 1fr) auto;
 gap: 0.85rem;
 align-items: center;
 padding: 1rem 1.15rem;
 border-bottom: 1px solid rgba(47, 158, 68, 0.08);
 transition: background var(--theme-transition);
}

.tv2-referral-item:last-child {
 border-bottom: none;
}

.tv2-referral-item:hover {
 background: rgba(47, 158, 68, 0.04);
}

.tv2-referral-item__avatar {
 width: 44px;
 height: 44px;
 border-radius: 50%;
 display: inline-flex;
 align-items: center;
 justify-content: center;
 background: var(--theme-grad-brand);
 color: var(--theme-white);
 font-weight: 500;
 font-size: 0.95rem;
}

.tv2-referral-item__top {
 display: flex;
 align-items: flex-start;
 justify-content: space-between;
 gap: 0.75rem;
}

.tv2-referral-item__name {
 margin: 0 0 0.2rem;
 font-size: 0.98rem;
 font-weight: 500;
 color: var(--theme-ink);
 line-height: 1.35;
}

.tv2-referral-item__date {
 font-size: 0.8rem;
 color: var(--theme-ink-muted);
 font-weight: 500;
}

.tv2-referral-item__amount {
 flex: 0 0 auto;
 font-size: 1.05rem;
 font-weight: 500;
 color: var(--theme-brand-deep);
 letter-spacing: -0.01em;
}

.tv2-referral-item__index {
 font-size: 0.75rem;
 font-weight: 500;
 color: var(--theme-ink-muted);
 opacity: 0.7;
}

.tv2-referral-empty {
 text-align: center;
 padding: 2.5rem 1.25rem;
}

.tv2-referral-empty__icon {
 width: 58px;
 height: 58px;
 margin: 0 auto 0.9rem;
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 background: rgba(47, 158, 68, 0.12);
 color: var(--theme-brand);
 font-size: 1.25rem;
}

.tv2-referral-empty__title {
 margin: 0 0 0.3rem;
 font-size: 1.1rem;
 font-weight: 500;
 color: var(--theme-brand-deep);
}

.tv2-referral-empty__text {
 color: var(--theme-ink-muted);
}

@media (max-width: 575.98px) {
 .tv2-referral-code__copy {
 width: 100%;
 justify-content: center;
 }

 .tv2-referral-item {
 grid-template-columns: 40px minmax(0, 1fr);
 padding: 0.95rem 1rem;
 }

 .tv2-referral-item__index {
 display: none;
 }

}

/* ==========================================================================
 Dashboard Ã¢â‚¬â€ Notifications
 ========================================================================== */

.tv2-notify {
 display: flex;
 flex-direction: column;
 gap: 1rem;
}

.tv2-notify__header {
 display: flex;
 align-items: center;
 justify-content: space-between;
 gap: 0.75rem;
 flex-wrap: wrap;
}

.tv2-notify__count {
 font-size: 0.78rem;
 font-weight: 500;
 color: var(--theme-ink-muted);
 background: rgba(47, 158, 68, 0.1);
 border-radius: 999px;
 padding: 0.2rem 0.65rem;
}

.tv2-notify-list {
 background: linear-gradient(160deg, var(--theme-white) 0%, #f6faf3 100%);
 border: 1px solid rgba(47, 158, 68, 0.14);
 border-radius: var(--theme-radius-lg);
 box-shadow: var(--theme-shadow);
 overflow: hidden;
}

.tv2-notify-item {
 display: grid;
 grid-template-columns: 44px minmax(0, 1fr);
 gap: 0.9rem;
 padding: 1.05rem 1.15rem;
 border-bottom: 1px solid rgba(47, 158, 68, 0.08);
 transition: background var(--theme-transition);
}

.tv2-notify-item:last-child {
 border-bottom: none;
}

.tv2-notify-item:hover {
 background: rgba(47, 158, 68, 0.04);
}

.tv2-notify-item__icon {
 width: 44px;
 height: 44px;
 border-radius: 50%;
 display: inline-flex;
 align-items: center;
 justify-content: center;
 flex: 0 0 auto;
 background: rgba(47, 158, 68, 0.12);
 color: var(--theme-brand-deep);
 font-size: 0.95rem;
}

.tv2-notify-item--auction .tv2-notify-item__icon {
 background: rgba(47, 158, 68, 0.16);
 color: var(--theme-brand-deep);
}

.tv2-notify-item--remedy .tv2-notify-item__icon {
 background: rgba(46, 125, 50, 0.12);
 color: #2e7d32;
}

.tv2-notify-item--order .tv2-notify-item__icon {
 background: rgba(25, 118, 210, 0.12);
 color: #1976d2;
}

.tv2-notify-item--wallet .tv2-notify-item__icon {
 background: rgba(245, 158, 11, 0.14);
 color: #b45309;
}

.tv2-notify-item__top {
 display: flex;
 align-items: flex-start;
 justify-content: space-between;
 gap: 0.75rem;
 margin-bottom: 0.3rem;
}

.tv2-notify-item__title {
 margin: 0;
 font-size: 0.98rem;
 font-weight: 500;
 color: var(--theme-ink);
 line-height: 1.35;
}

.tv2-notify-item__date {
 flex: 0 0 auto;
 font-size: 0.78rem;
 font-weight: 500;
 color: var(--theme-ink-muted);
 white-space: nowrap;
}

.tv2-notify-item__message {
 margin: 0;
 font-size: 0.9rem;
 color: var(--theme-ink-muted);
 line-height: 1.55;
}

.tv2-notify-item__message p:last-child {
 margin-bottom: 0;
}

.tv2-notify-empty {
 text-align: center;
 background: linear-gradient(160deg, var(--theme-white) 0%, #f6faf3 100%);
 border: 1px dashed rgba(47, 158, 68, 0.28);
 border-radius: var(--theme-radius-lg);
 padding: 2.75rem 1.5rem;
}

.tv2-notify-empty__icon {
 width: 64px;
 height: 64px;
 margin: 0 auto 1rem;
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 background: rgba(47, 158, 68, 0.12);
 color: var(--theme-brand);
 font-size: 1.4rem;
}

.tv2-notify-empty__title {
 margin: 0 0 0.35rem;
 font-size: 1.2rem;
 font-weight: 500;
 color: var(--theme-brand-deep);
}

.tv2-notify-empty__text {
 color: var(--theme-ink-muted);
}

@media (max-width: 575.98px) {
 .tv2-notify-item {
 padding: 0.95rem 1rem;
 }

 .tv2-notify-item__top {
 flex-direction: column;
 gap: 0.25rem;
 }

}

/* ==========================================================================
 Dashboard Ã¢â‚¬â€ My Profile
 ========================================================================== */

.tv2-profile {
 display: flex;
 flex-direction: column;
 gap: 1rem;
}

.tv2-profile__sub {
 margin-top: 0.3rem;
 color: var(--theme-ink-muted);
 font-size: 0.9rem;
}

.tv2-profile-panel {
 background: linear-gradient(160deg, var(--theme-white) 0%, #f6faf3 100%);
 border: 1px solid rgba(47, 158, 68, 0.14);
 border-radius: var(--theme-radius-lg);
 box-shadow: var(--theme-shadow);
 padding: 1.25rem 1.25rem 1.4rem;
}

.tv2-profile-avatar {
 display: flex;
 align-items: center;
 gap: 1rem;
 flex-wrap: wrap;
 margin-bottom: 1.35rem;
 padding-bottom: 1.15rem;
 border-bottom: 1px solid rgba(47, 158, 68, 0.12);
}

.tv2-profile-avatar__preview {
 flex: 0 0 auto;
}

.tv2-profile-avatar__img {
 width: 88px;
 height: 88px;
 object-fit: cover;
 border-radius: 50%;
 border: 3px solid var(--theme-white);
 box-shadow: 0 8px 20px rgba(47, 158, 68, 0.2);
 background: #e8f3e4;
}

.tv2-profile-avatar__name {
 margin: 0 0 0.2rem;
 font-size: 1.15rem;
 font-weight: 500;
 color: var(--theme-brand-deep);
}

.tv2-profile-avatar__hint {
 color: var(--theme-ink-muted);
 font-size: 0.85rem;
}

.tv2-profile-avatar__btn {
 background: rgba(47, 158, 68, 0.12) !important;
 color: var(--theme-brand-deep) !important;
 border: 1px solid rgba(47, 158, 68, 0.25) !important;
 border-radius: var(--theme-radius-pill) !important;
 font-weight: 500 !important;
 font-size: 0.85rem !important;
 padding: 0.4rem 0.95rem !important;
 cursor: pointer;
}

.tv2-profile-form .form-label {
 font-weight: 500;
 color: var(--theme-brand-deep);
 font-size: 0.85rem;
}

.tv2-profile-form .form-control {
 min-height: 46px;
 border-radius: var(--theme-radius-sm);
 border-color: var(--theme-border);
}

.tv2-profile-form .form-control:focus {
 border-color: var(--theme-brand);
 box-shadow: 0 0 0 4px rgba(47, 158, 68, 0.14);
}

.tv2-profile-form .form-control[readonly] {
 background: rgba(47, 158, 68, 0.06);
 color: var(--theme-brand-deep);
 font-weight: 500;
 letter-spacing: 0.04em;
}

.tv2-profile-code {
 display: flex;
 gap: 0.5rem;
}

.tv2-profile-code .form-control {
 flex: 1 1 auto;
}

.tv2-profile-code__copy {
 flex: 0 0 auto;
 display: inline-flex;
 align-items: center;
 gap: 0.35rem;
 white-space: nowrap;
 background: rgba(47, 158, 68, 0.12) !important;
 color: var(--theme-brand-deep) !important;
 border: 1px solid rgba(47, 158, 68, 0.25) !important;
 border-radius: var(--theme-radius-sm) !important;
 font-weight: 500 !important;
 font-size: 0.85rem !important;
 padding: 0.45rem 0.85rem !important;
}

.tv2-profile-code__copy.is-copied, .tv2-profile-code__copy:hover {
 background: rgba(47, 158, 68, 0.2) !important;
}

.tv2-profile-submit {
 border-radius: var(--theme-radius-pill) !important;
 padding: 0.65rem 1.5rem !important;
 font-weight: 500 !important;
}

@media (max-width: 575.98px) {
 .tv2-profile-panel {
 padding: 1rem;
 }

 .tv2-profile-code {
 flex-direction: column;
 }

 .tv2-profile-submit {
 width: 100%;
 }

}

/* ==========================================================================
 Dashboard Ã¢â‚¬â€ Change Password
 ========================================================================== */

.tv2-password {
 display: flex;
 flex-direction: column;
 gap: 1rem;
}

.tv2-password__sub {
 margin-top: 0.3rem;
 color: var(--theme-ink-muted);
 font-size: 0.9rem;
}

.tv2-password-panel {
 background: linear-gradient(160deg, var(--theme-white) 0%, #f6faf3 100%);
 border: 1px solid rgba(47, 158, 68, 0.14);
 border-radius: var(--theme-radius-lg);
 box-shadow: var(--theme-shadow);
 padding: 1.35rem 1.35rem 1.5rem;
 max-width: 560px;
}

.tv2-password-form {
 display: flex;
 flex-direction: column;
 gap: 1rem;
}

.tv2-password-field .form-label {
 font-weight: 500;
 color: var(--theme-brand-deep);
 font-size: 0.85rem;
 margin-bottom: 0.4rem;
}

.tv2-password-input {
 display: flex;
 align-items: stretch;
 border: 1.5px solid var(--theme-border);
 border-radius: var(--theme-radius-sm);
 background: var(--theme-white);
 overflow: hidden;
 transition: border-color var(--theme-transition), box-shadow var(--theme-transition);
}

.tv2-password-input:focus-within {
 border-color: var(--theme-brand);
 box-shadow: 0 0 0 4px rgba(47, 158, 68, 0.14);
}

.tv2-password-input__icon {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 width: 46px;
 color: var(--theme-brand);
 background: rgba(47, 158, 68, 0.08);
 flex: 0 0 auto;
}

.tv2-password-input .form-control {
 border: none !important;
 box-shadow: none !important;
 min-height: 46px;
 border-radius: 0 !important;
 background: transparent;
}

.tv2-password-toggle {
 width: 46px;
 border: none;
 background: transparent;
 color: var(--theme-ink-muted);
 display: inline-flex;
 align-items: center;
 justify-content: center;
 flex: 0 0 auto;
 cursor: pointer;
}

.tv2-password-toggle:hover {
 color: var(--theme-brand-deep);
 background: rgba(47, 158, 68, 0.06);
}

.tv2-password-actions {
 padding-top: 0.35rem;
}

.tv2-password-submit {
 border-radius: var(--theme-radius-pill) !important;
 padding: 0.65rem 1.5rem !important;
 font-weight: 500 !important;
}

@media (max-width: 575.98px) {
 .tv2-password-panel {
 padding: 1rem;
 max-width: none;
 }

 .tv2-password-submit {
 width: 100%;
 }

}

/* ==========================================================================
 Dashboard Ã¢â‚¬â€ Home overview
 ========================================================================== */

.tv2-dash-home {
 display: flex;
 flex-direction: column;
 gap: 1rem;
}

.tv2-dash-stats {
 display: grid;
 grid-template-columns: repeat(4, minmax(0, 1fr));
 gap: 0.85rem;
}

.tv2-dash-stat {
 display: flex;
 align-items: center;
 gap: 0.75rem;
 padding: 0.95rem 1rem;
 background: linear-gradient(160deg, var(--theme-white) 0%, #f6faf3 100%);
 border: 1px solid rgba(47, 158, 68, 0.14);
 border-radius: var(--theme-radius-lg);
 box-shadow: var(--theme-shadow);
}

.tv2-dash-stat__icon {
 width: 42px;
 height: 42px;
 border-radius: 50%;
 display: inline-flex;
 align-items: center;
 justify-content: center;
 flex: 0 0 auto;
 background: var(--theme-grad-brand);
 color: var(--theme-white);
 font-size: 0.9rem;
}

.tv2-dash-stat__value {
 font-size: 1.25rem;
 font-weight: 500;
 color: var(--theme-brand-deep);
 line-height: 1.2;
}

.tv2-dash-stat__label {
 font-size: 0.78rem;
 font-weight: 500;
 letter-spacing: 0.03em;
 text-transform: uppercase;
 color: var(--theme-ink-muted);
}

.tv2-dash-orders {
 background: linear-gradient(160deg, var(--theme-white) 0%, #f6faf3 100%);
 border: 1px solid rgba(47, 158, 68, 0.14);
 border-radius: var(--theme-radius-lg);
 box-shadow: var(--theme-shadow);
 overflow: hidden;
}

.tv2-dash-orders__head {
 display: flex;
 align-items: center;
 justify-content: space-between;
 gap: 0.75rem;
 padding: 0.95rem 1.15rem;
 border-bottom: 1px solid rgba(47, 158, 68, 0.12);
 background: linear-gradient(90deg, rgba(47, 158, 68, 0.08), transparent 70%);
}

.tv2-dash-orders__title {
 margin: 0;
 font-size: 1rem;
 font-weight: 500;
 color: var(--theme-brand-deep);
}

.tv2-dash-orders__link {
 font-size: 0.85rem;
 font-weight: 500;
 color: var(--theme-brand) !important;
 text-decoration: none !important;
}

.tv2-dash-orders__link:hover {
 color: var(--theme-brand-deep) !important;
}

.tv2-dash-orders__items {
 display: flex;
 flex-direction: column;
}

.tv2-dash-order {
 display: flex;
 align-items: center;
 justify-content: space-between;
 gap: 1rem;
 padding: 1rem 1.15rem;
 border-bottom: 1px solid rgba(47, 158, 68, 0.08);
 transition: background var(--theme-transition);
}

.tv2-dash-order:last-child {
 border-bottom: none;
}

.tv2-dash-order:hover {
 background: rgba(47, 158, 68, 0.04);
}

.tv2-dash-order__main {
 min-width: 0;
 flex: 1 1 auto;
}

.tv2-dash-order__id {
 display: inline-flex;
 flex-wrap: wrap;
 align-items: baseline;
 gap: 0.3rem 0.45rem;
 text-decoration: none !important;
 color: var(--theme-brand-deep) !important;
}

.tv2-dash-order__id-label {
 font-size: 0.7rem;
 font-weight: 500;
 letter-spacing: 0.04em;
 text-transform: uppercase;
 color: var(--theme-ink-muted);
}

.tv2-dash-order__id-value {
 font-size: 0.95rem;
 font-weight: 500;
 word-break: break-all;
}

.tv2-dash-order__date {
 display: block;
 margin-top: 0.25rem;
 font-size: 0.8rem;
 color: var(--theme-ink-muted);
}

.tv2-dash-order__aside {
 display: flex;
 align-items: center;
 gap: 0.75rem;
 flex: 0 0 auto;
}

.tv2-dash-order__amount {
 font-size: 1.05rem;
 font-weight: 500;
 color: var(--theme-brand-deep);
}

.tv2-dash-order__btn {
 border-radius: var(--theme-radius-pill) !important;
 background: rgba(47, 158, 68, 0.12) !important;
 color: var(--theme-brand-deep) !important;
 border: 1px solid rgba(47, 158, 68, 0.25) !important;
 font-weight: 500 !important;
 font-size: 0.8rem !important;
 padding: 0.35rem 0.85rem !important;
}

.tv2-dash-orders__empty {
 text-align: center;
 padding: 2.25rem 1.25rem;
}

.tv2-dash-orders__empty-icon {
 width: 56px;
 height: 56px;
 margin: 0 auto 0.85rem;
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 background: rgba(47, 158, 68, 0.12);
 color: var(--theme-brand);
 font-size: 1.2rem;
}

.tv2-dash-orders__empty-title {
 margin: 0 0 0.25rem;
 font-size: 1.05rem;
 font-weight: 500;
 color: var(--theme-brand-deep);
}

.tv2-dash-orders__empty-text {
 color: var(--theme-ink-muted);
 font-size: 0.9rem;
}

@media (max-width: 991.98px) {
 .tv2-dash-stats {
 grid-template-columns: repeat(2, minmax(0, 1fr));
 }

}

@media (max-width: 575.98px) {
 .tv2-dash-order {
 flex-direction: column;
 align-items: flex-start;
 gap: 0.75rem;
 }

 .tv2-dash-order__aside {
 width: 100%;
 justify-content: space-between;
 }

}

.swal-footer {
 text-align: center !important;
}

/* ==========================================================================
 Utilities â€” merged from custom.css (functional storefront helpers)
 ========================================================================== */

.cart_counter:empty, .notification_counter:empty {
 display: none !important;
}

.rm_like_product, .like_product {
 cursor: pointer !important;
}

.like_product i:hover, .rm_like_product i:hover {
 transform: scale(1.2);
}

.cart_counter, .notification_counter {
 transition: 1s;
}

.transform-100 {
 transform: translateY(-1000px) !important;
}

.sub-one, .add-one {
 transition: 1s;
}

span.active {
 color: var(--theme-brand) !important;
}

.empty-cart-div {
 margin: 0 auto;
 text-align: center;
 font-family: "Maison Neue";
 font-weight: 300;
}

.empty-cart-div svg #oval, .empty-cart-div svg #plus, .empty-cart-div svg #diamond, .empty-cart-div svg #bubble-rounded {
 animation: plopp 4s ease-out infinite;
}

.empty-cart-div svg #oval:nth-child(1), .empty-cart-div svg #plus:nth-child(1), .empty-cart-div svg #diamond:nth-child(1), .empty-cart-div svg #bubble-rounded:nth-child(1) {
 animation-delay: -240ms;
}

.empty-cart-div svg #oval:nth-child(2), .empty-cart-div svg #plus:nth-child(2), .empty-cart-div svg #diamond:nth-child(2), .empty-cart-div svg #bubble-rounded:nth-child(2) {
 animation-delay: -480ms;
}

.empty-cart-div svg #oval:nth-child(3), .empty-cart-div svg #plus:nth-child(3), .empty-cart-div svg #diamond:nth-child(3), .empty-cart-div svg #bubble-rounded:nth-child(3) {
 animation-delay: -720ms;
}

.empty-cart-div svg #oval:nth-child(4), .empty-cart-div svg #plus:nth-child(4), .empty-cart-div svg #diamond:nth-child(4), .empty-cart-div svg #bubble-rounded:nth-child(4) {
 animation-delay: -960ms;
}

.empty-cart-div svg #oval:nth-child(5), .empty-cart-div svg #plus:nth-child(5), .empty-cart-div svg #diamond:nth-child(5), .empty-cart-div svg #bubble-rounded:nth-child(5) {
 animation-delay: -1200ms;
}

.empty-cart-div svg #oval:nth-child(6), .empty-cart-div svg #plus:nth-child(6), .empty-cart-div svg #diamond:nth-child(6), .empty-cart-div svg #bubble-rounded:nth-child(6) {
 animation-delay: -1440ms;
}

.empty-cart-div svg #oval:nth-child(7), .empty-cart-div svg #plus:nth-child(7), .empty-cart-div svg #diamond:nth-child(7), .empty-cart-div svg #bubble-rounded:nth-child(7) {
 animation-delay: -1680ms;
}

.empty-cart-div svg #oval:nth-child(8), .empty-cart-div svg #plus:nth-child(8), .empty-cart-div svg #diamond:nth-child(8), .empty-cart-div svg #bubble-rounded:nth-child(8) {
 animation-delay: -1920ms;
}

.empty-cart-div svg #oval:nth-child(9), .empty-cart-div svg #plus:nth-child(9), .empty-cart-div svg #diamond:nth-child(9), .empty-cart-div svg #bubble-rounded:nth-child(9) {
 animation-delay: -2160ms;
}

.empty-cart-div svg #oval:nth-child(10), .empty-cart-div svg #plus:nth-child(10), .empty-cart-div svg #diamond:nth-child(10), .empty-cart-div svg #bubble-rounded:nth-child(10) {
 animation-delay: -2400ms;
}

.empty-cart-div svg #oval:nth-child(11), .empty-cart-div svg #plus:nth-child(11), .empty-cart-div svg #diamond:nth-child(11), .empty-cart-div svg #bubble-rounded:nth-child(11) {
 animation-delay: -2640ms;
}

.empty-cart-div svg #oval:nth-child(12), .empty-cart-div svg #plus:nth-child(12), .empty-cart-div svg #diamond:nth-child(12), .empty-cart-div svg #bubble-rounded:nth-child(12) {
 animation-delay: -2880ms;
}

.empty-cart-div svg #oval:nth-child(13), .empty-cart-div svg #plus:nth-child(13), .empty-cart-div svg #diamond:nth-child(13), .empty-cart-div svg #bubble-rounded:nth-child(13) {
 animation-delay: -3120ms;
}

.empty-cart-div svg #oval:nth-child(14), .empty-cart-div svg #plus:nth-child(14), .empty-cart-div svg #diamond:nth-child(14), .empty-cart-div svg #bubble-rounded:nth-child(14) {
 animation-delay: -3360ms;
}

.empty-cart-div svg #oval:nth-child(15), .empty-cart-div svg #plus:nth-child(15), .empty-cart-div svg #diamond:nth-child(15), .empty-cart-div svg #bubble-rounded:nth-child(15) {
 animation-delay: -3600ms;
}

.empty-cart-div svg #oval:nth-child(16), .empty-cart-div svg #plus:nth-child(16), .empty-cart-div svg #diamond:nth-child(16), .empty-cart-div svg #bubble-rounded:nth-child(16) {
 animation-delay: -3840ms;
}

.empty-cart-div svg #bg-line:nth-child(2) {
 fill-opacity: 0.3;
}

.empty-cart-div svg #bg-line:nth-child(3) {
 fill-opacity: 0.4;
}

@-moz-keyframes plopp {
 0% {
 transform: translate(0, 0);
 opacity: 1;
 }

 100% {
 transform: translate(0, -10px);
 opacity: 0;
 }

}

@-webkit-keyframes plopp {
 0% {
 transform: translate(0, 0);
 opacity: 1;
 }

 100% {
 transform: translate(0, -10px);
 opacity: 0;
 }

}

@-o-keyframes plopp {
 0% {
 transform: translate(0, 0);
 opacity: 1;
 }

 100% {
 transform: translate(0, -10px);
 opacity: 0;
 }

}

@keyframes plopp {
 0% {
 transform: translate(0, 0);
 opacity: 1;
 }

 100% {
 transform: translate(0, -10px);
 opacity: 0;
 }

}

.empty-cart-div .empty-cart-title {
 font-weight: 500;
 font-family: "Lexend Regular";
 text-transform: uppercase;
}

.empty-cart-div p {
 color: #666666;
 font-family: "Helvetica";
}

/* Loader overlay + spinner defined once near theme base (#loader / .loader) */

.cursor-pointer {
 cursor: pointer !important;
}

#thumb_carousel .owl-carousel .owl-item img {
 display: block;
 width: 100%;
}

.img-pro-detail.active {
 border: 2px solid var(--theme-brand) !important;
}

.img-pro-detail {
 object-fit: cover;
 padding: 0px;
}

.group_attribute_div .form-check-input {
 opacity: 0;
 position: absolute;
 top: 0;
 bottom: 0;
 left: 0;
 right: 0;
 width: 100%;
 height: 100%;
 z-index: 99999;
}

.no-combo {
 font-weight: 500;
 font-family: "Lexend Regular";
 background: #b30408;
 color: #fafafa !important;
 padding: 11px 9px;
 border-radius: 11px;
 margin: 0px;
}

.share-this {
 position: relative;
}

.share-this .need-share-button_button {
 position: absolute;
 left: 0;
 opacity: 0;
}

.share-this .need-share-button_dropdown {
 background: var(--theme-white);
 border: 1px solid #c1bebe;
}

.cart-class .btn-pro {
 color: white !important;
 background-color: var(--theme-brand) !important;
 font-size: 18px !important;
 font-weight: 500 !important;
 border-radius: 9px !important;
 text-align: center !important;
 padding: 7px 22px !important;
}

.product-attr {
 pointer-events: none !important;
}

.product-attr .btn-theme {
 font-family: "Lexend Regular";
}

.food-icon {
 position: absolute;
 top: 0;
 left: 0;
}

.food-icon i {
 color: #3b403a;
 padding: 1px 5px;
 border-radius: 50%;
 box-shadow: 1px 1px 3px 0px #1b1b1bab;
 border-top-right-radius: 0;
 border-top-left-radius: 0;
 border-bottom-left-radius: 0;
 font-size: 20px;
}

.cart-items .card {
 overflow: hidden;
}

.cart_page_quantity:focus-visible, .cart_quantity:focus-visible {
 outline: 1px solid rgb(197, 196, 196) !important;
 border-radius: 5px;
}

.payment-option {
 position: relative;
}

.payment-option .form-check {
 position: absolute;
 width: 100%;
 height: 100%;
 top: 0;
 left: 0;
 opacity: 0 !important;
 cursor: pointer;
}

.payment-option.active {
 border: 2px solid var(--theme-brand);
 box-shadow: 0px 0px 5px 0px var(--theme-brand);
}

.razorpay-btn {
 color: white;
 background: var(--theme-brand);
 padding: 7px 16px;
 margin: 5px;
}

.razorpay-btn:hover {
 background: #2b7515 !important;
 color: var(--theme-white) !important;
}

.head-pay {
 color: var(--theme-brand);
 text-transform: uppercase;
}

.bg-body-tertiary {
 --bs-bg-opacity: 1;
 --bs-tertiary-bg-rgb: 248, 249, 250;
 background-color: rgba(var(--bs-tertiary-bg-rgb),
 var(--bs-bg-opacity)) !important;
}

.input-group-text {
 padding: 0.675rem 0.75rem !important;
}

.h-230px {
 max-height: 230px !important;
}

.z-99 {
 z-index: 99 !important;
}

.is-hide {
 display: none;
}

/* ==========================================================================
 Home page — mobile fit (<=575 / <=412)
 ========================================================================== */

main {
 overflow-x: clip;
 max-width: 100%;
}

.tv2-home-section-head .shop-title {
 overflow-wrap: anywhere;
 word-break: break-word;
}

.tv2-home-section-head .shop-btn-lime {
 white-space: nowrap;
 flex-shrink: 0;
}

@media (max-width: 575.98px) {
 .shop-title {
 font-size: 1.2rem !important;
 line-height: 1.35 !important;
 }

 .shop-btn-lime {
 padding: 0.4rem 0.85rem !important;
 font-size: 0.85rem !important;
 border-radius: var(--theme-radius-pill) !important;
 }

 .btn-food {
 width: 100%;
 max-width: 100%;
 padding: 0.5rem 0.4rem !important;
 font-size: 0.75rem !important;
 line-height: 1.2 !important;
 white-space: nowrap;
 overflow: hidden;
 text-overflow: ellipsis;
 }

 .btn-food .faa-food {
 font-size: 0.75rem !important;
 }

 .shop-img-slide {
 height: 112px !important;
 width: 112px !important;
 max-width: calc(100% - 0.5rem) !important;
 margin: 0.35rem auto !important;
 }

 #Shop-Cat .m-3 {
 margin: 0.35rem auto !important;
 }

 .single-logo img {
 max-width: 112px;
 max-height: 112px;
 }

 #Shop-Cat .brand-carousel,
 .brand-carousel.owl-carousel {
 padding: 0 2rem;
 }

 .owl-carousel .owl-nav button.owl-prev,
 .owl-carousel .owl-nav button.owl-next,
 .brand-carousel .owl-prev,
 .brand-carousel .owl-next {
 width: 34px !important;
 height: 34px !important;
 }

 .owl-carousel .owl-nav button span,
 .brand-carousel .owl-prev span,
 .brand-carousel .owl-next span {
 font-size: 0.8rem !important;
 }

 .faa-order {
 display: none !important;
 }

 .cat-img-abs,
 .featured-img-abs {
 display: none !important;
 }

 .order-img {
 height: 78px !important;
 width: 78px !important;
 }

 .order-heading {
 font-size: 0.95rem !important;
 line-height: 1.35 !important;
 }

 .order-title {
 font-size: 1.35rem !important;
 line-height: 1.35 !important;
 }

 .padd-card-custom {
 padding-left: 6px !important;
 padding-right: 6px !important;
 }

 .card.box-shd {
 padding: 0.45rem !important;
 }

 .card-footer {
 padding-left: 0 !important;
 padding-right: 0 !important;
 }

 .tile-new-badge {
 font-size: 0.6rem;
 padding: 0.2rem 0.45rem;
 max-width: calc(100% - 2.5rem);
 white-space: nowrap;
 overflow: hidden;
 text-overflow: ellipsis;
 }

 .fastfood-img-google,
 .fastfood-img-app {
 height: 42px !important;
 width: auto !important;
 /* max-width: 46%; */
 padding: 0 !important;
 }

 .bg-fastfood,
 .fastfood-img {
 max-width: 100%;
 height: auto !important;
 }

 .about-img {
 max-width: 100%;
 height: auto !important;
 }

 main>section[id="about us"]>.container {
 padding: 1.25rem 1rem;
 }

 #Active-Auctions>.container {
 padding: 1rem 0.75rem 1.25rem;
 }

 .offer-img {
 height: auto !important;
 max-height: 120px;
 object-fit: cover;
 }

 .food-title {
 font-size: 0.8rem !important;
 line-height: 1.25 !important;
 }

 .price-discount {
 font-size: 0.95rem !important;
 line-height: 1.2 !important;
 }
}

@media (max-width: 412px) {
 .shop-title {
 font-size: 1.05rem !important;
 }

 .shop-btn-lime {
 padding: 0.35rem 0.7rem !important;
 font-size: 0.78rem !important;
 }

 .btn-food {
 padding: 0.42rem 0.25rem !important;
 font-size: 0.7rem !important;
 }

 .shop-img-slide {
 height: 96px !important;
 width: 96px !important;
 }

 .single-logo img {
 max-width: 96px;
 max-height: 96px;
 }

 #Shop-Cat .brand-carousel,
 .brand-carousel.owl-carousel {
 padding: 0 1.65rem;
 }

 .owl-carousel .owl-nav button.owl-prev,
 .owl-carousel .owl-nav button.owl-next,
 .brand-carousel .owl-prev,
 .brand-carousel .owl-next {
 width: 30px !important;
 height: 30px !important;
 }

 .padd-card-custom {
 padding-left: 4px !important;
 padding-right: 4px !important;
 }

 #Order-Process,
 .bg-lime-order {
 margin-left: 0.5rem;
 margin-right: 0.5rem;
 max-width: calc(100% - 1rem);
 padding-left: 0.25rem;
 padding-right: 0.25rem;
 }

 .video-ads-carousel-wrap {
 padding: 0 1.75rem;
 }

 #videoAdsCarousel .video-ads-control {
 width: 32px;
 height: 32px;
 }

 .sm-header .location-btn {
 max-width: min(100%, 100vw - 1.5rem);
 overflow: hidden;
 text-overflow: ellipsis;
 white-space: nowrap;
 font-size: 0.78rem !important;
 padding-left: 0.45rem !important;
 padding-right: 0.45rem !important;
 display: inline-flex;
 align-items: center;
 gap: 0.25rem;
 }

 .sm-header .location-btn #address2 {
 overflow: hidden;
 text-overflow: ellipsis;
 white-space: nowrap;
 min-width: 0;
 max-width: 58vw;
 display: inline-block;
 vertical-align: bottom;
 }

 .sm-header .address-div {
 max-width: 100%;
 overflow: hidden;
 padding-inline: 0.5rem;
 }

 .popover1 {
 max-width: calc(100vw - 1.5rem) !important;
 left: 50% !important;
 transform: translateX(-50%);
 box-sizing: border-box;
 }

 .popover1 .applyBtn {
 width: 100%;
 padding: 0.45rem 0.35rem !important;
 font-size: 0.78rem !important;
 white-space: nowrap;
 }

 .featured-title {
 font-size: 0.9rem !important;
 }

 .featured-content {
 font-size: 0.78rem !important;
 line-height: 1.35 !important;
 }
}


/* ==========================================================================
 Dashboard � My Auctions (participations + bids)
 ========================================================================== */

.tv2-my-auctions {
 background: rgba(255, 255, 255, 0.78);
 border: 1px solid rgba(47, 158, 68, 0.12);
 border-radius: var(--theme-radius-lg);
 box-shadow: var(--theme-shadow);
 padding: 1.25rem 1.15rem 1.5rem;
}

.tv2-my-auctions__header {
 display: flex;
 align-items: center;
 justify-content: space-between;
 gap: 0.75rem;
 margin-bottom: 1.15rem;
 flex-wrap: wrap;
}

.tv2-my-auctions__count {
 font-size: 0.85rem;
 color: var(--theme-ink-muted);
 background: var(--theme-brand-soft);
 border-radius: var(--theme-radius-pill);
 padding: 0.25rem 0.7rem;
}

.tv2-my-auctions__empty {
 text-align: center;
 padding: 2.5rem 1rem;
}

.tv2-my-auctions__empty-icon {
 width: 64px;
 height: 64px;
 margin: 0 auto 1rem;
 border-radius: 50%;
 display: grid;
 place-items: center;
 background: var(--theme-brand-soft);
 color: var(--theme-brand);
 font-size: 1.4rem;
}

.tv2-my-auctions__empty-title {
 font-size: 1.15rem;
 color: var(--theme-brand-deep);
 margin-bottom: 0.4rem;
}

.tv2-my-auctions__empty-text {
 color: var(--theme-ink-muted);
 max-width: 28rem;
 margin-inline: auto;
}

.tv2-my-auctions__list {
 display: flex;
 flex-direction: column;
 gap: 1rem;
}

.tv2-my-auction-card {
 display: grid;
 grid-template-columns: 112px 1fr;
 gap: 1rem;
 padding: 0.9rem;
 border: 1px solid rgba(47, 158, 68, 0.14);
 border-radius: var(--theme-radius);
 background: linear-gradient(180deg, var(--theme-white) 0%, #fbfef9 100%);
}

.tv2-my-auction-card__media {
 border-radius: calc(var(--theme-radius) - 2px);
 overflow: hidden;
 background: #eef3ea;
 aspect-ratio: 1;
}

.tv2-my-auction-card__media img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 display: block;
}

.tv2-my-auction-card__top {
 display: flex;
 justify-content: space-between;
 gap: 0.75rem;
 align-items: flex-start;
 flex-wrap: wrap;
}

.tv2-my-auction-card__title {
 font-size: 1.05rem;
 margin: 0 0 0.45rem;
 line-height: 1.35;
}

.tv2-my-auction-card__title a {
 color: var(--theme-brand-deep);
 text-decoration: none;
}

.tv2-my-auction-card__title a:hover {
 color: var(--theme-brand);
}

.tv2-my-auction-card__badges {
 display: flex;
 flex-wrap: wrap;
 gap: 0.35rem;
}

.tv2-my-auction-badge {
 display: inline-flex;
 align-items: center;
 font-size: 0.72rem;
 font-weight: 500;
 letter-spacing: 0.02em;
 padding: 0.2rem 0.55rem;
 border-radius: var(--theme-radius-pill);
 background: #eef2ee;
 color: #445244;
}

.tv2-my-auction-badge.is-live {
 background: rgba(47, 158, 68, 0.16);
 color: var(--theme-brand-dark);
}

.tv2-my-auction-badge.is-upcoming {
 background: rgba(59, 130, 246, 0.14);
 color: #1d4ed8;
}

.tv2-my-auction-badge.is-ended {
 background: #eceff1;
 color: #546e7a;
}

.tv2-my-auction-badge.is-paid {
 background: rgba(47, 158, 68, 0.16);
 color: var(--theme-brand-dark);
}

.tv2-my-auction-badge.is-pending {
 background: rgba(245, 158, 11, 0.16);
 color: #b45309;
}

.tv2-my-auction-badge.is-refunded {
 background: rgba(239, 68, 68, 0.12);
 color: #b91c1c;
}

.tv2-my-auction-badge.is-winner {
 background: var(--theme-grad-brand);
 color: var(--theme-white);
}

.tv2-my-auction-card__actions {
 display: flex;
 flex-wrap: wrap;
 gap: 0.4rem;
}

.tv2-my-auction-card__stats {
 display: grid;
 grid-template-columns: repeat(4, minmax(0, 1fr));
 gap: 0.65rem;
 margin: 0.85rem 0 0.55rem;
}

.tv2-my-auction-card__stat-label {
 display: block;
 font-size: 0.72rem;
 color: var(--theme-ink-muted);
 margin-bottom: 0.15rem;
}

.tv2-my-auction-card__stats strong {
 font-size: 0.92rem;
 color: var(--theme-ink);
}

.tv2-my-auction-card__schedule {
 font-size: 0.8rem;
 color: var(--theme-ink-muted);
}

.tv2-my-auction-card__winner {
 margin-top: 0.55rem;
 padding: 0.55rem 0.7rem;
 border-radius: var(--theme-radius);
 background: var(--theme-brand-soft);
 color: var(--theme-brand-deep);
 font-size: 0.84rem;
}

.tv2-my-auction-card__bids {
 margin-top: 0.75rem;
 border-top: 1px dashed var(--theme-brand-glow);
 padding-top: 0.65rem;
}

.tv2-my-auction-card__bids-toggle {
 width: 100%;
 display: flex;
 align-items: center;
 justify-content: space-between;
 gap: 0.5rem;
 border: 0;
 background: transparent;
 color: var(--theme-brand-deep);
 font-weight: 500;
 font-size: 0.9rem;
 padding: 0.15rem 0;
}

.tv2-my-auction-card__bids-toggle i {
 transition: transform 0.2s ease;
 font-size: 0.75rem;
}

.tv2-my-auction-card__bids-toggle[aria-expanded="true"] i {
 transform: rotate(180deg);
}

.tv2-my-auction-card__bids-empty {
 margin-top: 0.55rem;
 font-size: 0.85rem;
 color: var(--theme-ink-muted);
}

.tv2-my-auction-bids {
 list-style: none;
 margin: 0.65rem 0 0;
 padding: 0;
 display: flex;
 flex-direction: column;
 gap: 0.4rem;
}

.tv2-my-auction-bids li {
 display: flex;
 justify-content: space-between;
 gap: 0.75rem;
 align-items: center;
 padding: 0.45rem 0.6rem;
 border-radius: 8px;
 background: #f4f8f1;
 font-size: 0.86rem;
}

.tv2-my-auction-bids__amount {
 color: var(--theme-brand-dark);
 font-weight: 500;
}

.tv2-my-auction-bids time {
 color: var(--theme-ink-muted);
 white-space: nowrap;
}

.tv2-my-auctions__pagination {
 margin-top: 1.15rem;
}

@media (max-width: 767.98px) {
 .tv2-my-auction-card {
 grid-template-columns: 84px 1fr;
 gap: 0.75rem;
 padding: 0.75rem;
 }

 .tv2-my-auction-card__stats {
 grid-template-columns: repeat(2, minmax(0, 1fr));
 }

 .tv2-my-auction-card__title {
 font-size: 0.98rem;
 }
}

@media (max-width: 412px) {
 .tv2-my-auction-card {
 grid-template-columns: 1fr;
 }

 .tv2-my-auction-card__media {
 max-width: 140px;
 }
}

/* ==========================================================================
 Dashboard � My Remedy Plans (purchase history)
 ========================================================================== */

.tv2-my-remedies {
 background: rgba(255, 255, 255, 0.78);
 border: 1px solid rgba(47, 158, 68, 0.12);
 border-radius: var(--theme-radius-lg);
 box-shadow: var(--theme-shadow);
 padding: 1.25rem 1.15rem 1.5rem;
}

.tv2-my-remedies__header {
 display: flex;
 align-items: center;
 justify-content: space-between;
 gap: 0.75rem;
 margin-bottom: 1.15rem;
 flex-wrap: wrap;
}

.tv2-my-remedies__active {
 display: flex;
 align-items: center;
 gap: 0.9rem;
 flex-wrap: wrap;
 padding: 1rem;
 margin-bottom: 1.25rem;
 border-radius: var(--theme-radius);
 background: var(--theme-grad-brand-soft);
 border: 1px solid rgba(47, 158, 68, 0.2);
}

.tv2-my-remedies__active-icon {
 width: 48px;
 height: 48px;
 border-radius: 50%;
 display: grid;
 place-items: center;
 background: var(--theme-white);
 color: var(--theme-brand);
 flex-shrink: 0;
}

.tv2-my-remedies__active-info {
 flex: 1 1 12rem;
}

.tv2-my-remedies__active-label {
 font-size: 0.75rem;
 color: var(--theme-ink-muted);
 text-transform: uppercase;
 letter-spacing: 0.04em;
}

.tv2-my-remedies__active-name {
 font-size: 1.15rem;
 color: var(--theme-brand-deep);
 margin: 0;
}

.tv2-my-remedies__active-meta {
 font-size: 0.84rem;
 color: var(--theme-ink-muted);
}

.tv2-my-remedies__section + .tv2-my-remedies__section {
 margin-top: 1.5rem;
 padding-top: 1.25rem;
 border-top: 1px dashed var(--theme-brand-glow);
}

.tv2-my-remedies__section-head {
 display: flex;
 align-items: center;
 justify-content: space-between;
 gap: 0.75rem;
 margin-bottom: 0.9rem;
}

.tv2-my-remedies__section-title {
 font-size: 1.05rem;
 color: var(--theme-brand-deep);
 margin: 0;
}

.tv2-my-remedies__count {
 font-size: 0.85rem;
 color: var(--theme-ink-muted);
 background: var(--theme-brand-soft);
 border-radius: var(--theme-radius-pill);
 padding: 0.25rem 0.7rem;
}

.tv2-my-remedies__empty {
 text-align: center;
 padding: 2rem 1rem;
}

.tv2-my-remedies__empty-icon {
 width: 64px;
 height: 64px;
 margin: 0 auto 1rem;
 border-radius: 50%;
 display: grid;
 place-items: center;
 background: var(--theme-brand-soft);
 color: var(--theme-brand);
 font-size: 1.4rem;
}

.tv2-my-remedies__empty-title {
 font-size: 1.1rem;
 color: var(--theme-brand-deep);
 margin-bottom: 0.35rem;
}

.tv2-my-remedies__empty-text {
 color: var(--theme-ink-muted);
 max-width: 28rem;
 margin-inline: auto;
}

.tv2-my-remedies__list {
 display: flex;
 flex-direction: column;
 gap: 1rem;
}

.tv2-my-remedy-card {
 display: grid;
 grid-template-columns: 96px 1fr;
 gap: 1rem;
 padding: 0.9rem;
 border: 1px solid rgba(47, 158, 68, 0.14);
 border-radius: var(--theme-radius);
 background: linear-gradient(180deg, var(--theme-white) 0%, #fbfef9 100%);
}

.tv2-my-remedy-card__media {
 border-radius: calc(var(--theme-radius) - 2px);
 overflow: hidden;
 background: #eef3ea;
 aspect-ratio: 1;
}

.tv2-my-remedy-card__media img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 display: block;
}

.tv2-my-remedy-card__placeholder {
 width: 100%;
 height: 100%;
 display: grid;
 place-items: center;
 color: var(--theme-brand);
 font-size: 1.5rem;
 background: var(--theme-brand-soft);
}

.tv2-my-remedy-card__top {
 display: flex;
 justify-content: space-between;
 gap: 0.75rem;
 align-items: flex-start;
 flex-wrap: wrap;
}

.tv2-my-remedy-card__title {
 font-size: 1.05rem;
 margin: 0 0 0.4rem;
 color: var(--theme-brand-deep);
 line-height: 1.35;
}

.tv2-my-remedy-card__badges {
 display: flex;
 flex-wrap: wrap;
 gap: 0.35rem;
}

.tv2-my-remedy-badge {
 display: inline-flex;
 align-items: center;
 font-size: 0.72rem;
 font-weight: 500;
 padding: 0.2rem 0.55rem;
 border-radius: var(--theme-radius-pill);
 background: #eef2ee;
 color: #445244;
}

.tv2-my-remedy-badge.is-active {
 background: rgba(47, 158, 68, 0.16);

 color: var(--theme-brand-dark);
}

.tv2-my-remedy-badge.is-pending {
 background: rgba(245, 158, 11, 0.16);
 color: #b45309;
}

.tv2-my-remedy-badge.is-expired {
 background: #eceff1;
 color: #546e7a;
}

.tv2-my-remedy-badge.is-free {
 background: rgba(59, 130, 246, 0.14);
 color: #1d4ed8;
}

.tv2-my-remedy-card__actions {
 display: flex;
 flex-wrap: wrap;
 gap: 0.4rem;
}

.tv2-my-remedy-card__stats {
 display: grid;
 grid-template-columns: repeat(4, minmax(0, 1fr));
 gap: 0.65rem;
 margin: 0.85rem 0 0.55rem;
}

.tv2-my-remedy-card__stat-label {
 display: block;
 font-size: 0.72rem;
 color: var(--theme-ink-muted);
 margin-bottom: 0.15rem;
}

.tv2-my-remedy-card__stats strong {
 font-size: 0.9rem;
 color: var(--theme-ink);
}

.tv2-my-remedy-card__desc,
.tv2-my-remedy-card__payment {
 font-size: 0.82rem;
 color: var(--theme-ink-muted);
 margin-top: 0.35rem;
}

.tv2-my-remedies__reads {
 list-style: none;
 margin: 0;
 padding: 0;
 display: flex;
 flex-direction: column;
 gap: 0.4rem;
}

.tv2-my-remedies__reads li {
 display: flex;
 justify-content: space-between;
 gap: 0.75rem;
 align-items: center;
 padding: 0.55rem 0.7rem;
 border-radius: 8px;
 background: #f4f8f1;
 font-size: 0.9rem;
}

.tv2-my-remedies__reads a {
 color: var(--theme-brand-deep);
 text-decoration: none;
 min-width: 0;
}

.tv2-my-remedies__reads a:hover {
 color: var(--theme-brand);
}

.tv2-my-remedies__reads time {
 color: var(--theme-ink-muted);
 white-space: nowrap;
 font-size: 0.8rem;
}

.tv2-my-remedies__pagination {
 margin-top: 1rem;
}

@media (max-width: 767.98px) {
 .tv2-my-remedy-card {
 grid-template-columns: 76px 1fr;
 gap: 0.75rem;
 }

 .tv2-my-remedy-card__stats {
 grid-template-columns: repeat(2, minmax(0, 1fr));
 }
}

@media (max-width: 412px) {
 .tv2-my-remedy-card {
 grid-template-columns: 1fr;
 }

 .tv2-my-remedy-card__media {
 max-width: 120px;
 }
}
