/* =================================================================
   IMOBILE E-COMMERCE — DESIGN SYSTEM v3
   Frontend CSS rebuild from scratch (Shopee/Lazada/Tiki inspired)
   ================================================================= */

/* ===========================================================
   1. DESIGN TOKENS (CSS variables — single source of truth)
   =========================================================== */
:root {
    /* Brand colors */
    --c-primary: #ee4d2d;
    --c-primary-600: #d73719;
    --c-primary-100: #fff1ee;
    --c-secondary: #ffd900;
    --c-accent: #1ba8e0;

    /* Status */
    --c-success: #16a34a;
    --c-warning: #f59e0b;
    --c-danger: #ef4444;
    --c-info: #0ea5e9;

    /* Neutrals */
    --c-white: #ffffff;
    --c-black: #000000;
    --c-gray-50: #f9fafb;
    --c-gray-100: #f3f4f6;
    --c-gray-200: #e5e7eb;
    --c-gray-300: #d1d5db;
    --c-gray-400: #9ca3af;
    --c-gray-500: #6b7280;
    --c-gray-600: #4b5563;
    --c-gray-700: #374151;
    --c-gray-800: #1f2937;
    --c-gray-900: #111827;
    --c-text: #1f2937;
    --c-text-soft: #6b7280;
    --c-bg: #f5f5f5;
    --c-border: #e5e7eb;

    /* Typography scale */
    --f-family: 'Be Vietnam Pro', 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --fs-xs: 11px;
    --fs-sm: 12px;
    --fs-base: 13px;
    --fs-md: 14px;
    --fs-lg: 16px;
    --fs-xl: 18px;
    --fs-2xl: 22px;
    --fs-3xl: 28px;
    --fs-4xl: 36px;
    --fw-normal: 400;
    --fw-medium: 500;
    --fw-semi: 600;
    --fw-bold: 700;
    --fw-extra: 800;
    --lh-tight: 1.25;
    --lh-snug: 1.4;
    --lh-base: 1.55;

    /* Spacing scale (4px grid) */
    --s-1: 4px;
    --s-2: 8px;
    --s-3: 12px;
    --s-4: 16px;
    --s-5: 20px;
    --s-6: 24px;
    --s-8: 32px;
    --s-10: 40px;
    --s-12: 48px;
    --s-16: 64px;

    /* Radii */
    --r-sm: 4px;
    --r: 8px;
    --r-md: 10px;
    --r-lg: 14px;
    --r-xl: 20px;
    --r-full: 9999px;

    /* Shadows */
    --sh-xs: 0 1px 2px rgba(0,0,0,.04);
    --sh-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
    --sh: 0 4px 12px rgba(0,0,0,.06);
    --sh-md: 0 6px 20px rgba(0,0,0,.08);
    --sh-lg: 0 14px 32px rgba(0,0,0,.12);

    /* Transitions */
    --ease: cubic-bezier(.4, 0, .2, 1);
    --t-fast: .15s var(--ease);
    --t: .2s var(--ease);
    --t-slow: .35s var(--ease);

    /* Layout */
    --header-h: 92px;
    --menu-h: 50px;
    --container-max: 1320px;
}

/* ===========================================================
   2. RESET + BASE
   =========================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
    font-family: var(--f-family);
    font-size: var(--fs-md);
    line-height: var(--lh-base);
    color: var(--c-text);
    background: var(--c-bg);
    margin: 0;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; transition: color var(--t); }
a:hover { color: var(--c-primary); }
ul, ol { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4, h5, h6 {
    margin: 0 0 var(--s-2);
    font-weight: var(--fw-bold);
    line-height: var(--lh-tight);
    color: var(--c-gray-900);
}
p { margin: 0 0 var(--s-2); }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; font-size: inherit; }
section { padding: var(--s-10) 0; position: relative; }

/* ===========================================================
   3. LAYOUT (container, grid utilities)
   =========================================================== */
.container { width: 100%; max-width: var(--container-max); margin: 0 auto; padding: 0 var(--s-4); }

/* ===========================================================
   4. HEADER
   =========================================================== */
header {
    background: var(--c-white);
    padding: var(--s-4) 0;
    box-shadow: var(--sh-sm);
    position: relative;
    z-index: 100;
}
header > .container > .row { align-items: center; }

/* Logo */
.wsus_logo_area { display: flex; align-items: center; }
.wsus__header_logo { display: inline-flex; align-items: center; line-height: 1; }
.wsus__header_logo img {
    max-height: 56px;
    width: auto !important;
    object-fit: contain;
}

/* Search bar — Shopee-style */
.wsus__search { position: relative; width: 100%; }
.wsus__search form {
    display: flex;
    background: var(--c-white);
    border: 2px solid var(--c-primary);
    border-radius: var(--r-full);
    overflow: hidden;
    box-shadow: var(--sh-xs);
    transition: box-shadow var(--t);
}
.wsus__search form:focus-within {
    box-shadow: 0 0 0 4px var(--c-primary-100);
}
.wsus__search input {
    flex: 1;
    padding: 12px 22px;
    border: 0;
    outline: 0;
    background: transparent;
    font-size: var(--fs-md);
    color: var(--c-text);
    min-width: 0;
}
.wsus__search input::placeholder { color: var(--c-gray-400); }
.wsus__search button {
    padding: 0 var(--s-6);
    background: var(--c-primary);
    color: var(--c-white);
    border: 0;
    font-size: var(--fs-lg);
    transition: background var(--t);
}
.wsus__search button:hover { background: var(--c-primary-600); }
.suggestions-list {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: var(--c-white);
    box-shadow: var(--sh-md);
    border-radius: var(--r-md);
    max-height: 380px;
    overflow-y: auto;
    z-index: 200;
}
.suggestions-list:empty, .suggestions-list.d-none { display: none !important; }
.suggestion-details, .suggestions-list > div {
    padding: var(--s-3) var(--s-4);
    border-bottom: 1px solid var(--c-gray-100);
    cursor: pointer;
    transition: background var(--t);
    font-size: var(--fs-base);
}
.suggestions-list > div:hover { background: var(--c-gray-50); }

/* Contact + icons */
.wsus__call_icon_area {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: var(--s-6);
}
.wsus__call_area { display: flex; align-items: center; gap: var(--s-3); }
.wsus__call {
    width: 44px;
    height: 44px;
    background: var(--c-primary-100);
    color: var(--c-primary);
    border-radius: var(--r-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fs-lg);
    flex-shrink: 0;
}
.wsus__call_text p {
    font-size: var(--fs-base);
    color: var(--c-gray-700);
    margin: 0;
    line-height: 1.35;
    white-space: nowrap;
}
.wsus__call_text p:first-child {
    font-weight: var(--fw-bold);
    color: var(--c-gray-900);
}
.wsus__icon_area { display: flex; gap: var(--s-5); align-items: center; }
.wsus__icon_area > li { position: relative; }
.wsus__icon_area > li > a {
    color: var(--c-gray-700);
    font-size: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: var(--r-full);
    transition: all var(--t);
}
.wsus__icon_area > li > a:hover {
    color: var(--c-primary);
    background: var(--c-primary-100);
}
.wsus__icon_area > li > a > span {
    position: absolute;
    top: 4px;
    right: 4px;
    background: var(--c-primary);
    color: var(--c-white);
    font-size: 10px;
    font-weight: var(--fw-bold);
    min-width: 18px;
    height: 18px;
    line-height: 18px;
    padding: 0 5px;
    border-radius: var(--r-full);
    text-align: center;
    border: 2px solid var(--c-white);
}

/* Mobile menu trigger */
.wsus__mobile_menu_area {
    display: none;
    align-items: center;
    cursor: pointer;
    padding: var(--s-2);
    color: var(--c-gray-700);
    font-size: 22px;
}

/* ===========================================================
   5. MINI CART DROPDOWN
   =========================================================== */
.wsus__minicart_btn_area { position: relative; margin-top: 0 !important; }
.wsus__mini_cart {
    position: absolute;
    top: calc(100% + var(--s-3));
    right: 0;
    width: 380px;
    background: var(--c-white);
    box-shadow: var(--sh-lg);
    border-radius: var(--r-md);
    padding: var(--s-5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity var(--t), visibility var(--t), transform var(--t);
}
.wsus__icon_area > li:hover > .wsus__mini_cart,
.wsus__minicart_btn_area:hover .wsus__mini_cart,
.wsus__mini_cart.show, .wsus__mini_cart.show_cart {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.wsus__mini_cart h4 {
    font-size: var(--fs-lg);
    font-weight: var(--fw-bold);
    margin-bottom: var(--s-3);
    padding-bottom: var(--s-3);
    border-bottom: 1px solid var(--c-gray-200);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.wsus_close_mini_cart {
    cursor: pointer;
    color: var(--c-gray-400);
    transition: color var(--t);
    font-size: var(--fs-base);
}
.wsus_close_mini_cart:hover { color: var(--c-primary); }
.mini-cart-wrapper, .wsus__cart_list_body {
    max-height: 360px;
    overflow-y: auto;
}
.mini-cart-wrapper > li, .wsus__cart_list_body > li {
    display: flex !important;
    gap: var(--s-3);
    padding: var(--s-3) 0;
    border-bottom: 1px dashed var(--c-gray-200);
    align-items: flex-start !important;
}
.mini-cart-wrapper > li:last-child { border-bottom: 0; }
.wsus__cart_img { flex: 0 0 64px; position: relative; }
.wsus__cart_img a { display: block; }
.wsus__cart_img img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: var(--r-sm);
    background: var(--c-gray-100);
    border: 1px solid var(--c-gray-200);
    padding: 0 !important;
}
.wsis__del_icon, .remove-sidebar-product {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--c-primary);
    color: var(--c-white) !important;
    width: 22px;
    height: 22px;
    border-radius: var(--r-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    cursor: pointer;
    transition: transform var(--t);
}
.wsis__del_icon:hover, .remove-sidebar-product:hover { transform: scale(1.1); }
.wsus__cart_text { flex: 1; min-width: 0; }
.wsus__cart_title {
    display: block;
    font-size: var(--fs-base);
    font-weight: var(--fw-semi);
    color: var(--c-gray-800);
    line-height: 1.4;
    margin-bottom: var(--s-1);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.wsus__cart_title:hover { color: var(--c-primary); }
.wsus__cart_text small {
    font-size: var(--fs-xs);
    color: var(--c-gray-500);
    line-height: 1.4;
}
.wsus__cart_text p {
    font-size: var(--fs-base);
    color: var(--c-primary);
    font-weight: var(--fw-bold);
    margin: var(--s-1) 0 0;
}
.mini-cart-action.d-none { display: none !important; }
.mini-cart-action h5 {
    display: flex;
    justify-content: space-between;
    font-size: var(--fs-md);
    font-weight: var(--fw-semi);
    padding: var(--s-3) 0;
    margin-top: var(--s-3);
    border-top: 2px solid var(--c-gray-200);
}
.mini-cart-action h5 span { color: var(--c-primary); font-weight: var(--fw-bold); }
.wsus__minicart_btn_area .common_btn {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: var(--s-3);
}

/* ===========================================================
   6. MAIN MENU (Categories + Pages)
   =========================================================== */
.wsus__main_menu {
    background: var(--c-white);
    border-bottom: 1px solid var(--c-gray-200);
    box-shadow: var(--sh-sm);
    position: relative;
    z-index: 90;
}
.wsus__main_menu.menu_fix {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    box-shadow: var(--sh-md);
    animation: slideDown .35s var(--ease);
}
@keyframes slideDown { from { transform: translateY(-100%); } to { transform: translateY(0); } }

.relative_contect {
    display: flex;
    align-items: stretch;
    position: relative;
    height: var(--menu-h);
}

/* Category dropdown trigger */
.wsus_menu_category_bar {
    background: var(--c-primary);
    color: var(--c-white);
    padding: 0 var(--s-5);
    cursor: pointer;
    font-weight: var(--fw-bold);
    display: inline-flex;
    align-items: center;
    gap: var(--s-2);
    height: 100%;
    user-select: none;
    flex-shrink: 0;
    min-width: 240px;
    border-radius: var(--r) var(--r) 0 0;
    position: relative;
    text-transform: uppercase;
    font-size: var(--fs-base);
    letter-spacing: .3px;
}
.wsus_menu_category_bar::before {
    content: 'Tất cả danh mục';
}
.wsus_menu_category_bar i { font-size: var(--fs-md); margin-left: auto; }

/* Category items dropdown */
.wsus_menu_cat_item {
    position: absolute;
    top: 100%;
    left: 0;
    width: 280px;
    background: var(--c-white);
    box-shadow: var(--sh-md);
    border-radius: 0 0 var(--r) var(--r);
    border: 1px solid var(--c-gray-200);
    border-top: 0;
    display: none;
    z-index: 100;
    padding: var(--s-2) 0;
    max-height: 460px;
    overflow-y: auto;
}
.wsus_menu_cat_item.show_home { display: block; }
.relative_contect:hover .wsus_menu_cat_item { display: block; }
.wsus_menu_cat_item > li {
    position: relative;
    border-bottom: 1px solid var(--c-gray-100);
}
.wsus_menu_cat_item > li:last-child { border-bottom: 0; }
.wsus_menu_cat_item > li > a {
    display: flex;
    align-items: center;
    gap: var(--s-3);
    padding: 11px var(--s-4);
    color: var(--c-gray-800);
    font-size: var(--fs-base);
    font-weight: var(--fw-medium);
    transition: all var(--t);
}
.wsus_menu_cat_item > li > a:hover {
    background: var(--c-primary-100);
    color: var(--c-primary);
    padding-left: var(--s-5);
}
.wsus_menu_cat_item > li > a > i:first-child {
    flex-shrink: 0;
    width: 18px;
    color: var(--c-gray-500);
    font-size: var(--fs-md);
}
.wsus_menu_cat_item > li > a:hover > i:first-child { color: var(--c-primary); }
.wsus__droap_arrow::after {
    content: '\f105';
    font-family: 'Font Awesome 5 Free', 'Font Awesome 5 Pro', 'FontAwesome', sans-serif;
    font-weight: 900;
    font-size: var(--fs-sm);
    color: var(--c-gray-400);
    margin-left: auto;
}

/* Sub-categories */
.wsus_menu_cat_droapdown,
.wsus__sub_category {
    display: none;
    position: absolute;
    left: 100%;
    top: -1px;
    width: 240px;
    background: var(--c-white);
    box-shadow: var(--sh-md);
    border-radius: var(--r);
    border: 1px solid var(--c-gray-200);
    z-index: 110;
    padding: var(--s-2) 0;
    max-height: 420px;
    overflow-y: auto;
}
.wsus_menu_cat_item > li:hover > .wsus_menu_cat_droapdown,
.wsus_menu_cat_droapdown > li:hover > .wsus__sub_category,
.wsus_menu_cat_droapdown > li:hover > ul { display: block; }
.wsus_menu_cat_droapdown > li > a,
.wsus__sub_category > li > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--s-2) var(--s-4);
    font-size: var(--fs-base);
    color: var(--c-gray-700);
    transition: all var(--t);
}
.wsus_menu_cat_droapdown > li > a:hover,
.wsus__sub_category > li > a:hover {
    background: var(--c-primary-100);
    color: var(--c-primary);
}

/* Top page menu */
.wsus__menu_item {
    display: flex;
    align-items: center;
    gap: var(--s-8);
    flex: 1;
    padding-left: var(--s-6);
    margin: 0;
    height: var(--menu-h);
}
.wsus__menu_item > li { position: relative; height: 100%; display: flex; align-items: center; }
.wsus__menu_item > li > a {
    display: inline-flex;
    align-items: center;
    gap: var(--s-1);
    color: var(--c-gray-800);
    font-size: var(--fs-base);
    font-weight: var(--fw-semi);
    text-transform: uppercase;
    letter-spacing: .3px;
    transition: color var(--t);
    height: 100%;
    padding: 0;
}
.wsus__menu_item > li > a.active,
.wsus__menu_item > li > a:hover { color: var(--c-primary); }
.wsus__menu_item_right { margin-left: auto; padding-left: 0; }

/* Mega menu / dropdown */
.wsus__mega_menu, .wsus__menu_droapdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--c-white);
    box-shadow: var(--sh-lg);
    border-radius: 0 0 var(--r) var(--r);
    z-index: 100;
}
.wsus__mega_menu { width: 720px; padding: var(--s-5); }
.wsus__menu_droapdown { min-width: 220px; padding: var(--s-2) 0; }
.wsus__menu_item > li:hover > .wsus__mega_menu,
.wsus__menu_item > li:hover > .wsus__menu_droapdown { display: block; }
.wsus__mega_menu_colum h6, .wsus__mega_menu_colum h4 {
    font-size: var(--fs-md);
    font-weight: var(--fw-bold);
    margin-bottom: var(--s-3);
    text-transform: uppercase;
    color: var(--c-gray-900);
}
.wsus__mega_menu_colum ul li, .wsis__mega_menu_item li { padding: var(--s-1) 0; }
.wsus__menu_droapdown li a {
    display: block;
    padding: var(--s-2) var(--s-4);
    font-size: var(--fs-base);
    color: var(--c-gray-700);
}
.wsus__menu_droapdown li a:hover { background: var(--c-primary-100); color: var(--c-primary); }

