* {
    margin: 0;
    padding: 0;
}

/* =========================
   THEME
========================= */
:root {
    --primary-body-color: #f0f5ff;
    --footer: #4b4f5b;
    --yellow-color: #f6b400;
    --cart-color: #c8ddff;
    --disabled-color: #939594;
    --text-color: #111827;
    --footer-card: #505564;
    --muted-color: #6b7280;
    --border-color: rgba(0, 0, 0, .08);
    --shadow: 0 10px 25px rgba(16, 24, 40, .08);
    --shadow-sm: 0 2px 18px rgba(0, 0, 0, .04);
    --shadow-md: 0 10px 25px rgba(0, 0, 0, .05);
    --shadow-lg: 0 18px 40px rgba(0, 0, 0, .18);
    --product-details-blue-color: #1977F2;
    --product-details-hover-color: #0E64D5;
    --radius-1: 12px;
    --radius-2: 25px;
    --t: .15s ease;
    --sidebar-w: 280px;
}

/* =========================
   BASE
========================= */
body {
    background: var(--primary-body-color);
    color: var(--text-color);
    font-family: "Hind Siliguri", system-ui, sans-serif;
}

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

img {
    max-width: 100%;
    display: block;
}

:focus-visible {
    outline: 3px solid rgba(34, 197, 94, .35);
    outline-offset: 2px;
}

html,
body {
    overflow-x: hidden;
    overflow-y: visible;
}

.required::after {
    content: " *";
    color: red;
}

.container_custom {
    max-width: 90%;
    height: auto;
    margin-inline: auto;
    padding-inline: 1.5rem;
}

.primary-bg-app {
    background: var(--primary-color);
}

.secondary-bg-app {
    background: var(--secondary-color);
}

.primary-bg-app:hover {
    filter: brightness(.95);
}

.secondary-bg-app:hover {
    filter: brightness(.95);
}

.view-all-product {
    display: flex;
    justify-content: center;
    margin-top: 3.5rem;
}

.view-all-product a {
    background: var(--primary-color);
    color: #fff;
    padding: 7px 20px;
    border-radius: var(--radius-1);
    font-weight: 500;
}

.view-all-product a i {
    font-size: 15px;
    margin-left: 5px;
}

.page-link {
    color: var(--primary-color) !important;
}

.page-link:focus {
    box-shadow: none !important;
}

.active>.page-link,
.page-link.active {
    color: #fff !important;
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

/* =========================
   SECTION TITLES
========================= */

.section_container {
    text-align: center;
    position: relative;
}

.section-title {
    text-align: center;
    margin: 28px 0 30px;
    font-weight: 500;
    font-size: clamp(22px, 2.5vw, 34px);
}

.section-title::after {
    content: "";
    position: absolute;
    top: 57%;
    width: 100px;
    border-top: 4px solid var(--primary-color);
    transform: translate(-50%, -50%);
    left: 50%;
}



.section-sub {
    text-align: center;
    color: var(--muted-color);
    font-weight: 500;
    margin-bottom: 18px;
}


/* =========================
   TOP NOTICE
========================= */
.top-notice .notice-inner {
    background: var(--primary-body-color);
    color: #000000;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 0;
}

/* =========================
   BRAND
========================= */

.f-brand .logo {
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #ff4b4b, var(--secondary-color));
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 900;
}

.only-desktop .brand-logo {
    width: 80px;
}

.only-desktop .brand-logo img {
    width: 100%;
    height: 100%;
}

/* =========================
   DESKTOP HEADER
========================= */
.only-desktop .header-wrap {
    background: #fff;
    box-shadow: var(--shadow-sm);
    border-bottom: 1px dashed var(--secondary-color);
}

.only-desktop .searchbar {
    position: relative;
    width: 100%;
}


.searchbar .search_dynamic_content, .m-search .search_dynamic_content {
	position: absolute;
	background: #f0f5ff;
	width: 100%;
	border-bottom-left-radius: var(--radius-1);
	border-top-left-radius: var(--radius-1);
	color: var(--secondary-color);
	border-top: 2px solid #fff;
}

.searchbar .search_dynamic_content ul li, .m-search .search_dynamic_content ul li {
	list-style: none;
	padding: 5px 25px;
	border-bottom: 2px solid white;
}

.searchbar .search_dynamic_content #product_image {
    width: 55px;
    height: 55px;
    border-radius: 4px;
    margin-right: 10px;
}

.m-search .search_dynamic_content #product_image {
    width: 35px;
    height: 35px;
    border-radius: 4px;
    margin-right: 10px;
}

.searchbar .search_dynamic_content .product_search_price h4 {
    font-size: 15px;
}

.m-search .search_dynamic_content .product_search_price h4 {
    font-size: 10px;
}

.m-search .search_dynamic_content .product_search_price p {
    font-size: 8px;
}

.only-desktop .searchbar input {
    height: 43px;
    border-radius: var(--radius-1);
    padding: 0 60px 0 15px;
    border: none;
    background: var(--primary-body-color);
}

.only-desktop .form-control:focus {
    box-shadow: none !important;
}

.only-desktop .searchbar button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    height: 34px;
    width: 42px;
    border-radius: 4px;
    border: 0;
    background: var(--primary-color);
    color: #fff;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: var(--t);
}

.only-desktop .searchbar button:hover {
    filter: brightness(.95);
}

.only-desktop .btn-login {
    border-radius: 4px;
    background: var(--primary-color);
    border: 0;
    font-weight: 400;
    white-space: nowrap;
    color: #fff;
    transition: var(--t);
    padding: 10px 0px;
}

.only-desktop .btn-login:hover {
    filter: brightness(.95);
}

.only-desktop .cart-btn {
    position: relative;
    height: 44px;
    width: 44px;
    border-radius: 4px;
    border: 1px solid var(--primary-color);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.only-desktop .cart-badge {
    position: absolute;
    right: -5px;
    top: -10px;
    background: var(--primary-color);
    color: #fff;
    font-size: 10px;
    border-radius: 100px;
    padding: 4px 8px;
    font-weight: 900;
    border: 2px solid #fff;
    line-height: 1.2;
}

/* =========================
   DESKTOP RED NAV
========================= */
.dextop-header {
    background: var(--secondary-color);
}

.dextop-header .nav-link {
    color: #fff !important;
    font-weight: 900;
    padding: 12px 14px !important;
    opacity: .95;
    transition: var(--t);
}

.dextop-header .nav-link:focus-visible {
    outline: 0;
    box-shadow: none !important;
}

.dextop-header .nav-item {
    display: inline-block;
    line-height: 1.5;
    font-size: 16px;
    color: #000 !IMPORTANT;
    padding: 8px 14px;
    border-radius: 30px;
    font-weight: 900;
}

.dextop-header .nav-link:hover {
    background: #0000006e;
    border-radius: var(--radius-1);
}

.dextop-header .nav-link.active {
    background: #0000006e;
    border-radius: var(--radius-1);
}

/* =========================
   MEGA MENU
========================= */
.dextop-header .mega-li {
    position: static;
}

.dextop-header .mega-menu {
    width: min(980px, calc(100vw - 24px));
    left: 50% !important;
    transform: translateX(-50%) !important;
    right: auto !important;
    border-radius: var(--radius-1);
    border-top: 3px solid var(--primary-color);
    box-shadow: var(--shadow-lg);
    padding: 14px 16px;
}

.dextop-header .mega-title {
    background: #eee;
    border-radius: var(--radius-1);
    padding: 10px 12px;
    font-weight: 900;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 10px;
}

.dextop-header .mega-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dextop-header .mega-list li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 2px;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 400;
    font-size: 13px;
    transition: var(--t);
}

.dextop-header .mega-list li a i {
    font-size: 12px;
    opacity: .65;
}

.dextop-header .mega-list li a:hover {
    color: var(--secondary-color);
}

/* =========================
   MOBILE TOPBAR
========================= */
.only-mobile .m-topbar {
    position: sticky;
    top: 0;
    z-index: 1035;
    background: #e7eeff;
    border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.only-mobile .m-topbar .bar {
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 8px 6px;
    background: #fff;
}

.only-mobile .icon-btn {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-1);
    border: 1px solid var(--primary-color);
    background: #fff;
    display: grid;
    place-items: center;
    color: var(--text-color);
    text-decoration: none;
    position: relative;
    transition: var(--t);
}

.only-mobile .icon-btn:hover {
    transform: translateY(-1px);
}

.only-mobile .icon-btn.ghost {
    border: 0;
    background: transparent;
    transform: none;
}

.only-mobile .logo-mini {
    width: 135px;
}

.only-mobile .logo-mini img {
    max-height: 30px;
}

