:root {
    --bs-orange: rgb(252, 163, 17);
    /* Reference furniture palette */
    --bg: #ffffff;
    --white: #ffffff;

    --dark: #1a1a1a;
    --muted: #3a3a3a;

    --accent: var(--bs-orange);
    /* orange strip + highlights */
    --border: #ece5df;

    --font-head: 'Manrope', serif;
    --font-body: 'Manrope', sans-serif;

    --theme-bg: #ffffff;
    --theme-bg-circle: #FFF3E0;
    --theme-bg-card: #fafafa;
    --theme-color: rgb(252, 163, 17);
    --bs-secondary-color: var(--muted);
}

body {
    font-size: 14px;
    overflow-x: hidden;
}

.form-control,
.form-select {
    font-size: 14px;
    background-color: #ffffff;
}

.container,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    max-width: 1400px;
}

p {
    color: var(--muted);
    margin: 0;
}

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

.text-warning,
.text-theme {
    color: var(--bs-orange) !important;
}

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

.badge-theme {
    background-color: var(--bs-orange);
    position: absolute;
    color: #000;
    padding: 4px 8px;
    border-radius: 0;
    border-top-left-radius: 6px;
    border-bottom-right-radius: 6px;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: .25rem;
}

.btn-link,
.btn-link:hover {
    color: var(--theme-color);
    text-decoration: none;
}

.btn-link:hover {
    text-decoration: underline;
}

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

.no-glow:focus {
    box-shadow: none !important;
}

@media (max-width: 1400px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 100%;
    }
}

@media (max-width: 800px) {
    body {
        font-size: 12px;
    }

    .form-control {
        font-size: 12px;
    }

    .h1,
    .h2,
    .h3,
    .h4,
    .h5,
    .h6,
    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        margin-bottom: .15rem;
    }
}

.orange {
    color: var(--bs-orange);
}

.fab-btn.call {
    background: var(--bs-orange) !important;
}

.fab-btn:hover {
    color: rgb(5 5 5) !important;
}

.btn-warning {
    --bs-btn-color: #000;
    --bs-btn-bg: var(--bs-orange);
    --bs-btn-border-color: var(--bs-orange);
    --bs-btn-hover-color: #000;
    --bs-btn-hover-bg: var(--bs-orange);
    --bs-btn-hover-border-color: var(--bs-orange);
    --bs-btn-focus-shadow-rgb: 217, 164, 6;
    --bs-btn-active-color: #000;
    --bs-btn-active-bg: var(--bs-orange);
    --bs-btn-active-border-color: var(--bs-orange);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #000;
    --bs-btn-disabled-bg: var(--bs-orange);
    --bs-btn-disabled-border-color: var(--bs-orange);
}

a,
a:hover {
    text-decoration: none;
    color: #000;
}

/* HEADER BASE */
.lc-header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
}

/* TOP BAR */
.lc-top {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 20px;
}

.lc-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lc-logo {
    height: 60px;
}

.lc-location {
    font-weight: 500;
    cursor: pointer;
}

/* SEARCH */
.lc-search {
    flex: 1;
    position: relative;
}

.lc-search input {
    width: 100%;
    padding: 10px 14px 10px 40px;
    border-radius: 8px;
    border: 1px solid var(--border);
}

.lc-search i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted);
}

/* RIGHT ICONS */
.lc-right {
    display: flex;
    gap: 16px;
    font-size: 20px;
}

/* CATEGORIES */
.lc-categories {
    display: flex;
    gap: 24px;
    padding: 10px 100px;
    overflow-x: auto;
}

.lc-cat {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    white-space: nowrap;
    cursor: pointer;
}

.lc-cat.active {
    color: var(--purple);
    border-bottom: 2px solid var(--purple);
}

/* ================= MOBILE ================= */
@media(max-width:768px) {

    .lc-header {
        background: var(--purple-light);
    }

    .lc-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .lc-search {
        width: 100%;
    }

    .lc-right {
        position: absolute;
        top: 14px;
        right: 16px;
    }

    .lc-categories {
        background: var(--purple-light);
        gap: 18px;
        padding: 12px 16px;
    }
}

/* //home */
/* HERO */
body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--dark);
}