/* Mobile menu */
@media (max-width: 991px) {
    .wsus__main_menu { display: none !important; }
    .wsus__mobile_menu_area { display: flex; }
}
#wsus__mobile_menu, .wsus__mobile_menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 86%;
    max-width: 340px;
    height: 100vh;
    background: var(--c-white);
    z-index: 9999;
    overflow-y: auto;
    transition: left var(--t-slow);
    box-shadow: var(--sh-lg);
    padding: var(--s-5);
}
#wsus__mobile_menu.active, .wsus__mobile_menu.active { left: 0; }
.wsus__mobile_menu_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: var(--s-3);
    border-bottom: 1px solid var(--c-gray-200);
    margin-bottom: var(--s-3);
}
.wsus__mobile_menu_header_icon i { font-size: 26px; color: var(--c-primary); }
.wsus__mobile_menu_close {
    font-size: 24px;
    cursor: pointer;
    color: var(--c-gray-700);
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    border-radius: var(--r-full);
    transition: background var(--t);
}
.wsus__mobile_menu_close:hover { background: var(--c-gray-100); color: var(--c-primary); }
.wsus__mobile_menu_main_menu li {
    padding: var(--s-3) 0;
    border-bottom: 1px solid var(--c-gray-100);
}
.wsus__mobile_menu_main_menu li a {
    color: var(--c-gray-800);
    font-size: var(--fs-md);
    font-weight: var(--fw-medium);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.wsus__mobile_menu_main_menu li a:hover { color: var(--c-primary); }
.accordion-flush .accordion-item { border: 0; border-bottom: 1px solid var(--c-gray-100); }
.accordion-button {
    background: var(--c-white);
    padding: var(--s-3) 0;
    font-size: var(--fs-md);
    font-weight: var(--fw-medium);
    box-shadow: none !important;
}
.accordion-button:not(.collapsed) { background: var(--c-white); color: var(--c-primary); }
.accordion-body { padding: 0 0 var(--s-2) var(--s-4); }
.accordion-body a { display: block; padding: var(--s-2) 0; font-size: var(--fs-base); color: var(--c-gray-700); }

/* ===========================================================
   7. HERO BANNER SLIDER
   =========================================================== */
#wsus__banner {
    background: var(--c-gray-50);
    padding: var(--s-6) 0 var(--s-8);
}
.wsus__banner_content {
    position: relative;
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--sh);
}
.banner_slider { min-height: 440px; }
.wsus__single_slider {
    position: relative;
    min-height: 440px;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    border-radius: var(--r-lg);
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: var(--s-12) var(--s-10);
}
.wsus__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.2) 50%, rgba(0,0,0,0) 100%);
}
.wsus__single_slider_text {
    position: relative;
    z-index: 2;
    color: var(--c-white);
    max-width: 580px;
}
.wsus__single_slider_text h3 {
    font-size: var(--fs-lg);
    font-weight: var(--fw-medium);
    margin-bottom: var(--s-3);
    color: var(--c-white);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: .9;
}
.wsus__single_slider_text h1 {
    font-size: var(--fs-4xl);
    font-weight: var(--fw-extra);
    margin-bottom: var(--s-3);
    line-height: 1.1;
    color: var(--c-white);
}
.wsus__single_slider_text h6 {
    font-size: var(--fs-xl);
    color: var(--c-secondary);
    margin-bottom: var(--s-6);
    font-weight: var(--fw-semi);
}
.wsus__single_slider_text .common_btn { margin-top: var(--s-3); }

/* Slick arrows + dots */
.slick-prev, .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    background: var(--c-white);
    border: 0;
    border-radius: var(--r-full);
    color: var(--c-gray-700);
    box-shadow: var(--sh);
    z-index: 10;
    transition: all var(--t);
    font-size: 0;
}
.slick-prev:hover, .slick-next:hover { background: var(--c-primary); color: var(--c-white); }
.slick-prev::before, .slick-next::before {
    font-family: 'Font Awesome 5 Free', 'FontAwesome';
    font-weight: 900;
    font-size: 18px;
    color: inherit;
    opacity: 1;
}
.slick-prev::before { content: '\f053'; }
.slick-next::before { content: '\f054'; }
.slick-prev { left: var(--s-4); }
.slick-next { right: var(--s-4); }
.slick-dots {
    position: absolute;
    bottom: var(--s-4);
    left: 50%;
    transform: translateX(-50%);
    display: flex !important;
    gap: var(--s-2);
    z-index: 5;
    margin: 0;
    padding: 0;
}
.slick-dots li button {
    width: 28px;
    height: 4px;
    background: rgba(255,255,255,.5);
    border-radius: 2px;
    border: 0;
    color: transparent;
    transition: all var(--t);
    padding: 0;
    font-size: 0;
}
.slick-dots li.slick-active button { background: var(--c-white); width: 40px; }

/* ===========================================================
   8. FLASH SALE
   =========================================================== */
#wsus__flash_sell, .wsus__flash_sell_2 { padding: var(--s-6) 0; }
.offer_time {
    background: linear-gradient(135deg, #ff5e3a 0%, #ee4d2d 50%, #d73719 100%) !important;
    color: var(--c-white);
    padding: var(--s-6) var(--s-8);
    border-radius: var(--r-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--s-4);
    box-shadow: var(--sh-md);
    position: relative;
    overflow: hidden;
}
.offer_time::before {
    content: '⚡';
    position: absolute;
    right: -30px;
    top: -40px;
    font-size: 220px;
    opacity: .08;
    transform: rotate(15deg);
    pointer-events: none;
}
.wsus__flash_coundown {
    display: flex;
    align-items: center;
    gap: var(--s-6);
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-between;
    z-index: 1;
}
.wsus__flash_coundown .end_text {
    font-size: 28px;
    font-weight: var(--fw-extra);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.simply-countdown { display: flex; gap: var(--s-2); flex-wrap: wrap; }
.simply-countdown > div, .simply-section {
    background: rgba(255,255,255,.18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: var(--s-3) var(--s-4);
    border-radius: var(--r);
    min-width: 64px;
    text-align: center;
    border: 1px solid rgba(255,255,255,.25);
}
.simply-countdown .simply-amount, .simply-amount {
    font-size: 24px;
    font-weight: var(--fw-extra);
    display: block;
    line-height: 1;
}
.simply-countdown .simply-word, .simply-word {
    font-size: var(--fs-xs);
    text-transform: uppercase;
    margin-top: var(--s-1);
    opacity: .85;
}

/* ===========================================================
   9. SECTION HEADER
   =========================================================== */
.wsus__section_header {
    text-align: center;
    margin-bottom: var(--s-8);
}
.wsus__section_header h3 {
    font-size: var(--fs-3xl);
    font-weight: var(--fw-bold);
    color: var(--c-gray-900);
    margin-bottom: var(--s-4);
    position: relative;
    display: inline-block;
    padding-bottom: var(--s-3);
}
.wsus__section_header h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 64px;
    height: 3px;
    background: linear-gradient(90deg, var(--c-primary), var(--c-secondary));
    border-radius: 2px;
}
.monthly_top_filter, .monthly_top_filter2,
.wsus__electronic_filter, .wsus__hot_deals_filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--s-2);
    margin-top: var(--s-4);
}
.monthly_top_filter button, .monthly_top_filter2 button,
.wsus__electronic_filter button, .wsus__hot_deals_filter button {
    padding: var(--s-2) var(--s-4);
    border: 1px solid var(--c-gray-300);
    background: var(--c-white);
    color: var(--c-gray-700);
    border-radius: var(--r-full);
    font-size: var(--fs-base);
    font-weight: var(--fw-medium);
    cursor: pointer;
    transition: all var(--t);
}
.monthly_top_filter button:hover, .monthly_top_filter2 button:hover,
.wsus__electronic_filter button:hover, .wsus__hot_deals_filter button:hover,
.monthly_top_filter button.active, .monthly_top_filter2 button.active,
.wsus__electronic_filter button.active, .wsus__hot_deals_filter button.active {
    background: var(--c-primary);
    color: var(--c-white);
    border-color: var(--c-primary);
    box-shadow: 0 4px 14px rgba(238,77,45,.3);
}

/* ===========================================================
   10. PRODUCT CARD (modern Shopee-style)
   =========================================================== */
#wsus__monthly_top, .wsus__monthly_top_2,
#wsus__electronic { padding: var(--s-10) 0; background: var(--c-white); }

.wsus__product_item {
    position: relative;
    background: var(--c-white);
    border: 1px solid var(--c-gray-200);
    border-radius: var(--r-md);
    overflow: hidden;
    transition: transform var(--t), box-shadow var(--t), border-color var(--t);
    height: 100%;
    margin-bottom: var(--s-6);
    display: flex;
    flex-direction: column;
}
.wsus__product_item:hover {
    box-shadow: var(--sh-md);
    transform: translateY(-4px);
    border-color: var(--c-primary-100);
}
.wsus__pro_link {
    display: block;
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    background: var(--c-gray-50);
}
.wsus__pro_link img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: var(--s-4);
    transition: opacity var(--t-slow), transform var(--t-slow);
}
.wsus__pro_link img.img_2 {
    position: absolute;
    inset: 0;
    opacity: 0;
}
.wsus__product_item:hover .img_1 { opacity: 0; transform: scale(.95); }
.wsus__product_item:hover .img_2 { opacity: 1; transform: scale(1); }

/* Badges */
.wsus__new, .wsus__minus {
    position: absolute;
    top: var(--s-3);
    padding: 4px var(--s-2);
    font-size: var(--fs-xs);
    font-weight: var(--fw-bold);
    border-radius: var(--r-sm);
    z-index: 3;
    color: var(--c-white);
    text-transform: uppercase;
    letter-spacing: .4px;
    line-height: 1.4;
}
.wsus__new { left: var(--s-3); background: var(--c-success); }
.wsus__minus { right: var(--s-3); background: var(--c-primary); }

/* Quick action icons */
.wsus__single_pro_icon {
    position: absolute;
    top: 50%;
    right: -50px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: var(--s-2);
    z-index: 3;
    transition: right var(--t-slow);
}
.wsus__product_item:hover .wsus__single_pro_icon { right: var(--s-3); }
.wsus__single_pro_icon li a {
    width: 38px;
    height: 38px;
    background: var(--c-white);
    color: var(--c-gray-700);
    border-radius: var(--r-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--sh);
    font-size: var(--fs-md);
    transition: all var(--t);
}
.wsus__single_pro_icon li a:hover {
    background: var(--c-primary);
    color: var(--c-white);
    transform: scale(1.08);
}

/* Product details */
.wsus__product_details {
    padding: var(--s-4);
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.wsus__category {
    display: inline-block;
    font-size: var(--fs-xs);
    color: var(--c-gray-500);
    text-transform: uppercase;
    margin-bottom: var(--s-1);
    letter-spacing: .5px;
}
.wsus__category:hover { color: var(--c-primary); }
.wsus__pro_rating {
    color: var(--c-secondary);
    font-size: var(--fs-base);
    margin-bottom: var(--s-2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}
.wsus__pro_rating span,
.wsus__pro_rating .rating-num {
    color: var(--c-gray-500);
    font-size: var(--fs-xs);
    font-weight: var(--fw-medium);
}
.wsus__pro_name {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: var(--fs-md);
    font-weight: var(--fw-semi);
    color: var(--c-gray-900);
    margin-bottom: var(--s-2);
    min-height: 42px;
    line-height: 1.4;
}
.wsus__pro_name:hover { color: var(--c-primary); }
.wsus__price {
    font-size: var(--fs-lg);
    font-weight: var(--fw-extra);
    color: var(--c-primary);
    margin: 0 0 var(--s-3);
    margin-top: auto;
}
.wsus__price del {
    font-size: var(--fs-base);
    color: var(--c-gray-400);
    font-weight: var(--fw-medium);
    margin-left: var(--s-2);
    text-decoration: line-through;
}

/* Add-to-cart button */
.shopping-cart-form { margin-top: var(--s-2); }
.add_cart, button.add_cart {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--s-2);
    padding: 10px var(--s-4);
    background: var(--c-primary);
    color: var(--c-white);
    border: 0;
    border-radius: var(--r);
    font-size: var(--fs-base);
    font-weight: var(--fw-semi);
    cursor: pointer;
    text-decoration: none;
    width: 100%;
    transition: all var(--t);
}
.add_cart:hover, button.add_cart:hover {
    background: var(--c-primary-600);
    color: var(--c-white);
    box-shadow: 0 6px 14px rgba(238,77,45,.35);
    transform: translateY(-1px);
}

/* ===========================================================
   11. COMMON BUTTONS
   =========================================================== */
.common_btn, a.common_btn, button.common_btn {
    display: inline-flex;
    align-items: center;
    gap: var(--s-2);
    padding: 12px var(--s-6);
    background: var(--c-primary);
    color: var(--c-white);
    border: 0;
    border-radius: var(--r);
    font-size: var(--fs-md);
    font-weight: var(--fw-semi);
    cursor: pointer;
    text-decoration: none;
    transition: all var(--t);
    line-height: 1;
    white-space: nowrap;
}
.common_btn:hover {
    background: var(--c-primary-600);
    color: var(--c-white);
    box-shadow: 0 6px 18px rgba(238,77,45,.35);
    transform: translateY(-1px);
}
.shop_btn, a.shop_btn {
    display: inline-block;
    padding: 12px var(--s-8);
    background: var(--c-white);
    color: var(--c-gray-900);
    border: 2px solid var(--c-white);
    border-radius: var(--r);
    font-size: var(--fs-md);
    font-weight: var(--fw-bold);
    text-decoration: none;
    transition: all var(--t);
}
.shop_btn:hover {
    background: var(--c-primary);
    color: var(--c-white);
    border-color: var(--c-primary);
}

/* ===========================================================
   12. HOT DEALS
   =========================================================== */
#wsus__hot_deals, .wsus__hot_deals_2 { padding: var(--s-10) 0; background: var(--c-gray-50); }
.wsus__hot_large_item .row { margin: 0 -10px; }
.wsus__hot_deals__single {
    display: flex;
    flex-direction: column;
    background: var(--c-white);
    border-radius: var(--r-md);
    border: 1px solid var(--c-gray-200);
    overflow: hidden;
    transition: all var(--t);
    height: 100%;
    color: inherit;
    text-decoration: none;
    margin-bottom: var(--s-3);
}
.wsus__hot_deals__single:hover {
    box-shadow: var(--sh-md);
    transform: translateY(-3px);
    color: inherit;
    border-color: var(--c-primary-100);
}
.wsus__hot_deals__single_img {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--c-gray-50);
    position: relative;
}
.wsus__hot_deals__single_img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: var(--s-4);
    transition: transform var(--t-slow);
}
.wsus__hot_deals__single:hover .wsus__hot_deals__single_img img { transform: scale(1.05); }
.wsus__hot_deals__single_text {
    padding: var(--s-3) var(--s-4);
    text-align: center;
}
.wsus__hot_deals__single_text h5 {
    font-size: var(--fs-base);
    font-weight: var(--fw-semi);
    color: var(--c-gray-900);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: var(--s-2);
    min-height: 36px;
    line-height: 1.4;
}
.wsus__hot_deals__single_text p {
    font-size: var(--fs-md);
    font-weight: var(--fw-extra);
    color: var(--c-primary);
    margin: 0;
}

/* ===========================================================
   13. SINGLE BANNER (promotional 2-col)
   =========================================================== */
#wsus__single_banner { padding: var(--s-6) 0; }
.wsus__single_banner_content,
.banner_1, .banner_2 {
    position: relative;
    min-height: 240px;
    border-radius: var(--r-lg);
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: var(--s-6);
    margin-bottom: var(--s-4);
    transition: transform var(--t);
    cursor: pointer;
}
.wsus__single_banner_content:hover,
.banner_1:hover, .banner_2:hover { transform: translateY(-4px); }
.wsus__single_banner_img {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.wsus__single_banner_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--t-slow);
}
.wsus__single_banner_content:hover .wsus__single_banner_img img { transform: scale(1.05); }
.wsus__single_banner_text {
    position: relative;
    z-index: 2;
    color: var(--c-white);
    max-width: 65%;
}
.wsus__single_banner_text h6 {
    font-size: var(--fs-base);
    margin-bottom: var(--s-1);
    opacity: .9;
    color: var(--c-white);
    text-transform: uppercase;
    letter-spacing: 1.2px;
}
.wsus__single_banner_text h3 {
    font-size: var(--fs-2xl);
    font-weight: var(--fw-extra);
    margin-bottom: var(--s-3);
    line-height: 1.2;
    color: var(--c-white);
}

/* ===========================================================
   14. LARGE BANNER
   =========================================================== */
#wsus__large_banner { padding: var(--s-6) 0; }
.wsus__large_banner_content {
    position: relative;
    min-height: 300px;
    border-radius: var(--r-lg);
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: var(--s-10);
    background-size: cover;
    background-position: center;
}
.wsus__large_banner_text {
    position: relative;
    z-index: 2;
    color: var(--c-white);
    max-width: 50%;
}

/* ===========================================================
   15. WEEKLY BEST
   =========================================================== */
#wsus__weekly_best { padding: var(--s-10) 0; background: var(--c-white); }

/* ===========================================================
   16. BRAND SLIDER
   =========================================================== */
#wsus__brand_sleder, #wsus__brand {
    padding: var(--s-8) 0;
    background: var(--c-white);
    border-top: 1px solid var(--c-gray-200);
}
.brand_slider { padding: 0 var(--s-1); }
.wsus__brand_logo {
    background: var(--c-white);
    border: 1px solid var(--c-gray-200);
    border-radius: var(--r);
    padding: var(--s-4);
    display: flex !important;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    transition: all var(--t);
    margin: 0 var(--s-2);
}
.wsus__brand_logo:hover {
    box-shadow: var(--sh);
    border-color: var(--c-primary);
    transform: translateY(-2px);
}
.wsus__brand_logo img {
    max-height: 60px;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: .65;
    transition: all var(--t);
}
.wsus__brand_logo:hover img {
    filter: grayscale(0);
    opacity: 1;
}

/* ===========================================================
   17. BLOG
   =========================================================== */
#wsus__blogs, #wsus__blog { padding: var(--s-10) 0; background: var(--c-gray-50); }
.wsus__single_blog, .wsus__single_blog_2,
.wsus__blog_post_single {
    background: var(--c-white);
    border-radius: var(--r-md);
    overflow: hidden;
    box-shadow: var(--sh-xs);
    transition: all var(--t);
    height: 100%;
    margin-bottom: var(--s-4);
}
.wsus__single_blog:hover, .wsus__single_blog_2:hover,
.wsus__blog_post_single:hover {
    box-shadow: var(--sh-md);
    transform: translateY(-3px);
}
.wsus__blog_img, .wsus__blog_post_img { overflow: hidden; }
.wsus__blog_img img, .wsus__blog_post_img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform var(--t-slow);
}
.wsus__single_blog:hover .wsus__blog_img img,
.wsus__single_blog_2:hover .wsus__blog_img img,
.wsus__blog_post_single:hover .wsus__blog_post_img img { transform: scale(1.05); }
.wsus__blog_text, .wsus__blog_text_center, .wsus__blog_post_text { padding: var(--s-5); }
.wsus__blog_category {
    display: inline-block;
    font-size: var(--fs-xs);
    color: var(--c-primary);
    text-transform: uppercase;
    letter-spacing: .5px;
    font-weight: var(--fw-bold);
    margin-bottom: var(--s-2);
}
.wsus__blog_text h4, .wsus__blog_text h5,
.wsus__blog_text_center h4, .wsus__blog_text_center h5,
.wsus__blog_post_text h4, .wsus__blog_post_text h5 {
    font-size: var(--fs-lg);
    font-weight: var(--fw-bold);
    color: var(--c-gray-900);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: var(--s-2);
    line-height: 1.4;
}
.wsus__blog_text p, .wsus__blog_text_center p,
.wsus__blog_post_text p {
    font-size: var(--fs-base);
    color: var(--c-gray-600);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5;
    margin: 0;
}

/* ===========================================================
   18. HOME SERVICES (4-col features)
   =========================================================== */