.only-mobile .m-search-wrap {
    display: none;
    padding: 10px;
    background: #e7eeff;
    border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.only-mobile .m-search {
    position: relative;
}

.only-mobile .m-search input {
    height: 43px;
    border-radius: var(--radius-1);
    border: 1px solid rgba(0, 0, 0, .10);
    padding: 0 50px 0 14px;
    background: #fff;
}

.form-control:focus {
    box-shadow: none !important;
}

.only-mobile .m-search input:focus-visible {
    outline: none !important;
}

.only-mobile .m-search button {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 34px;
    border-radius: var(--radius-1);
    border: 0;
    background: var(--primary-color);
    color: #fff;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: var(--t);
}

.only-mobile .m-search button:hover {
    filter: brightness(.95);
}


.only-mobile .cart-badge {
    position: absolute;
    right: -5px;
    top: -14px;
    background: var(--primary-color);
    color: #fff;
    font-size: 10px;
    border-radius: 100px;
    padding: 4px 8px;
    font-weight: 900;
    border: 2px solid #fff;
    line-height: 1.2;
}

/* =========================
   OFFCANVAS MENU
========================= */
.offcanvas {
    width: 78vw;
    max-width: 280px;
}

.offcanvas .brand-logo {
    width: 135px;
    height: 30px;
}

.offcanvas .brand-logo img {
    width: 100%;
    height: 100%;
}

.offcanvas .btn-close:focus {
    box-shadow: none !important;
}

.offcanvas .offcanvas-header {
    background: #dfe8ff;
    border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.offcanvas .menu-login {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 4px 6px;
    font-size: 15px;
}

.offcanvas .menu-login i {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .08);
    display: grid;
    place-items: center;
}

.offcanvas .cat-acc .accordion-item {
    border: 0;
    border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.offcanvas .cat-acc .accordion-button {
    padding: 14px 6px;
    color: #0f172a;
    background: #fff;
    box-shadow: none;
}

.offcanvas .subcats a {
    display: block;
    padding: 10px 12px;
    text-decoration: none;
    color: var(--text-color);
    font-size: 13px;
    border-radius: var(--radius-1);
    transition: var(--t);
}

.offcanvas .subcats a:hover {
    background: #f3f6ff;
    color: var(--secondary-color);
}

/* =========================
   SLIDER
========================= */

#mainSlider.slider {
    position: relative;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0, 0, 0, .06);
    border: 1px solid rgba(0, 0, 0, .06);
}

#mainSlider .slider-wrap {
    margin-top: 16px;
}


#mainSlider .slide {
    display: none;
}

#mainSlider .slide.active {
    display: block;
}

#mainSlider .slide picture,
#mainSlider .slide img {
    width: 100%;
    display: block;
}

/* #mainSlider .slide img {
    height: 180px;
} */


#mainSlider .s-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 0;
    background: var(--primary-color);
    color: #fff;
    display: grid;
    place-items: center;
    z-index: 5;
    cursor: pointer;
    transition: var(--t);
}

#mainSlider .s-arrow:hover {
    filter: brightness(.95);
}

#mainSlider .s-arrow.prev {
    left: 12px;
}

#mainSlider .s-arrow.next {
    right: 12px;
}

#mainSlider .dots {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 10px;
    display: flex;
    gap: 8px;
    z-index: 6;
}

#mainSlider .dot {
    width: 40px;
    height: 5px;
    border-radius: 0px;
    background: rgba(0, 0, 0, .25);
    border: none;
    cursor: pointer;
}

#mainSlider .dot.active {
    background: var(--primary-color);
}


/* =========================
   CATEGORY GRID + DROPDOWN
========================= */

#catZone {
    position: relative;
}

.cat-drop {
    position: absolute;
    width: 280px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
    display: none;
    z-index: 99999;
}

.cat-drop.show {
    display: block;
}

.cat-drop a {
    display: block;
    padding: 6px 8px;
    text-decoration: none;
    color: #111;
    border-radius: 8px;
}

.cat-drop a:hover {
    background: #f2f2f2;
}


#catZone .cat-zone {
    position: relative;
    margin-top: 8px;
}

#catZone .cat-tile {
    background: #fff;
    border-radius: var(--radius-1);
    padding: 14px 12px;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, .06);
    text-decoration: none;
    color: var(--text-color);
    display: block;
    transition: var(--t);
    position: relative;
}

#catZone .cat-tile.active {
    border: 1px solid rgba(25, 168, 75, .95);
    box-shadow: 0 10px 25px rgba(25, 168, 75, .12);
}

#catZone .cat-ava {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    margin: 0 auto 10px;
    overflow: hidden;
    border: 1px solid var(--primary-color);
    box-shadow: 0 12px 18px rgba(0, 0, 0, .10);
    background: #f3f4f6;
}

#catZone .cat-ava img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#catZone .cat-label {
    font-weight: 900;
    font-size: 13px;
}

#catZone .cat-label i {
    font-size: 11px;
    opacity: .75;
    margin-left: 6px;
}

@media (max-width: 991.98px) {
    #catZone .cat-label i {
        display: none !important;
    }
}

#catZone .subcat-template {
    display: none;
}

#catZone .cat-drop {
    position: absolute;
    width: 280px;
    background: #fff;
    border-radius: var(--radius-1);
    box-shadow: 0 24px 55px rgba(0, 0, 0, .18);
    border: 1px solid rgba(0, 0, 0, .10);
    padding: 0px 0;
    display: none;
    z-index: 100;
}

#catZone .cat-drop.show {
    display: block;
}

#catZone .cat-drop a {
    display: block;
    padding: 10px 16px;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 13px;
    text-align: center;
    transition: var(--t);
}

#catZone .cat-drop a:hover {
    background: #f6f7fb;
    color: var(--secondary-color);
}

@media (max-width: 991.98px) {
    #catZone .cat-drop {
        display: none !important;
    }

    #catZone .cat-tile.active {
        border: 1px solid rgba(0, 0, 0, .06);
        box-shadow: var(--shadow-md);
    }
}

/* =========================
   PRODUCTS
========================= */
#product-card.p-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-1);
    box-shadow: 0 14px 30px rgba(0, 0, 0, .08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 10px;
}

#product-card .p-img {
    position: relative;
    padding-bottom: 15px;
    background: #fff;
}

#product-card .p-img .imgbox {
    border-radius: 14px;
    overflow: hidden;
    background: #f3f4f6;
    border: 1px solid rgba(0, 0, 0, .06);
    aspect-ratio: 1 / 1;
}

#product-card .p-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* discount badge */
#product-card .discount-badge {
    position: absolute;
    top: 20px;
    right: 15px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 10px 18px rgba(0, 0, 0, .12);
    display: grid;
    place-items: center;
    animation: glowPulse 2.4s ease-in-out infinite;
}

/* glowing ring */
#product-card .discount-badge::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid var(--primary-color);
    animation: glowRing 2.4s ease-in-out infinite;
}

/* text stays still */
#product-card .discount-badge .inner {
    position: relative;
    z-index: 1;
    font-weight: 900;
    font-size: 12px;
    text-align: center;
    line-height: 1.05;
    color: var(--primary-color);
}

/* soft glow on badge */
@keyframes glowPulse {

    0%,
    100% {
        box-shadow:
            0 0 10px 2px var(--primary-color),
            0 0 0 0 var(--primary-color);
    }

    50% {
        box-shadow:
            0 0 3px 2px rgba(0, 0, 0, .12),
            0 0 0 8px rgba(var(--primary-color, 0, 0, 0), 0.35);
    }
}

/* glowing dashed ring */
@keyframes glowRing {

    0%,
    100% {
        opacity: 0.6;
        filter: drop-shadow(0 0 2px var(--primary-color));
    }

    50% {
        opacity: 1;
        filter: drop-shadow(0 0 6px var(--primary-color));
    }
}

#product-card .p-body {
    padding: 0 12px 12px;
    text-align: center;
}

#product-card .p-title {
	font-weight: 500;
	font-size: 18px;
	line-height: 1.2;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}

#product-card .stars {
    font-size: 16px;
    color: #f59e0b;
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
}

#product-card .stars .count {
    color: var(--muted-color);
    font-weight: 800;
    font-size: 11px;
}

#product-card .price {
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
}

#product-card .price .now {
    color: #e11d48;
    font-weight: 900;
    font-size: 18px;
}

#product-card .price .old {
    color: #9ca3af;
    text-decoration: line-through;
    font-weight: 800;
    font-size: 16px;
}

#product-card .p-actions {
    padding: 0 12px 14px;
    flex-direction: row;
    gap: 10px;
    margin-top: auto;
    justify-content: center;
}

.p-actions a,
.p-actions button {
    width: 100%;
}

#product-card .btn-order {
    border: 0;
    border-radius: var(--radius-1);
    background: var(--primary-color);
    color: #fff;
    font-weight: 500;
    padding: 8px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--t);
    border: 2px solid transparent;
}

#product-card .btn-order:hover {
    background: transparent;
    transition: var(--t);
    border: 2px solid var(--primary-color);
    color: var(--text-color);
}