/* ---------------- HERO ---------------- */
.home-hero {
    padding: 100px 0;
}

.hero-title {
    font-family: var(--font-head);
    font-size: 56px;
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.5px;
}

.hero-title span {
    color: var(--accent);
}

.hero-btn {
    display: inline-block;
    background: #111;
    color: #fff;
    padding: 14px 34px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 2px;
    text-decoration: none;
}

.hero-img {
    width: 100%;
    border-radius: 18px;
}

/* ---------------- SECTION TITLES ---------------- */
.section-title {
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 600;
}

/* ---------------- CATEGORY ---------------- */

.category-list {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* ---------------- FEATURED ---------------- */
.home-featured {
    padding: 60px 0;
}

.feature-card {
    position: relative;
}

.feature-card img {
    width: 100%;
    border-radius: 18px;
}

.feature-text {
    position: absolute;
    bottom: 18px;
    left: 18px;
    font-family: var(--font-head);
    font-size: 18px;
    color: #fff;
    background: rgba(0, 0, 0, 0.45);
    padding: 6px 14px;
}

/* ---------------- ARRIVAL STRIP ---------------- */
.home-arrivals {
    background: var(--accent);
    color: #fff;
    text-align: center;
    padding: 26px;
    margin: 70px 0;
    font-weight: 500;
}

/* ---------------- PRODUCTS ---------------- */
.home-products {
    padding: 40px 0;
}

.product-card {
    background: var(--theme-bg-card);
}

.product-card .product-title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-card img {
    width: 100%;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

.product-card h4 {
    font-size: 14px;
    font-weight: 500;
    margin-top: 14px;
}

.best-card img {
    width: 100%;
    border-radius: 14px;
}

.best-card h5 {
    font-size: 14px;
    margin-top: 10px;
}

/* ---------------- COLLECTION ---------------- */
.home-collection {
    padding: 90px 0;
}

.home-collection h2 {
    font-family: var(--font-head);
    font-size: 32px;
    line-height: 1.2;
}

.home-collection p {
    font-size: 14px;
    color: var(--muted);
}

/* ---------------- BLOG ---------------- */
.home-blog {
    padding: 70px 0;
}

.blog-card {
    background: var(--white);
    padding: 24px;
}

.blog-card h4 {
    font-size: 14px;
    line-height: 1.6;
}

/* ---------------- BRANDS ---------------- */
.home-brands {
    padding: 70px 0;
}

.brand-list {
    display: flex;
    justify-content: center;
    gap: 50px;
    font-weight: 600;
    letter-spacing: 1px;
}

/* ---------------- TESTIMONIALS ---------------- */
.home-testimonials {
    padding: 90px 0;
    text-align: center;
}

.testimonial-box {
    max-width: 680px;
    margin: 40px auto;
    font-size: 15px;
    line-height: 1.8;
    color: var(--muted);
}

.testimonial-user {
    margin-top: 20px;
    font-size: 14px;
}

.testimonial-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
}

.testimonial-stats h4 {
    font-family: var(--font-head);
    font-size: 28px;
}

/* ---------------- FOOTER ---------------- */
.site-footer {
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
}

.footer-brand h3 {
    font-family: var(--font-head);
    font-size: 24px;
}

.footer-bottom {
    text-align: center;
    font-size: 13px;
    color: var(--muted);
}

/* ---------------- MOBILE ---------------- */
@media(max-width:768px) {
    .hero-title {
        font-size: 20px;
    }

    .hero-desc {
        margin: 8px 0 !important;
        font-size: 12px !important;
    }

    .hero-desc span {
        padding: 0 5px !important;
    }

    .home-hero,
    .home-collection {
        padding: 60px 0;
    }

    .category-list {
        flex-wrap: wrap;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* ================= FOOTER ================= */
.site-footer {
    background: #fff;
    border-top: 1px solid var(--border);
    padding: 70px 0 30px;
    font-size: 13px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.4fr 1.2fr 1.2fr 1.2fr;
    gap: 50px;
}

.footer-logo {
    height: 100px;
    margin-bottom: 6px;
}

.footer-brand p {
    max-width: 260px;
    line-height: 1.6;
    color: var(--muted);
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 14px;
}

.footer-col a {
    display: block;
    color: var(--muted);
    margin-bottom: 10px;
    text-decoration: none;
}

.footer-col a:hover {
    color: var(--bs-orange);
}

/* BOTTOM */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    color: var(--muted);
}

.footer-payments img {
    height: 22px;
    margin-left: 10px;
}

/* MOBILE */
@media(max-width:768px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 14px;
        text-align: center;
    }
}

/* OVERLAY */
.lc-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: none;
    z-index: 9999;
}

