:root {
    --c-maroon-dark:  #3a0d0d;
    --c-maroon:       #6e1414;
    --main-color:     #6e1414;
    --c-red:          #9c1d1d;
    --c-red-bright:   #c5281f;
    --c-gold:         #c89b3c;
    --c-gold-light:   #e8c468;
    --c-gold-pale:    #f4e4bb;

    --c-ink:          #2a1c12;
    --c-body:         #5e5248;
    --c-muted:        #8d8074;
    --c-line:         #ece3d3;
    --c-cream:        #fdf8ee;
    --c-cream-2:      #f7eed8;
    --c-white:        #ffffff;

    /* ---- Typography ---- */
    --ff-heading: "Roboto", "Segoe UI", sans-serif;
    --ff-body: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --ff-accent: "Cormorant Garamond", "Roboto", serif;

    /* ---- Layout ---- */
    --container-max: 1300px;
    --container-pad: 20px;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --header-h: 124px;

    /* ---- Effects ---- */
    --ease: cubic-bezier(.25,.46,.45,.94);
    --t-fast: .22s;
    --t-mid: .4s;
    --shadow-sm: 0 4px 14px rgba(58,13,13,.08);
    --shadow-md: 0 10px 30px rgba(58,13,13,.12);
    --shadow-lg: 0 24px 60px rgba(58,13,13,.18);
    --shadow-gold: 0 8px 22px rgba(200,155,60,.35);
}

/* ----------------------------------------------------------------
   RESET / BASE
   ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--ff-body);
    font-size: 15.5px;
    line-height: 1.7;
    color: var(--c-body);
    background: var(--c-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
body.no-scroll { overflow: hidden; }

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

a { color: inherit; text-decoration: none; transition: color var(--t-fast) var(--ease), background var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease); }
a:hover, a:focus { text-decoration: none; }

button { cursor: pointer; font-family: inherit; border: 0; background: none; }
ul { margin: 0; padding: 0; list-style: none; }
input, select, textarea { font-family: inherit; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--ff-heading);
    font-weight: 700;
    color: var(--c-red);
    margin: 0 0 .5em;
    line-height: 1.28;
    letter-spacing: -.1px;
}
p { margin: 0 0 1em; }

.container {
    max-width: var(--container-max);
    padding-left: var(--container-pad);
    padding-right: var(--container-pad);
    margin-left: auto;
    margin-right: auto;
}

.hidden{display: none;}

section { position: relative; }

::selection { background: var(--c-gold); color: var(--c-maroon-dark); }

/* Focus visibility (a11y) */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible {
    outline: 2px solid var(--c-red);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}

/* Utility */
.text-red { color: var(--c-red); }
.text-gold { color: var(--c-gold); }
.bg-cream { background: var(--c-cream); }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link {
    position: absolute; left: -999px; top: auto;
    background: var(--c-red); color: var(--c-white); padding: 10px 18px; z-index: 9999; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; top: 0; }

.box-home-page{margin-bottom:30px;}

.section-head {
    text-align: center;
    margin-bottom: 36px;
    position: relative;
}
.section-head__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--c-red);
    margin-bottom: 8px;
}
.section-head__eyebrow::before,
.section-head__eyebrow::after {
    content: '';
    width: 22px;
    height: 1px;
    background: var(--c-gold);
}
.section-head h2,.section-head h1 {
    font-size: 25px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}
.section-head__divider {
    width: 64px;
    height: 3px;
    margin: 0 auto;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--c-gold), var(--c-red));
}
.section-head p.section-head__sub {
    max-width: 560px;
    margin: 12px auto 0;
    color: var(--c-muted);
}

/* ----------------------------------------------------------------
   BUTTONS
   ---------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 14px 30px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all var(--t-fast) var(--ease);
    white-space: nowrap;
    font-family: var(--ff-body);
    border: 1px solid transparent;
    cursor: pointer;
}
.btn i, .btn svg { transition: transform var(--t-fast) var(--ease); font-size: .95em; }
.btn:hover i, .btn:hover svg { transform: translateX(4px); }

.btn-primary {
    background: var(--c-red);
    color: var(--c-white);
    box-shadow: 0 8px 22px rgba(156,29,29,.3);
}
.btn-primary:hover { background: var(--c-red-bright); color: var(--c-white); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(156,29,29,.38); }

.btn-gold {
    background: linear-gradient(135deg, var(--c-gold-light), var(--c-gold));
    color: var(--c-maroon-dark);
    box-shadow: var(--shadow-gold);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(200,155,60,.45); }

.btn-outline {
    background: transparent;
    border-color: var(--c-red);
    color: var(--c-red);
}
.btn-outline:hover { background: var(--c-red); color: var(--c-white); }

.btn-white {
    background: var(--c-white);
    color: var(--c-maroon-dark);
}
.btn-white:hover { background: var(--c-gold-light); transform: translateY(-2px); }

.btn-sm { padding: 9px 18px; font-size: 11.5px; }
.btn-block { width: 100%; }

/* ----------------------------------------------------------------
   TOPBAR
   ---------------------------------------------------------------- */
.topbar {
    background: var(--c-maroon-dark);
    color: rgba(255,255,255,.82);
    font-size: 12.5px;
}
.topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 38px;
    gap: 18px;
}
.topbar__left { display: flex; gap: 26px; flex-wrap: wrap; }
.topbar__item { display: inline-flex; align-items: center; gap: 7px; }
.topbar__item i { color: var(--c-gold-light); font-size: 12px; }
.topbar__item a:hover { color: var(--c-gold-light); }
.topbar__right { display: flex; align-items: center; gap: 16px; }
.topbar__socials { display: flex; gap: 12px; }
.topbar__socials a {
    width: 24px; height: 24px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    font-size: 11px;
    color: rgba(255,255,255,.85);
}
.topbar__socials a:hover { background: var(--c-gold); color: var(--c-maroon-dark); }

/* ----------------------------------------------------------------
   HEADER
   ---------------------------------------------------------------- */