#wsus__home_services, .home_service_2 {
    padding: var(--s-8) 0;
    background: var(--c-white);
    border-top: 1px solid var(--c-gray-200);
}
.wsus__home_services_single,
.home_service_single_2 {
    text-align: center;
    padding: var(--s-6) var(--s-4);
    border-right: 1px solid var(--c-gray-200);
    transition: transform var(--t);
}
.home_service_single_2.border_left { border-left: 1px solid var(--c-gray-200); }
.wsus__home_services_single:hover,
.home_service_single_2:hover { transform: translateY(-4px); }
.wsus__home_services_single i,
.home_service_single_2 i {
    font-size: 40px;
    color: var(--c-primary);
    margin-bottom: var(--s-3);
    display: inline-block;
}
.wsus__home_services_single h5,
.home_service_single_2 h5 {
    font-size: var(--fs-md);
    font-weight: var(--fw-bold);
    color: var(--c-gray-900);
    margin-bottom: var(--s-1);
}
.wsus__home_services_single p,
.home_service_single_2 p {
    font-size: var(--fs-base);
    color: var(--c-gray-600);
    margin: 0;
}
@media (max-width: 991px) {
    .wsus__home_services_single, .home_service_single_2 { border: 0 !important; padding: var(--s-4); }
}

/* ===========================================================
   19. NEWSLETTER
   =========================================================== */
#wsus__newslatter, #wsus__newsletter {
    padding: var(--s-10) 0;
    background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-600) 100%);
    color: var(--c-white);
    text-align: center;
}
#wsus__newslatter h3, #wsus__newsletter h3 {
    font-size: var(--fs-2xl);
    font-weight: var(--fw-extra);
    margin-bottom: var(--s-2);
    color: var(--c-white);
}
#wsus__newslatter p, #wsus__newsletter p {
    font-size: var(--fs-md);
    opacity: .95;
    margin-bottom: var(--s-4);
    color: var(--c-white);
}
.newslatter_form, .newsletter_form {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
    background: var(--c-white);
    border-radius: var(--r-full);
    overflow: hidden;
    padding: 5px;
}
.newslatter_form input, .newsletter_form input {
    flex: 1;
    padding: 12px var(--s-5);
    border: 0;
    outline: 0;
    font-size: var(--fs-md);
}
.newslatter_form button, .newsletter_form button,
.subscriber-btn {
    padding: 12px var(--s-6);
    background: var(--c-gray-900);
    color: var(--c-white);
    border: 0;
    border-radius: var(--r-full) !important;
    font-weight: var(--fw-semi);
    cursor: pointer;
    transition: background var(--t);
    white-space: nowrap;
}
.newslatter_form button:hover, .newsletter_form button:hover,
.subscriber-btn:hover { background: var(--c-gray-700); }

/* ===========================================================
   20. BREADCRUMB
   =========================================================== */
#wsus__breadcrumb, .wsus__breadcrumb {
    background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-600) 100%);
    padding: var(--s-12) 0;
    color: var(--c-white);
    position: relative;
}
.wsus_breadcrumb_overlay { padding: var(--s-12) 0; background: rgba(0,0,0,.15); }
#wsus__breadcrumb h4, .wsus__breadcrumb h4 {
    color: var(--c-white);
    font-size: var(--fs-3xl);
    font-weight: var(--fw-extra);
    margin-bottom: var(--s-3);
}
#wsus__breadcrumb ul, .wsus__breadcrumb ul {
    display: flex;
    gap: var(--s-2);
    align-items: center;
    flex-wrap: wrap;
}
#wsus__breadcrumb ul li, .wsus__breadcrumb ul li {
    color: var(--c-white);
    font-size: var(--fs-md);
    opacity: .92;
}
#wsus__breadcrumb ul li a, .wsus__breadcrumb ul li a { color: var(--c-white); }
#wsus__breadcrumb ul li:not(:last-child)::after,
.wsus__breadcrumb ul li:not(:last-child)::after {
    content: '/';
    margin-left: var(--s-3);
    opacity: .6;
}

/* ===========================================================
   21. PRODUCT DETAIL PAGE
   =========================================================== */
#wsus__product_details { padding: var(--s-8) 0; background: var(--c-white); }
.wsus__details_bg {
    background: var(--c-white);
    padding: var(--s-6);
    border-radius: var(--r-md);
    box-shadow: var(--sh-xs);
}
.wsus__pro_details_text { padding: var(--s-3); }
.wsus__pro_details_text .title {
    font-size: var(--fs-2xl);
    font-weight: var(--fw-bold);
    color: var(--c-gray-900);
    margin-bottom: var(--s-2);
}
.wsus__pro_details_text .brand_model {
    font-size: var(--fs-base);
    color: var(--c-gray-600);
    margin-bottom: var(--s-3);
}
.wsus__pro_details_text h4 {
    font-size: 28px;
    font-weight: var(--fw-extra);
    color: var(--c-primary);
    margin: var(--s-4) 0;
}
.wsus__pro_details_text .review { color: var(--c-secondary); margin-bottom: var(--s-3); }
.wsus__pro_details_text .description {
    color: var(--c-gray-700);
    line-height: 1.7;
    margin-bottom: var(--s-4);
}
.wsus__selectbox {
    background: var(--c-gray-50);
    padding: var(--s-4);
    border-radius: var(--r);
    margin: var(--s-3) 0;
}
.wsus__selectbox h5 {
    font-size: var(--fs-md);
    font-weight: var(--fw-semi);
    color: var(--c-gray-800);
    margin-bottom: var(--s-2);
}
.wsus__selectbox select, .wsus__selectbox input {
    width: 100%;
    padding: 10px var(--s-3);
    border: 1px solid var(--c-gray-300);
    border-radius: var(--r);
    font-size: var(--fs-md);
}
.wsus__button_area {
    display: flex;
    gap: var(--s-3);
    margin-top: var(--s-5);
    flex-wrap: wrap;
}
.wsus__button_area > * { flex: 1; min-width: 180px; }
.wsus__pro_det_review_single {
    padding: var(--s-4) 0;
    border-bottom: 1px solid var(--c-gray-200);
}
.wsus__pro_det_description, .wsus__pro_det_review {
    padding: var(--s-6);
    background: var(--c-white);
    border-radius: var(--r-md);
    margin-top: var(--s-6);
    box-shadow: var(--sh-xs);
}

/* ===========================================================
   22. CART / CHECKOUT
   =========================================================== */
#wsus__cart_view { padding: var(--s-8) 0; background: var(--c-white); }
.wsus__cart_view, .wsus__cart_page { padding: var(--s-8) 0; }
.wsus__checkout_form { display: flex; gap: var(--s-6); flex-wrap: wrap; }
.wsus__checkout_form > .col-xl-9 { flex: 2; min-width: 320px; }
.wsus__checkout_form > .col-xl-3 { flex: 1; min-width: 280px; }
.wsus__check_form, .wsus__order_details {
    background: var(--c-white);
    padding: var(--s-6);
    border-radius: var(--r-md);
    box-shadow: var(--sh-xs);
}
.wsus__check_form h5, .wsus__order_details h4 {
    font-size: var(--fs-lg);
    font-weight: var(--fw-bold);
    margin-bottom: var(--s-4);
    padding-bottom: var(--s-3);
    border-bottom: 2px solid var(--c-gray-200);
    color: var(--c-gray-900);
}
.wsus__checkout_single_address {
    border: 1px solid var(--c-gray-300);
    padding: var(--s-4);
    border-radius: var(--r);
    margin-bottom: var(--s-3);
    transition: border-color var(--t);
    cursor: pointer;
}
.wsus__checkout_single_address:hover { border-color: var(--c-primary); }
.wsus__checkout_single_address ul li {
    padding: 4px 0;
    font-size: var(--fs-base);
    color: var(--c-gray-700);
}
.wsus__check_single_form { margin-bottom: var(--s-4); }
.wsus__check_single_form label {
    display: block;
    font-size: var(--fs-base);
    font-weight: var(--fw-semi);
    margin-bottom: var(--s-1);
    color: var(--c-gray-800);
}
.wsus__check_single_form input,
.wsus__check_single_form select,
.wsus__check_single_form textarea,
.form-control {
    width: 100%;
    padding: 10px var(--s-3);
    border: 1px solid var(--c-gray-300);
    border-radius: var(--r);
    font-size: var(--fs-md);
    transition: border-color var(--t);
    background: var(--c-white);
}
.wsus__check_single_form input:focus,
.wsus__check_single_form select:focus,
.wsus__check_single_form textarea:focus,
.form-control:focus {
    outline: 0;
    border-color: var(--c-primary);
    box-shadow: 0 0 0 3px var(--c-primary-100);
}
.wsus__cart_list { width: 100%; }
.wsus__cart_list table { width: 100%; border-collapse: collapse; }
.wsus__cart_list th {
    background: var(--c-gray-50);
    padding: var(--s-3);
    font-size: var(--fs-base);
    font-weight: var(--fw-bold);
    text-align: left;
    color: var(--c-gray-700);
    text-transform: uppercase;
    letter-spacing: .3px;
    font-size: var(--fs-xs);
}
.wsus__cart_list td {
    padding: var(--s-3);
    border-bottom: 1px solid var(--c-gray-200);
    font-size: var(--fs-md);
    vertical-align: middle;
}
.wsus__cart_list .wsus__pro_img img { max-width: 64px; border-radius: var(--r-sm); border: 1px solid var(--c-gray-200); }
.wsus__order_details {
    background: var(--c-gray-50);
    position: sticky;
    top: var(--s-5);
    align-self: flex-start;
}
.wsus__order_details_summery {
    border-top: 2px solid var(--c-gray-300);
    padding-top: var(--s-4);
    margin-top: var(--s-4);
}
.wsus__order_details_summery ul li {
    display: flex;
    justify-content: space-between;
    padding: var(--s-2) 0;
    font-size: var(--fs-md);
    color: var(--c-gray-700);
}
.wsus__order_details_summery ul li strong {
    color: var(--c-primary);
    font-weight: var(--fw-bold);
    font-size: var(--fs-lg);
}

/* ===========================================================
   23. LOGIN / REGISTER PAGES
   =========================================================== */
#wsus__login_register, .login-page-bg {
    padding: var(--s-12) 0;
    background: linear-gradient(135deg, var(--c-gray-50) 0%, var(--c-white) 100%);
    min-height: 60vh;
    display: flex;
    align-items: center;
}
.wsus__login_form, .login-form, .register-form {
    background: var(--c-white);
    padding: var(--s-8);
    border-radius: var(--r-lg);
    box-shadow: var(--sh-md);
    max-width: 440px;
    margin: 0 auto;
}
.wsus__login_form h4, .login-form h4 {
    font-size: var(--fs-2xl);
    font-weight: var(--fw-bold);
    margin-bottom: var(--s-2);
    text-align: center;
}
.wsus__login_form p, .login-form p {
    text-align: center;
    color: var(--c-gray-600);
    font-size: var(--fs-base);
    margin-bottom: var(--s-5);
}

/* ===========================================================
   24. FOOTER
   =========================================================== */
.footer_2, footer.footer_2, footer {
    background: var(--c-gray-900);
    color: rgba(255,255,255,.7);
    padding: var(--s-12) 0 0;
    margin-top: var(--s-10);
}
footer h5, .wsus__footer_content h5 {
    font-size: var(--fs-md);
    font-weight: var(--fw-bold);
    color: var(--c-white);
    margin-bottom: var(--s-5);
    position: relative;
    padding-bottom: var(--s-2);
    text-transform: uppercase;
    letter-spacing: .5px;
}
.wsus__footer_content h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 36px;
    height: 2px;
    background: var(--c-primary);
}
.wsus__footer_content { margin-bottom: var(--s-6); }
.wsus__footer_content p, .wsus__footer_content .action {
    display: block;
    color: rgba(255,255,255,.65);
    font-size: var(--fs-base);
    margin: var(--s-2) 0;
    line-height: 1.6;
}
.wsus__footer_content .action:hover, .wsus__footer_content p a:hover { color: var(--c-white); }
.wsus__footer_content i {
    color: var(--c-primary);
    margin-right: var(--s-2);
    width: 16px;
}
.wsus__footer_2_logo img {
    max-height: 50px;
    margin-bottom: var(--s-4);
    filter: brightness(0) invert(1);
}
.wsus__footer_menu li { padding: var(--s-1) 0; }
.wsus__footer_menu li a {
    color: rgba(255,255,255,.65);
    font-size: var(--fs-base);
    transition: all var(--t);
    display: inline-flex;
    align-items: center;
    gap: var(--s-2);
}
.wsus__footer_menu li a:hover {
    color: var(--c-white);
    transform: translateX(4px);
}
.wsus__footer_menu li a i { color: var(--c-primary); font-size: var(--fs-xs); }

.wsus__footer_content_2 form {
    display: flex;
    margin-top: var(--s-3);
    background: rgba(255,255,255,.08);
    border-radius: var(--r);
    overflow: hidden;
    padding: 4px;
}
.wsus__footer_content_2 input {
    flex: 1;
    padding: 10px var(--s-3);
    border: 0;
    background: transparent;
    color: var(--c-white);
    font-size: var(--fs-base);
    outline: 0;
}
.wsus__footer_content_2 input::placeholder { color: rgba(255,255,255,.5); }
.wsus__footer_content_2 button {
    padding: 10px var(--s-4);
    background: var(--c-primary);
    color: var(--c-white);
    border: 0;
    border-radius: var(--r-sm);
    font-size: var(--fs-base);
    font-weight: var(--fw-semi);
    cursor: pointer;
}
.wsus__footer_content_2 button:hover { background: var(--c-primary-600); }

.wsus__footer_social {
    display: flex;
    gap: var(--s-2);
    margin-top: var(--s-4);
}
.wsus__footer_social li a {
    width: 40px;
    height: 40px;
    border-radius: var(--r-full);
    background: rgba(255,255,255,.08);
    color: var(--c-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fs-md);
    transition: all var(--t);
}
.wsus__footer_social li a:hover {
    background: var(--c-primary);
    transform: translateY(-3px);
}
.footer_payment {
    margin-top: var(--s-4);
    display: flex;
    gap: var(--s-2);
    flex-wrap: wrap;
}
.footer_payment img {
    height: 30px;
    background: var(--c-white);
    padding: 4px;
    border-radius: var(--r-sm);
}
.wsus__footer_bottom {
    background: #000;
    padding: var(--s-4) 0;
    margin-top: var(--s-8);
    border-top: 1px solid rgba(255,255,255,.06);
}
.wsus__copyright {
    text-align: center;
    font-size: var(--fs-base);
    color: rgba(255,255,255,.5);
}
.wsus__copyright a { color: var(--c-primary); font-weight: var(--fw-semi); }

/* ===========================================================
   25. SCROLL TO TOP
   =========================================================== */
.wsus__scroll_btn, #scrollUp {
    position: fixed;
    bottom: var(--s-6);
    right: var(--s-6);
    width: 46px;
    height: 46px;
    background: var(--c-primary);
    color: var(--c-white);
    border-radius: var(--r-full);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: var(--fs-lg);
    z-index: 999;
    box-shadow: var(--sh-lg);
    border: 0;
    transition: all var(--t);
}
.wsus__scroll_btn:hover { background: var(--c-primary-600); transform: translateY(-3px); }

/* ===========================================================
   26. MODAL / TOAST / DROPDOWN
   =========================================================== */