#product-card .btn-order.disabled {
    background: var(--disabled-color);
    box-shadow: 0 12px 22px #fafafa;
    cursor: not-allowed;
}


#product-card .btn-order.disabled:hover {
    background: var(--disabled-color);
    border: 2px solid var(--disabled-color);
    color: #fff;
}

#product-card .btn-addcart {
    border: 2px solid var(--primary-color);
    border-radius: var(--radius-1);
    background: #fff;
    color: var(--text-color);
    font-weight: 500;
    padding: 8px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--t);
}

#product-card .btn-addcart:hover {
    background: var(--primary-color);
    transition: var(--t);
    color: #fff;
}

#product-card .btn-addcart.disabled {
    background: var(--disabled-color);
    box-shadow: 0 12px 22px #fafafa;
    cursor: not-allowed;
    border: 2px solid var(--disabled-color);
}


#product-card .btn-addcart.disabled:hover {
    background: var(--disabled-color);
    border: 2px solid var(--disabled-color);
    color: var(--text-color);
}


#product-card .p-img .imgbox {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: var(--radius-1);
}

#product-card .p-img .imgbox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.35s ease;
    display: block;
}

/* Hover image default hidden */
#product-card .p-img .imgbox .hover-img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    pointer-events: none;
}

#product-card .imgbox:hover .main-img {
    opacity: 0;
}

#product-card .imgbox:hover .hover-img {
    opacity: 1;
    transform: scale(1.5);
}

/* =========================
   SLELETON LOADER
========================= */

.skeleton {
    background: linear-gradient(90deg, #eee 25%, #f5f5f5 37%, #eee 63%);
    background-size: 400% 100%;
    animation: shimmer 1.2s ease-in-out infinite;
    border-radius: var(--radius-1);
}

.skeleton.skeleton-line {
    margin: auto;
    margin-top: 10px;
    margin-bottom: 10px;
}

@keyframes shimmer {
    0% {
        background-position: 100% 0;
    }

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

.skeleton-card {
    overflow: hidden;
    background: #fff;
    padding: 10px;
    border-radius: var(--radius-1);
}

.skeleton-img {
    height: 300px;
    width: 100%;
    border-radius: var(--radius-1);
}

.skeleton-line {
    height: 25px;
    margin: 10px 0;
}

.skeleton-btn {
    height: 42px;
    width: 100%;
    border-radius: var(--radius-1);
    display: inline-block;
}

.w-80 {
    width: 80%;
}

.w-60 {
    width: 60%;
}

.w-50 {
    width: 50%;
}

@media (max-width: 576px) {
    .skeleton-img {
        height: 160px;
    }
}



/* =========================
   REVIEW
========================= */
.main_review {
    background: #e2ecfcfc;
    padding-top: 20px;
    border-radius: 15px;
    margin-top: 15px;
}

.main_review section#news-letter {
    padding: 10px 0;
    margin-bottom: 39px;
    background-repeat: no-repeat;
    background-size: cover;
    height: 597px;
    padding-bottom: 0;
    position: relative;
}

.main_review .news {
    padding: 4.8px 0 9.6px 0;
    text-align: center;
}

.main_review .mockup-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: relative;
}

.main_review .mockup-screen-1,
.main_review .mockup-screen-2,
.main_review .mockup-screen-3,
.main_review .mockup-screen-4,
.main_review .mockup-screen-5 {
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    height: 421px;
    width: 190px;
}

.main_review .mockup-screen-1 img,
.main_review .mockup-screen-2 img,
.main_review .mockup-screen-4 img,
.main_review .mockup-screen-5 img {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 12px;
    cursor: zoom-in;
}

.main_review .mockup-hand {
    position: absolute;
    pointer-events: none;
    bottom: 0px;
    left: 50%;
    transform: translateX(-33%);
    height: 593px;
    z-index: 3;
}

.main_review .review_model .modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 75%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: .3rem;
    outline: 0;
}


.main_review .owl-nav button.owl-prev {
    left: -13px !important;
}

.main_review .owl-nav button.owl-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff;
    color: #000;
    border: none;
    font-size: 30px;
    padding: 4px 20px;
    border-radius: 50%;
    pointer-events: auto;
    cursor: pointer;
    transition: background 0.3s ease;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main_review .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    right: -1%;
    transform: translateY(-50%);
    background: #ffffff;
    color: #000;
    border: none;
    font-size: 30px;
    padding: 4px 20px;
    border-radius: 50%;
    pointer-events: auto;
    cursor: pointer;
    transition: background 0.3s ease;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main_review .owl-dot {
    display: inline-block;
    margin: 0 5px;
    width: 20px;
    height: 20px;
    background-color: #ccc;
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

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

/* =========================
   FOOTER
========================= */
.site-footer {
    background: var(--footer);
    color: #e9edf7;
    padding: 34px 0 16px;
}

.site-footer .f-top {
    margin-bottom: 24px;
}

.site-footer .f-info-card {
    background: var(--footer-card);
    border-radius: var(--radius-1);
    padding: 35px;
    display: flex;
    gap: 15px;
    align-items: center;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .06);
    height: 100%;
    transition: var(--t);
}

.site-footer .f-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 212, 255, 0.2);
    transition: var(--t);
}

.site-footer .f-ico {
    color: var(--primary-color);
    font-size: 35px;
    flex: 0 0 auto;
    margin-right: 10px;
}

.site-footer .f-info-title {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    background: linear-gradient(135deg, #fff, var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.site-footer .f-info-sub {
    font-weight: 500;
    font-size: 14px;
    opacity: 1;
}

.site-footer .f-brand {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 10px;
}

.site-footer .f-brand .brand-logo {
    max-width: 120px;
}

.site-footer .f-brand .brand-logo img {
    width: 100%;
}

.site-footer .f-text {
    font-size: 14px;
    font-weight: 500;
    opacity: 1;
    max-width: 400px;
}

.site-footer .f-subtitle {
    font-weight: 900;
    margin: 10px 0;
}

.site-footer .f-social a {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .25);
    color: #fff;
    text-decoration: none;
    margin-right: 10px;
    opacity: .95;
    transition: var(--t);
}

.site-footer .f-social a:hover {
    opacity: 1;
    transform: translateY(-1px);
}

.site-footer .f-links-title {
    font-weight: 900;
    font-size: 20px;
    margin-bottom: 12px;
    position: relative;
    padding-bottom: 8px;
}

.site-footer .f-links-title:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 54px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 999px;
}

.site-footer .f-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #e9edf7;
    text-decoration: none;
    font-weight: 800;
    font-size: 13px;
    margin: 10px 0;
    opacity: .95;
    transition: var(--t);
}


.site-footer .f-links a:hover {
    color: var(--primary-color);
    transition: var(--t);
}

.site-footer .f-links :hover a {
    letter-spacing: 1px;
}

.site-footer .tri {
    width: 0;
    height: 0;
    border-left: 8px solid var(--primary-color);
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}

.site-footer .fb-box {
    background: var(--footer-card);
    border-radius: var(--radius-1);
    padding: 18px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .06);
}

.site-footer .fb-box .f-links-title {
    margin-bottom: 16px;
}

.site-footer .fb-embed {
    background: #fff;
    border-radius: var(--radius-1);
    overflow: hidden;
    height: 300px;
    border: 1px solid rgba(0, 0, 0, .12);
}

.site-footer .fb-embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.site-footer .f-bottom {
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    color: #cfd6ea;
    font-weight: 800;
    font-size: 13px;
    text-align: center;
}

.site-footer .f-bottom a {
    color: var(--primary-color);
    font-weight: 900;
    text-decoration: none;
}

.site-footer .f-social a:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.3);
}

.site-footer .f-social a.facebook:hover {
    background: linear-gradient(135deg, #3b5998, #4c70ba);
    border-color: #3b5998;
}

.site-footer .f-social a.instagram:hover {
    background: linear-gradient(135deg, #e4405f, #f56040, #fcaf45);
    border-color: #e4405f;
}

.site-footer .f-social a.youtube:hover {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    border-color: #ff0000;
}

/* =========================
   CART
========================= */

#offcanvasCartRight {
    max-width: 300px;
}

#offcanvasCartRight .offcanvance-content {
    width: 100px;
}

#offcanvasCartRight .card-body {
    flex-wrap: wrap;
}

#offcanvasCartRight .product_cart_image_main {
    width: 45px;
}

#offcanvasCartRight .product_cart_image_main img {
    width: 100%;
    object-fit: cover;
}

#offcanvasCartRight .delete_btn {
    width: 26px;
    height: 26px;
    font-size: 14px;
}

#offcanvasCartRight .product_name {
    max-width: 160px;
}

#offcanvasCartRight .deciment_btn,
#offcanvasCartRight .increment_btn {
    width: 24px;
    height: 24px;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#offcanvasCartRight .deciment_btn:hover {
    background: var(--secondary-color);
    transition: var(--t);
    border: none;
}