.site-header {
    background: var(--c-white);
    position: sticky;
    top: 0;
    z-index: 200;
    box-shadow: 0 2px 0 rgba(58,13,13,.05);
}
.site-header__main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 15px;
    padding-bottom: 15px;
}

.site-logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.site-logo img { height: 58px; width: auto; }
.site-logo__text { display: flex; flex-direction: column; line-height: 1.15; }
.site-logo__brand { font-size: 13px; font-weight: 500; color: var(--c-ink); letter-spacing: .5px; }
.site-logo__name { font-size: 23px; font-weight: 900; color: var(--c-red); letter-spacing: .5px; text-transform: uppercase; }

/* CÃ¡Â»Â¥m phÃ¡ÂºÂ£i: search + hotline + giÃ¡Â»Â hÃƒÂ ng, luÃƒÂ´n sÃƒÂ¡t lÃ¡Â»Â phÃ¡ÂºÂ£i cÃ¡Â»Â§a container */
.site-header__right {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-shrink: 0;
}

/* Search */
.header-search {
    width: 320px;
    flex-shrink: 0;
    display: flex;
    border: 2px solid var(--c-maroon);
    border-radius: 4px;
    overflow: hidden;
    background: var(--c-white);
}
.header-search input {
    flex: 1;
    border: 0;
    padding: 0 16px;
    font-size: 14px;
    color: var(--c-ink);
    min-width: 0;
    height: 46px;
}
.header-search input:focus { outline: none; }
.header-search button {
    width: 54px;
    background: var(--c-red);
    color: var(--c-white);
    font-size: 16px;
    flex-shrink: 0;
    transition: background var(--t-fast);
}
.header-search button:hover { background: var(--c-red-bright); }

/* Header actions (hotline, cart) */
.header-actions { display: flex; align-items: center; gap: 26px; flex-shrink: 0; }
.header-action {
    display: flex; align-items: center; gap: 10px;
}
.header-action__icon {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: var(--c-cream-2);
    color: var(--c-red);
    display: flex; align-items: center; justify-content: center;
    font-size: 17px;
    flex-shrink: 0;
    position: relative;
}
.header-action__icon .badge {
    position: absolute; top: -4px; right: -4px;
    background: var(--c-red);
    color: var(--c-white);
    font-size: 10px;
    font-weight: 700;
    min-width: 18px; height: 18px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    border: 2px solid var(--c-white);
}
.header-action__text { line-height: 1.3; display: flex; flex-direction: column; }
.header-action__label { font-size: 12px; color: var(--c-muted); }
.header-action__value { font-size: 15px; font-weight: 700; color: var(--c-ink); }
.header-action__value a { color: var(--c-ink); }
.header-action__value a:hover { color: var(--c-red); }

.header-mobile-toggle {
    display: none;
    width: 44px; height: 44px;
    align-items: center; justify-content: center;
    font-size: 20px;
    color: var(--c-ink);
}

/* ----------------------------------------------------------------
   MAIN NAV BAR (danh mÃ¡Â»Â¥c dropdown + menu ngang + mega menu)
   ---------------------------------------------------------------- */
.nav-bar {
    background: var(--c-maroon-dark);
    position: relative;
    z-index: 150;
}
.nav-bar__inner {
    display: flex;
    align-items: stretch;
}

/* Category dropdown trigger */
.cat-trigger {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--c-red);
    color: var(--c-white);
    font-weight: 700;
    font-size: 14.5px;
    text-transform: uppercase;
    letter-spacing: .4px;
    padding: 0 22px;
    height: 52px;
    flex-shrink: 0;
    min-width: 270px;
    position: relative;
    cursor: pointer;
}
.cat-trigger:hover { background: var(--c-red-bright); }
.cat-trigger i.fa-bars { font-size: 16px; }
.cat-trigger .cat-trigger__chev { margin-left: auto; font-size: 12px; transition: transform var(--t-fast); }
.cat-trigger.is-open .cat-trigger__chev { transform: rotate(180deg); }

/* Category panel (mega dropdown listing all categories) */
.cat-panel {
    position: absolute;
    top: 100%;
    left: 0;
    width: 270px;
    background: var(--c-white);
    box-shadow: var(--shadow-lg);
    border-radius: 0 0 8px 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity var(--t-fast) var(--ease), transform var(--t-fast) var(--ease), visibility var(--t-fast);
    z-index: 160;
}
.cat-trigger.is-open + .cat-panel,
.cat-panel.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.cat-panel__list > li { position: relative; border-bottom: 1px solid var(--c-line); }
.cat-panel__list > li:last-child { border-bottom: 0; }
.cat-panel__list > li > a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    font-size: 14px;
    color: var(--c-ink);
    font-weight: 500;
}
.cat-panel__list > li > a i:first-child { color: var(--c-red); width: 18px; text-align: center; font-size: 14px; }
.cat-panel__list > li > a .chev-right { margin-left: auto; font-size: 11px; color: var(--c-muted); }
.cat-panel__list > li:hover > a { background: var(--c-cream); color: var(--c-red); }
.cat-panel__list > li.cat-panel__view-all > a { color: var(--c-red); font-weight: 700; justify-content: center; }

/* Sub-flyout for each category (level 2) */
.cat-flyout {
    position: absolute;
    top: 0;
    left: 100%;
    width: 260px;
    background: var(--c-white);
    box-shadow: var(--shadow-lg);
    border-radius: 0 8px 8px 0;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-6px);
    transition: opacity var(--t-fast) var(--ease), transform var(--t-fast) var(--ease), visibility var(--t-fast);
}
.cat-panel__list > li:hover .cat-flyout {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}
.cat-flyout li a { display: block; padding: 9px 18px; font-size: 13.5px; color: var(--c-body); }
.cat-flyout li a:hover { background: var(--c-cream); color: var(--c-red); padding-left: 22px; }