.modal-content { border-radius: var(--r-lg); border: 0; box-shadow: var(--sh-lg); }
.modal-header { padding: var(--s-5) var(--s-6); border-bottom: 1px solid var(--c-gray-200); }
.modal-body { padding: var(--s-6); }
.modal-footer { padding: var(--s-4) var(--s-6); border-top: 1px solid var(--c-gray-200); gap: var(--s-2); }
.toast-container, #toast-container { z-index: 99999; }
.toast {
    border-radius: var(--r);
    box-shadow: var(--sh-md) !important;
    padding: var(--s-3) var(--s-4) !important;
    font-size: var(--fs-base);
    font-weight: var(--fw-medium);
}
.toast-success { background: var(--c-success) !important; color: #fff; }
.toast-error { background: var(--c-danger) !important; color: #fff; }
.toast-warning { background: var(--c-warning) !important; color: #fff; }
.toast-info { background: var(--c-info) !important; color: #fff; }

/* ===========================================================
   27. POPUP
   =========================================================== */
.wsus__pop_up_center {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.55);
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--s-5);
}
.wsus__pop_up_text {
    background: var(--c-white);
    border-radius: var(--r-lg);
    padding: var(--s-8);
    max-width: 480px;
    width: 100%;
    text-align: center;
    position: relative;
    box-shadow: var(--sh-lg);
}
.wsus__pop_up_text #cross {
    position: absolute;
    top: var(--s-3);
    right: var(--s-3);
    cursor: pointer;
    font-size: var(--fs-md);
    color: var(--c-gray-500);
    width: 32px; height: 32px;
    display: flex; align-items: center; justify-content: center;
    border-radius: var(--r-full);
}
.wsus__pop_up_text #cross:hover { background: var(--c-gray-100); color: var(--c-primary); }

/* ===========================================================
   28. FORMS / FORM CONTROL OVERRIDES
   =========================================================== */
.form-check-input:checked { background-color: var(--c-primary); border-color: var(--c-primary); }
.form-check-input:focus {
    box-shadow: 0 0 0 3px var(--c-primary-100);
    border-color: var(--c-primary);
}

/* Pagination */
.pagination { gap: var(--s-1); }
.pagination .page-item .page-link {
    color: var(--c-gray-700);
    border: 1px solid var(--c-gray-300);
    padding: 8px 14px;
    font-size: var(--fs-base);
    border-radius: var(--r-sm);
    transition: all var(--t);
}
.pagination .page-item.active .page-link {
    background: var(--c-primary);
    border-color: var(--c-primary);
    color: var(--c-white);
}
.pagination .page-item .page-link:hover {
    background: var(--c-primary-100);
    color: var(--c-primary);
    border-color: var(--c-primary);
}

/* ===========================================================
   29. PRODUCT LISTING PAGE
   =========================================================== */
#wsus__product_page { padding: var(--s-8) 0; background: var(--c-gray-50); }
.wsus__product_page_filter,
.wsus__shop_sidebar {
    background: var(--c-white);
    padding: var(--s-5);
    border-radius: var(--r-md);
    box-shadow: var(--sh-xs);
    margin-bottom: var(--s-4);
}
.wsus__shop_sidebar h4, .wsus__shop_sidebar h5 {
    font-size: var(--fs-lg);
    font-weight: var(--fw-bold);
    margin-bottom: var(--s-4);
    padding-bottom: var(--s-3);
    border-bottom: 1px solid var(--c-gray-200);
}

/* ===========================================================
   30. RESPONSIVE
   =========================================================== */
@media (max-width: 1199px) {
    .wsus__single_slider_text h1 { font-size: 32px; }
}
@media (max-width: 991px) {
    section { padding: var(--s-8) 0; }
    .wsus__single_slider { padding: var(--s-8) var(--s-6); min-height: 360px; }
    .wsus__single_slider_text h1 { font-size: 28px; }
    .wsus__call_icon_area { gap: var(--s-3); }
    .wsus__call_text { display: none; }
    .wsus__call { width: 40px; height: 40px; font-size: var(--fs-md); }
    .offer_time { padding: var(--s-5); flex-direction: column; }
    .wsus__flash_coundown { flex-direction: column; gap: var(--s-3); align-items: center; text-align: center; }
    .wsus__home_services_single, .home_service_single_2 { border: 0 !important; }
}
@media (max-width: 767px) {
    section { padding: var(--s-6) 0; }
    .wsus__single_slider { padding: var(--s-6); min-height: 280px; }
    .wsus__single_slider_text h1 { font-size: 22px; }
    .wsus__single_slider_text h6 { font-size: var(--fs-md); }
    .wsus__call_area { display: none; }
    .wsus__icon_area { gap: var(--s-2); }
    .wsus__icon_area > li > a { font-size: 20px; width: 40px; height: 40px; }
    .wsus__section_header h3 { font-size: 22px; }
    .wsus__pro_details_text .title { font-size: 20px; }
    .wsus__pro_details_text h4 { font-size: 22px; }
    .wsus__mini_cart { width: 320px; right: -60px; }
    .footer_2 { padding-top: var(--s-8); }
    .wsus__single_banner_text { max-width: 75%; }
    .wsus__single_banner_text h3 { font-size: var(--fs-xl); }
}
@media (max-width: 575px) {
    .wsus__single_slider_text h1 { font-size: 20px; }
    .wsus__single_slider_text h3 { font-size: var(--fs-base); }
    .common_btn { padding: 10px 18px; font-size: var(--fs-base); }
    .wsus__product_details { padding: var(--s-3); }
    .wsus__pro_name { font-size: var(--fs-base); min-height: 38px; }
    .wsus__price { font-size: var(--fs-md); }
    .wsus__mini_cart { width: 290px; right: -90px; }
    .wsus__single_banner_text { max-width: 80%; }
    .add_cart { padding: 8px var(--s-3); font-size: var(--fs-base); }
}

/* ===========================================================
   31. UTILITIES + MISC FIXES
   =========================================================== */
.d-none { display: none !important; }
img[src=""], img:not([src]) { visibility: hidden; }
table { background: transparent; }
.table > :not(caption) > * > * { background-color: transparent; }
.show-product-modal { cursor: pointer; }

/* Fix img inside cart */
.wsus__cart_img img.w-100 { width: 100% !important; }

/* Fix banner_slider hidden initial state */
.banner_slider .slider-item:first-child { display: block !important; }
.banner_slider .slick-slide { display: block; }
.banner_slider:not(.slick-initialized) .slider-item:not(:first-child) { display: none; }

/* =================================================================
   32. MODERN 2026 DESIGN UPGRADES
   Glassmorphism + Neumorphism + Gradient mesh + Micro-interactions
   ================================================================= */

/* ====== Modern color refinements ====== */
:root {
    --gradient-primary: linear-gradient(135deg, #ff6b3d 0%, #ee4d2d 50%, #d73719 100%);
    --gradient-warm: linear-gradient(135deg, #ffaa00 0%, #ee4d2d 100%);
    --gradient-cool: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-vibrant: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-mesh: radial-gradient(at 30% 20%, rgba(238,77,45,.12) 0px, transparent 50%),
                     radial-gradient(at 80% 0%, rgba(255,217,0,.10) 0px, transparent 50%),
                     radial-gradient(at 0% 100%, rgba(27,168,224,.08) 0px, transparent 50%);
    --glass-bg: rgba(255,255,255,.78);
    --glass-border: rgba(255,255,255,.2);
    --glow-primary: 0 0 0 4px rgba(238,77,45,.12);
    --neu-light: rgba(255,255,255,.8);
    --neu-dark: rgba(17,24,39,.06);
}

/* ====== Smooth scroll + selection ====== */
html { scroll-padding-top: 100px; }
::selection { background: var(--c-primary); color: var(--c-white); }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--c-gray-100); }
::-webkit-scrollbar-thumb { background: var(--c-gray-300); border-radius: 8px; border: 2px solid var(--c-gray-100); }
::-webkit-scrollbar-thumb:hover { background: var(--c-gray-400); }

/* ====== Glassmorphism sticky header ====== */
.wsus__main_menu.menu_fix {
    background: var(--glass-bg) !important;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(0,0,0,.04);
}

/* ====== Hero with gradient mesh background ====== */
#wsus__banner {
    background: var(--c-gray-50);
    background-image: var(--gradient-mesh);
    background-attachment: fixed;
    position: relative;
}
#wsus__banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top right, rgba(238,77,45,.06), transparent 60%);
    pointer-events: none;
}

/* ====== Buttons 2026 — 3D depth + magnetic hover ====== */
.common_btn, button.common_btn, a.common_btn {
    background: var(--gradient-primary) !important;
    box-shadow: 0 4px 14px -2px rgba(238,77,45,.4), inset 0 1px 0 rgba(255,255,255,.2);
    position: relative;
    overflow: hidden;
}
.common_btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(255,255,255,.3), transparent);
    opacity: 0;
    transition: opacity .3s var(--ease);
}
.common_btn:hover::before { opacity: 1; }
.common_btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 10px 24px -4px rgba(238,77,45,.5), inset 0 1px 0 rgba(255,255,255,.3);
}
.common_btn:active { transform: translateY(0) scale(0.98); }

.add_cart, button.add_cart {
    background: var(--gradient-primary) !important;
    box-shadow: 0 2px 8px rgba(238,77,45,.25);
    position: relative;
    overflow: hidden;
}
.add_cart:hover {
    background: var(--gradient-primary) !important;
    box-shadow: 0 6px 18px rgba(238,77,45,.4);
}

.shop_btn {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    background: rgba(255,255,255,.95);
    border: 1px solid rgba(255,255,255,.6);
}

/* ====== Search bar — modern glow ====== */
.wsus__search form {
    background: var(--c-white);
    transition: box-shadow .25s var(--ease), border-color .2s var(--ease);
}
.wsus__search form:focus-within {
    box-shadow: 0 0 0 5px var(--c-primary-100), 0 8px 20px -8px rgba(238,77,45,.3);
}
.wsus__search button {
    background: var(--gradient-primary);
}

/* ====== Product card 2026 — layered shadows + smooth lift ====== */
.wsus__product_item {
    background: var(--c-white);
    box-shadow: 0 1px 3px rgba(17,24,39,.04), 0 1px 2px rgba(17,24,39,.06);
    border: 1px solid var(--c-gray-100);
    transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .2s;
    will-change: transform;
}
.wsus__product_item:hover {
    border-color: var(--c-primary-100);
    box-shadow: 0 12px 32px -8px rgba(17,24,39,.16), 0 4px 12px -4px rgba(17,24,39,.08);
    transform: translateY(-6px);
}

/* Image with subtle parallax on hover */
.wsus__pro_link::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,.04) 100%);
    pointer-events: none;
    opacity: 0;
    transition: opacity var(--t);
}
.wsus__product_item:hover .wsus__pro_link::after { opacity: 1; }

/* ====== Badges with gradient ====== */
.wsus__new {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    box-shadow: 0 2px 6px rgba(22,163,74,.3);
}
.wsus__minus {
    background: var(--gradient-primary);
    box-shadow: 0 2px 6px rgba(238,77,45,.3);
}

/* ====== Quick action icons — glass effect ====== */
.wsus__single_pro_icon li a {
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 4px 12px rgba(17,24,39,.12);
    border: 1px solid rgba(255,255,255,.6);
}
.wsus__single_pro_icon li a:hover {
    background: var(--c-primary);
    box-shadow: 0 6px 16px rgba(238,77,45,.4);
}

/* ====== Section header — modern uppercase + accent ====== */
.wsus__section_header h3 {
    font-weight: 800;
    background: linear-gradient(135deg, var(--c-gray-900) 0%, var(--c-gray-700) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.wsus__section_header h3::after {
    background: var(--gradient-primary);
    height: 4px;
    border-radius: 4px;
    width: 80px;
}

/* ====== Filter buttons — pill modern ====== */
.monthly_top_filter button, .monthly_top_filter2 button,
.wsus__electronic_filter button, .wsus__hot_deals_filter button {
    transition: all .25s var(--ease);
    position: relative;
}
.monthly_top_filter button.active, .monthly_top_filter2 button.active,
.wsus__electronic_filter button.active, .wsus__hot_deals_filter button.active {
    background: var(--gradient-primary);
    border: 0;
    color: var(--c-white);
    box-shadow: 0 4px 14px -2px rgba(238,77,45,.4);
    transform: translateY(-1px);
}

/* ====== Flash sale modern ====== */
.offer_time {
    background: linear-gradient(135deg, #ff6b3d 0%, #ee4d2d 50%, #d73719 100%) !important;
    box-shadow: 0 12px 40px -8px rgba(238,77,45,.45);
    position: relative;
}
.offer_time::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top left, rgba(255,255,255,.18) 0%, transparent 50%);
    pointer-events: none;
}
.simply-countdown > div, .simply-section {
    background: rgba(255,255,255,.18);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.25);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.1);
}

/* ====== Mini cart — glass dropdown ====== */
.wsus__mini_cart {
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255,255,255,.6);
    box-shadow: 0 16px 40px -8px rgba(17,24,39,.18);
}

/* ====== Hot deals card 2026 ====== */
.wsus__hot_deals__single {
    box-shadow: 0 1px 3px rgba(17,24,39,.04);
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.wsus__hot_deals__single:hover {
    box-shadow: 0 12px 28px -8px rgba(17,24,39,.14);
    transform: translateY(-4px) scale(1.01);
}

/* ====== Single banner — overlay improvements ====== */
.wsus__single_banner_content {
    box-shadow: 0 4px 16px -4px rgba(17,24,39,.1);
}
.wsus__single_banner_content::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,.45) 0%, rgba(0,0,0,.1) 60%);
    z-index: 1;
}

/* ====== Service cards — 2026 lift ====== */
.wsus__home_services_single, .home_service_single_2 {
    border: 0 !important;
    background: var(--c-white);
    border-radius: var(--r-md);
    margin: 0 8px;
    transition: all .3s var(--ease);
    box-shadow: 0 1px 3px rgba(17,24,39,.04);
}
.wsus__home_services_single:hover, .home_service_single_2:hover {
    box-shadow: 0 12px 28px -8px rgba(238,77,45,.2);
    transform: translateY(-6px);
}
.wsus__home_services_single i, .home_service_single_2 i {
    background: var(--c-primary-100);
    width: 64px;
    height: 64px;
    line-height: 64px;
    border-radius: var(--r-full);
    color: var(--c-primary);
    margin: 0 auto var(--s-3);
    transition: all .3s var(--ease);
}
.wsus__home_services_single:hover i, .home_service_single_2:hover i {
    background: var(--gradient-primary);
    color: var(--c-white);
    transform: rotate(8deg) scale(1.05);
}

/* ====== Brand logos — modern frame ====== */
.wsus__brand_logo {
    border-radius: var(--r-md);
    border: 1px solid var(--c-gray-100);
    box-shadow: 0 1px 2px rgba(17,24,39,.03);
    transition: all .3s var(--ease);
}
.wsus__brand_logo:hover {
    border-color: var(--c-primary);
    box-shadow: 0 8px 20px -8px rgba(238,77,45,.25);
    transform: translateY(-3px);
}

/* ====== Blog cards — modern ====== */
.wsus__single_blog, .wsus__single_blog_2, .wsus__blog_post_single {
    border: 1px solid var(--c-gray-100);
    box-shadow: 0 1px 3px rgba(17,24,39,.04);
    transition: all .3s var(--ease);
}
.wsus__single_blog:hover, .wsus__single_blog_2:hover, .wsus__blog_post_single:hover {
    box-shadow: 0 16px 36px -10px rgba(17,24,39,.16);
    transform: translateY(-6px);
}

/* ====== Newsletter — gradient mesh ====== */
#wsus__newslatter, #wsus__newsletter {
    background: linear-gradient(135deg, #ff6b3d 0%, #ee4d2d 50%, #d73719 100%);
    position: relative;
    overflow: hidden;
}
#wsus__newslatter::before, #wsus__newsletter::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(at 20% 30%, rgba(255,255,255,.18) 0px, transparent 50%),
        radial-gradient(at 80% 70%, rgba(255,217,0,.18) 0px, transparent 50%);
    pointer-events: none;
}
#wsus__newslatter > .container, #wsus__newsletter > .container { position: relative; z-index: 1; }
.newslatter_form, .newsletter_form {
    background: var(--c-white);
    box-shadow: 0 8px 24px -8px rgba(0,0,0,.2);
}

/* ====== Breadcrumb — gradient mesh ====== */
#wsus__breadcrumb, .wsus__breadcrumb {
    background: linear-gradient(135deg, #1a1a2e 0%, #ee4d2d 100%);
    position: relative;
    overflow: hidden;
}
#wsus__breadcrumb::after, .wsus__breadcrumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(at 70% 30%, rgba(255,255,255,.15) 0px, transparent 50%),
        radial-gradient(at 20% 80%, rgba(238,77,45,.3) 0px, transparent 50%);
    pointer-events: none;
}
#wsus__breadcrumb > .container, .wsus__breadcrumb > .container { position: relative; z-index: 1; }

/* ====== Footer — modern dark ====== */
.footer_2, footer.footer_2, footer {
    background: linear-gradient(180deg, #111827 0%, #000 100%);
    position: relative;
}
.footer_2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(238,77,45,.6), transparent);
}
.wsus__footer_social li a {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    transition: all .3s var(--ease);
}
.wsus__footer_social li a:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    box-shadow: 0 6px 16px -4px rgba(238,77,45,.5);
    transform: translateY(-3px) scale(1.05);
}

/* ====== Login form — glass card ====== */
.wsus__login_form, .login-form, .register-form {
    background: rgba(255,255,255,.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255,255,255,.6);
    box-shadow: 0 16px 40px -8px rgba(17,24,39,.16);
}

/* ====== Form inputs 2026 ====== */
.form-control, input[type="text"], input[type="email"],
input[type="password"], input[type="number"], input[type="tel"],
input[type="search"], textarea, select {
    transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}
.form-control:hover { background: var(--c-gray-50); }
.form-control:focus, input:focus, textarea:focus, select:focus {
    background: var(--c-white);
    box-shadow: 0 0 0 4px var(--c-primary-100), 0 1px 3px rgba(17,24,39,.04);
}

/* ====== Scroll-to-top — modern blob ====== */
.wsus__scroll_btn, #scrollUp {
    background: var(--gradient-primary);
    box-shadow: 0 8px 24px -4px rgba(238,77,45,.45), inset 0 1px 0 rgba(255,255,255,.2);
}
.wsus__scroll_btn:hover {
    box-shadow: 0 14px 30px -4px rgba(238,77,45,.6), inset 0 1px 0 rgba(255,255,255,.3);
    transform: translateY(-4px) scale(1.05);
}

/* ====== Modals & dropdowns — glass ====== */
.modal-content, .dropdown-menu {
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    background: rgba(255,255,255,.96);
    border: 1px solid rgba(255,255,255,.6);
}

/* ====== Mobile menu — slide with glass ====== */
#wsus__mobile_menu, .wsus__mobile_menu {
    background: rgba(255,255,255,.98);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
}

/* ====== Accessible focus rings ====== */
*:focus-visible {
    outline: 3px solid var(--c-primary);
    outline-offset: 2px;
}
button:focus, a:focus { outline: 0; }
button:focus-visible, a:focus-visible { outline: 3px solid var(--c-primary); outline-offset: 2px; }

/* ====== Smooth animations on page load ====== */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}
.wsus__product_item, .wsus__hot_deals__single,
.wsus__single_blog, .wsus__brand_logo,
.wsus__home_services_single, .home_service_single_2 {
    animation: fadeUp .5s var(--ease) backwards;
}
.row > [class*="col-"]:nth-child(1) > * { animation-delay: .05s; }
.row > [class*="col-"]:nth-child(2) > * { animation-delay: .1s; }
.row > [class*="col-"]:nth-child(3) > * { animation-delay: .15s; }
.row > [class*="col-"]:nth-child(4) > * { animation-delay: .2s; }
.row > [class*="col-"]:nth-child(5) > * { animation-delay: .25s; }
.row > [class*="col-"]:nth-child(6) > * { animation-delay: .3s; }

/* ====== Reduce motion ====== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
    }
}

/* ====== Print friendly ====== */
@media print {
    header, footer, .wsus__main_menu, .wsus__scroll_btn,
    .wsus__mobile_menu, .wsus__pop_up { display: none !important; }
    body { background: #fff; }
}

/* =================================================================
   33. CART DETAILS PAGE — Specific layout fixes
   Selector scope: #wsus__cart_view (KHÔNG conflict mini cart)
   ================================================================= */

/* Cart layout — 2 columns: list (9) + summary sidebar (3) */
#wsus__cart_view > .container > .row {
    display: flex;
    flex-wrap: wrap;
    gap: var(--s-6);
    align-items: flex-start;
}
#wsus__cart_view > .container > .row > .col-xl-9 {
    flex: 1 1 calc(75% - var(--s-6));
    min-width: 0;
    max-width: calc(75% - var(--s-6));
    padding: 0;
}
#wsus__cart_view > .container > .row > .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
    padding: 0;
}
@media (max-width: 991px) {
    #wsus__cart_view > .container > .row > .col-xl-9,
    #wsus__cart_view > .container > .row > .col-xl-3 {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

/* Cart list card */
#wsus__cart_view .wsus__cart_list {
    background: var(--c-white);
    border-radius: var(--r-md);
    box-shadow: var(--sh-sm);
    overflow: hidden;
    padding: var(--s-2);
}

/* Table → flex rows */
#wsus__cart_view .wsus__cart_list .table-responsive { overflow: visible; }
#wsus__cart_view .wsus__cart_list table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    table-layout: fixed;
}
#wsus__cart_view .wsus__cart_list tr.d-flex {
    display: flex !important;
    align-items: center;
    width: 100%;
    border-bottom: 1px solid var(--c-gray-100);
    padding: var(--s-3) var(--s-2);
}
#wsus__cart_view .wsus__cart_list tr.d-flex:last-child { border-bottom: 0; }
#wsus__cart_view .wsus__cart_list tr.d-flex:first-child {
    background: var(--c-gray-50);
    border-bottom: 2px solid var(--c-gray-200);
    border-radius: var(--r) var(--r) 0 0;
}