#offcanvasCartRight .increment_btn:hover {
    background: var(--primary-color);
    transition: var(--t);
    border: none;
}

/* =========================
   BRANDS
========================= */

.top-brands-body .owl-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 0;
    background: var(--primary-color);
    color: #fff;
    display: grid;
    place-items: center;
    z-index: 5;
    cursor: pointer;
    transition: var(--t);
}

.top-brands-body .owl-next {
    position: absolute;
    top: 50%;
    right: -1%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 0;
    background: var(--primary-color);
    color: #fff;
    display: grid;
    place-items: center;
    z-index: 5;
    cursor: pointer;
    transition: var(--t);
}

.top-brands-body .owl-prev:hover,
.top-brands-body .owl-next:hover {
    filter: brightness(.95);
}

.top-brands-body .owl-prev {
    left: 12px;
}

.top-brands-body .owl-next {
    right: 12px;
}

.top-brands-body .owl-dots {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 10px;
    display: flex;
    gap: 8px;
    z-index: 6;
    top: 90%;
}

.top-brands-body .owl-dot {
    width: 40px;
    height: 5px;
    border-radius: 0px;
    background: rgba(0, 0, 0, .25);
    border: none;
    cursor: pointer;
}

.top-brands-body .owl-dot.active {
    background: var(--primary-color);
}


.top-brands-body .brnads-carousel .item .image {
    width: 200px;
    margin: auto;
}

.top-brands-body .brnads-carousel .item .image img {
    width: 100%;
}

.brands-section .brand-image img {
    width: 100%;
}



/* =========================
   HORIZONTAL CART
========================= */


#horizontal_cart {
    position: fixed;
    bottom: 20%;
    right: 0%;
    z-index: 999;
}

#horizontal_cart .top-cart {
    background: var(--cart-color);
    display: grid;
    padding: 15px 15px 0px 15px;
    text-align: center;
    font-size: 14px;
    color: darkblue;
    border-top-left-radius: 8px;
}

#horizontal_cart .bottom-cart {
    background: var(--primary-color);
    text-align: center;
    color: white;
    padding: 2px 0px;
    border-bottom-left-radius: 8px;
}


/* =========================
   BACK TO TOP
========================= */


#back_to_top {
    position: fixed;
    bottom: 5%;
    right: 0%;
    z-index: 999;
}

#back_to_top .back_to_top {
    background: var(--primary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
}



/* =========================
   PRODUCT SINGLE PAGE
========================= */

#product-details .panel-card {
    background: #fff;
    border-radius: var(--radius-1);
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, .04);
}

/* LEFT */
#product-details .preview-card {
    padding: 10px;
}

#product-details .preview-stage {
    position: relative;
    border-radius: var(--radius-1);
    overflow: hidden;
    background: #f8fafc;
    border: 1px solid rgba(0, 0, 0, .06);
    height: 500px;
}

#product-details .preview-stage img {
    width: 100%;
    height: auto;
    display: block;
}

#product-details .discount-badge {
    position: absolute;
    top: 20px;
    right: 15px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 10px 18px rgba(0, 0, 0, .12);
    animation: spinBadge 6.2s linear infinite;
    display: grid;
    place-items: center;
}

#product-details .discount-badge::before {
    content: "";
    position: absolute;
    inset: 0px;
    border-radius: 50%;
    border: 2px dashed var(--primary-color);
}

#product-details .discount-badge .inner {
    position: relative;
    z-index: 1;
    font-weight: 900;
    font-size: 10px;
    text-align: center;
    line-height: 1.05;
    color: var(--text-color);
    animation: antiSpin 6.2s linear infinite;
}

/* Lens */
#product-details .img-lens {
    position: absolute;
    width: 160px;
    height: 160px;
    background: rgba(0, 0, 0, .25);
    border: 2px solid rgba(255, 255, 255, .7);
    display: none;
    pointer-events: none;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .15);
}

/* Left floating + button (red mark place) */
#product-details .open-gallery {
    position: absolute;
    right: 10px;
    bottom: 10px;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: #f1f5f9;
    border: 1px solid rgba(0, 0, 0, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 18px rgba(0, 0, 0, .10);
    z-index: 5;
}

#product-details .open-gallery:hover {
    filter: brightness(.98);
}

#product-details .open-gallery i {
    font-size: 18px;
    color: var(--primary-color);
}

/* thumbs */
#product-details .thumbs {
    display: flex;
    gap: 10px;
    padding-top: 12px;
    overflow: auto;
}

#product-details .thumb {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-1);
    border: 2px solid transparent;
    overflow: hidden;
    flex: 0 0 auto;
    cursor: pointer;
    background: #fff;
    box-shadow: 0 6px 14px rgba(0, 0, 0, .08);
}

#product-details .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

#product-details .thumb.active {
    border-color: var(--primary-color);
}


#product-details .info-card {
    padding: 18px 18px 16px;
    position: relative;
}

#product-details .zoom-overlay {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 18px;
    height: 320px;
    border-radius: var(--radius-1);
    border: 1px solid rgba(0, 0, 0, .06);
    background: #f8fafc;
    overflow: hidden;
    display: none;
    z-index: 10;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .15);
}

#product-details .zoom-layer {
    position: absolute;
    inset: 0;
    background-repeat: no-repeat;
    background-position: 0 0;
}

#product-details .title {
    font-weight: 800;
    font-size: 2rem;
    margin-bottom: 6px;
}

#product-details .price-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 6px;
}

#product-details .price {
    font-weight: 900;
    font-size: 1.9rem;
    color: var(--primary-color);
}

#product-details .old-price {
    color: #6b7280;
    text-decoration: line-through;
    font-weight: 600;
    font-size: 1.5rem;
}

#product-details .subnote {
    color: var(--secondary-color);
    font-size: .95rem;
    margin-bottom: 10px;
}

#product-details .stock-note {
    font-weight: 700;
    color: #16a34a;
    margin-bottom: 12px;
}

#product-details .qty-box {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 10px 0 14px;
}

#product-details .qty-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 10px;
    border-radius: var(--radius-2);
    background: var(--primary-body-color);
    border: 1px solid rgba(0, 0, 0, .06);
}

#product-details .qty-btn {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, .12);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

#product-details .qty-input {
    width: 42px;
    text-align: center;
    border: none;
    outline: none;
    background: transparent;
    font-weight: 800;
}

#product-details .btn-wide {
    width: 100%;
    border-radius: var(--radius-1);
    padding: 10px 14px;
    font-weight: 800;
    border: none;
}

#product-details .btn-green {
    background: var(--primary-color);
    color: #fff;
    transition: var(--t);
    border: 1px solid var(--primary-color);
}

.animated_btn {
    animation: pulseScale 2s ease-in-out infinite;
    transform-origin: center;
}

@keyframes pulseScale {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

#product-details .btn-green:hover {
    background: white;
    color: #000;
    transition: var(--t);
}

#product-details .btn-green:hover {
    filter: brightness(.97);
}

#product-details .btn-outline-soft {
    width: 100%;
    border-radius: var(--radius-1);
    padding: 8px 14px;
    font-weight: 800;
    border: 1px solid rgba(0, 0, 0, .12);
    background: #fff;
    transition: var(--t);
}

#product-details .btn-outline-soft:hover {
    background: var(--primary-color);
    transition: var(--t);
    color: #fff;
}

#product-details .btn-whatsapp {
    background: #16a34a;
    color: #fff;
    transition: var(--t);
}

#product-details .btn-call {
    background: var(--product-details-blue-color);
    color: #fff;
    transition: var(--t);
}

#product-details .btn-gradient {
    background: linear-gradient(90deg, #8b5cf6, #ec4899, #f97316);
    color: #fff;
    transition: var(--t);
}

#product-details .btn-whatsapp:hover,
#product-details .btn-call:hover,
#product-details .btn-gradient:hover {
    background: var(--product-details-hover-color);
    transition: var(--t);
}

#product-details .mini-table {
    border-radius: var(--radius-1);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, .06);
}

#product-details .mini-table table {
    margin: 0;
    font-size: .92rem;
}

#product-details .mini-table td {
    padding: 10px 12px;
    border-color: rgba(0, 0, 0, .06);
}

#product-details .btn-order {
    border: 0;
    border-radius: var(--radius-1);
    background: var(--primary-color);
    color: #fff;
    font-weight: 500;
    padding: 8px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 12px 22px rgba(34, 197, 94, .22);
    transition: var(--t);
    border: 2px solid transparent;
}

#product-details .btn-order.disabled {
    background: var(--disabled-color);
    box-shadow: 0 12px 22px #fafafa;
    cursor: not-allowed;
}

#product-details .btn-addcart {
    border: 2px solid var(--primary-color);
    border-radius: var(--radius-1);
    background: #fff;
    color: var(--text-color);
    font-weight: 500;
    padding: 8px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--t);
}