/* Horizontal menu */
.main-nav { flex: 1; display: flex; }
.main-nav__list { display: flex; align-items: center; height: 52px; padding-left: 8px; }
.main-nav__item { position: relative; height: 100%; display: flex; align-items: center; }
.main-nav__link {
    display: flex;
    align-items: center;
    gap: 6px;
    height: 100%;
    padding: 0 18px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .3px;
    color: rgba(255,255,255,.92);
}
.main-nav__link .caret { font-size: 10px; opacity: .7; transition: transform var(--t-fast); }
.main-nav__item:hover .caret { transform: rotate(180deg); }
.main-nav__item:hover > .main-nav__link,
.main-nav__link.is-active { color: var(--c-gold-light); }
.main-nav__item:hover > .main-nav__link::after { width: calc(100% - 36px); }

/* Simple 2nd-level submenu */
.sub-menu {
    position: absolute;
    top: 100%;
    left: 14px;
    min-width: 230px;
    background: var(--c-white);
    box-shadow: var(--shadow-lg);
    border-radius: 0 0 8px 8px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity var(--t-fast) var(--ease), transform var(--t-fast) var(--ease), visibility var(--t-fast);
    z-index: 140;
}
.main-nav__item:hover > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.sub-menu li a { display: block; padding: 10px 20px; font-size: 13.5px; color: var(--c-ink); font-weight: 500; }
.sub-menu li a:hover { background: var(--c-cream); color: var(--c-red); padding-left: 24px; }

/* Mega menu (class="mega-menu" Ã¢â‚¬â€ 4-5 columns) */
.main-nav__item--mega { position: relative; }
.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -6px);
    width: min(1200px, 92vw);
    background: var(--c-white);
    box-shadow: var(--shadow-lg);
    border-radius: 0 0 10px 10px;
    padding: 28px;
    display: grid;
    grid-template-columns: repeat(6, 1fr) 1.2fr;
    gap: 22px;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--t-fast) var(--ease), transform var(--t-fast) var(--ease), visibility var(--t-fast);
    z-index: 140;
}
.main-nav__item--mega:hover .mega-menu { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.mega-menu__col-title {
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--c-red);
    letter-spacing: .4px;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--c-gold-pale);
}
.mega-menu__col ul li a {
    display: block;
    padding: 6px 0;
    font-size: 13.5px;
    color: var(--c-body);
}
.mega-menu__col ul li a:hover { color: var(--c-red); padding-left: 4px; }
.mega-menu__promo {
    border-radius: var(--radius-sm);
    overflow: hidden;
    position: relative;
    min-height: 100%;
}
.mega-menu__promo img { width: 100%; height: 100%; object-fit: cover; min-height: 200px; }
.mega-menu__promo-tag {
    position: absolute; left: 12px; bottom: 12px;
    background: rgba(58,13,13,.82);
    color: var(--c-gold-light);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 4px;
}

/* ----------------------------------------------------------------
   MOBILE MENU (off-canvas)
   ---------------------------------------------------------------- */
.mobile-menu-overlay {
    position: fixed; inset: 0;
    background: rgba(42,20,12,.55);
    z-index: 290;
    opacity: 0; visibility: hidden;
    transition: opacity var(--t-mid) var(--ease), visibility var(--t-mid);
}
.mobile-menu-overlay.is-open { opacity: 1; visibility: visible; }

.mobile-menu {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: min(340px, 86vw);
    background: var(--c-white);
    z-index: 300;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform var(--t-mid) var(--ease);
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu__head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 18px;
    border-bottom: 1px solid var(--c-line);
    position: sticky; top: 0; background: var(--c-white); z-index: 2;
}
.mobile-menu__head .site-logo img { height: 40px; }
.mobile-menu__close { font-size: 20px; color: var(--c-ink); width: 36px; height: 36px; }

.mobile-nav__item { border-bottom: 1px solid var(--c-line); }
.mobile-nav__row {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 18px;
    font-size: 14.5px; font-weight: 600; color: var(--c-ink);
}
.mobile-nav__row i { font-size: 12px; color: var(--c-muted); transition: transform var(--t-fast); }
.mobile-nav__has-children.is-open > .mobile-nav__row i { transform: rotate(180deg); }
.mobile-nav__sub { max-height: 0; overflow: hidden; transition: max-height var(--t-mid) var(--ease); background: var(--c-cream); }
.mobile-nav__has-children.is-open > .mobile-nav__sub { max-height: 900px; }
.mobile-nav__sub li a { display: block; padding: 11px 18px 11px 34px; font-size: 13.5px; color: var(--c-body); }
.mobile-nav__sub li a:hover { color: var(--c-red); }
.mobile-menu__contact { padding: 18px; background: var(--c-cream); }
.mobile-menu__contact p { margin: 0 0 8px; font-size: 13.5px; display: flex; gap: 8px; align-items: flex-start; }
.mobile-menu__contact i { color: var(--c-red); margin-top: 3px; }
.mobile-menu__socials { display: flex; gap: 10px; padding: 0 18px 18px; }
.mobile-menu__socials a { width: 34px; height: 34px; border-radius: 50%; background: var(--c-cream-2); color: var(--c-red); display: flex; align-items: center; justify-content: center; }

/* ----------------------------------------------------------------
   BREADCRUMB STRIP (used on inner pages, kept for re-use)
   ---------------------------------------------------------------- */
.page-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid var(--c-line);
    margin-bottom: 30px;
}
.page-toolbar__crumb { display: flex; align-items: center; flex-wrap: wrap; font-size: 13px; }
.page-toolbar__crumb a { color: var(--c-muted); text-transform: uppercase; letter-spacing: .3px; font-weight: 600; }
.page-toolbar__crumb a:hover { color: var(--c-red); }
.page-toolbar__crumb .sep { margin: 0 8px; color: var(--c-gold); font-size: 11px; }
.page-toolbar__crumb .current { color: var(--c-ink); font-weight: 800; text-transform: uppercase; letter-spacing: .3px; }
.page-toolbar__title { font-size: 22px; font-weight: 800; text-transform: uppercase; margin: 0; }