/* Column widths (image | name | unit-price | qty | subtotal | clear) */
#wsus__cart_view .wsus__cart_list .wsus__pro_img {
    flex: 0 0 110px;
    padding: var(--s-2);
    text-align: center;
    border: 0;
    background: transparent;
}
#wsus__cart_view .wsus__cart_list .wsus__pro_img img {
    max-width: 90px;
    max-height: 90px;
    object-fit: contain;
    border-radius: var(--r-sm);
    background: var(--c-gray-50);
    border: 1px solid var(--c-gray-200);
    padding: 4px;
    margin: 0 auto;
    display: block;
    width: 100%;
}
#wsus__cart_view .wsus__cart_list .wsus__pro_name {
    flex: 1 1 auto;
    min-width: 0;
    padding: var(--s-2) var(--s-3);
    text-align: left;
    border: 0;
    background: transparent;
    color: var(--c-text);
    text-transform: none;
    letter-spacing: 0;
    font-size: var(--fs-xs);
    min-height: auto;
    -webkit-line-clamp: unset;
    display: block;
    overflow: visible;
}
#wsus__cart_view .wsus__cart_list .wsus__pro_name p {
    font-size: var(--fs-md);
    font-weight: var(--fw-semi);
    color: var(--c-gray-900);
    margin: 0 0 var(--s-1);
    line-height: 1.4;
}
#wsus__cart_view .wsus__cart_list .wsus__pro_name span {
    display: inline-block;
    font-size: var(--fs-xs);
    color: var(--c-gray-600);
    background: var(--c-gray-100);
    padding: 2px var(--s-2);
    border-radius: var(--r-sm);
    margin: 2px 4px 2px 0;
}
#wsus__cart_view .wsus__cart_list .wsus__pro_status {
    flex: 0 0 130px;
    padding: var(--s-2);
    text-align: center;
    border: 0;
    background: transparent;
}
#wsus__cart_view .wsus__cart_list .wsus__pro_status p {
    font-size: var(--fs-md);
    font-weight: var(--fw-semi);
    color: var(--c-gray-700);
    margin: 0;
}
#wsus__cart_view .wsus__cart_list .wsus__pro_select {
    flex: 0 0 150px;
    padding: var(--s-2);
    text-align: center;
    border: 0;
    background: transparent;
}
#wsus__cart_view .wsus__cart_list .wsus__pro_tk {
    flex: 0 0 140px;
    padding: var(--s-2);
    text-align: center;
    border: 0;
    background: transparent;
}
#wsus__cart_view .wsus__cart_list .wsus__pro_tk h6 {
    font-size: var(--fs-lg);
    font-weight: var(--fw-extra);
    color: var(--c-primary);
    margin: 0;
}
#wsus__cart_view .wsus__cart_list .wsus__pro_icon {
    flex: 0 0 90px;
    padding: var(--s-2);
    text-align: center;
    border: 0;
    background: transparent;
}
#wsus__cart_view .wsus__cart_list .wsus__pro_icon a {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--c-gray-100);
    color: var(--c-gray-600);
    border-radius: var(--r-full);
    transition: all var(--t);
    font-size: var(--fs-md);
}
#wsus__cart_view .wsus__cart_list .wsus__pro_icon a:hover {
    background: var(--c-primary);
    color: var(--c-white);
    transform: scale(1.05);
}

/* Header row "Xóa hết" button */
#wsus__cart_view .wsus__cart_list tr:first-child .common_btn.clear-cart {
    padding: 7px var(--s-3);
    font-size: var(--fs-xs);
    line-height: 1.2;
    background: var(--c-danger) !important;
    box-shadow: 0 2px 8px -2px rgba(239,68,68,.4);
    white-space: nowrap;
}
#wsus__cart_view .wsus__cart_list tr:first-child .common_btn.clear-cart:hover {
    background: #dc2626 !important;
}
#wsus__cart_view .wsus__cart_list th {
    background: transparent;
    color: var(--c-gray-700);
    font-size: var(--fs-xs);
    font-weight: var(--fw-bold);
    text-transform: uppercase;
    letter-spacing: .4px;
    padding: var(--s-3) var(--s-2);
    text-align: center;
}
#wsus__cart_view .wsus__cart_list .wsus__pro_name th,
#wsus__cart_view .wsus__cart_list th.wsus__pro_name {
    text-align: left;
}

/* Quantity selector */
.product-quantity-wrapper {
    display: inline-flex;
    align-items: center;
    background: var(--c-white);
    border: 1px solid var(--c-gray-300);
    border-radius: var(--r-full);
    overflow: hidden;
    padding: 2px;
    gap: 0;
}
.product-quantity-wrapper button.btn,
.product-quantity-wrapper .product-decrement,
.product-quantity-wrapper .product-increment {
    width: 30px;
    height: 30px;
    padding: 0 !important;
    background: var(--c-gray-100) !important;
    color: var(--c-gray-700) !important;
    border: 0 !important;
    border-radius: var(--r-full) !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all var(--t);
    box-shadow: none !important;
}
.product-quantity-wrapper button.btn:hover,
.product-quantity-wrapper .product-decrement:hover,
.product-quantity-wrapper .product-increment:hover {
    background: var(--c-primary) !important;
    color: var(--c-white) !important;
    transform: none;
}
.product-quantity-wrapper input.product-quantity {
    width: 50px;
    height: 30px;
    border: 0;
    background: transparent;
    text-align: center;
    font-size: var(--fs-md);
    font-weight: var(--fw-semi);
    color: var(--c-gray-900);
    padding: 0;
    -moz-appearance: textfield;
}
.product-quantity-wrapper input.product-quantity::-webkit-outer-spin-button,
.product-quantity-wrapper input.product-quantity::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.product-quantity-wrapper input.product-quantity:focus { outline: 0; box-shadow: none; }

/* Empty cart message */
#wsus__cart_view .wsus__cart_list tr.d-flex td.wsus__pro_icon[rowspan="2"] {
    flex: 1 1 100%;
    text-align: center;
    padding: var(--s-10);
    font-size: var(--fs-lg);
    color: var(--c-gray-500);
    font-weight: var(--fw-medium);
}

/* Sidebar summary card */
#wsus__cart_view .wsus__cart_list_footer_button {
    background: var(--c-white);
    border-radius: var(--r-md);
    box-shadow: var(--sh-sm);
    padding: var(--s-5);
    position: sticky;
    top: var(--s-5);
    display: block !important;
    gap: 0 !important;
}
#wsus__cart_view .wsus__cart_list_footer_button h6 {
    font-size: var(--fs-lg);
    font-weight: var(--fw-bold);
    color: var(--c-gray-900);
    margin: 0 0 var(--s-4);
    padding-bottom: var(--s-3);
    border-bottom: 2px solid var(--c-gray-200);
}
#wsus__cart_view .wsus__cart_list_footer_button p {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--s-2) 0;
    margin: 0;
    font-size: var(--fs-md);
    color: var(--c-gray-700);
}
#wsus__cart_view .wsus__cart_list_footer_button p span {
    font-weight: var(--fw-semi);
    color: var(--c-gray-900);
}
#wsus__cart_view .wsus__cart_list_footer_button p.total {
    margin-top: var(--s-3);
    padding-top: var(--s-4);
    border-top: 2px solid var(--c-gray-200);
    font-size: var(--fs-md);
    font-weight: var(--fw-semi);
}
#wsus__cart_view .wsus__cart_list_footer_button p.total span:last-child {
    color: var(--c-primary);
    font-size: var(--fs-2xl);
    font-weight: var(--fw-extra);
}

/* Coupon form */
#wsus__cart_view #coupon-form {
    display: flex;
    gap: var(--s-2);
    margin: var(--s-4) 0;
}
#wsus__cart_view #coupon-form input {
    flex: 1;
    padding: 10px var(--s-3);
    border: 1px solid var(--c-gray-300);
    border-radius: var(--r);
    font-size: var(--fs-base);
    background: var(--c-gray-50);
    transition: all var(--t);
    min-width: 0;
}
#wsus__cart_view #coupon-form input:focus {
    background: var(--c-white);
    border-color: var(--c-primary);
    box-shadow: 0 0 0 3px var(--c-primary-100);
    outline: 0;
}
#wsus__cart_view #coupon-form button.common_btn {
    flex: 0 0 auto;
    padding: 10px var(--s-5);
    font-size: var(--fs-base);
    white-space: nowrap;
}

/* Action buttons (đặt hàng / tiếp tục mua sắm) */
#wsus__cart_view .wsus__cart_list_footer_button > a.common_btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: var(--s-2);
    text-align: center;
    flex: none !important;
}
#wsus__cart_view .wsus__cart_list_footer_button > a.common_btn.mt-4 {
    background: var(--gradient-primary) !important;
    box-shadow: 0 6px 16px -4px rgba(238,77,45,.4);
}
#wsus__cart_view .wsus__cart_list_footer_button > a.common_btn.mt-1 {
    background: var(--c-gray-100) !important;
    color: var(--c-gray-800) !important;
    box-shadow: none;
}
#wsus__cart_view .wsus__cart_list_footer_button > a.common_btn.mt-1:hover {
    background: var(--c-gray-200) !important;
    color: var(--c-gray-900) !important;
}

/* Responsive cart table */
@media (max-width: 991px) {
    #wsus__cart_view .wsus__cart_list .table-responsive {
        overflow-x: auto;
    }
    #wsus__cart_view .wsus__cart_list table { min-width: 720px; }
}
@media (max-width: 575px) {
    #wsus__cart_view .wsus__cart_list .wsus__pro_img { flex: 0 0 80px; }
    #wsus__cart_view .wsus__cart_list .wsus__pro_status { flex: 0 0 100px; }
    #wsus__cart_view .wsus__cart_list .wsus__pro_select { flex: 0 0 130px; }
    #wsus__cart_view .wsus__cart_list .wsus__pro_tk { flex: 0 0 110px; }
    .wsus__cart_list_footer_button { padding: var(--s-4); }
}

/* =================================================================
   34. MOBILE REFINEMENTS — Trang chủ + tất cả frontend
   Mobile-first chỉn chu (375 / 480 / 575 / 767 / 991px)
   ================================================================= */

/* ===== Header mobile (< 991px) ===== */
@media (max-width: 991px) {
    header { padding: 12px 0; }
    .wsus__header_logo img { max-height: 44px; }
    /* Mobile menu icon nằm sát trái */
    .wsus__mobile_menu_area {
        font-size: 22px;
        padding: 6px 8px;
        margin-left: -8px;
    }
    /* Logo column compact */
    header .col-2.col-md-1.d-lg-none { padding: 0 6px; }
    header .col-xl-2 { padding: 0 8px; }
    header .col-xl-5.col-3 { padding: 0 6px; }
    .wsus__icon_area { gap: 6px; }
    .wsus__icon_area > li > a {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }
    .wsus__icon_area > li > a > span {
        top: 2px;
        right: 2px;
        min-width: 16px;
        height: 16px;
        line-height: 16px;
        font-size: 9px;
    }
}

/* ===== Mobile search bar — hiện full-width DƯỚI logo row ===== */
@media (max-width: 991px) {
    /* Add search row mobile (force show search column on tablet/mobile) */
    .col-xl-5.col-md-6.col-lg-4.d-none.d-lg-block {
        display: block !important;
        flex: 0 0 100%;
        max-width: 100%;
        margin-top: 12px !important;
        padding: 0 !important;
    }
    .wsus__search input { padding: 10px 18px; font-size: 14px; }
    .wsus__search button { padding: 0 18px; font-size: 15px; }
    .wsus__search form { border-width: 1.5px; }
}

/* ===== Hero banner — mobile sizes ===== */
@media (max-width: 991px) {
    #wsus__banner { padding: 16px 0 24px; }
    .banner_slider { min-height: 320px; }
    .wsus__single_slider {
        min-height: 320px;
        padding: 32px 24px;
    }
    .wsus__single_slider_text { max-width: 75%; }
    .wsus__single_slider_text h3 {
        font-size: 13px;
        margin-bottom: 8px;
        letter-spacing: 1px;
    }
    .wsus__single_slider_text h1 {
        font-size: 26px;
        margin-bottom: 10px;
    }
    .wsus__single_slider_text h6 {
        font-size: 14px;
        margin-bottom: 16px;
    }
    .slick-prev, .slick-next { width: 38px; height: 38px; }
    .slick-prev::before, .slick-next::before { font-size: 14px; }
    .slick-prev { left: 8px; }
    .slick-next { right: 8px; }
}
@media (max-width: 575px) {
    .banner_slider { min-height: 240px; }
    .wsus__single_slider { min-height: 240px; padding: 24px 18px; }
    .wsus__single_slider_text { max-width: 85%; }
    .wsus__single_slider_text h1 { font-size: 20px; line-height: 1.2; }
    .wsus__single_slider_text h3 { font-size: 11px; }
    .wsus__single_slider_text h6 { font-size: 13px; margin-bottom: 12px; }
    .wsus__single_slider_text .common_btn {
        padding: 9px 18px;
        font-size: 13px;
    }
    .slick-dots { bottom: 10px; }
    .slick-dots li button { width: 22px; height: 3px; }
    .slick-dots li.slick-active button { width: 30px; }
}

/* ===== Flash sale mobile ===== */
@media (max-width: 767px) {
    .offer_time {
        padding: 18px 16px;
        text-align: center;
    }
    .offer_time::before { font-size: 140px; right: -20px; top: -30px; }
    .wsus__flash_coundown {
        flex-direction: column;
        gap: 14px;
        text-align: center;
    }
    .wsus__flash_coundown .end_text { font-size: 20px; }
    .simply-countdown > div, .simply-section {
        padding: 8px 12px;
        min-width: 56px;
    }
    .simply-countdown .simply-amount, .simply-amount { font-size: 18px; }
    .simply-countdown .simply-word, .simply-word { font-size: 10px; }
    .wsus__flash_coundown .common_btn {
        padding: 10px 20px;
        font-size: 13px;
    }
}

/* ===== Section header mobile ===== */
@media (max-width: 767px) {
    section { padding: 24px 0; }
    .wsus__section_header { margin-bottom: 20px; padding: 0 8px; }
    .wsus__section_header h3 { font-size: 18px; }
    .wsus__section_header h3::after { width: 50px; height: 3px; }
    .monthly_top_filter, .monthly_top_filter2 {
        gap: 6px;
        margin-top: 10px;
        padding: 0 8px;
    }
    .monthly_top_filter button, .monthly_top_filter2 button {
        padding: 6px 12px;
        font-size: 12px;
    }
}

/* ===== Product card mobile (2 col mobile / 1 col tiny) ===== */
@media (max-width: 991px) {
    #wsus__monthly_top, .wsus__monthly_top_2,
    #wsus__electronic { padding: 28px 0; }
}
@media (max-width: 767px) {
    .wsus__product_item { margin-bottom: 16px; border-radius: 10px; }
    .wsus__pro_link img { padding: 12px; }
    .wsus__product_details { padding: 12px; }
    .wsus__pro_name {
        font-size: 13px;
        min-height: 36px;
        margin-bottom: 6px;
    }
    .wsus__price { font-size: 15px; }
    .wsus__price del { font-size: 12px; }
    .wsus__category { font-size: 10px; }
    .wsus__pro_rating { font-size: 12px; }
    .wsus__new, .wsus__minus {
        top: 8px;
        font-size: 10px;
        padding: 3px 7px;
    }
    .wsus__new { left: 8px; }
    .wsus__minus { right: 8px; }
    /* Quick icons hiển thị luôn (ko hover trên mobile) */
    .wsus__single_pro_icon {
        right: 8px;
        opacity: .7;
    }
    .wsus__product_item:hover .wsus__single_pro_icon { right: 8px; }
    .wsus__single_pro_icon li a { width: 32px; height: 32px; font-size: 12px; }
    .add_cart, button.add_cart {
        padding: 8px 14px;
        font-size: 12px;
    }
}
@media (max-width: 480px) {
    .wsus__product_item { margin-bottom: 12px; }
    .wsus__pro_name { font-size: 12px; min-height: 32px; }
    .wsus__price { font-size: 14px; }
}

/* ===== Hot deals mobile ===== */
@media (max-width: 767px) {
    #wsus__hot_deals, .wsus__hot_deals_2 { padding: 28px 0; }
    .wsus__hot_deals__single { margin-bottom: 12px; border-radius: 10px; }
    .wsus__hot_deals__single_img img { padding: 12px; }
    .wsus__hot_deals__single_text { padding: 8px 10px; }
    .wsus__hot_deals__single_text h5 {
        font-size: 12px;
        min-height: 32px;
    }
    .wsus__hot_deals__single_text p { font-size: 13px; }
}

/* ===== Single banner mobile ===== */
@media (max-width: 767px) {
    .wsus__single_banner_content,
    .banner_1, .banner_2 {
        min-height: 180px;
        padding: 20px;
        margin-bottom: 12px;
    }
    .wsus__single_banner_text { max-width: 80%; }
    .wsus__single_banner_text h6 { font-size: 11px; }
    .wsus__single_banner_text h3 { font-size: 18px; margin-bottom: 10px; }
    .shop_btn { padding: 8px 18px; font-size: 12px; }
}

/* ===== Brand slider mobile ===== */
@media (max-width: 767px) {
    #wsus__brand_sleder, #wsus__brand { padding: 20px 0; }
    .wsus__brand_logo {
        min-height: 70px;
        padding: 10px;
        margin: 0 4px;
    }
    .wsus__brand_logo img { max-height: 40px; }
}

/* ===== Service icons mobile (2x2 grid) ===== */
@media (max-width: 991px) {
    #wsus__home_services, .home_service_2 { padding: 24px 0; }
    .wsus__home_services_single, .home_service_single_2 {
        padding: 18px 12px;
        margin: 4px;
    }
    .wsus__home_services_single i, .home_service_single_2 i {
        width: 52px;
        height: 52px;
        line-height: 52px;
        font-size: 22px;
    }
    .wsus__home_services_single h5, .home_service_single_2 h5 { font-size: 13px; }
    .wsus__home_services_single p, .home_service_single_2 p { font-size: 12px; }
}

/* ===== Newsletter mobile ===== */
@media (max-width: 575px) {
    #wsus__newslatter, #wsus__newsletter { padding: 28px 0; }
    #wsus__newslatter h3, #wsus__newsletter h3 { font-size: 18px; }
    #wsus__newslatter p, #wsus__newsletter p { font-size: 13px; }
    .newslatter_form, .newsletter_form {
        flex-direction: column;
        background: transparent;
        padding: 0;
        gap: 8px;
    }
    .newslatter_form input, .newsletter_form input {
        background: var(--c-white);
        border-radius: var(--r-full);
    }
    .newslatter_form button, .newsletter_form button,
    .subscriber-btn {
        width: 100%;
        background: var(--c-gray-900);
    }
}