#product-details .btn-addcart.disabled {
    background: var(--disabled-color);
    box-shadow: 0 12px 22px #fafafa;
    cursor: not-allowed;
    border: 2px solid var(--disabled-color);
}

/* ===========================
       Modal Gallery Styling
    ============================ */
.gallery-modal .modal-dialog {
    max-width: 980px;
}

.gallery-modal .modal-content {
    background: transparent;
    border: none;
}

.gallery-modal .modal-body {
    position: relative;
    padding: 0;
}

.gallery-modal .gallery-frame {
    position: relative;
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .35);
}

.gallery-modal .gallery-main {
    width: 100%;
    height: 620px;
    object-fit: contain;
    background: #fff;
    display: block;
}

.gallery-modal .g-close {
    position: absolute;
    top: -38px;
    right: 4px;
    color: #fff;
    font-size: 36px;
    opacity: .9;
    cursor: pointer;
    user-select: none;
}

.gallery-modal .g-close:hover {
    opacity: 1;
}

.gallery-modal .g-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 999px;
    background: rgba(0, 0, 0, .35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    user-select: none;
}

.gallery-modal .g-nav:hover {
    background: rgba(0, 0, 0, .45);
}

.gallery-modal .g-prev {
    left: -70px;
}

.gallery-modal .g-next {
    right: -70px;
}

.gallery-modal .g-prev i,
.gallery-modal .g-next i {
    font-size: 15px !important;
}

.gallery-modal .g-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 10px;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 0 12px;
}

.gallery-modal .g-thumb {
    width: 58px;
    height: 58px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    background: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .18);
    opacity: .95;
}

.gallery-modal .g-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-modal .g-thumb.active {
    border-color: #2563eb;
    opacity: 1;
}

.gallery-modal .g-count {
    position: absolute;
    right: 12px;
    bottom: 12px;
    background: rgba(0, 0, 0, .55);
    color: #fff;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
}

.gallery-modal .preview-stage img {
    height: 320px;
}

.gallery-modal .preview-stage {
    min-height: 320px;
}

.gallery-modal .img-lens {
    width: 120px;
    height: 120px;
}

.gallery-modal .zoom-overlay {
    height: 260px;
}

.gallery-modal .gallery-main {
    height: 460px;
}

.gallery-modal .g-prev {
    left: 10px;
}

.gallery-modal .g-next {
    right: 10px;
}


.product-details-tab-wapper .pd-tabs-wrap {
    padding: 18px 0 28px;
}

.product-details-tab-wapper .pd-card {
    background: #fff;
    border-radius: var(--radius-1);
    box-shadow: 0 10px 28px rgba(0, 0, 0, .06);
    padding: 16px 14px 0;
}

.product-details-tab-wapper .pd-tabs-top {
    padding-top: 6px;
}

.product-details-tab-wapper .pd-pills .nav-link {
    border-radius: 999px;
    padding: 8px 18px;
    font-weight: 700;
    font-size: 14px;
    color: #111;
    background: transparent;
    border: 1px solid transparent;
}

.product-details-tab-wapper .pd-pills .nav-link.active {
    background: var(--primary-color);
    color: #fff;
}

.product-details-tab-wapper .pd-divider {
    margin-top: 14px;
    border-top: 1px solid #e8e8e8;
}

#review-wapper {
    background: #ffffff;
    border-radius: var(--radius-1);
    padding: 28px 18px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .06);
    margin: 28px auto;
}

#review-wapper .section-titles {
    font-weight: 700;
    letter-spacing: .2px;
    text-align: center;
    margin-bottom: 18px;
    font-size: 25px;
}

#review-wapper .title-underline {
    width: 210px;
    height: 3px;
    background: var(--primary-color);
    margin: 6px auto 0;
    border-radius: 99px;
}

/* Summary card */
#review-wapper .summary-card {
    background: #f7f7f7;
    border: 1px solid #ececec;
    border-radius: var(--radius-1);
    padding: 18px;
    max-width: 720px;
    margin: 0 auto 18px;
}

#review-wapper .big-zero {
    font-size: 56px;
    font-weight: 800;
    line-height: 1;
}

#review-wapper .muted-small {
    color: #777;
    font-size: 14px;
}

#review-wapper .summary-card-left {
    border-right: 1px solid #aaa;
}

#review-wapper .rating-row .label {
    font-weight: 600;
}

#review-wapper .rating-row .label span {
    color: var(--yellow-color);
    font-size: 18px;
}

#review-wapper .stars-static i {
    font-size: 16px;
    color: #d6d6d6;
    margin-right: 2px;
}

/* Progress rows */
#review-wapper .rating-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 7px 0;
    font-size: 14px;
    color: #333;
}

#review-wapper .rating-row .label {
    width: 38px;
    display: flex;
    align-items: center;
    gap: 4px;
    justify-content: flex-end;
    white-space: nowrap;
}

#review-wapper .rating-row .count {
    width: 18px;
    text-align: right;
    color: #666;
}

#review-wapper .rating-row .bar {
    flex: 1;
    height: 6px;
    border-radius: 99px;
    background: #e9e9e9;
    overflow: hidden;
}

#review-wapper .rating-row .bar>span {
    display: block;
    height: 100%;
    width: 0%;
    background: var(--yellow-color);
    border-radius: 99px;
}

/* Write review button */

#review-wapper .write-btn {
    max-width: 730px;
    margin: 0 auto;
    background: #000;
    color: #fff;
    border-radius: var(--radius-1);
    padding: 10px 18px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: none;
    width: 100%;
}

#review-wapper .write-btn:hover {
    opacity: .92;
}

/* Review form box */
#review-wapper #reviewBox {
    display: none;
    max-width: 860px;
    margin: 30px auto 0;
}

#review-wapper .form-card {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: var(--radius-1);
    padding: 20px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .06);
}

#review-wapper .form-title {
    text-align: center;
    font-weight: 800;
    margin-bottom: 10px;
    font-size: 20px;
}

/* Interactive stars */
#review-wapper .stars-input {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 8px 0 14px;
}

#review-wapper .star-btn {
    cursor: pointer;
    font-size: 34px;
    line-height: 1;
    color: #d8d8d8;
    user-select: none;
    transition: transform .08s ease, color .12s ease;
}

#review-wapper .star-btn:hover {
    transform: scale(1.06);
}

#review-wapper .star-btn.active {
    color: var(--yellow-color);
}

/* yellow */

#review-wapper .form-label {
    font-weight: 600;
    color: #444;
}

#review-wapper .submit-btn {
    background: #000;
    color: #fff;
    border: none;
    border-radius: var(--radius-1);
    padding: 10px 18px;
    font-weight: 500;
    width: 100%;
}

#review-wapper .submit-btn:hover {
    opacity: .92;
}

.user-review .review-wrap {
    padding: 26px 0;
}

.user-review .review-card {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: var(--radius-1);
    padding: 18px 18px 16px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, .06);
    height: 100%;
}

.user-review .review-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 10px;
}

.user-review .avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    flex: 0 0 auto;
    border: 2px solid #f2f2f2;
}

.user-review .name {
    font-weight: 700;
    color: #111;
    font-size: 18px;
    line-height: 1.2;
    margin-bottom: 2px;
}

.user-review .stars {
    line-height: 1;
}

.user-review .star {
    font-size: 18px;
    color: #d7d7d7;
}

.user-review .star.filled {
    color: #f6b400;
}

.user-review .review-text {
    color: #4b5563;
    font-size: 17px;
    line-height: 1.7;
    margin-top: 10px;
}

/* =========================
   LOGIN REGISTER PAGE
========================= */

.auth-page .auth-card {
    max-width: 750px;
    background: #fff;
    border-radius: var(--radius-1);
    box-shadow: 0 14px 32px rgba(0, 0, 0, .10);
    overflow: hidden;
}

.auth-page .auth-tabs {
    display: flex;
    height: 54px;
}

.auth-page .tab-btn {
    width: 50%;
    border: 0;
    font-weight: 800;
    font-size: 15px;
    color: #fff;
    background: var(--secondary-color);
    transition: .15s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.auth-page #loginTab,
.auth-page #signupTab {
    background: var(--primary-color);
}

.auth-page .auth-body {
    padding: 22px 22px 26px;
}

.auth-page .form-label {
    font-size: 13px;
    color: #333;
    font-weight: 700;
    margin-left: 6px;
}

.auth-page .auth-input {
    border-radius: var(--radius-1);
    padding: 8px 14px;
    border: 1px solid #e3e3e3;
    box-shadow: none !important;
}

.auth-page .auth-input:focus {
    border-color: #bcd2ff;
}

.auth-page .auth-submit {
    background: var(--primary-color);
    color: #fff;
    font-weight: 600;
    border-radius: var(--radius-1);
    padding: 12px 16px;
    border: none;
}

.auth-page .auth-submit:hover {
    opacity: .92;
    color: #fff;
}

/* panes */
.auth-page .auth-pane {
    display: none;
}