/* ----------------------------------------------------------------
   HOME HERO ROW Ã¢â‚¬â€ sidebar Top bÃƒÂ¡n chÃ¡ÂºÂ¡y (trÃƒÂ¡i) + banner Ã¡ÂºÂ£nh (phÃ¡ÂºÂ£i)
   ---------------------------------------------------------------- */
.home-hero-row { background: var(--c-white); padding: 20px 0 26px; }
.home-hero-row__inner {
    display: flex;
    align-items: flex-start;
    gap: 22px;
}

/* Sidebar Ã¢â‚¬â€ Top sÃ¡ÂºÂ£n phÃ¡ÂºÂ©m bÃƒÂ¡n chÃ¡ÂºÂ¡y */
.home-sidebar {
    width: 278px;
    flex-shrink: 0;
    background: var(--c-white);
    border: 1px solid var(--c-line);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}
.home-sidebar__head {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--c-red);
    color: var(--c-white);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .4px;
    padding: 14px 18px;
}

.sidebar-menu > li { border-bottom: 1px solid var(--c-line); }
.sidebar-menu > li:last-child { border-bottom: 0; }
.sidebar-menu > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 13px 18px;
    font-size: 14px;
    font-weight: 500;
    color: var(--c-ink);
}
.sidebar-menu > li > a i { font-size: 10.5px; color: var(--c-muted); flex-shrink: 0; transition: transform var(--t-fast) var(--ease); }
.sidebar-menu > li:hover > a { background: var(--c-cream); color: var(--c-red); padding-left: 22px; }
.sidebar-menu > li:hover > a i { color: var(--c-red); transform: translateX(2px); }

/* Banner bÃƒÂªn phÃ¡ÂºÂ£i Ã¢â‚¬â€ chÃ¡Â»â€° lÃƒÂ  Ã¡ÂºÂ£nh, tÃ¡Â»Â± co dÃƒÂ£n theo tÃ¡Â»â€° lÃ¡Â»â€¡ thÃ¡ÂºÂ­t */
.home-hero-wrap { flex: 1; min-width: 0; }
.hero-swiper { width: 100%; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-md); line-height: 0; }
.hero-swiper .swiper-slide img { display: block; width: 100%; height: auto; }

.hero-nav {
    position: absolute; top: 50%; z-index: 5;
    width: 42px; height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,.16);
    border: 1px solid rgba(255,255,255,.4);
    color: var(--c-white);
    display: flex; align-items: center; justify-content: center;
    font-size: 14px;
    transform: translateY(-50%);
    transition: all var(--t-fast) var(--ease);
    backdrop-filter: blur(4px);
}
.hero-nav:hover { background: var(--c-gold); color: var(--c-maroon-dark); border-color: var(--c-gold); }
.hero-nav--prev { left: 16px; }
.hero-nav--next { right: 16px; }

.hero-swiper .swiper-pagination { bottom: 14px !important; }
.hero-swiper .swiper-pagination-bullet {
    width: 8px; height: 8px;
    background: rgba(255,255,255,.6);
    opacity: 1;
    box-shadow: 0 0 0 1px rgba(0,0,0,.15);
}
.hero-swiper .swiper-pagination-bullet-active { background: var(--c-gold-light); width: 22px; border-radius: 5px; }

/* ----------------------------------------------------------------
   USP STRIP (MiÃ¡Â»â€¦n phÃƒÂ­ vÃ¡ÂºÂ­n chuyÃ¡Â»Æ’n, BÃ¡ÂºÂ£o hÃƒÂ nh...)
   ---------------------------------------------------------------- */
.usp-strip { background: var(--c-white); border-bottom: 1px solid var(--c-line); padding: 22px 0; }
.usp-grid {
    display: flex;
    flex-wrap: wrap;
}
.usp-item {
    flex: 1 1 0;
    min-width: 200px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 6px 18px;
    border-right: 1px solid var(--c-line);
}
.usp-item:last-child { border-right: 0; }
.usp-item__icon {
    width: 46px; height: 46px;
    border-radius: 50%;
    background: var(--c-cream-2);
    color: var(--c-red);
    display: flex; align-items: center; justify-content: center;
    font-size: 19px;
    flex-shrink: 0;
}
.usp-item__text { display: flex; flex-direction: column; gap: 2px; }
.usp-item__title { display: block; font-size: 14px; font-weight: 700; color: var(--c-ink); }
.usp-item__sub { display: block; font-size: 12.5px; color: var(--c-muted); }

/* ----------------------------------------------------------------
   DANH MÃ¡Â»Â¤C NÃ¡Â»â€I BÃ¡ÂºÂ¬T (circle category grid)
   ---------------------------------------------------------------- */
.cat-circles { padding: 56px 0 40px; }
.cat-circle-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 32px 16px;
}
.cat-circle {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
}
.cat-circle__img {
    width: 150px; height: 150px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    border: 3px solid var(--c-gold-pale);
    box-shadow: var(--shadow-sm);
    transition: all var(--t-mid) var(--ease);
}
.cat-circle__img::after {
    content: '';
    position: absolute; inset: 0;
    border-radius: 50%;
    box-shadow: inset 0 0 0 0 var(--c-gold);
    transition: box-shadow var(--t-mid) var(--ease);
}
.cat-circle__img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-mid) var(--ease); }
.cat-circle:hover .cat-circle__img { border-color: var(--c-red); box-shadow: var(--shadow-gold); transform: translateY(-6px); }
.cat-circle:hover .cat-circle__img img { transform: scale(1.1); }
.cat-circle__name { font-size: 13.5px; font-weight: 700; color: var(--c-ink); text-transform: uppercase; letter-spacing: .3px; }
.cat-circle:hover .cat-circle__name { color: var(--c-red); }
.cat-circles__more { text-align: center; margin-top: 30px; }

/* ----------------------------------------------------------------
   PRODUCT CATEGORY BLOCK (Ã¡ÂºÂ£nh banner + tiÃƒÂªu Ã„â€˜Ã¡Â»Â cÃ„Æ’n giÃ¡Â»Â¯a + sÃ¡ÂºÂ£n phÃ¡ÂºÂ©m)
   ---------------------------------------------------------------- */