/* ===== Footer mobile (stack columns) ===== */
@media (max-width: 991px) {
    .footer_2, footer.footer_2, footer { padding: 32px 0 0; margin-top: 24px; }
    .wsus__footer_content { margin-bottom: 24px; }
    .wsus__footer_content h5 { margin-bottom: 14px; font-size: 13px; }
    .wsus__footer_2_logo img { max-height: 40px; }
    .wsus__footer_content_2 form { flex-direction: row; }
}
@media (max-width: 575px) {
    footer h5, .wsus__footer_content h5 { font-size: 13px; margin-bottom: 12px; }
    .wsus__footer_content p, .wsus__footer_content .action { font-size: 12px; }
    .wsus__footer_menu li a { font-size: 12px; }
    .wsus__footer_social li a { width: 36px; height: 36px; font-size: 13px; }
    .wsus__footer_bottom { padding: 12px 0; margin-top: 24px; }
    .wsus__copyright { font-size: 12px; }
}

/* ===== Breadcrumb mobile ===== */
@media (max-width: 575px) {
    #wsus__breadcrumb, .wsus__breadcrumb { padding: 30px 0; }
    .wsus_breadcrumb_overlay { padding: 30px 0; }
    #wsus__breadcrumb h4, .wsus__breadcrumb h4 { font-size: 22px; }
    #wsus__breadcrumb ul, .wsus__breadcrumb ul { font-size: 12px; }
}

/* ===== Mini cart mobile (don't overflow) ===== */
@media (max-width: 575px) {
    .wsus__mini_cart {
        position: fixed !important;
        right: 8px !important;
        left: 8px !important;
        width: auto !important;
        top: 76px !important;
        max-height: calc(100vh - 100px);
        overflow-y: auto;
    }
}

/* ===== Container padding mobile ===== */
@media (max-width: 575px) {
    .container { padding: 0 12px; }
    section { padding: 20px 0; }
}

/* ===== Touch targets — mobile a11y ===== */
@media (hover: none) and (pointer: coarse) {
    /* Touch device: hover effects vẫn render khi tap, fix opacity */
    .wsus__single_pro_icon { opacity: 1 !important; right: 12px !important; }
    .wsus__product_item:hover { transform: none; }
    /* Buttons min height 44 cho a11y */
    .common_btn, .add_cart, button.add_cart, .shop_btn { min-height: 40px; }
}

/* ===== Scroll-to-top mobile ===== */
@media (max-width: 575px) {
    .wsus__scroll_btn, #scrollUp {
        width: 40px;
        height: 40px;
        bottom: 14px;
        right: 14px;
        font-size: 16px;
    }
}

/* ===== Pop-up mobile fit screen ===== */
@media (max-width: 575px) {
    .wsus__pop_up_text { padding: 24px 18px; max-width: 90vw; }
    .wsus__pop_up_text h2 { font-size: 18px; }
}

/* =================================================================
   35. PRODUCT DETAIL PAGE
   Selector scope: #wsus__product_details
   ================================================================= */

/* Container */
#wsus__product_details { padding: var(--s-8) 0 var(--s-6); background: var(--c-gray-50); }
#wsus__product_details .wsus__details_bg {
    background: var(--c-white);
    padding: var(--s-6);
    border-radius: var(--r-md);
    box-shadow: var(--sh-sm);
}

/* Image gallery (exzoom) */
#wsus__product_details #sticky_pro_zoom { position: sticky; top: var(--s-5); }
#wsus__product_details .exzoom {
    width: 100%;
    border-radius: var(--r);
    overflow: hidden;
}
#wsus__product_details .exzoom_img_box {
    position: relative;
    background: var(--c-white);
    border: 1px solid var(--c-gray-200);
    border-radius: var(--r);
    overflow: hidden;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
#wsus__product_details .exzoom_img_ul {
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}
#wsus__product_details .exzoom_img_ul li img,
#wsus__product_details .exzoom_img_box img.zoom {
    width: 100%;
    height: auto;
    object-fit: contain;
    padding: var(--s-5);
}
#wsus__product_details .exzoom_nav {
    margin-top: var(--s-3);
    display: flex;
    gap: var(--s-2);
    flex-wrap: wrap;
}
#wsus__product_details .exzoom_nav .exzoom_nav_inner {
    display: flex;
    gap: var(--s-2);
    flex-wrap: wrap;
}
#wsus__product_details .exzoom_nav_list {
    width: 64px;
    height: 64px;
    border: 1px solid var(--c-gray-200);
    border-radius: var(--r-sm);
    overflow: hidden;
    cursor: pointer;
    transition: border-color var(--t);
    background: var(--c-white);
    padding: 4px;
}
#wsus__product_details .exzoom_nav_list:hover,
#wsus__product_details .exzoom_nav_list.exzoom_nav_list_selected {
    border-color: var(--c-primary);
    box-shadow: 0 0 0 2px var(--c-primary-100);
}
#wsus__product_details .exzoom_nav_list img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
#wsus__product_details .exzoom_btn {
    margin-top: var(--s-3);
    display: flex;
    justify-content: space-between;
    gap: var(--s-2);
}
#wsus__product_details .exzoom_btn a {
    width: 40px;
    height: 40px;
    background: var(--c-white);
    border: 1px solid var(--c-gray-200);
    border-radius: var(--r-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-gray-700);
    transition: all var(--t);
}
#wsus__product_details .exzoom_btn a:hover {
    background: var(--c-primary);
    color: var(--c-white);
    border-color: var(--c-primary);
}
#wsus__product_details .wsus__pro_det_video {
    position: absolute;
    top: var(--s-3);
    right: var(--s-3);
    width: 44px;
    height: 44px;
    background: rgba(0,0,0,.7);
    color: var(--c-white);
    border-radius: var(--r-full);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    font-size: var(--fs-md);
    transition: all var(--t);
}
#wsus__product_details .wsus__pro_det_video:hover {
    background: var(--c-primary);
    color: var(--c-white);
    transform: scale(1.05);
}

/* Product info text */
#wsus__product_details .wsus__pro_details_text { padding: 0 var(--s-3); }
#wsus__product_details .wsus__pro_details_text .title {
    font-size: 24px;
    font-weight: var(--fw-bold);
    color: var(--c-gray-900);
    line-height: 1.3;
    margin: 0 0 var(--s-3);
}
#wsus__product_details .wsus__pro_details_text .brand_model {
    font-size: var(--fs-base);
    color: var(--c-gray-600);
    margin: 4px 0;
    display: flex;
    gap: var(--s-2);
    align-items: center;
}
#wsus__product_details .wsus__pro_details_text .brand_model small {
    font-size: var(--fs-base);
}
#wsus__product_details .wsus__pro_details_text .brand_model small strong {
    color: var(--c-gray-700);
    font-weight: var(--fw-semi);
}

/* Stock area */
#wsus__product_details .wsus__stock_area {
    margin: var(--s-3) 0;
    font-size: var(--fs-md);
    color: var(--c-gray-700);
}
#wsus__product_details .wsus__stock_area .text-success {
    color: var(--c-success) !important;
    background: rgba(22,163,74,.1);
    padding: 4px var(--s-3);
    border-radius: var(--r-full);
    font-size: var(--fs-base);
    margin-right: var(--s-2);
}
#wsus__product_details .wsus__stock_area .text-danger {
    color: var(--c-danger) !important;
    background: rgba(239,68,68,.1);
    padding: 4px var(--s-3);
    border-radius: var(--r-full);
    font-size: var(--fs-base);
    margin-right: var(--s-2);
}

/* Price */
#wsus__product_details .wsus__pro_details_text h4 {
    font-size: 32px;
    font-weight: var(--fw-extra);
    color: var(--c-primary);
    margin: var(--s-4) 0;
    display: flex;
    align-items: baseline;
    gap: var(--s-3);
    flex-wrap: wrap;
}
#wsus__product_details .wsus__pro_details_text h4 del {
    font-size: var(--fs-lg);
    color: var(--c-gray-400);
    font-weight: var(--fw-medium);
}

/* Review stars */
#wsus__product_details .wsus__pro_details_text .review {
    color: var(--c-secondary);
    font-size: var(--fs-md);
    margin-bottom: var(--s-3);
}
#wsus__product_details .wsus__pro_details_text .review span {
    color: var(--c-gray-600);
    font-size: var(--fs-base);
    margin-left: var(--s-2);
}

/* Short description */
#wsus__product_details .wsus__pro_details_text .description {
    color: var(--c-gray-700);
    font-size: var(--fs-md);
    line-height: 1.7;
    margin: var(--s-4) 0;
    padding: var(--s-3);
    background: var(--c-gray-50);
    border-left: 3px solid var(--c-primary);
    border-radius: var(--r-sm);
}
#wsus__product_details .wsus__pro_details_text .description strong {
    color: var(--c-gray-900);
    font-weight: var(--fw-bold);
}

/* Hot deals countdown trong detail */
#wsus__product_details .wsus_pro_hot_deals {
    background: linear-gradient(135deg, var(--c-primary), var(--c-primary-600));
    color: var(--c-white);
    padding: var(--s-4) var(--s-5);
    border-radius: var(--r);
    margin: var(--s-4) 0;
    box-shadow: 0 8px 20px -4px rgba(238,77,45,.35);
}
#wsus__product_details .wsus_pro_hot_deals h5 {
    color: var(--c-white);
    margin-bottom: var(--s-2);
    font-size: var(--fs-md);
    font-weight: var(--fw-semi);
}
#wsus__product_details .wsus_pro_hot_deals .simply-countdown {
    margin: 0;
    justify-content: flex-start;
}

/* Quantity + variants */
#wsus__product_details .shopping-cart-form { margin-top: var(--s-4); }
#wsus__product_details .shopping-cart-form .d-flex h5 {
    font-size: var(--fs-md);
    font-weight: var(--fw-semi);
    color: var(--c-gray-800);
    margin: 0;
    white-space: nowrap;
}
#wsus__product_details .shopping-cart-form input.form-control[name="quantity"] {
    width: 100px !important;
    height: 42px;
    text-align: center;
    border: 1px solid var(--c-gray-300);
    border-radius: var(--r);
    font-weight: var(--fw-semi);
    font-size: var(--fs-md);
}

/* Variant select */
#wsus__product_details .wsus__selectbox {
    background: var(--c-gray-50);
    padding: var(--s-4);
    border-radius: var(--r);
    margin: var(--s-4) 0;
}
#wsus__product_details .wsus__selectbox h5 {
    font-size: var(--fs-base);
    font-weight: var(--fw-semi);
    color: var(--c-gray-800);
    margin: 0 0 var(--s-2);
}
#wsus__product_details .wsus__selectbox .form-select {
    width: 100%;
    padding: 10px var(--s-3);
    border: 1px solid var(--c-gray-300);
    border-radius: var(--r);
    background: var(--c-white);
    font-size: var(--fs-md);
}
#wsus__product_details .wsus__selectbox .form-select:focus {
    border-color: var(--c-primary);
    box-shadow: 0 0 0 3px var(--c-primary-100);
    outline: 0;
}

/* Action buttons (add cart + wishlist + chat) */
#wsus__product_details .wsus__button_area {
    display: flex;
    align-items: center;
    gap: var(--s-3);
    margin-top: var(--s-5);
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
}
#wsus__product_details .wsus__button_area > li { flex: 0 1 auto; min-width: 0; }
#wsus__product_details .wsus__button_area > li:first-child { flex: 1 1 220px; }
#wsus__product_details .wsus__button_area .add_cart {
    width: 100%;
    padding: 14px var(--s-5);
    font-size: var(--fs-md);
    background: var(--gradient-primary) !important;
    box-shadow: 0 6px 16px -4px rgba(238,77,45,.4);
}
#wsus__product_details .wsus__button_area .wishlist-btn {
    width: 50px;
    height: 50px;
    background: var(--c-white) !important;
    color: var(--c-danger) !important;
    border: 1.5px solid var(--c-danger) !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fs-lg);
    transition: all var(--t);
}
#wsus__product_details .wsus__button_area .wishlist-btn:hover,
#wsus__product_details .wsus__button_area .wishlist-btn.active {
    background: var(--c-danger) !important;
    color: var(--c-white) !important;
}
#wsus__product_details .wsus__button_area .btn-outline-success {
    border: 1.5px solid var(--c-success) !important;
    color: var(--c-success) !important;
    background: var(--c-white) !important;
    padding: 12px var(--s-4) !important;
    font-size: var(--fs-base);
    font-weight: var(--fw-semi);
    margin-left: 0 !important;
    border-radius: var(--r) !important;
    cursor: pointer;
    transition: all var(--t);
}
#wsus__product_details .wsus__button_area .btn-outline-success:hover {
    background: var(--c-success) !important;
    color: var(--c-white) !important;
}

/* Sidebar features (truck, payment, security) */
#wsus__product_details .wsus_pro_det_sidebar {
    background: var(--c-gray-50);
    border-radius: var(--r);
    padding: var(--s-5);
    position: sticky;
    top: var(--s-5);
}
#wsus__product_details .wsus_pro_det_sidebar > ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
#wsus__product_details .wsus_pro_det_sidebar > ul > li {
    display: flex;
    align-items: center;
    gap: var(--s-3);
    padding: var(--s-3) 0;
    border-bottom: 1px solid var(--c-gray-200);
}
#wsus__product_details .wsus_pro_det_sidebar > ul > li:last-child { border-bottom: 0; }
#wsus__product_details .wsus_pro_det_sidebar > ul > li > span {
    width: 48px;
    height: 48px;
    border-radius: var(--r-full);
    background: var(--c-primary-100);
    color: var(--c-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fs-lg);
    flex-shrink: 0;
}
#wsus__product_details .wsus_pro_det_sidebar > ul > li .text h4 {
    font-size: var(--fs-md);
    font-weight: var(--fw-semi);
    color: var(--c-gray-900);
    margin: 0 0 4px;
}
#wsus__product_details .wsus_pro_det_sidebar > ul > li .text p {
    font-size: var(--fs-base);
    color: var(--c-gray-600);
    margin: 0;
}

/* Sidebar banner */
#wsus__product_details .wsus__det_sidebar_banner {
    margin-top: var(--s-4);
    border-radius: var(--r);
    overflow: hidden;
    position: relative;
    aspect-ratio: 16/10;
}
#wsus__product_details .wsus__det_sidebar_banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#wsus__product_details .wsus__det_sidebar_banner_text_overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(0,0,0,.7));
    display: flex;
    align-items: flex-end;
    padding: var(--s-4);
}
#wsus__product_details .wsus__det_sidebar_banner_text { color: var(--c-white); width: 100%; }
#wsus__product_details .wsus__det_sidebar_banner_text p {
    font-size: var(--fs-md);
    font-weight: var(--fw-semi);
    margin-bottom: var(--s-3);
    color: var(--c-white);
}
#wsus__product_details .wsus__det_sidebar_banner_text .common_btn {
    padding: 8px var(--s-4);
    font-size: var(--fs-base);
}

/* Tabs (Thông tin / Gian hàng / Đánh giá / FAQ) */
.wsus__pro_det_description {
    background: var(--c-white);
    border-radius: var(--r-md);
    padding: var(--s-6);
    margin-top: var(--s-6);
    box-shadow: var(--sh-sm);
}
.wsus__pro_det_description .nav-pills {
    border-bottom: 1px solid var(--c-gray-200);
    padding-bottom: 0;
    margin-bottom: var(--s-5);
    gap: var(--s-2);
    flex-wrap: wrap;
}
.wsus__pro_det_description .nav-pills .nav-link {
    background: transparent;
    color: var(--c-gray-600);
    font-size: var(--fs-md);
    font-weight: var(--fw-semi);
    padding: 12px var(--s-5);
    border: 0;
    border-bottom: 2px solid transparent;
    border-radius: var(--r) var(--r) 0 0;
    transition: all var(--t);
    margin-bottom: -1px;
}
.wsus__pro_det_description .nav-pills .nav-link:hover {
    color: var(--c-primary);
    background: var(--c-primary-100);
}
.wsus__pro_det_description .nav-pills .nav-link.active {
    background: transparent;
    color: var(--c-primary);
    border-bottom-color: var(--c-primary);
    border-radius: var(--r) var(--r) 0 0;
}

/* Tab content */
.wsus__pro_det_description .tab-content { padding: var(--s-3) 0; }
.wsus__description_area {
    color: var(--c-gray-700);
    font-size: var(--fs-md);
    line-height: 1.8;
    max-height: none;
}
.wsus__description_area img { border-radius: var(--r); margin: var(--s-3) 0; }
.wsus__description_area h1, .wsus__description_area h2,
.wsus__description_area h3, .wsus__description_area h4 {
    margin: var(--s-4) 0 var(--s-2);
    color: var(--c-gray-900);
}
.wsus__description_area p { margin-bottom: var(--s-3); }
.wsus__description_area ul, .wsus__description_area ol {
    margin: var(--s-3) 0;
    padding-left: var(--s-5);
    list-style: disc;
}
.wsus__description_area ol { list-style: decimal; }
.wsus__description_area li { margin-bottom: 6px; padding: 0; }
.wsus__description_area table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--s-3) 0;
}
.wsus__description_area table td, .wsus__description_area table th {
    padding: var(--s-2) var(--s-3);
    border: 1px solid var(--c-gray-200);
}
.wsus__description_area table th { background: var(--c-gray-50); font-weight: var(--fw-bold); }

/* Vendor tab */
.wsus__pro_det_vendor .wsus__vebdor_img img {
    width: 100%;
    border-radius: var(--r);
    object-fit: cover;
    aspect-ratio: 16/10;
}
.wsus__pro_det_vendor_text { padding: var(--s-3); }
.wsus__pro_det_vendor_text h4 {
    font-size: var(--fs-2xl);
    font-weight: var(--fw-bold);
    margin-bottom: var(--s-3);
    color: var(--c-gray-900);
}
.wsus__pro_det_vendor_text p {
    font-size: var(--fs-md);
    color: var(--c-gray-700);
    margin: var(--s-2) 0;
    display: flex;
    align-items: center;
    gap: var(--s-2);
}
.wsus__pro_det_vendor_text p span {
    color: var(--c-gray-500);
    font-weight: var(--fw-semi);
    min-width: 110px;
}
.wsus__pro_det_vendor_text .see_btn,
.wsus__pro_det_vendor .see_btn {
    display: inline-block;
    padding: 10px var(--s-5);
    background: var(--c-primary);
    color: var(--c-white);
    border-radius: var(--r);
    font-weight: var(--fw-semi);
    font-size: var(--fs-base);
    margin-top: var(--s-3);
    transition: all var(--t);
}
.wsus__pro_det_vendor_text .see_btn:hover,
.wsus__pro_det_vendor .see_btn:hover {
    background: var(--c-primary-600);
    color: var(--c-white);
    box-shadow: 0 6px 14px -4px rgba(238,77,45,.35);
}
.wsus__vendor_details {
    background: var(--c-gray-50);
    padding: var(--s-5);
    border-radius: var(--r);
}
.wsus__vendor_details h5 {
    color: var(--c-primary) !important;
    font-weight: var(--fw-bold);
    margin-bottom: var(--s-3);
}