.auth-page .auth-pane.show {
    display: block;
}

/* =========================
   CART PAGE
========================= */

#cart-section .cart-top {
    background: #fff;
    border-radius: var(--radius-1);
    box-shadow: 0 10px 22px rgba(0, 0, 0, .08);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 18px 0;
}

#cart-section .cart-top .left {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #111;
}

#cart-section .cart-top .cart-ico {
    width: 34px;
    height: 34px;
    border-radius: var(--radius-1);
    display: grid;
    place-items: center;
    background: var(--primary-body-color);
    border: 1px solid var(--primary-body-color);
    font-size: 15px;
}

#cart-section .clear-btn {
    background: var(--secondary-color);
    border: none;
    color: #fff;
    font-weight: 400;
    padding: 8px 14px;
    border-radius: var(--radius-1);
    box-shadow: 0 10px 18px rgba(229, 57, 53, .20);
}

#cart-section .clear-btn:hover {
    opacity: .92;
}

/* Left list card */
#cart-section .list-card {
    background: #fff;
    border-radius: var(--radius-1);
    box-shadow: 0 10px 22px rgba(0, 0, 0, .08);
    overflow: hidden;
}

#cart-section .list-head {
    background: var(--gradient-bg);
    color: #fff;
    font-weight: 900;
    padding: 12px 16px;
    font-size: 16px;
}

#cart-section .cart-row {
    display: grid;
    grid-template-columns: 72px 84px 1fr 110px 130px 110px;
    gap: 14px;
    align-items: center;
    padding: 15px;
    border-top: 1px solid #e9efff;
}

#cart-section .cart-row:first-of-type {
    border-top: none;
}

#cart-section .remove-x {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: var(--secondary-color);
    color: #fff;
    font-weight: 900;
    display: grid;
    place-items: center;
    box-shadow: 0 10px 18px rgba(229, 57, 53, .20);
}

#cart-section .pimg {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-1);
    object-fit: cover;
    border: 1px solid #e6e6e6;
    background: #fff;
}

#cart-section .pname {
    font-weight: 900;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 6px;
}

#cart-section .pmeta {
    color: #64748b;
    font-size: 13px;
}

#cart-section .unit-price {
    font-weight: 900;
    color: var(--primary-color);
    white-space: nowrap;
    text-align: right;
}

/* ===== Quantity box (MATCH LIKE YOUR IMAGE) ===== */
#cart-section .qty-wrap {
    display: flex;
    justify-content: center;
}

#cart-section .qty-box {
    display: flex;
    align-items: center;
    height: 44px;
    width: 110px;
    border-radius: 12px;
    overflow: hidden;
}

#cart-section .qty-btn {
    width: 30px;
    height: 30px;
    border: none;
    background: var(--primary-color);
    color: #fff;
    font-weight: 1000;
    font-size: 18px;
    display: grid;
    place-items: center;
    padding: 0;
    border-radius: 50%;
}

#cart-section .qty-btn:active {
    transform: scale(.98);
}

#cart-section .qty-btn:hover {
    opacity: .92;
}

#cart-section .qty-mid {
    flex: 1;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    font-weight: 900;
    font-size: 16px;
    color: #0f172a;
}

#cart-section .line-total {
    font-weight: 900;
    color: #0f172a;
    white-space: nowrap;
    text-align: right;
}

/* Right summary card */
#cart-section .summary-card {
    background: #fff;
    border-radius: var(--radius-1);
    box-shadow: 0 10px 22px rgba(0, 0, 0, .08);
    padding: 18px 18px 16px;
    position: sticky;
    top: 14px;
}

#cart-section .summary-title {
    font-weight: 1000;
    font-size: 22px;
    text-align: center;
    margin-bottom: var(--radius-1);
    color: #111;
}

#cart-section .sum-divider {
    border-top: 2px solid #dbe6ff;
    margin: 10px 0 14px;
}

#cart-section .sum-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #dbe6ff;
    color: #334155;
    font-weight: 700;
}

#cart-section .sum-row:last-of-type {
    border-bottom: none;
}

#cart-section .sum-row .val {
    color: #0f172a;
    font-weight: 900;
}

#cart-section .sum-row.total {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 1000;
    border-bottom: none;
    padding-top: 14px;
}

#cart-section .sum-row.total .val {
    color: var(--primary-color);
}

#cart-section .checkout-btn {
    margin-top: 16px;
    background: var(--gradient-bg);
    border: none;
    color: #fff;
    width: 100%;
    padding: 10px 16px;
    border-radius: var(--radius-1);
    font-weight: 500;
    font-size: 16px;
    display: block;
    text-align: center;
}

#cart-section .checkout-btn:hover {
    opacity: .92;
}

/* Responsive */
@media (max-width: 992px) {
    #cart-section .cart-row {
        grid-template-columns: 56px 76px 1fr;
        grid-template-areas:
            "remove img info"
            "price qty total";
    }

    #cart-section .cart-row> :nth-child(1) {
        grid-area: remove;
    }

    #cart-section .cart-row> :nth-child(2) {
        grid-area: img;
    }

    #cart-section .cart-row> :nth-child(3) {
        grid-area: info;
    }

    #cart-section .cart-row> :nth-child(4) {
        grid-area: price;
        text-align: left;
    }

    #cart-section .cart-row> :nth-child(5) {
        grid-area: qty;
        justify-self: start;
    }

    #cart-section .cart-row> :nth-child(6) {
        grid-area: total;
        text-align: right;
    }

    #cart-section .qty-wrap {
        justify-content: flex-start;
    }
}

/* =========================
   CHECKOUT PAGE
========================= */
/* outer card */
#checkout-section .checkout-shell {
    background: #fff;
    border-radius: var(--radius-1);
    box-shadow: 0 16px 34px rgba(0, 0, 0, .12);
    padding: 22px;
    margin: 22px 0 34px;
}

/* left form card */
#checkout-section .form-card {
    background: #ffffff;
    border-radius: var(--radius-1);
    padding: 22px;
    border: 1px solid #eef2ff;
}

#checkout-section .hint {
    text-align: center;
    color: var(--primary-color);
    font-weight: 800;
    font-size: 13px;
    margin-bottom: 14px;
}

#checkout-section .f-label {
    font-weight: 900;
    color: #0f172a;
    font-size: 13px;
    margin: 10px 0 6px;
}

#checkout-section .f-input {
    background: var(--primary-body-color);
    border: 1px solid #dfe7ff;
    border-radius: var(--radius-1);
    padding: 8px 14px;
    box-shadow: none !important;
}

#checkout-section .f-input:focus {
    border-color: #bcd2ff;
}

#checkout-section .pay-row {
    display: flex;
    gap: 16px;
    align-items: center;
    margin: 18px 0 14px;
    font-weight: 900;
    color: #0f172a;
}

#checkout-section .pay-row label {
    display: flex;
    gap: 10px;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

#checkout-section .pay-row input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-color);
}

#checkout-section .place-btn {
    width: 100%;
    background: var(--gradient-bg);
    color: #fff;
    border: none;
    border-radius: var(--radius-1);
    padding: 12px 18px;
    font-weight: 700;
    font-size: 16px;
    margin-top: 14px;
}

#checkout-section .place-btn:hover {
    opacity: .92;
}

/* right order card */
#checkout-section .order-card {
    background: var(--primary-body-color);
    border-radius: var(--radius-1);
    padding: 18px;
    border: 1px solid #e7eeff;
}

#checkout-section .order-inner {
    background: #fff;
    border-radius: var(--radius-1);
    padding: 16px;
    box-shadow: 0 10px 22px rgba(0, 0, 0, .08);
}

#checkout-section .order-title {
    text-align: center;
    font-weight: 1000;
    font-size: 22px;
    color: #0f172a;
    margin-bottom: 10px;
}

#checkout-section .title-line {
    border-top: 2px solid #dbe6ff;
    margin: 10px 0 14px;
}

/* table-ish box */
#checkout-section .order-box {
    border: 2px dashed #b9c7ea;
    border-radius: var(--radius-1);
    overflow: hidden;
    background: var(--primary-body-color);
}

#checkout-section .order-head {
    display: grid;
    grid-template-columns: 90px 1fr 110px 110px;
    gap: 10px;
    padding: 10px 12px;
    font-weight: 1000;
    font-size: 12px;
    color: #0f172a;
    background: #f1f5ff;
    border-bottom: 2px solid #0f172a;
    text-transform: uppercase;
}

#checkout-section .order-row {
    display: grid;
    grid-template-columns: 90px 1fr 110px 110px;
    gap: 10px;
    align-items: center;
    padding: 12px;
    border-top: 1px solid #e5ecff;
    background: #fff;
}

/* left cell: remove + image */
#checkout-section .imgcell {
    display: flex;
    align-items: center;
    gap: 10px;
}