.lc-menu-overlay.active {
    display: block;
}

/* SIDE MENU */
.lc-side-menu {
    width: 300px;
    max-width: 80%;
    height: 100%;
    background: #fff;
    position: absolute;
    left: -100%;
    top: 0;
    transition: left 0.35s ease;
    display: flex;
    flex-direction: column;
}

.lc-menu-overlay.active .lc-side-menu {
    left: 0;
}

/* HEADER */
.lc-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    border-bottom: 1px solid #eee;
}

.lc-menu-header img {
    height: 60px;
}

.lc-close {
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
}

/* LINKS */
.lc-menu-links {
    padding: 20px;
    list-style: none;
}

.lc-menu-links li {
    margin-bottom: 18px;
}

.lc-menu-links a {
    font-size: 16px;
    font-weight: 500;
    color: #111;
    text-decoration: none;
}

.btn-theme,
.btn-theme:active,
.btn-theme:hover {
    --bs-btn-bg: var(--bs-orange) !important;
    --bs-btn-border-color: var(--bs-orange) !important;
    background-color: var(--bs-orange) !important;
    border-color: var(--bs-orange) !important;
    color: #000000;
}

.btn-outline-theme {
    --bs-btn-bg: #ffffff !important;
    --bs-btn-border-color: var(--theme-color) !important;
    background-color: #ffffff !important;
    border-color: var(--theme-color) !important;
    color: #000000;
}

.text-theme {
    color: var(--bs-orange);
}

.lcx-menu-links a:hover {
    color: var(--bs-orange);
}

.lc-footer {
    border-top: 1px solid var(--border);
}

.lc-footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 40px;
}

.lc-footer-col h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
}

.lc-footer-col a {
    display: block;
    color: #333;
    margin-bottom: 2px;
    text-decoration: none;
}

.lc-footer-col a:hover {
    color: var(--theme-color);
}

.footer-social {
    margin-top: 12px;
    margin-bottom: 6px;
}

.footer-social a {
    display: inline-flex;
    width: 30px;
    height: 30px;
    background: rgba(252, 163, 17);
    color: #000000;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 0;
    text-decoration: none;
}

.footer-social a:hover {
    background: rgb(0, 0, 0);
}

.lc-footer-bottom {
    border-top: 1px solid var(--border);
    padding: 12px 0;
    text-align: center;
    color: var(--muted);
}

/* Responsive */
@media (max-width: 992px) {
    .lc-footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .lc-footer-bottom span {
        display: block;
    }

    .footer-social {
        justify-content: center;
        margin-top: 14px;
        margin-bottom: 7px;
    }
}

@media (max-width: 576px) {
    .lc-footer-top {
        grid-template-columns: 1fr;
    }
}

.floating-actions {
    position: fixed;
    right: 20px;
    bottom: 70px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.fab-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 26px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    text-decoration: none;
}

/* WhatsApp */
.fab-btn.whatsapp {
    background: #25D366;
}

/* Call */
.fab-btn.call {
    background: #e91e63;
}

.fab-btn:hover {
    transform: scale(1.08);
}

.lc-footer-accord {
    position: relative;
}

.lc-footer-accord h4::after {
    content: '';
}