/* Reviews list */
.wsus__pro_det_review_single {
    background: var(--c-gray-50);
    padding: var(--s-4);
    border-radius: var(--r);
    margin-bottom: var(--s-3);
    border-left: 3px solid var(--c-primary);
}
.wsus__pro_det_review_single .review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--s-2);
    flex-wrap: wrap;
    gap: var(--s-2);
}
.wsus__pro_det_review_single h5,
.wsus__pro_det_review_single .reviewer {
    font-size: var(--fs-md);
    font-weight: var(--fw-bold);
    color: var(--c-gray-900);
    margin: 0;
}
.wsus__pro_det_review_single .rating { color: var(--c-secondary); font-size: var(--fs-base); }
.wsus__pro_det_review_single p { margin: var(--s-2) 0 0; color: var(--c-gray-700); line-height: 1.6; }

/* Mobile responsive product detail */
@media (max-width: 991px) {
    #wsus__product_details { padding: var(--s-5) 0; }
    #wsus__product_details .wsus__details_bg { padding: var(--s-4); }
    #wsus__product_details #sticky_pro_zoom { position: relative; top: auto; margin-bottom: var(--s-4); }
    #wsus__product_details .wsus__pro_details_text { padding: 0; margin-top: var(--s-4); }
    #wsus__product_details .wsus_pro_det_sidebar { position: relative; top: auto; margin-top: var(--s-4); }
}
@media (max-width: 767px) {
    #wsus__product_details .wsus__pro_details_text .title { font-size: 18px; }
    #wsus__product_details .wsus__pro_details_text h4 { font-size: 22px; }
    #wsus__product_details .wsus__pro_details_text h4 del { font-size: var(--fs-md); }
    #wsus__product_details .exzoom_nav_list { width: 52px; height: 52px; }
    .wsus__pro_det_description { padding: var(--s-4); }
    .wsus__pro_det_description .nav-pills .nav-link {
        padding: 10px var(--s-3);
        font-size: var(--fs-base);
    }
    #wsus__product_details .wsus__button_area { flex-direction: column; }
    #wsus__product_details .wsus__button_area > li { width: 100%; flex: 1 1 100%; }
    #wsus__product_details .wsus__button_area .wishlist-btn { width: 100%; height: 44px; border-radius: var(--r) !important; }
    #wsus__product_details .shopping-cart-form .d-flex { flex-wrap: wrap; }
}
@media (max-width: 575px) {
    #wsus__product_details .wsus__details_bg { padding: var(--s-3); }
    .wsus__pro_det_vendor_text p { flex-wrap: wrap; }
    .wsus__pro_det_vendor_text p span { min-width: auto; }
}

/* =================================================================
   36. PRODUCTS LISTING PAGE
   Selector scope: #wsus__product_page
   ================================================================= */

#wsus__product_page {
    padding: var(--s-8) 0;
    background: var(--c-gray-50);
}

/* Sidebar filter */
#wsus__product_page .wsus__sidebar_filter {
    display: none;
    align-items: center;
    justify-content: space-between;
    padding: 14px var(--s-4);
    background: var(--c-white);
    border-radius: var(--r);
    margin-bottom: var(--s-3);
    box-shadow: var(--sh-sm);
    cursor: pointer;
}
#wsus__product_page .wsus__sidebar_filter p {
    margin: 0;
    font-size: var(--fs-md);
    font-weight: var(--fw-semi);
    text-transform: uppercase;
}
#wsus__product_page .wsus__filter_icon i { color: var(--c-primary); }

#wsus__product_page .wsus__product_sidebar {
    background: var(--c-white);
    border-radius: var(--r-md);
    padding: var(--s-5);
    box-shadow: var(--sh-sm);
    position: sticky;
    top: var(--s-5);
}
#wsus__product_page .wsus__product_sidebar > a.btn-secondary {
    background: var(--c-gray-100) !important;
    color: var(--c-gray-700) !important;
    border: 0 !important;
    padding: 10px var(--s-4);
    font-size: var(--fs-base);
    font-weight: var(--fw-semi);
    border-radius: var(--r);
    transition: all var(--t);
    width: 100%;
    text-align: center;
}
#wsus__product_page .wsus__product_sidebar > a.btn-secondary:hover {
    background: var(--c-primary) !important;
    color: var(--c-white) !important;
}

/* Filter accordion */
#wsus__product_page .accordion-item {
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--c-gray-200);
    border-radius: 0;
    margin: 0;
}
#wsus__product_page .accordion-item:last-child { border-bottom: 0; }
#wsus__product_page .accordion-button {
    background: transparent !important;
    color: var(--c-gray-900) !important;
    font-size: var(--fs-md);
    font-weight: var(--fw-bold);
    padding: var(--s-4) 0;
    box-shadow: none !important;
    border-radius: 0 !important;
    text-transform: uppercase;
    letter-spacing: .3px;
}
#wsus__product_page .accordion-button:not(.collapsed) {
    color: var(--c-primary) !important;
    background: transparent !important;
}
#wsus__product_page .accordion-button::after {
    width: 16px;
    height: 16px;
    background-size: 16px;
}
#wsus__product_page .accordion-body {
    padding: 0 0 var(--s-3);
}
#wsus__product_page .accordion-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
#wsus__product_page .accordion-body ul li { padding: 6px 0; }
#wsus__product_page .accordion-body ul li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px var(--s-2);
    font-size: var(--fs-base);
    color: var(--c-gray-700);
    border-radius: var(--r-sm);
    transition: all var(--t);
}
#wsus__product_page .accordion-body ul li a:hover,
#wsus__product_page .accordion-body ul li a.text-primary {
    background: var(--c-primary-100);
    color: var(--c-primary) !important;
    padding-left: var(--s-3);
    font-weight: var(--fw-semi);
}

/* Form check (filter checkboxes) */
#wsus__product_page .form-check {
    padding: 4px 0 4px 28px;
    margin: 4px 0;
}
#wsus__product_page .form-check-input {
    margin-left: -28px;
    margin-top: 4px;
    cursor: pointer;
}
#wsus__product_page .form-check-label {
    font-size: var(--fs-base);
    color: var(--c-gray-700);
    cursor: pointer;
    font-weight: var(--fw-medium);
}

/* Price range slider */
#wsus__product_page .price_ranger {
    padding: var(--s-3) 0;
}
#wsus__product_page .price_ranger input[type="text"] {
    width: 100%;
    padding: 8px var(--s-3);
    border: 1px solid var(--c-gray-300);
    border-radius: var(--r-sm);
    font-size: var(--fs-base);
    background: var(--c-gray-50);
    text-align: center;
    color: var(--c-primary);
    font-weight: var(--fw-bold);
}
#wsus__product_page .ui-slider {
    background: var(--c-gray-200);
    height: 6px;
    border-radius: var(--r-full);
    border: 0;
    margin: var(--s-3) 0;
}
#wsus__product_page .ui-slider-range {
    background: var(--c-primary);
    border-radius: var(--r-full);
}
#wsus__product_page .ui-slider-handle {
    width: 18px;
    height: 18px;
    background: var(--c-white);
    border: 3px solid var(--c-primary);
    border-radius: 50%;
    top: -6px;
    cursor: grab;
    box-shadow: 0 2px 6px rgba(0,0,0,.1);
}

/* Top bar (sort + grid/list view) */
#wsus__product_page .wsus__product_topbar {
    background: var(--c-white);
    padding: var(--s-3) var(--s-4);
    border-radius: var(--r-md);
    box-shadow: var(--sh-sm);
    margin-bottom: var(--s-4);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--s-3);
}
#wsus__product_page .wsus__product_topbar_left {
    display: flex;
    align-items: center;
    gap: var(--s-3);
    flex-wrap: wrap;
}
#wsus__product_page .wsus__product_topbar p,
#wsus__product_page .wsus__product_topbar h6 {
    margin: 0;
    font-size: var(--fs-base);
    color: var(--c-gray-600);
}
#wsus__product_page .wsus__product_topbar select,
#wsus__product_page .wsus__product_topbar .form-select {
    padding: 8px var(--s-3);
    border: 1px solid var(--c-gray-300);
    border-radius: var(--r);
    background: var(--c-white);
    font-size: var(--fs-base);
    min-width: 160px;
    cursor: pointer;
}
#wsus__product_page .nav-pills {
    gap: 4px;
    margin: 0;
}
#wsus__product_page .nav-pills .nav-link {
    width: 38px;
    height: 38px;
    padding: 0;
    border-radius: var(--r);
    background: var(--c-gray-100);
    color: var(--c-gray-600);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    font-size: var(--fs-md);
}
#wsus__product_page .nav-pills .nav-link.active,
#wsus__product_page .nav-pills .nav-link:hover {
    background: var(--c-primary);
    color: var(--c-white);
}

/* List view product card */
#wsus__product_page .wsus__product_item.wsus__list_view {
    display: flex !important;
    flex-direction: row;
    align-items: stretch;
    height: auto;
}
#wsus__product_page .wsus__product_item.wsus__list_view .wsus__pro_link {
    flex: 0 0 240px;
    aspect-ratio: 1;
}
#wsus__product_page .wsus__product_item.wsus__list_view .wsus__product_details {
    flex: 1;
    text-align: left;
    padding: var(--s-5);
    align-items: flex-start;
}
#wsus__product_page .wsus__product_item.wsus__list_view .wsus__pro_name {
    font-size: var(--fs-lg);
    margin-bottom: var(--s-3);
}
#wsus__product_page .wsus__product_item.wsus__list_view .wsus__price {
    font-size: var(--fs-xl);
    margin-bottom: var(--s-4);
}
#wsus__product_page .wsus__product_item.wsus__list_view .add_cart {
    width: auto;
    padding: 10px var(--s-5);
}

/* Empty state */
#wsus__product_page .text-center.mt-5 {
    padding: var(--s-10);
    background: var(--c-white);
    border-radius: var(--r-md);
    box-shadow: var(--sh-sm);
}
#wsus__product_page .text-center.mt-5 h3 {
    color: var(--c-gray-700);
    font-size: var(--fs-xl);
}

/* Pagination */
#wsus__product_page .pagination {
    justify-content: center;
    margin-top: var(--s-6);
    gap: 4px;
}

/* Responsive products listing */
@media (max-width: 991px) {
    #wsus__product_page { padding: var(--s-5) 0; }
    #wsus__product_page .wsus__sidebar_filter { display: flex; }
    #wsus__product_page .wsus__product_sidebar {
        position: relative;
        top: auto;
        display: none;
        margin-bottom: var(--s-4);
    }
    #wsus__product_page .wsus__product_sidebar.show { display: block; }
    #wsus__product_page .wsus__product_item.wsus__list_view { flex-direction: column; }
    #wsus__product_page .wsus__product_item.wsus__list_view .wsus__pro_link {
        flex: none;
        aspect-ratio: 1;
        width: 100%;
    }
    #wsus__product_page .wsus__product_item.wsus__list_view .wsus__product_details {
        text-align: center;
        align-items: center;
        padding: var(--s-3);
    }
}
@media (max-width: 767px) {
    #wsus__product_page .wsus__product_topbar {
        padding: var(--s-3);
        flex-direction: column;
        align-items: flex-start;
    }
    #wsus__product_page .wsus__product_topbar select,
    #wsus__product_page .wsus__product_topbar .form-select {
        width: 100%;
        min-width: 0;
    }
    #wsus__product_page .wsus__product_topbar_left { width: 100%; }
}

/* =================================================================
   37. CHECKOUT PAGE
   Selector scope: .wsus__checkout_form + extends section 22
   ================================================================= */

#wsus__cart_view .wsus__checkout_form {
    display: block;
}
#wsus__cart_view .wsus__checkout_form > .row {
    display: flex;
    flex-wrap: wrap;
    gap: var(--s-6);
    margin: 0;
    align-items: flex-start;
}
#wsus__cart_view .wsus__checkout_form > .row > .col-xl-9.col-lg-7 {
    flex: 1 1 calc(72% - var(--s-6));
    min-width: 0;
    max-width: calc(72% - var(--s-6));
    padding: 0;
}
#wsus__cart_view .wsus__checkout_form > .row > .col-xl-3.col-lg-5 {
    flex: 0 0 28%;
    max-width: 28%;
    padding: 0;
}
@media (max-width: 991px) {
    #wsus__cart_view .wsus__checkout_form > .row > .col-xl-9.col-lg-7,
    #wsus__cart_view .wsus__checkout_form > .row > .col-xl-3.col-lg-5 {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

/* Checkout form card */
#wsus__cart_view .wsus__check_form {
    background: var(--c-white);
    padding: var(--s-6);
    border-radius: var(--r-md);
    box-shadow: var(--sh-sm);
}
#wsus__cart_view .wsus__check_form > h5 {
    font-size: var(--fs-lg);
    font-weight: var(--fw-bold);
    color: var(--c-gray-900);
    margin: 0 0 var(--s-4);
    padding-bottom: var(--s-3);
    border-bottom: 2px solid var(--c-gray-200);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--s-2);
}
#wsus__cart_view .wsus__check_form > h5 a {
    font-size: var(--fs-base);
    color: var(--c-primary);
    font-weight: var(--fw-semi);
    background: var(--c-primary-100);
    padding: 6px var(--s-4);
    border-radius: var(--r-full);
    transition: all var(--t);
}
#wsus__cart_view .wsus__check_form > h5 a:hover {
    background: var(--c-primary);
    color: var(--c-white);
}
#wsus__cart_view .wsus__check_form > h5.mt-5 { margin-top: var(--s-6) !important; }

/* Address selection cards */
#wsus__cart_view .wsus__checkout_single_address {
    background: var(--c-gray-50);
    border: 2px solid var(--c-gray-200);
    padding: var(--s-4);
    border-radius: var(--r);
    margin-bottom: var(--s-3);
    transition: all var(--t);
    cursor: pointer;
    height: calc(100% - var(--s-3));
}
#wsus__cart_view .wsus__checkout_single_address:hover {
    border-color: var(--c-primary);
    box-shadow: var(--sh-sm);
}
#wsus__cart_view .wsus__checkout_single_address:has(input:checked) {
    border-color: var(--c-primary);
    background: var(--c-primary-100);
}
#wsus__cart_view .wsus__checkout_single_address .form-check {
    padding-left: 28px;
    margin-bottom: var(--s-3);
    padding-bottom: var(--s-3);
    border-bottom: 1px dashed var(--c-gray-300);
}
#wsus__cart_view .wsus__checkout_single_address .form-check-label {
    font-weight: var(--fw-semi);
    color: var(--c-gray-800);
    font-size: var(--fs-base);
}
#wsus__cart_view .wsus__checkout_single_address ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
#wsus__cart_view .wsus__checkout_single_address ul li {
    padding: 4px 0;
    font-size: var(--fs-base);
    color: var(--c-gray-700);
    line-height: 1.5;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}
#wsus__cart_view .wsus__checkout_single_address ul li span {
    color: var(--c-gray-500);
    font-weight: var(--fw-medium);
    min-width: 130px;
}
#wsus__cart_view .wsus__checkout_single_address ul li span strong {
    color: var(--c-gray-700);
    font-weight: var(--fw-semi);
}

/* Order summary sidebar */
#wsus__cart_view .wsus__order_details {
    background: var(--c-white);
    padding: var(--s-5);
    border-radius: var(--r-md);
    box-shadow: var(--sh-sm);
    position: sticky;
    top: var(--s-5);
}
#wsus__cart_view .wsus__order_details .wsus__product {
    font-size: var(--fs-md);
    font-weight: var(--fw-bold);
    color: var(--c-gray-900);
    margin: 0 0 var(--s-3);
    padding-bottom: var(--s-2);
    border-bottom: 1px solid var(--c-gray-200);
    text-transform: uppercase;
    letter-spacing: .3px;
}

/* Shipping method radio */
#wsus__cart_view .wsus__order_details .form-check {
    padding: var(--s-2) 0 var(--s-2) 28px;
    margin: 0;
    border-bottom: 1px dashed var(--c-gray-200);
}
#wsus__cart_view .wsus__order_details .form-check:last-child { border-bottom: 0; }
#wsus__cart_view .wsus__order_details .form-check-input { margin-left: -28px; margin-top: 5px; }
#wsus__cart_view .wsus__order_details .form-check-label {
    font-size: var(--fs-base);
    color: var(--c-gray-700);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}
#wsus__cart_view .wsus__order_details .form-check-label strong {
    color: var(--c-primary);
    font-weight: var(--fw-bold);
}

/* Order summary totals */
#wsus__cart_view .wsus__order_details_summery {
    border-top: 2px solid var(--c-gray-200);
    padding-top: var(--s-4);
    margin-top: var(--s-4);
}
#wsus__cart_view .wsus__order_details_summery h4 {
    font-size: var(--fs-md);
    font-weight: var(--fw-bold);
    color: var(--c-gray-900);
    margin: 0 0 var(--s-3);
    text-transform: uppercase;
    letter-spacing: .3px;
}
#wsus__cart_view .wsus__order_details_summery > p {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--s-2) 0;
    font-size: var(--fs-md);
    color: var(--c-gray-700);
    margin: 0;
}
#wsus__cart_view .wsus__order_details_summery > p#total-amount-row {
    margin-top: var(--s-3);
    padding-top: var(--s-3);
    border-top: 2px solid var(--c-gray-200);
    font-size: var(--fs-md);
    font-weight: var(--fw-semi);
}
#wsus__cart_view .wsus__order_details_summery > p strong {
    color: var(--c-primary);
    font-weight: var(--fw-extra);
    font-size: var(--fs-2xl);
}

/* Agree terms checkbox */
#wsus__cart_view .wsus__order_details_summery .form-check {
    background: var(--c-gray-50);
    padding: var(--s-3) var(--s-3) var(--s-3) calc(var(--s-3) + 24px);
    border-radius: var(--r);
    margin: var(--s-3) 0;
    border-bottom: 0;
}
#wsus__cart_view .wsus__order_details_summery .form-check-input { margin-left: -24px; }
#wsus__cart_view .wsus__order_details_summery .form-check-label {
    font-size: var(--fs-base);
    color: var(--c-gray-700);
    line-height: 1.5;
}

/* Submit button */
#wsus__cart_view #submitCheckoutForm {
    width: 100%;
    padding: 14px var(--s-5);
    font-size: var(--fs-md);
    margin-top: var(--s-3);
    background: var(--gradient-primary) !important;
    box-shadow: 0 8px 18px -4px rgba(238,77,45,.4);
    text-align: center;
    display: block;
}