#checkout-section .trash {
    width: 25px;
    height: 25px;
    border-radius: var(--radius-1);
    border: none;
    color: var(--secondary-color);
    display: grid;
    place-items: center;
    font-size: 12px;
}

#checkout-section .trash:hover {
    opacity: .9;
}

#checkout-section .pimg {
    width: 45px;
    height: 45px;
    border-radius: var(--radius-1);
    object-fit: cover;
    border: 1px solid #e6e6e6;
    background: #fff;
}

#checkout-section .pname {
    font-weight: 1000;
    color: #0f172a;
    font-size: 13px;
    line-height: 1.2;
    margin-bottom: 8px;
}

/* qty (small round - 2 + like screenshot) */
#checkout-section .qty-mini {
    display: flex;
    align-items: center;
    gap: 10px;
}

#checkout-section .qbtn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #cbd5e1;
    background: #fff;
    font-weight: 1000;
    line-height: 1;
    display: grid;
    place-items: center;
    color: #0f172a;
}

#checkout-section .qbtn:hover {
    background: #f1f5ff;
}

#checkout-section .qval {
    font-weight: 1000;
    width: 18px;
    text-align: center;
    color: #0f172a;
}

#checkout-section .price,
#checkout-section .total {
    font-weight: 1000;
    text-align: right;
    color: #0f172a;
    white-space: nowrap;
    font-size: 13px;
}

/* totals area */
#checkout-section .totals {
    margin-top: 14px;
    font-weight: 900;
    color: #0f172a;
}

#checkout-section .tot-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
}

#checkout-section .tot-row .val {
    font-weight: 1000;
}

#checkout-section .tot-divider {
    border-top: 1px solid #9aa7c7;
    margin: 8px 0;
}

#checkout-section .grand .val {
    color: #16a34a;
    font-size: 18px;
}

@media (max-width: 992px) {

    #checkout-section .order-head,
    #checkout-section .order-row {
        grid-template-columns: 1fr 110px 110px;
    }

    #checkout-section .order-head .hide-sm,
    #checkout-section .order-row .imgcell {
        grid-column: 1 / 2;
    }

    #checkout-section .order-row {
        grid-template-areas:
            "prod price total";
    }
}

/* =========================
   ORDER SUCCESS PAGE
========================= */

#order-success-section .success-shell {
    margin: 20px auto 40px;
    background: #fff;
    border-radius: var(--radius-1);
    box-shadow: 0 16px 34px rgba(0, 0, 0, .10);
    padding: 26px 22px 28px;
    position: relative;
}

#order-success-section .order-section-title {
    text-align: center;
    font-weight: 1000;
    font-size: 34px;
    color: #0f172a;
    margin-top: 6px;
}

#order-success-section .sub1 {
    text-align: center;
    color: #334155;
    margin-top: 10px;
    font-weight: 700;
    font-size: 16px;
}

#order-success-section .sub2 {
    text-align: center;
    color: #64748b;
    font-size: 15px;
    margin-top: 4px;
}

/* Order id box */
#order-success-section .oid-wrap {
    margin: 18px auto 22px;
    border: 2px dashed #bcd2ff;
    border-radius: var(--radius-1);
    padding: 14px 14px;
    background: #f7fbff;
    max-width: 980px;
}

#order-success-section .oid-label {
    text-align: center;
    font-size: var(--radius-1);
    font-weight: 800;
    color: #64748b;
    margin-bottom: 13px;
    font-size: 13px;
}

#order-success-section .oid-inner {
    background: #eef4ff;
    border-radius: 10px;
    padding: 14px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

#order-success-section .oid-num {
    font-weight: 1000;
    color: var(--product-details-blue-color);
    font-size: 20px;
}

#order-success-section .copy-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background: var(--product-details-blue-color);
    color: #fff;
    font-weight: 1000;
    display: grid;
    place-items: center;
    box-shadow: 0 10px 18px rgba(79, 70, 229, .25);
    transition: .15s ease;
}

#order-success-section .copy-btn.success {
    background: var(--primary-color);
    box-shadow: 0 10px 18px rgba(34, 197, 94, .25);
}

#order-success-section .copy-icon {
    font-size: 16px;
    line-height: 1;
}

#order-success-section .copy-btn:hover {
    opacity: .92;
}

/* Summary table */
#order-success-section .section-order-title {
    font-weight: 1000;
    color: #0f172a;
    margin: 10px 0 10px;
    text-align: center;
    font-size: 20px;
}

#order-success-section .tbl {
    max-width: 1100px;
    margin: 0 auto;
    border-collapse: separate;
    border-spacing: 0;
}

#order-success-section .tbl th {
    font-size: 17px;
    color: #334155;
    font-weight: 1000;
    border-bottom: 1px solid #dbe6ff !important;
    padding: 12px 10px;
}

#order-success-section .tbl td {
    font-size: 15px;
    color: #0f172a;
    padding: 14px 10px;
    border-bottom: 1px solid #e7eeff !important;
    vertical-align: top;
}

#order-success-section .pname {
    font-weight: 1000;
    margin-bottom: 2px;
}

#order-success-section .psub {
    color: #64748b;
    font-size: 12px;
}

#order-success-section .right {
    white-space: nowrap;
    font-weight: 900;
}

#order-success-section .sumline {
    max-width: 1100px;
    margin: 12px auto 0;
    padding-top: 8px;
}

#order-success-section .sumrow {
    display: flex;
    justify-content: flex-end;
    gap: 18px;
    align-items: center;
    padding: 6px 0;
    color: #0f172a;
    font-weight: 900;
}

#order-success-section .sumrow .label {
    min-width: 110px;
    text-align: right;
    color: #334155;
}

#order-success-section .sumrow .val {
    min-width: 110px;
    text-align: right;
}

#order-success-section .grand .val {
    color: var(--secondary-color);
    font-size: 18px;
}

#order-success-section .btns {
    max-width: 1100px;
    margin: 18px auto 0;
    display: flex;
    gap: 10px;
}

#order-success-section .btn-red {
    background: var(--secondary-color);
    border: none;
    color: #fff;
    font-weight: 500;
    border-radius: var(--radius-1);
    padding: 10px 16px;
    width: 50%;
    box-shadow: 0 14px 24px rgba(255, 45, 85, .18);
    text-align: center;
}

#order-success-section .btn-red:hover {
    opacity: .92;
    color: #fff;
}

#order-success-section .btn-white {
    background: #fff;
    border: 1px solid #dbe6ff;
    color: #0f172a;
    font-weight: 500;
    border-radius: var(--radius-1);
    padding: 10px 16px;
    width: 50%;
    text-align: center;
}

#order-success-section .btn-white:hover {
    background: #f7fbff;
}

#order-success-section .toast-mini {
    display: none;
    text-align: center;
    color: var(--primary-color);
    font-weight: 900;
    font-size: 13px;
    margin-top: 8px;
}

@media (max-width: 768px) {
    #order-success-section .title {
        font-size: 26px;
    }

    #order-success-section .oid-inner {
        padding: 12px;
    }

    #order-success-section .oid-num {
        font-size: 18px;
    }
}

/* =========================
   CONTACT PAGE
========================= */
/* map top */
#contact-section .map-wrap {
    margin: 18px auto 10px;
    border-radius: var(--radius-1);
    overflow: hidden;
    box-shadow: 0 12px 26px rgba(0, 0, 0, .10);
    background: #fff;
}

#contact-section .map-wrap iframe {
    width: 100%;
    height: 260px;
    border: 0;
    display: block;
}

/* content section */
#contact-section .contact-area {
    padding: 0 0 30px;
}

#contact-section .contact-title {
    text-align: center;
    font-weight: 1000;
    color: #0f172a;
    font-size: 25px;
    margin-top: 15px;
    position: relative;
    display: inline-block;
    padding: 0 10px;
}

#contact-section .title-line {
    width: 180px;
    height: 2px;
    background: var(--primary-color);
    margin: 0px auto 8px;
    border-radius: 99px;
}

#contact-section .contact-sub {
    max-width: 900px;
    margin: 0 auto 20px;
    text-align: center;
    color: #334155;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.7;
}

#contact-section .form-control.custom-input {
    background: #dbeaf4;
    border: 1px solid #cfe0ee;
    border-radius: var(--radius-1);
    padding: 12px 18px;
    box-shadow: none !important;
    font-size: 13px;
}

#contact-section .custom-textarea {
    background: #dbeaf4;
    border: 1px solid #cfe0ee;
    border-radius: var(--radius-1);
    padding: 12px 18px;
    box-shadow: none !important;
    font-size: 13px;
    resize: none;
    min-height: 150px;
}

#contact-section .form-label {
    font-weight: 800;
    font-size: 16px;
    color: #1f2937;
    margin-left: 10px;
}


#contact-section .send-btn {
    background: var(--gradient-bg);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 10px 22px;
    font-weight: 900;
    font-size: 14px;
    box-shadow: 0 12px 18px rgba(47, 111, 219, .20);
}