.shop-block { padding: 30px 0; }
.shop-block__photo {
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 26px;
    box-shadow: var(--shadow-sm);
}
.shop-block__photo img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    object-position: center 35%;
}
.shop-block .section-head { margin-bottom: 30px; }

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

/* Product card */
.product-card {
    background: var(--c-white);
    border: 1px solid var(--c-line);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: all var(--t-mid) var(--ease);
    position: relative;
    display: flex;
    flex-direction: column;
}
.product-card:hover { box-shadow: var(--shadow-md); transform: translateY(-5px); border-color: transparent; }
.product-card__thumb { position: relative; aspect-ratio: 1/1; overflow: hidden; background: var(--c-cream); }
.product-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-mid) var(--ease); }
.product-card:hover .product-card__thumb img { transform: scale(1.08); }
.product-card__badge {
    position: absolute; top: 10px; left: 10px; z-index: 3;
    background: var(--c-red);
    color: var(--c-white);
    font-size: 11px; font-weight: 700;
    padding: 4px 10px;
    border-radius: 3px;
    text-transform: uppercase;
}
.product-card__badge--sale { background: var(--c-gold); color: var(--c-maroon-dark); }
.product-card__quick {
    position: absolute; right: 10px; top: 10px; z-index: 3;
    display: flex; flex-direction: column; gap: 8px;
    opacity: 0; transform: translateX(8px);
    transition: all var(--t-fast) var(--ease);
}
.product-card:hover .product-card__quick { opacity: 1; transform: translateX(0); }
.product-card__quick button, .product-card__quick a {
    width: 34px; height: 34px;
    border-radius: 50%;
    background: var(--c-white);
    color: var(--c-ink);
    display: flex; align-items: center; justify-content: center;
    font-size: 13px;
    box-shadow: var(--shadow-sm);
}
.product-card__quick button:hover, .product-card__quick a:hover { background: var(--c-red); color: var(--c-white); }
.product-card__body { padding: 14px 14px 16px; display: flex; flex-direction: column; flex: 1; }
.product-card__cat { font-size: 11px; color: var(--c-muted); text-transform: uppercase; letter-spacing: .4px; margin-bottom: 4px; }
.product-card__name {
    font-size: 14.5px; font-weight: 600; color: var(--c-ink);
    margin-bottom: 8px;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
    min-height: 2.6em;
}
.product-card__name a { color: inherit; }
.product-card:hover .product-card__name a { color: var(--c-red); }
.product-card__price { margin-top: auto; display: flex; align-items: baseline; gap: 8px; }
.product-card__price .price-now { font-size: 16px; font-weight: 700; color: var(--c-red); }
.product-card__price .price-old { font-size: 13px; color: var(--c-muted); text-decoration: line-through; }
.product-card__cta {
    margin-top: 10px;
    text-align: center;
    padding: 9px;
    border: 1.5px solid var(--c-maroon);
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: var(--c-maroon);
    transition: all var(--t-fast) var(--ease);
}
.product-card__cta:hover { background: var(--c-maroon); color: var(--c-white); }

.shop-block__more { text-align: center; margin: 30px 0 8px; }

/* ----------------------------------------------------------------
   NEWS SECTION
   ---------------------------------------------------------------- */
.news-section { padding: 50px 0 60px; background: var(--c-cream); }
.news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 30px;
}
.news-card {
    background: var(--c-white);
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--t-mid) var(--ease);
    display: block;
}
.news-card:hover { box-shadow: var(--shadow-md); transform: translateY(-5px); }
.news-card__thumb { display: block; aspect-ratio: 4/3; overflow: hidden; }
.news-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-mid) var(--ease); }
.news-card:hover .news-card__thumb img { transform: scale(1.08); }
.news-card__body { padding: 16px 18px 20px; }
.news-card__date { font-size: 12px; color: var(--c-gold); font-weight: 700; display: flex; align-items: center; gap: 6px; margin-bottom: 8px; }
.news-card__title { font-size: 15px; font-weight: 700; line-height: 1.4; margin: 0; }
.news-card__title a { color: var(--c-ink); }
.news-card:hover .news-card__title a { color: var(--c-red); }
.news-section__more { text-align: center; }

/* ----------------------------------------------------------------
   FOOTER
   ---------------------------------------------------------------- */
.site-footer { background: var(--c-maroon-dark); color: rgba(255,255,255,.75); padding-top: 56px; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
    gap: 36px;
    padding-bottom: 40px;
}
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo img { height: 50px; }
.footer-logo__name { font-size: 19px; font-weight: 900; color: var(--c-white); text-transform: uppercase; }
.footer-col__title {
    color: var(--c-white);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .4px;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 10px;
}
.footer-col__title::after { content: ''; position: absolute; left: 0; bottom: 0; width: 32px; height: 2px; background: var(--c-gold); }
.footer-contact-list li { display: flex; gap: 10px; margin-bottom: 13px; font-size: 13.5px; line-height: 1.55; }
.footer-contact-list li i { color: var(--c-gold-light); margin-top: 3px; flex-shrink: 0; width: 14px; text-align: center; }
.footer-contact-list a { color: rgba(255,255,255,.75); }
.footer-contact-list a:hover { color: var(--c-gold-light); }
.footer-col__list li { margin-bottom: 11px; font-size: 13.5px; }
.footer-col__list a { color: rgba(255,255,255,.75); display: inline-flex; align-items: center; gap: 8px; }
.footer-col__list a::before { content: '\f054'; font-family: 'Font Awesome 5 Pro'; font-weight: 900; font-size: 9px; color: var(--c-gold); }
.footer-col__list a:hover { color: var(--c-gold-light); padding-left: 3px; }