/* Modal popup add address */
.wsus__popup_address .modal-dialog {
    max-width: 760px;
}
.wsus__popup_address .modal-content {
    border-radius: var(--r-lg);
    border: 0;
    box-shadow: var(--sh-lg);
    overflow: hidden;
}
.wsus__popup_address .modal-header {
    padding: var(--s-4) var(--s-5);
    background: var(--c-gray-50);
    border-bottom: 1px solid var(--c-gray-200);
}
.wsus__popup_address .modal-title {
    font-size: var(--fs-lg);
    font-weight: var(--fw-bold);
}
.wsus__popup_address .modal-body { padding: 0 !important; }
.wsus__popup_address .wsus__check_form { padding: var(--s-5); }
.wsus__popup_address label {
    font-size: var(--fs-base);
    font-weight: var(--fw-semi);
    color: var(--c-gray-800);
    margin-bottom: var(--s-1);
}
.wsus__popup_address label b { color: var(--c-danger); }
.wsus__popup_address .form-control,
.wsus__popup_address .form-select {
    padding: 10px var(--s-3);
    border: 1px solid var(--c-gray-300);
    border-radius: var(--r);
    font-size: var(--fs-md);
}
.wsus__popup_address .form-control:focus,
.wsus__popup_address .form-select:focus {
    border-color: var(--c-primary);
    box-shadow: 0 0 0 3px var(--c-primary-100);
    outline: 0;
}
.wsus__popup_address .modal-footer {
    background: var(--c-gray-50);
    padding: var(--s-3) var(--s-5);
}

/* Mobile checkout */
@media (max-width: 767px) {
    #wsus__cart_view .wsus__check_form { padding: var(--s-4); }
    #wsus__cart_view .wsus__check_form > h5 { font-size: var(--fs-md); }
    #wsus__cart_view .wsus__order_details { position: relative; top: auto; }
    .wsus__popup_address .wsus__check_form { padding: var(--s-3); }
}

/* =================================================================
   38. USER DASHBOARD (sidebar + content)
   Selectors: .dashboard_sidebar, .dashboard_content, .wsus__dashboard*
   ================================================================= */

/* Layout */
.dashboard_2 { background: var(--c-gray-50); padding: var(--s-6) 0; }
.dashboard_sidebar {
    background: var(--c-white);
    border-radius: var(--r-md);
    box-shadow: var(--sh-sm);
    padding: 0;
    overflow: hidden;
    position: sticky;
    top: var(--s-5);
}
.dashboard_sidebar .close_icon {
    display: none;
    position: absolute;
    top: var(--s-3);
    right: var(--s-3);
    cursor: pointer;
    z-index: 10;
    color: var(--c-gray-700);
    font-size: var(--fs-lg);
}
.dashboard_sidebar .dash_logo {
    display: block;
    padding: var(--s-5) var(--s-4) !important;
    text-align: center;
    background: linear-gradient(135deg, var(--c-primary-100), var(--c-white)) !important;
    border-bottom: 1px solid var(--c-gray-200);
}
.dashboard_sidebar .dash_logo img {
    max-height: 50px;
    margin: 0 auto;
}
.dashboard_sidebar .dash_logo p {
    margin: var(--s-2) 0 0;
    font-weight: var(--fw-bold);
    font-size: var(--fs-md);
    color: var(--c-primary);
}

/* Sidebar nav */
.dashboard_sidebar .dashboard_link {
    list-style: none;
    padding: var(--s-3);
    margin: 0;
}
.dashboard_sidebar .dashboard_link li { margin-bottom: 4px; }
.dashboard_sidebar .dashboard_link li a {
    display: flex;
    align-items: center;
    gap: var(--s-3);
    padding: 11px var(--s-4) !important;
    color: var(--c-gray-700);
    font-size: var(--fs-base);
    font-weight: var(--fw-medium);
    border-radius: var(--r-sm);
    transition: all var(--t);
    margin-bottom: 0 !important;
}
.dashboard_sidebar .dashboard_link li a > i {
    width: 20px;
    text-align: center;
    color: var(--c-gray-500);
    font-size: var(--fs-md);
    transition: color var(--t);
}
.dashboard_sidebar .dashboard_link li a:hover,
.dashboard_sidebar .dashboard_link li a.active {
    background: var(--c-primary-100);
    color: var(--c-primary);
}
.dashboard_sidebar .dashboard_link li a:hover > i,
.dashboard_sidebar .dashboard_link li a.active > i { color: var(--c-primary); }
.dashboard_sidebar .dashboard_link li a.bg-dark {
    background: var(--c-gray-900) !important;
    color: var(--c-white) !important;
    margin-bottom: var(--s-3) !important;
}
.dashboard_sidebar .dashboard_link li a.bg-dark > i { color: var(--c-white); }
.dashboard_sidebar .dashboard_link li a.bg-dark:hover { background: var(--c-gray-700) !important; }
.dashboard_sidebar .dashboard_link li a.bg-danger {
    background: var(--c-danger) !important;
    color: var(--c-white) !important;
    margin-top: var(--s-3) !important;
}
.dashboard_sidebar .dashboard_link li a.bg-danger > i { color: var(--c-white); }
.dashboard_sidebar .dashboard_link li form { margin: 0; }

/* Dashboard content area */
.dashboard_content {
    background: var(--c-white);
    border-radius: var(--r-md);
    box-shadow: var(--sh-sm);
    padding: var(--s-6);
    min-height: 500px;
}
.dashboard_content > h3, .dashboard_content > h4 {
    font-size: var(--fs-2xl);
    font-weight: var(--fw-bold);
    color: var(--c-gray-900);
    margin: 0 0 var(--s-5);
    padding-bottom: var(--s-3);
    border-bottom: 2px solid var(--c-gray-200);
}

/* Dashboard stats grid */
.wsus__dashboard, .wsus__dashboard_item {
    display: block;
    background: var(--c-white);
    border: 1px solid var(--c-gray-200);
    border-radius: var(--r);
    padding: var(--s-5);
    transition: all var(--t);
    color: inherit;
    text-decoration: none;
    margin-bottom: var(--s-3);
}
.wsus__dashboard_item:hover {
    box-shadow: var(--sh-md);
    transform: translateY(-3px);
    color: inherit;
    border-color: var(--c-primary-100);
}
.wsus__dashboard_item .icon {
    width: 56px;
    height: 56px;
    border-radius: var(--r-full);
    background: var(--c-primary-100);
    color: var(--c-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fs-xl);
    margin-bottom: var(--s-3);
}
.wsus__dashboard_item h4, .wsus__dashboard_item h5 {
    font-size: var(--fs-md);
    color: var(--c-gray-600);
    font-weight: var(--fw-medium);
    margin: 0 0 var(--s-2);
}
.wsus__dashboard_item .number {
    font-size: var(--fs-3xl);
    font-weight: var(--fw-extra);
    color: var(--c-primary);
}

/* Profile info section */
.wsus__dashboard_profile {
    background: linear-gradient(135deg, var(--c-primary-100), var(--c-white));
    padding: var(--s-6);
    border-radius: var(--r-md);
    margin-bottom: var(--s-5);
    display: flex;
    align-items: center;
    gap: var(--s-5);
    flex-wrap: wrap;
}
.wsus__dash_pro_img,
.wsus__dash_pro_area .image_upload {
    width: 100px;
    height: 100px;
    border-radius: var(--r-full);
    overflow: hidden;
    flex-shrink: 0;
    border: 4px solid var(--c-white);
    box-shadow: var(--sh);
    background: var(--c-white);
}
.wsus__dash_pro_img img,
.wsus__dash_pro_area .image_upload img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.wsus__dashboard_profile h4, .wsus__dashboard_profile h3 {
    font-size: var(--fs-2xl);
    font-weight: var(--fw-bold);
    color: var(--c-gray-900);
    margin: 0 0 var(--s-2);
}
.wsus__dashboard_profile p {
    color: var(--c-gray-600);
    font-size: var(--fs-md);
    margin: 0;
}

/* Profile form */
.wsus__dash_pro_area form,
.wsus__dash_pass_change form { margin-top: var(--s-4); }
.wsus__dash_pro_area .form-group, .mb-3 { margin-bottom: var(--s-4); }

/* Address card */
.wsus__add_address, .address-card {
    background: var(--c-gray-50);
    padding: var(--s-4);
    border-radius: var(--r);
    border: 1px solid var(--c-gray-200);
    margin-bottom: var(--s-3);
    height: 100%;
}
.wsus__add_address h5, .address-card h5 {
    font-size: var(--fs-md);
    font-weight: var(--fw-bold);
    color: var(--c-gray-900);
    margin-bottom: var(--s-3);
}
.wsus__add_address p, .address-card p {
    font-size: var(--fs-base);
    color: var(--c-gray-700);
    margin: 4px 0;
    line-height: 1.5;
}
.wsus__address_btn { display: flex; gap: var(--s-2); margin-top: var(--s-3); flex-wrap: wrap; }
.wsus__address_btn a, .wsus__address_btn button {
    padding: 6px var(--s-3);
    font-size: var(--fs-base);
    font-weight: var(--fw-semi);
    border-radius: var(--r-sm);
    transition: all var(--t);
    border: 0;
    cursor: pointer;
}
.wsus__address_btn .edit-btn {
    background: var(--c-info);
    color: var(--c-white);
}
.wsus__address_btn .delete-btn {
    background: var(--c-danger);
    color: var(--c-white);
}

/* Order list */
.wsus__order_list, .order-table { width: 100%; }
.wsus__order_list_single, .order-row {
    background: var(--c-white);
    border: 1px solid var(--c-gray-200);
    border-radius: var(--r);
    padding: var(--s-4);
    margin-bottom: var(--s-3);
    transition: all var(--t);
}
.wsus__order_list_single:hover, .order-row:hover {
    box-shadow: var(--sh);
    border-color: var(--c-primary-100);
}

/* Reviews list */
.wsus__review_single {
    background: var(--c-gray-50);
    padding: var(--s-4);
    border-radius: var(--r);
    margin-bottom: var(--s-3);
    border-left: 3px solid var(--c-primary);
}
.wsus__review_single h5 {
    font-size: var(--fs-md);
    font-weight: var(--fw-bold);
    margin: 0 0 var(--s-2);
}

/* Chat / Messages */
.wsus__chat_main_area {
    background: var(--c-white);
    border-radius: var(--r-md);
    overflow: hidden;
    display: flex;
    height: 600px;
    box-shadow: var(--sh-sm);
}
.wsus__chat_area_header {
    padding: var(--s-4);
    background: var(--c-gray-50);
    border-bottom: 1px solid var(--c-gray-200);
    font-weight: var(--fw-bold);
}
.wsus__chat_area_body {
    flex: 1;
    overflow-y: auto;
    padding: var(--s-4);
    background: var(--c-gray-50);
}
.wsus__chat_single {
    display: flex;
    gap: var(--s-3);
    margin-bottom: var(--s-3);
}
.wsus__chat_single.right { flex-direction: row-reverse; }
.wsus__chat_single_img img {
    width: 40px;
    height: 40px;
    border-radius: var(--r-full);
    object-fit: cover;
}
.wsus__chat_single_text {
    background: var(--c-white);
    padding: 10px var(--s-4);
    border-radius: var(--r-md);
    max-width: 70%;
    box-shadow: var(--sh-xs);
    font-size: var(--fs-base);
    line-height: 1.5;
}
.wsus__chat_single.right .wsus__chat_single_text {
    background: var(--c-primary);
    color: var(--c-white);
}
.wsus__chat_area_footer {
    padding: var(--s-3) var(--s-4);
    background: var(--c-white);
    border-top: 1px solid var(--c-gray-200);
    display: flex;
    gap: var(--s-2);
}

/* Vendor request form */
.vendor-request-form {
    background: var(--c-white);
    padding: var(--s-6);
    border-radius: var(--r-md);
    box-shadow: var(--sh-sm);
}

/* Mobile dashboard */
@media (max-width: 991px) {
    .dashboard_2 { padding: var(--s-3) 0; }
    .dashboard_sidebar {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        z-index: 1000;
        transition: left var(--t-slow);
        overflow-y: auto;
        margin: 0;
        border-radius: 0;
    }
    .dashboard_sidebar.show, .dashboard_sidebar.active { left: 0; }
    .dashboard_sidebar .close_icon { display: block; }
    .dashboard_content { padding: var(--s-4); }
    .wsus__dashboard_profile { flex-direction: column; text-align: center; }
}
@media (max-width: 575px) {
    .dashboard_content { padding: var(--s-3); }
    .dashboard_content > h3, .dashboard_content > h4 { font-size: var(--fs-lg); }
    .wsus__dashboard_item { padding: var(--s-3); }
    .wsus__dashboard_item .number { font-size: var(--fs-2xl); }
}

/* =================================================================
   39. VENDOR DASHBOARD (dark sidebar)
   Sidebar có inline style bg dark navy #0b2c3d
   ================================================================= */

/* Vendor sidebar — dark theme override */
.dashboard_sidebar[style*="0b2c3d"],
.dashboard_sidebar.z-index {
    background-color: #0b2c3d !important;
    color: var(--c-white);
}
.dashboard_sidebar[style*="0b2c3d"] .dash_logo,
.dashboard_sidebar.z-index .dash_logo {
    background: rgba(255,255,255,.04) !important;
    border-bottom-color: rgba(255,255,255,.1);
}
.dashboard_sidebar[style*="0b2c3d"] .dash_logo p,
.dashboard_sidebar.z-index .dash_logo p {
    color: var(--c-white);
}
.dashboard_sidebar[style*="0b2c3d"] .dashboard_link li a,
.dashboard_sidebar.z-index .dashboard_link li a {
    color: rgba(255,255,255,.75);
}
.dashboard_sidebar[style*="0b2c3d"] .dashboard_link li a > i,
.dashboard_sidebar.z-index .dashboard_link li a > i {
    color: rgba(255,255,255,.55);
}
.dashboard_sidebar[style*="0b2c3d"] .dashboard_link li a:hover,
.dashboard_sidebar[style*="0b2c3d"] .dashboard_link li a.active,
.dashboard_sidebar.z-index .dashboard_link li a:hover,
.dashboard_sidebar.z-index .dashboard_link li a.active {
    background: rgba(255,255,255,.1);
    color: var(--c-white);
}
.dashboard_sidebar[style*="0b2c3d"] .dashboard_link li a:hover > i,
.dashboard_sidebar[style*="0b2c3d"] .dashboard_link li a.active > i,
.dashboard_sidebar.z-index .dashboard_link li a:hover > i,
.dashboard_sidebar.z-index .dashboard_link li a.active > i {
    color: var(--c-white);
}
.dashboard_sidebar[style*="0b2c3d"] .dashboard_link li a.bg-dark,
.dashboard_sidebar.z-index .dashboard_link li a.bg-dark {
    background: rgba(255,255,255,.06) !important;
}

/* Vendor product list / order list */
.vendor-product-card,
.vendor-order-card {
    background: var(--c-white);
    border: 1px solid var(--c-gray-200);
    border-radius: var(--r);
    padding: var(--s-4);
    margin-bottom: var(--s-3);
    transition: all var(--t);
}
.vendor-product-card:hover, .vendor-order-card:hover {
    box-shadow: var(--sh-md);
    border-color: var(--c-primary-100);
}

/* Withdraw + payment cards */
.withdraw-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--s-3);
    margin-bottom: var(--s-4);
}
.withdraw-stat-card {
    background: linear-gradient(135deg, var(--c-primary-100), var(--c-white));
    padding: var(--s-4);
    border-radius: var(--r);
    border: 1px solid var(--c-primary-100);
}
.withdraw-stat-card .label {
    font-size: var(--fs-base);
    color: var(--c-gray-600);
    text-transform: uppercase;
    letter-spacing: .3px;
    font-weight: var(--fw-semi);
    margin-bottom: var(--s-1);
}
.withdraw-stat-card .value {
    font-size: var(--fs-2xl);
    color: var(--c-primary);
    font-weight: var(--fw-extra);
}

/* Shop profile form */
.shop-profile-form .form-group { margin-bottom: var(--s-4); }
.shop-profile-banner {
    width: 100%;
    aspect-ratio: 16/6;
    background: var(--c-gray-100);
    border-radius: var(--r);
    overflow: hidden;
    margin-bottom: var(--s-4);
    border: 2px dashed var(--c-gray-300);
    display: flex;
    align-items: center;
    justify-content: center;
}
.shop-profile-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Vendor messages chat layout (extends Section 38) */
.vendor-chat-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: var(--s-4);
    height: 600px;
}
.vendor-chat-list {
    background: var(--c-white);
    border-radius: var(--r-md);
    overflow-y: auto;
    box-shadow: var(--sh-sm);
}
.vendor-chat-list-item {
    display: flex;
    gap: var(--s-3);
    padding: var(--s-3) var(--s-4);
    border-bottom: 1px solid var(--c-gray-200);
    cursor: pointer;
    transition: background var(--t);
}
.vendor-chat-list-item:hover { background: var(--c-gray-50); }
.vendor-chat-list-item.active {
    background: var(--c-primary-100);
    border-left: 3px solid var(--c-primary);
}
.vendor-chat-list-item img {
    width: 44px;
    height: 44px;
    border-radius: var(--r-full);
    object-fit: cover;
    flex-shrink: 0;
}

@media (max-width: 991px) {
    .vendor-chat-layout {
        grid-template-columns: 1fr;
        height: auto;
    }
}

/* =================================================================
   40. PERFORMANCE OPTIMIZATIONS
   ================================================================= */

/* Tắt entrance animation tốn CPU trên trang dài (homepage) */
.wsus__product_item, .wsus__hot_deals__single,
.wsus__single_blog, .wsus__brand_logo,
.wsus__home_services_single, .home_service_single_2 {
    animation: none !important;
}

/* Glass effects chỉ áp dụng trên modal + sticky elements (giảm GPU) */
.wsus__main_menu.menu_fix { backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.wsus__mini_cart { backdrop-filter: none; -webkit-backdrop-filter: none; background: var(--c-white); }
.wsus__login_form, .login-form, .register-form { backdrop-filter: none; background: var(--c-white); }
.modal-content, .dropdown-menu { backdrop-filter: none; -webkit-backdrop-filter: none; background: var(--c-white); }
#wsus__mobile_menu, .wsus__mobile_menu { backdrop-filter: none; -webkit-backdrop-filter: none; background: var(--c-white); }

/* Reduce flash sale ::before particle (gây paint cost) */
.offer_time::before { display: none; }

/* Container improvements — content-visibility để skip rendering off-screen */
section { content-visibility: auto; contain-intrinsic-size: 600px; }

/* Tối ưu transitions */
* { transition-duration: .15s; }