#contact-section .send-btn:hover {
    opacity: .92;
    color: #fff;
}

/* right side */
#contact-section .right-box {
    text-align: center;
    padding-top: 18px;
}

#contact-section .right-img {
    max-width: 230px;
    width: 100%;
    margin: 0 auto 14px;
}

#contact-section .info-row {
    display: flex;
    justify-content: center;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
    font-size: 15px;
    margin-top: 8px;
}

#contact-section .info-row a {
    color: #0f172a;
    text-decoration: none;
}

#contact-section .socials {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 10px;
}

#contact-section .social-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #1e293b;
    color: #fff;
    display: flex;
    font-weight: 1000;
    font-size: 15px;
    text-decoration: none;
    justify-content: center;
    align-items: center;
}

#contact-section .social-btn:hover {
    opacity: .7;
    color: #fff;
}

/* =========================
   BOTTOM NAV
========================= */

#mobile-bottom-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    border-top: 1px solid rgba(0, 0, 0, .08);
    box-shadow: 0 -10px 28px rgba(0, 0, 0, .06);
    z-index: 1045;
    height: 70px;
}

#mobile-bottom-nav .wrap {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 8px 6px;
}

#mobile-bottom-nav .b-item {
    width: 20%;
    text-decoration: none;
    color: #111827;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 500;
    position: relative;
}

#mobile-bottom-nav .b-item i {
    font-size: 15px;
}

#mobile-bottom-nav .b-item.active {
    color: var(--secondary-color);
}

#mobile-bottom-nav .b-cart-badge {
    position: absolute;
    top: -13px;
    right: 26%;
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: var(--primary-color);
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    border: 1px solid #fff;
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* =========================
   PRODUCTS FILTER (updated)
========================= */
.product-filter .filter-card {
    background: #fff;
    border-radius: var(--radius-1);
    box-shadow: 0 14px 28px rgba(0, 0, 0, .10);
    padding: 18px 16px 16px;
    position: sticky;
    top: 14px;
}

.product-filter .filter-title {
    text-align: center;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 10px;
    font-size: 18px;
}

/* ===== Dual range slider (single line) ===== */
.product-filter .range-wrap {
    position: relative;
    height: 18px;
    margin: 6px 6px 2px;
}

.product-filter .range-track {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 3px;
    background: #cfd7e6;
    border-radius: 99px;
}

.product-filter .range-progress {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 3px;
    background: var(--primary-color);
    border-radius: 99px;
    left: 0%;
    right: 0%;
}

/* overlayed inputs */
.product-filter .range-input {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    height: 18px;
    margin: 0;
    background: transparent;
    pointer-events: none;
    -webkit-appearance: none;
    appearance: none;
}

.product-filter .range-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    pointer-events: auto;
    box-shadow: 0 6px 12px rgba(47, 170, 70, .25);
}

.product-filter .range-input::-moz-range-thumb {
    width: 12px;
    height: 12px;
    border: none;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    pointer-events: auto;
    box-shadow: 0 6px 12px rgba(47, 170, 70, .25);
}

.product-filter .range-input::-webkit-slider-runnable-track {
    height: 3px;
    background: transparent;
}

.product-filter .range-input::-moz-range-track {
    height: 3px;
    background: transparent;
}

.product-filter .price-row {
    display: flex;
    justify-content: space-between;
    color: var(--primary-color);
    font-weight: 900;
    font-size: 13px;
    margin: 2px 4px 12px;
}

/* ===== Accordion ===== */
.product-filter .acc-item {
    margin-top: 8px;
}

.product-filter .acc-head {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 2px 8px;
    background: transparent;
    border: none;
    cursor: pointer;

    font-weight: 900;
    color: #0f172a;
    font-size: 12px;
    letter-spacing: .3px;
    text-transform: uppercase;

    border-bottom: 2px solid #d6e3ff;
}

.product-filter .acc-icon {
    font-size: 18px;
    line-height: 1;
    font-weight: 900;
    color: #0f172a;
    display: inline-block;
    transition: transform .22s ease;
}

.product-filter .acc-head[aria-expanded="true"] {
    border-bottom: 1px solid var(--primary-color);
}

.product-filter .acc-head[aria-expanded="true"] .acc-icon {
    transform: rotate(180deg);
}

/* Smooth accordion animation (no display none) */
.product-filter .acc-body {
    display: block;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0 2px;
    transition: max-height .28s ease, opacity .22s ease, padding .22s ease;
}

.product-filter .acc-head[aria-expanded="true"]+.acc-body {
    max-height: 400px;
    opacity: 1;
    padding: 10px 2px 6px;
    overflow: auto;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) #fff;
}

/* lists */
.product-filter ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

/* normal links */
.product-filter .cat-link,
.product-filter .brand-link {
    display: block;
    padding: 9px 6px;
    color: #0f172a;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    border-radius: 10px;
    transition: background .18s ease, color .18s ease;
}

.product-filter .cat-link:hover,
.product-filter .brand-link:hover {
    background: #f1f6ff;
}

/* category with nested */
.product-filter .cat-item.active .cat-name {
    color: var(--primary-color);
    font-weight: 900;
}

.product-filter .cat-item {
    line-height: 30px;
}

.product-filter .cat-btn {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    padding: 9px 6px 6px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 800;
    color: #0f172a;
    transition: color .18s ease;
}

.product-filter .subcat-list {
    margin: 4px 0 8px 22px;
}

.product-filter .subcat-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 6px;
    text-decoration: none;
    color: #334155;
    font-weight: 700;
    font-size: 12px;
    border-radius: 10px;
    transition: background .18s ease, color .18s ease;
}

.product-filter .mini-ic {
    font-size: 12px;
    opacity: .75;
}

.product-filter .subcat-link:hover {
    background: #f1f6ff;
}

.product-filter .subcat-link.active {
    color: var(--primary-color);
    font-weight: 900;
}

.product-filter .brand-link.active {
    color: var(--primary-color);
}

/* reset button */
.product-filter .reset-btn {
    margin-top: 14px;
    width: 100%;
    background: var(--primary-color);
    border: none;
    color: #fff;
    font-weight: 400;
    border-radius: var(--radius-1);
    padding: 10px 8px;
    transition: opacity .18s ease, transform .18s ease;
    display: block;
    text-align: center;
}

.product-filter .reset-btn:hover {
    opacity: .92;
    transform: translateY(-1px);
}

@media (max-width: 992px) {
    .product-filter .filter-card {
        position: static;
    }
}

/* =========================
   USER DASHBOARD
========================= */
.user-dashboard .app-shell {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
}

.user-dashboard .sidebar {
    background: var(--secondary-color);
    color: #e5e7eb;
    flex: 0 0 260px;
    width: 260px;
    min-width: 260px;
    max-width: 260px;
    border-radius: var(--radius-1);
    position: sticky;
    top: 0;
    overflow-y: auto;
    align-self: flex-start;
}

.user-dashboard .content {
    flex: 1 1 auto;
    min-width: 0;
    padding: 0px 24px;
}

.user-dashboard .brand {
    letter-spacing: .2px;
}

.user-dashboard .nav-pills .nav-link {
    color: #d1d5db;
    border-radius: var(--radius-1);
    padding: .7rem .9rem;
    margin-bottom: .35rem;
}

.user-dashboard .nav-pills .nav-link:hover {
    background: rgba(255, 255, 255, .08);
    color: #fff;
}

.user-dashboard .nav-pills .nav-link.active {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 10px 20px rgba(37, 99, 235, .25);
}

.user-dashboard .card {
    border: 0;
    border-radius: var(--radius-1);
    box-shadow: 0 10px 30px rgba(17, 24, 39, .06);
}

.user-dashboard .stat {
    border-radius: var(--radius-1);
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .06);
}

.user-dashboard .avatar {
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
}

.user-dashboard .avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.user-dashboard .table thead th {
    font-weight: 600;
    color: #374151;
    background: #f9fafb;
}

.user-dashboard .badge-soft {
    background: rgba(37, 99, 235, .12);
    color: #2563eb;
    border: 1px solid rgba(37, 99, 235, .2);
}

.user-dashboard .form-control,
.user-dashboard .form-select {
    border-radius: var(--radius-1);
}

.user-dashboard .btn {
    border-radius: var(--radius-1);
    border: 1px solid var(--primary-color);
    color: var(--secondary-app-color);
    font-weight: 500;
}

.user-dashboard .section-titled {
    font-weight: 700;
    color: #111827;
}

.user-dashboard .muted {
    color: #6b7280;
}

@media (max-width: 991.98px) {
    .user-dashboard .app-shell {
        flex-wrap: wrap;
    }

    .user-dashboard .sidebar {
        position: relative;
        width: 100%;
        min-width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
        height: auto;
    }

    .user-dashboard .content {
        padding: 16px;
        flex: 0 0 100%;
        width: 100%;
    }
}