@media (max-width: 992px) {
    .floating-actions {
        right: 8px;
        gap: 6px;
        bottom: 90px;
    }

    .fab-btn {
        font-size: 20px;
        width: 36px;
        height: 36px;
    }

    .footer-logo {
        height: 60px;
    }

    .lc-footer-col.brand {
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .lc-footer-col h4 {
        font-size: 14px;
        margin-top: 8px;
    }

    .lc-footer-top {
        gap: 4px;
    }

    .lc-footer-accord h4::after {
        content: '+';
        position: absolute;
        right: 6px;
        top: 8px;
        font-size: 18px;
        font-weight: 600;
    }

    /* When accordion is open */
    .lc-footer-accord.active h4::after {
        content: '−';
    }
}

/* Horizontal scroll */
.category-scroll {
    display: flex;
    gap: 28px;
    overflow-x: auto;
    padding-bottom: 10px;
    justify-content: center;
    scrollbar-width: none;
}

.category-scroll::-webkit-scrollbar {
    display: none;
}

/* Category item */
.cat-item {
    text-decoration: none;
    color: #000;
    min-width: 110px;
    text-align: center;
}

/* Circle background */
.cat-circle {
    width: 140px;
    height: 140px;
    background: var(--theme-bg-circle);
    /* beige like image */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    transition: all 0.3s ease;
}

/* Icon image */
.cat-circle img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

/* Text */
.cat-title {
    display: block;
    font-weight: 500;
}

/* Hover effect */
/* .cat-item:hover .cat-circle {
    background: rgb(252 163 16);
} */

.cat-item:hover .cat-title {
    color: rgb(252 163 16);
}


/* Hover effect */
.cat-item:hover .cat-circle::after {
    border-color: rgb(252 163 16);
}

.hero-slide-img {
    height: 85vh;
    object-fit: cover;
}

.cat-item {
    padding: 10px;
}

.abs-layer {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: left;
    text-align: left;
    color: #fff;
    background: rgba(0, 0, 0, 0.35);
    z-index: 2;
}

/* Fix arrows visibility */
.carousel-control-prev,
.carousel-control-next {
    width: 6%;
    z-index: 3;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1);
}

/* Button fix */
.hero-btn {
    background: #000;
    color: #fff;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    margin-top: 15px;
    width: 150px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.6);
    background-size: 60% 60%;
    border-radius: 50%;
    width: 45px;
    height: 45px;
}

.footer-social {
    display: flex;
    gap: 8px;
}

.footer-social a {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
}

/* FULL WIDTH BAR */
.lcx-location-bar {
    display: none;
    max-width: 100%;
    /* width: 30%; */
    /* background: var(--bs-orange); */
    /* reference orange */
    padding: 2px 0;
    border-radius: 30px;
}