/* Badge "Ã„ÂÃƒÂ£ thÃƒÂ´ng bÃƒÂ¡o BÃ¡Â»â„¢ CÃƒÂ´ng ThÃ†Â°Ã†Â¡ng" Ã¢â‚¬â€ logo chÃƒÂ­nh thÃ¡Â»Â©c tÃ¡Â»Â« online.gov.vn */
.footer-bct-badge {
    display: inline-block;
    margin-top: 18px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    opacity: .95;
    transition: opacity var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
.footer-bct-badge:hover { opacity: 1; transform: translateY(-2px); }
.footer-bct-badge img { display: block; width: 155px; height: auto; }

/* BÃ¡ÂºÂ£n Ã„â€˜Ã¡Â»â€œ chÃ¡Â»â€° Ã„â€˜Ã†Â°Ã¡Â»Âng (cÃ¡Â»â„¢t 4 footer) */
.footer-map__frame { border-radius: var(--radius-sm); overflow: hidden; line-height: 0; }
.footer-map__frame iframe { display: block; width: 100%; filter: saturate(.9); }

.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    display: flex; align-items: center; justify-content: center;
    color: var(--c-white);
    font-size: 14px;
}
.footer-socials a:hover { background: var(--c-gold); color: var(--c-maroon-dark); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.12);
    padding: 18px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 13px;
}
.footer-bottom__pay { display: flex; gap: 8px; align-items: center; }
.footer-bottom__pay span {
    background: rgba(255,255,255,.08);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    color: rgba(255,255,255,.65);
    letter-spacing: .3px;
}

/* ----------------------------------------------------------------
   FLOATING CONTACT BUTTONS + BACK TO TOP
   ---------------------------------------------------------------- */
.float-contacts {
    position: fixed;
    right: 22px;
    bottom: 90px;
    z-index: 250;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.float-contacts a {
    width: 50px; height: 50px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--c-white);
    font-size: 20px;
    box-shadow: var(--shadow-md);
    position: relative;
    animation: floatPulse 2.4s ease-in-out infinite;
}
.float-contacts a:nth-child(2) { animation-delay: .2s; }
.float-contacts a:nth-child(3) { animation-delay: .4s; }
.float-contacts a:nth-child(4) { animation-delay: .6s; }
.float-contacts a.fc-phone { background: #2196f3; }
.float-contacts a.fc-mail { background: #ff7a00; }
.float-contacts a.fc-zalo { background: #0068ff; }
.float-contacts a.fc-messenger { background: linear-gradient(135deg,#00c6ff,#0078ff); }
.float-contacts a:hover { transform: scale(1.08); animation-play-state: paused; }

@keyframes floatPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0,0,0,.18), var(--shadow-md); }
    50% { box-shadow: 0 0 0 8px rgba(0,0,0,0), var(--shadow-md); }
}

.back-to-top {
    position: fixed;
    right: 22px; bottom: 24px;
    width: 46px; height: 46px;
    border-radius: 50%;
    background: var(--c-red);
    color: var(--c-white);
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
    box-shadow: var(--shadow-md);
    z-index: 250;
    opacity: 0; visibility: hidden; transform: translateY(10px);
    transition: all var(--t-mid) var(--ease);
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--c-gold); color: var(--c-maroon-dark); }

/* ----------------------------------------------------------------
   ANIMATION HELPERS (entrance reveal, used with AOS-less fallback)
   ---------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Swiper bullet color override scope (products card slider not used on home but kept generic) */
.swiper-pagination-bullet { background: var(--c-muted); }

.box-breadcrumb {
  padding: 6px 0;
  background: #fff;
  margin-bottom: 30px;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.1);
}

.box-breadcrumb p {
  margin-bottom: 0
}

.box-breadcrumb * {
  font-size: 13px;
  color: #333;
}


.product-card__price {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: auto !important;
}
.product-card__price span.price {
    display: flex;
    align-items: center;
    background: unset;
    padding: 0;
    gap: 5px;
    flex-direction: row-reverse;
    justify-content: flex-end;
}

span.label_title {
  font-size: 13px;
  line-height: 14px;
}


.span_bigsale {
  color: #e02e2e;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  margin-top: 6px;
  line-height: 14px;
}

span.label_title svg {
  width: 12px;
}

span.span_bigsale svg {
  width: 12px;
  height: 12px;
  margin-right: 5px;
  fill: #e02e2e;
}


.amount_nobefore:before {display:none;}
.product-card__price .price>span.amount {
    font-size: 16px;
    line-height: 18px;
    margin-top: 0;
    color: #ff0000 !important;
    letter-spacing: -0.3px;
    white-space: nowrap;
    font-weight: bold;
}
.product-card__price span.price del {
    font-size: 13px;
    line-height: 18px;
    padding-left: 0;
}
.giakhuyenmai, .gianiemyet {
    display: none;
}
del span.amount {
    opacity: 1;
    font-weight: normal;
    margin-right: 0;
    color: #333333bd !important;
}

.del_sales{}
.del_sales del{}
.percent_sales{
  font-size: 11px;
  background: #ff0000;
  color: #fff;
  padding: 2px 4px;
  border-radius: 10px;
  margin-left: 6px;
  position: absolute;
  left: 3px;
  top: 3px;
}


.xemthem_mb {
  text-align: center;
  margin-top: 30px;
}

.xemthem_mb a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: auto;
  line-height: 33px;
  height: auto;
  border: 1px solid var(--c-maroon);
  color: #333;
  font-weight: 400;
  background: var(--c-maroon);
  padding: 0px 20px;
  gap: 10px;
  font-size: 14px;
  border-radius: 55px;
}

.xemthem_mb a i {
  font-size: 10px;
}

.xemthem_mb a:hover {
  border: 1px solid var(--second-color);
  color: #fff;
  background: var(--second-color);
}


.product_banner {
  margin-bottom: 20px;
}

.product_banner img {
  margin-bottom: 0 !important;
  width: 100% !important;
  overflow: hidden;
  border-radius: 10px;
}


.igi_page__desc_top {
  padding: 15px;
  border: 3px solid #eee;
  background: #fff;
  margin-bottom: 30px;
}

.igi_page__desc_top p:last-child {
  margin-bottom: 0;
}

.igi_page__desc_bottom {
  padding: 15px;
  border: 3px solid #eee;
  background: #fff;
  margin-bottom: 30px;
}

.igi_page__desc_bottom p:last-child {
  margin-bottom: 0;
}



.detail-body {
  line-height: 26px;
  font-size: 17px;
  word-break: break-word;
}

.detail-body a {
  color: var(--second-color) !important;
}

.detail-body a:hover {
  color: var(--second-color) !important;
  text-decoration: underline
}

.detail-body {
  position: relative;
}

.detail-body .more-tag {
  border: 1px solid #109cd9;
  display: block;
  color: #fff;
  border-radius: 30px;
  width: 180px;
  margin: 0 auto;
  font-size: 14px;
  position: absolute;
  background: #109cd9;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2
}

.detail-body .more-tag:hover {
  background: #fff;
  color: var(--second-color) !important;
  text-decoration: none
}

.detail-body {
  line-height: 28px;
  font-size: 15px;
}

.detail-body blockquote {
  padding: 15px
}

.detail-body blockquote ul {
  list-style: square
}

.detail-body blockquote ul li {
  margin-bottom: 8px
}

.detail-body h1,
.detail-body h2,
.detail-body h3,
.detail-body h4,
.detail-body h5,
.detail-body h6 {
  font-weight: 700;
  position: relative;
  line-height: 1.2;
  margin-top: 15px;
  margin-bottom: 10px;
}

.detail-body h1,
.detail-body h2,
.detail-body h3,
.detail-body h4,
.detail-body h5,
.detail-body h6,
.detail-body h1 *,
.detail-body h2 *,
.detail-body h3 *,
.detail-body h4 *,
.detail-body h5 *,
.detail-body h6 * {}

.detail-body .h1,
.detail-body h1 {
  font-size: 22px;
}

.detail-body .h2,
.detail-body h2 {
  font-size: 18px;
}

.detail-body .h3,
.detail-body h3 {
  font-size: 19px;
}

.detail-body .h4,
.detail-body h4 {
  font-size: 19px
}

.detail-body .h5,
.detail-body h5 {
  font-size: 17px
}

.detail-body .h6,
.detail-body h6 {
  font-size: 16px
}

.detail-body iframe {
  max-width: 100%;
  margin: 0 auto;
  display: block;
  width: 800px;
  height: 450px;
  border: 4px solid #eee;
}

.detail-body blockquote {
  background: #f3f3f3;
  color: #868686;
  display: block;
  font-size: 14px;
  line-height: 26px;
  margin: 0 0 10px;
  padding: 15px 20px 15px 45px;
  position: relative;
  text-align: justify
}

.detail-body blockquote:before {
  color: #2171af;
  content: "\201C";
  font-size: 60px;
  font-weight: 700;
  left: 6px;
  position: absolute;
  top: 15px
}

.detail-body ol,
.detail-body ul {
  padding-left: 15px;
}

.detail-body table td {
  padding: 5px
}

.detail-body {
  word-break: break-word
}

.detail-body table figure {
  width: 100% !important;
  max-width: 100%
}

.detail-body .table td,
.detail-body .table th {
  border-color: #f2f2f2
}

.single_post .detail-body *,
.product-desc .detail-body * {
  line-height: 26px;
}

.detail-body ul li,
.detail-body ol li {
  margin-bottom: 10px;
}

.detail-body ul li *,
.detail-body ol li * {
  line-height: 24px !important;
}

.detail-body figure {
  margin: 0 auto;
}


.woocommerce-error {
  padding: 5px 10px !important;
  list-style: none;
  background: #eee;
  border-radius: 5px;
  font-size: 13px;
}
.woocommerce-error *{
    color: #fff !important;
}

.woocommerce-message a.button {
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 0;
  border: none !important;
  text-transform: inherit !important;
}
 table.variations label{margin-bottom:0;}
 table.variations .label{margin-right: 10px;display: block;}
 table.variations .value select{
     padding:5px 5px;
     font-size:14px;
     border:1px solid #3333;
 }
.product-detail-box .quantity {
  display: none !important;
}

.buy_pro {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0;
}

.buy_pro .flex {
  display: flex;
  width: 100%;
  gap: 10px;
}

.buy_pro .flex a {
  width: 100%;
}

.buy_pro .status0 {
  color: #019100;
  font-size: 18px
}

.cart_btn_flex{margin-left: 0 !important;width:100%;display: grid !important;grid-template-columns: 1fr 1fr;gap: 12px;margin-bottom: 10px !important;}

.click_buy {
  background: #e02e2e;
  color: white;
}
.single_add_to_cart_button {
  background: green;
  color: white;
}
.click_buy,
.click_call,
.single_add_to_cart_button {
  width: 100%;
  border: none;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  line-height: 19px !important;
  cursor: pointer !important;
  padding: 7px 10px;
  height: auto !important;
}

.click_call {
  background: #ffba30;
  padding: 17px 10px
}

.click_call i {
  margin-right: 5px
}

.buy_installment:focus,
.click_buy:focus {
  outline: 0;
  outline-style: none;
  outline-width: 0
}

.buy_installment span,
.click_buy span,
.single_add_to_cart_button span{
  display: block;
  font-size: 12px;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  text-transform:inherit;
}

.buy_installment {
  width: 100%;
  box-sizing: border-box;
  border: none;
  border-radius: 5px;
  background: #0052aa;
  font-size: 14px;
  font-weight: 700;
  color: #fff !important;
  padding: 7px 10px;
  line-height: 20px;
  cursor: pointer;
  text-align: center;
  display: inline-block
}


.popup_submit_div button {
  background: red !important;
  width: 50%;
  height: 36px;
  border-radius: 20px;
  border: none;
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
}

.popup_text_div,
.popup_submit_div {
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  gap: 12px;
  align-items: center;
}