/* CENTER CONTENT */
.location-bar-inner {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* INPUT */
.location-bar-inner input {
    flex: 1;
    padding: 2px 6px;
    border-radius: 30px;
    border: none;
    outline: none;
    font-size: 14px;
}

/* APPLY BUTTON */
.location-bar-inner button {
    padding: 2px 6px;
    border-radius: 30px;
    border: none;
    background: #ffffff;
    color: #000;
    font-weight: 600;
    cursor: pointer;
}

/* LOCATION DISPLAY */
.lcx-location-display {
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
}

@media (max-width: 767px) {
    .lcx-top2 {
        max-width: 100%;
    }
}

.location-input-wrap {
    position: relative;
    width: 100%;
    border: 1px solid var(--theme-color);
    padding: 4px 10px;
    border-radius: 8px;
}

.location-input-wrap input {
    width: 100%;
    padding: 0px 0px 0px 4px;
    /* space for icon */
    border-radius: 30px;
    border: none;
    outline: none;
    font-size: 14px;
}

.location-input-wrap button {
    position: absolute;
    top: 50%;
    right: 6px;
    transform: translateY(-50%);
    width: 100px;
    height: 26px;
    border-radius: 50%;
    border: none;
    background: transparent;
    color: #555;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.location-input-wrap button:hover {
    color: var(--bs-orange);
}

/* ===== TEXT ONLY POPUP HEADER ===== */
.lcx-top-header-holder {
    overflow: hidden;
    background: var(--theme-color);
}

.lcx-top-header {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    transform: translateY(-100%);
    transition: transform 0.6s ease-in-out;
    padding: 6px;
}

.lcx-top-header.show {
    transform: translateY(0);
}

@media (max-width: 768px) {

    .lcx-mobile-sticky {
        width: 100%;
        z-index: 9999;
        transition: top 0.3s ease;
    }

    .lcx-mobile-sticky.fixed {
        position: fixed;
        top: 0;
        left: 0;
        background-color: #ffffff;
    }

    /* Space so content doesn’t jump */
    body.mobile-header-fixed {
        padding-top: 130px;
        /* adjust to header height */
    }
}

/* DEFAULT (DESKTOP) */
.lcx-icon {
    font-size: 1.6em;
    margin-left: 14px;
}

/* MOBILE */
@media (max-width: 768px) {

    .lcx-right {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .lcx-icon {
        font-size: 1.3em;
        margin-left: 0;
    }
}


.why-icon {
    font-size: 26px;
    font-weight: 700;
    color: var(--theme-color);
    margin-bottom: 15px;
}

.why-card p {
    margin-top: 8px;
    font-size: 12px;
    text-align: left;
    padding: 0 6px;
}

.why-card {
    background: var(--theme-bg-card);
    border-radius: 12px;
    padding: 1px 0 0;
    position: relative;
    height: 100%;
    transition: all 0.3s ease;
}

.why-card:hover {
    background: var(--theme-bg-card);
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

/* Step number */
.why-step {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 18px;
    font-weight: 700;
    color: var(--bs-orange);
    background: #faf7f4;
    padding: 0 12px;
}

/* Circle icon */
.why-circle {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    border: 1px solid var(--bs-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 25px auto 10px;
}

.b-none {
    border: none;
}

@media (max-width: 991px) {
    .why-choose-us .p-1 {
        padding: .05rem !important;
    }

    .why-card .why-circle {
        width: 65px;
        height: 64px;
    }

    .why-card .why-circle img {
        padding: 4px !important;
    }

    .why-card h6,
    .why-step {
        font-size: 12px;
    }

    .why-card p {
        display: none;
    }

    .expert-badge {
        padding: 6px !important;
    }

    .cat-circle {
        width: 110px;
        height: 110px;
    }

    .lc-footer-accord {
        border-top: 1px solid #ddd;
        cursor: pointer;
    }

    .lc-footer-accord-body {
        display: none;
        padding: 10px 0;
    }

    .lc-footer-accord.active .lc-footer-accord-body {
        display: block;
    }
}

.owl-dots {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-top: -20px !important;
    z-index: 2;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 6%;
}

/* Each dot becomes a bar */
.owl-dot span {
    width: 36px !important;
    height: 4px !important;
    background: #ccc !important;
    transition: all 0.3s ease !important;

}

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

/* Active bar */
.owl-dot.active span {
    background: #000;
    width: 50px;
}

.carousel-caption {
    bottom: auto;
    top: 50%;
    left: 10% !important;
    right: 10% !important;
    transform: translateY(-50%);
    z-index: 1;
    text-align: left;
}

.items-carousel,
.cat-items-carousel {
    position: relative;
}

.items-carousel .owl-nav,
.cat-items-carousel .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.items-carousel .owl-nav button,
.cat-items-carousel .owl-nav button {
    pointer-events: all;
    background: #000 !important;
    width: 30px;
    height: auto;
    border-radius: 50%;
}

.items-carousel .owl-nav button span,
.cat-items-carousel .owl-nav button span {
    color: #fff;
    font-size: 22px;
    line-height: 40px;
}

.category-item {
    display: flex;
}

.category-item .cat-item {
    width: 50%;
}

@media (max-width: 991px) {
    .category-item {
        flex-direction: column;
        gap: 10px;
    }

    .category-item .cat-item {
        width: 100%;
    }
}

.abs-layer {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5%;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.4);
    color: #fff;
}


.hero-desc {
    margin: 16px 0;
    color: var(--border);
    font-size: 16px;
}

.hero-desc span {
    padding: 0 10px;
    color: var(--theme-color);
}

.latest-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.latest-head h2 {
    font-family: var(--font-head);
    font-size: 20px;
}

@media(max-width:768px) {
    .latest-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

.theme-title {
    font-size: 20px;
    font-weight: 600;
}

.btn-theme {
    font-size: 14px;
    font-weight: 500;
}

.btn-theme:disabled {
    color: #000;
}

@media (max-width: 991px) {

    .section-title,
    .latest-head h2 {
        font-size: 16px;
    }

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

    .theme-title {
        font-size: 18px;
        font-weight: 600;
    }

}

textarea {
    resize: none;
}

input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: none !important;
    box-shadow: none !important;
    border-color: inherit;
    /* or set your own color */
}

.wish-dot {
    background-color: var(--theme-color);
    width: 8px;
    height: 8px;
    display: block;
    position: absolute;
    top: 2px;
    right: -1px;
    border-radius: 50%;
}

.cart-dot {
    top: 3px;
    position: absolute;
    right: -4px;
    font-size: 10px;
    background-color: var(--theme-color);
    height: 18px;
    width: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.all-payments-cards img {
    background-color: #ffffff;
}

@media (max-width: 800px) {
    .all-payments-cards img {
        height: 24px;
    }
}

.otp-boxes input {
    width: 48px;
    height: 48px;
    font-size: 16px;
    text-align: center;
    margin-right: 6px;
}

.resend {
    color: var(--muted);
    cursor: not-allowed;
}

.resend.active {
    color: var(--bs-orange);
    cursor: pointer;
    font-weight: 600;
}

@media (min-width: 900px) {
    .sticky-sidebar {
        position: sticky;
        top: 150px;
        /* adjust if you have fixed header */
        height: fit-content;
    }
}

.profile-data {
    gap: 10px;
}

#profile-img-edit {
    padding: 0;
    height: 24px;
    width: 24px;
    font-size: 0.75rem;
    background: var(--theme-color);
    border: none;
    right: 2px;
    bottom: -4px;
}

.nav-pills .nav-link,
.nav-pills .nav-link:hover {
    color: #000000;
    font-weight: 500;
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    background-color: var(--theme-color);
    color: #000000;
    font-weight: 500;
}

#profilePreview {
    border: 1px solid #efefef;
    border-radius: 8px;
    padding: 4px;
    background-color: #ffffff;
}

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

.border {
    border-color: #eee !important;
}

.form-switch .form-check-input {
    --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgb%28252%2C%20163%2C%2017%29'/%3e%3c/svg%3e");
}

/* Switch ON background */
.form-switch .form-check-input:checked {
    background-color: rgb(252, 163, 17);
    border-color: rgb(252, 163, 17);
}

/* Optional: remove focus shadow */
.form-switch .form-check-input:focus {
    box-shadow: none;
}

.badge-wallet {
    background-color: #000;
}

.pagination {
    margin-bottom: 0;
}

.pagination .page-link {
    padding: 0.15rem 0.7rem;
    color: #000;
}

.pagination .active>.page-link,
.page-link.active {
    color: #000;
    background-color: var(--theme-color);
    border-color: var(--theme-color);
}

#loginModal .btn-close {
    --bs-btn-close-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23dc3545'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");
}

@media (max-width: 769px) {
    #loginModal .auth-image {
        display: inline-block !important;
    }
}