.popup_text_div input {
  width: 50%;
  font-size: 14px;
  color: #333;
  padding: 6px 7px;
  border-radius: 4px;
  box-sizing: border-box;
  border: 1px solid #c0c0c0;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
  -webkit-transition: color .3s, border .3s, background .3s, opacity .3s;
  -o-transition: color .3s, border .3s, background .3s, opacity .3s;
  transition: color .3s, border .3s, background .3s, opacity .3s;
  background: #fff;
}

.popup_submit_div input {
  background: red !important;
  width: 50%;
  height: 36px;
  border-radius: 20px;
  border: none;
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
}

.popup_submit_div label {
  color: blue !important;
  width: 50%;
  margin-bottom: 0;
  font-size: 14px;
  text-align: center;
  cursor: pointer;
}


.box-contact-page {
  margin: 10px 0;
}

.google-map {
  line-height: 0;
  margin-bottom: 20px;
}

.google-map iframe {
  width: 100% !important;
  height: 400px !important;
}

.footer_bottom_grids_2 {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-page-form .model_input_row {}

.contact-page-form .popup_text_div {
  padding: 0;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 10px;
}

.contact-page-form .popup_text_div label {
  font-size: 14px;
  margin-bottom: 5px;
}

.contact-page-form .popup_text_div input {
  width: 100%;
}

.contact-page-form input[type='text'] {
  border-radius: 0;
  font-size: 14px;
  padding: 5px 5px;
  width: 100%;
}

.contact-page-form .popup_submit_div {
  padding: 0;
}

.contact-page-form textarea {
  height: 80px;
  border-radius: 0;
  padding: 7px 10px;
  font-size: 14px;
  width: 100%;
  font-size: 14px;
  color: #333;
  padding: 6px 7px;
  border-radius: 4px;
  box-sizing: border-box;
  border: 1px solid #c0c0c0;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
  -webkit-transition: color .3s, border .3s, background .3s, opacity .3s;
  -o-transition: color .3s, border .3s, background .3s, opacity .3s;
  transition: color .3s, border .3s, background .3s, opacity .3s;
  background: #fff;
}

.contact-page-form .popup_submit_div input {
  width: auto;
  padding: 0 30px;
}

.text-normal {
  text-transform: unset !important;
}


/* ----------------------------------------------------------------
   RESPONSIVE
   ---------------------------------------------------------------- */
@media (max-width: 1199px) {
    .product-grid { grid-template-columns: repeat(3, 1fr); }
    .cat-circle-grid { grid-template-columns: repeat(5, 1fr); gap: 22px 12px; }
    .news-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
    .footer-grid .footer-col:nth-child(4) { grid-column: 1 / -1; }


      span.span_bigsale svg {
        width: 10px;
        height: 10px;
        margin-right: 3px;
      }


      .product-card__price .price>span.amount {
        font-size: 12px;
        line-height: 17px;
        margin-top: 3px;
      }

      .price>span.woocommerce-Price-amount.amount:before {
        font-size: 12px;
      }

      .product-card__price span.price del {
        font-size: 11px;
        line-height: 12px;
        margin-top: 3px;
      }

      .xemthem_mb {
        margin-top: 15px;
        text-align: center !important;
      }

      .xemthem_mb a {
        font-size: 12px;
        line-height: 22px;
        padding: 0px 15px;
        border-radius: 20px;
      }

}

@media (max-width: 991px) {
    .site-logo{
        position: absolute;
        top: 12px;
        left: 15px;
    }
    :root { --header-h: 0px; }
    .topbar { display: none; }
    .header-search input {
        height: 40;
    }
    .site-header__main { padding-top: 12px; padding-bottom: 12px; flex-wrap: wrap; }
    .site-header__right { flex-wrap: wrap; justify-content: flex-end; gap: 10px 14px; width: 100%; }
    .header-search { order: 3; flex: 1 1 100%; width: auto; margin-top: 4px; }
    .header-actions { gap: 14px; }
    .header-action__text { display: none; }
    .header-mobile-toggle { display: flex; margin-left: 6px; }
    .site-logo img { height: 46px; }
    .site-logo__name { font-size: 19px; }

    .nav-bar { display: none; }

    .home-hero-row { padding: 14px 0 18px; }
    .home-sidebar { display: none; }
    .hero-swiper { border-radius: var(--radius-sm); }
    .hero-nav { width: 36px; height: 36px; font-size: 12px; }

    .usp-grid { flex-wrap: wrap; }
    .usp-item {
        flex: 1 1 50%;
        border-right: 0;
        border-bottom: 0;
        padding: 12px;
        background: #fff;
        border: 1px solid var(--c-line) !important;
        margin-bottom: 8px;
        border-radius: 5px;
    }
    .usp-strip{
        border-bottom: 0;
    }

    .cat-circle-grid { grid-template-columns: repeat(4, 1fr); }
    .product-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .news-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .footer-grid .footer-col:nth-child(4) { grid-column: auto; }
    .shop-block__banner { flex-wrap: wrap; }
}

@media (max-width: 767px) {
    body { font-size: 14.5px; }
    .section-head h2,.section-head h1{ font-size: 24px; }
    .cat-circle-grid { grid-template-columns: repeat(3, 1fr); gap: 18px 10px; }
    .cat-circle__img { width: 120px; height: 120px; }
    .cat-circle__name { font-size: 12.5px; }
    .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .product-card__body { padding: 10px; }
    .news-grid { grid-template-columns: 1fr; }
    .trust-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .float-contacts { right: 14px; bottom: 78px; }
    .float-contacts a { width: 44px; height: 44px; font-size: 17px; }
    .back-to-top { right: 14px; width: 40px; height: 40px; }
    .shop-block__heading h2 { font-size: 17px; }
    .shop-block__banner { padding: 14px 16px; }
    .shop-block__banner .btn { padding: 10px 16px; font-size: 11px; }
}

@media (max-width: 480px) {
    .cat-circle-grid { grid-template-columns: repeat(2, 1fr); }
    .header-actions { gap: 8px; }
    .header-action__icon { width: 36px; height: 36px; font-size: 15px; }
}