.modal {
    z-index: 10000;
    background-color: rgba(0, 0, 0, 0.4);
}

.items-carousel {
    position: relative;
    /* anchor for nav */
}

.items-carousel .owl-nav {
    position: absolute;
    top: 30%;
    width: 100%;
    transform: translateY(-50%);
    pointer-events: none;
    /* allow clicks only on buttons */
    font-size: 2rem;
    display: flex;
    justify-content: space-between;
}

.items-carousel .owl-nav button {
    pointer-events: all;
    background-color: var(--theme-color) !important;
    color: #000000 !important;
    padding-bottom: 5px !important;
    padding-left: 3px !important;
    padding-right: 3px !important;
}

.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #ddd;
    z-index: 9999;
    max-height: 320px;
    overflow-y: auto;
    border-radius: 6px;
}

.search-item {
    padding: 10px 12px;
    cursor: pointer;
    border: 1px solid #f1f1f1;
}

.search-item:hover {
    background: #f8f9fa;
}

.search-type {
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
}

.search-title {
    font-size: 14px;
}

@media (max-width: 800px) {
    .search-results {
        position: fixed;
        top: 110px;
        left: 10px;
        right: 10px;
        max-height: 40vh;
        z-index: 9999;
    }

    .footer-social a {
        width: 25px;
        height: 25px;
    }
}