@font-face {
    font-family: 'Lora';
    src: url('./fonts/Lora/Lora-VariableFont_wght.woff2') format('woff2');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Cormorant_Garamond';
    src: url('./fonts/Cormorant_Garamond/CormorantGaramond-VariableFont_wght.woff2') format('woff2');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
:root {
    --font-base: 'Lora', sans-serif;
    --font-second: 'Cormorant_Garamond', sans-serif;
    --theme-accent: #000000;
    --theme-accent-hover: #333333;
    --bg-primary: #FAF9F6;
    --bg-secondary: #F5F5F5;
    --bg-contrast: #1a1a1a;
    --bg-hover: #E5E5E5;
    --text-primary: #222222;
    --text-secondary: #666666;
    --text-contrast: #e0e0e0;
    --border-primary: #dddddd;
    --border-contrast: #444444;
    --color-white: #ffffff;
    --color-black: #000000;
    --accent-color: var(--theme-accent);
    --background-color: var(--bg-primary);
    --background-alt: var(--bg-secondary);
    --heading-color: var(--text-primary);
    --border-color: var(--border-primary);
    --border-radius: 8px;
    --box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    --transition-speed: 0.3s;
    --z-header: 1000;
    --z-overlay: 2000;
    --z-modal: 3000;
    --mainColor: var(--color-black);
    --subColor: #888888;
    --bodyColor: var(--bg-primary);
    --textColor: var(--text-primary);
    --hoverColor: var(--bg-hover);
    --price: var(--theme-accent);
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: var(--font-base), sans-serif;
    font-weight: 400;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    line-height: 1.6;
    position: relative;
    font-size: 16px;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.2s ease; }
ul li{ list-style: none; }
a:hover { color: var(--theme-accent); text-decoration: none; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-second); font-weight: 700; color: inherit; line-height: 1.3; }
section{
    padding: 30px 0px;
}
.line-clamp-2-new {
    -webkit-line-clamp: 2;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical
}
.breadcrumb-wrapper{
    background-color: var(--bg-secondary);
}
.breadcrumb-wrapper nav .breadcrumb{
    background-color: var(--bg-secondary);
}
.breadcrumb-item + .breadcrumb-item::before {
    content: "\f101";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    padding: 0 0.5rem;
    color: #6c757d;
}


body.show-offcanvas {
    overflow: hidden;
}
.section-title{
    font-weight: 600;
    text-align: center;
    font-size: 45px;
}
.top-bar span a{
    color: var(--text-primary);
}
.section-subtitle {
    text-align: center;
}
.bg-main{
    background-color: var(--bg-primary);
}
.bg-secondary{
    background-color: #ffffff;
}
.header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 999;
    transition: all 0.4s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    background-color: var(--bg-primary);
}
.header.is-unsticking .top-bar,
.header.is-unsticking .mobile-search-container {
    opacity: 0; max-height: 0; padding-top: 0; padding-bottom: 0;
    border-width: 0; pointer-events: none;
}
.header.is-unsticking .main-header { padding-top: 10px; padding-bottom: 10px; }
.header.header-scrolled {
    background-color: var(--color-white);
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}
.header-scrolled .top-bar {
    visibility: hidden; opacity: 0; max-height: 0;
    padding-top: 0; padding-bottom: 0; border-width: 0;
}
.header-scrolled .mobile-search-container {
    visibility: hidden; opacity: 0; max-height: 0;
    padding: 0; border-width: 0;
}
.header-scrolled .main-header {
    padding-top: 10px; padding-bottom: 10px;
    background-color: var(--color-white);
    color: var(--text-primary);
}
.header-scrolled .top-bar a,
.header-scrolled .main-header-inner a,
.header-scrolled .main-menu-desktop li a,
.header-scrolled .mobile-menu-toggle a,
.header-scrolled .cart-icon {
    color: var(--text-primary);
}
.header-scrolled a:hover,
.header-scrolled .cart-icon:hover {
    color: var(--theme-accent) !important;
}
.top-bar {
    background-color: var(--bg-secondary);
    padding: 8px 23px 0px 0px;
    font-size: 1rem;
    transition: all 0.4s ease;
    max-height: 50px;
    overflow: hidden;
    font-weight: 700;
    color: var(--text-primary);
    font-family: var(--font-second);
}
.top-bar a {
    color: var(--text-primary);
    margin-left: 15px;
}
.top-bar a:hover {
    color: var(--theme-accent);
}
.main-header {
    padding: 10px 0;
    transition: padding 0.4s ease;
    background-color: var(--bg-primary);
    color: var(--text-primary);
}
.main-header-inner {
    display: flex; justify-content: space-between;
    align-items: center; width: 100%;
}
.header-col-left, .header-col-right {
    display: flex; align-items: center;
    gap: 20px; flex: 0 0 auto;
}
.header-col-left{ margin-right: 20px; }
.header-col-center {flex-grow: 1;display: flex;justify-content: center;}
.header-col-right { margin-left: 20px; display: flex; flex-direction: column; }
.logo img { max-height: 100px; display: block; }
.search-box { position: relative; }
.search-box input {
    height: 40px; line-height: 40px; margin: 0px; border: 1px solid var(--border-primary);
    min-height: initial; border-radius: 0px; font-size: 1.1rem;
    background-color: var(--color-white);
    color: var(--text-primary);
}
.search-box button {
    width: 51px; height: 40px; line-height: 40px; position: absolute;
    top: 0; right: 0; padding: 0px;
    display: flex; justify-content: center; align-items: center;
    background: var(--theme-accent);
    border: none;
    color: var(--color-white);
    font-size: 1rem;
}
.header-actions { display: flex; align-items: center; margin-left: 15px; }
.user-actions a { color: var(--text-primary); font-weight: 400; font-family: var(--font-base); }
.cart-action { margin-left: 15px; }
.cart-icon { position: relative; font-size: 24px; color: var(--text-primary); }
.cart-icon:hover { color: var(--theme-accent); }
.cart-count {
    position: absolute; top: -5px; right: -10px; background-color: var(--theme-accent);
    color: var(--color-white); width: 20px; height: 20px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 11px; font-family: var(--font-second);
}
.mobile-menu-toggle a {font-size: 24px;color: var(--text-primary);}
.mobile-search-container {
    padding: 2px;
    background-color: var(--bg-primary);
    transition: all 0.4s ease;
    max-height: 100px;
    overflow: hidden;
}
.main-nav-container {
    background-color: var(--bg-primary);
}
.main-menu-desktop { margin: 0; padding: 0; display: flex; }
.main-menu-desktop li a {
    display: block;
    padding: 12px 20px;
    color: var(--text-primary);
    text-transform: uppercase;
    font-family: var(--font-second);
    font-size: 18px;
    font-weight: 600;
}
.main-menu-desktop li a:hover { background-color: transparent; color: var(--theme-accent); text-decoration: none; }
.offcanvas-menu-wrapper {
    position: fixed; top: 0; left: -300px; width: 300px; height: 100%;
    background-color: var(--bg-contrast);
    z-index: 1050;
    transition: left var(--transition-speed) ease;
    box-shadow: 5px 0 15px rgba(0,0,0,0.2);
    display: flex; flex-direction: column;
}
body.show-offcanvas .offcanvas-menu-wrapper { left: 0; }
.offcanvas-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.6); z-index: 1040;
    opacity: 0; visibility: hidden;
    transition: opacity var(--transition-speed) ease, visibility var(--transition-speed) ease;
}
body.show-offcanvas .offcanvas-overlay { opacity: 1; visibility: visible; }
.offcanvas-header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 15px 20px; border-bottom: 1px solid var(--border-contrast);
    background: var(--bg-contrast); color: var(--text-contrast);
}
.offcanvas-header .offcanvas-title {
    margin: 0; font-size: 16px; text-transform: uppercase; font-family: var(--font-second);
}
.offcanvas-header .offcanvas-close { font-size: 24px; color: var(--color-white); opacity: 0.8; }
.offcanvas-header .offcanvas-close:hover { opacity: 1; }
.offcanvas-menu-content { flex-grow: 1; overflow-y: auto; }
.offcanvas-menu-content ul { list-style: none; padding: 0; margin: 0; flex-direction: column; }
.offcanvas-menu-content ul li a {
    display: block; padding: 12px 20px; color: var(--text-contrast);
    border-bottom: 1px solid var(--border-contrast);
    font-family: var(--font-second);
}
.offcanvas-menu-content ul li a:hover {
    background-color: var(--theme-accent); color: var(--color-white); text-decoration: none;
}
.cart-offcanvas-wrapper {
    position: fixed; top: 0; right: -320px; width: 320px; height: 100%;
    background-color: var(--bg-primary);
    z-index: 1050;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    display: flex; flex-direction: column;
    transition: right 0.4s ease;
}
body.show-offcanvas .offcanvas-overlay,
.main-menu-desktop .submenu-toggle { display: none; }
.main-menu-desktop .menu-item-has-children{ position: relative; }
.main-menu-desktop .menu-item-has-children > a { padding-right: 35px; }
.main-menu-desktop .menu-item-has-children > a::after {
    content: '\f107'; font-family: FontAwesome; position: absolute;
    right: 15px; top: 50%; transform: translateY(-50%);
}
.sub-menu {
    position: absolute; top: 100%; left: 0;
    background-color: var(--color-white);
    list-style: none; padding: 10px 0; margin: 0;
    border-top: 3px solid var(--theme-accent);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    z-index: var(--z-header); opacity: 0; visibility: hidden;
    transform: translateY(10px); transition: all var(--transition-speed) ease;
}
.sub-menu .sub-menu { top: -3px; left: 100%; }
.menu-item-has-children:hover > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.sub-menu li a {
    display: block; padding: 8px 20px; color: var(--text-primary);
    text-transform: none; font-family: var(--font-base);
    font-size: 15px; font-weight: 400; white-space: nowrap;
}
.sub-menu li a:hover { background-color: var(--bg-hover); color: var(--theme-accent); }
.sub-menu .menu-item-has-children > a::after { content: '\f105'; right: 15px; }
.offcanvas-menu-content .sub-menu {
    position: static; width: 100%; box-shadow: none; border: none;
    padding: 0 0 0 15px; transform: none; opacity: 1;
    visibility: visible; background-color: transparent; display: none;
}
.offcanvas-menu-content .menu-item-has-children > a { width: calc(100% - 45px); }
.offcanvas-menu-content .menu-item-has-children > a::after { display: none; }
.offcanvas-menu-content .sub-menu a { font-size: 14px; }
.offcanvas-menu-content .submenu-toggle {
    display: inline-block; position: absolute; right: 0; top: 0;
    width: 45px; height: 45px; line-height: 45px;
    text-align: center; cursor: pointer; color: var(--text-contrast);
    z-index: 2; font-size: 16px;
}
.offcanvas-menu-content .menu-item-has-children.open > .submenu-toggle > i {
    transform: rotate(180deg); transition: transform var(--transition-speed) ease;
}
.mobile-bottom-nav {
    position: fixed; bottom: 0; left: 0; width: 100%;
    background-color: var(--color-white);
    border-top: 1px solid var(--border-primary);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 999; padding: 6px 0;
}
.mobile-bottom-nav .nav-item {
    flex: 1; color: var(--text-secondary);
    text-decoration: none; transition: color 0.2s ease;
}
.mobile-bottom-nav .nav-item:hover,
.mobile-bottom-nav .nav-item.active {
    color: var(--theme-accent);
}
.mobile-bottom-nav .nav-item i { font-size: 20px; margin-bottom: 4px; }
.mobile-bottom-nav .nav-item .nav-label { font-size: 11px; font-weight: 500; }
.user-dropdown .dropdown-toggle {
    color: var(--text-primary);
    text-decoration: none; display: flex;
    align-items: center; gap: 8px;
}
.user-dropdown .dropdown-toggle::after { display: none; }
.user-dropdown .dropdown-toggle i { font-size: 1.5rem; }
.user-dropdown .dropdown-menu {
    margin-top: 10px !important; box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: none;
}
.user-dropdown .dropdown-item { display: flex; align-items: center; gap: 10px; }
.user-dropdown .dropdown-item i { width: 16px; text-align: center; }
.page-pills {
    position: fixed; bottom: 100px; left: 20px;
    z-index: 998; display: flex; flex-direction: column; gap: 10px;
}
.mobile-bottom-nav {
    position: fixed; bottom: 0; left: 0; width: 100%;
    background-color: var(--color-white);
    border-top: 1px solid var(--border-primary);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 999; display: flex; justify-content: space-around; padding: 6px 0;
}
.mobile-nav-item { flex: 1; text-align: center; color: var(--text-secondary); text-decoration: none; transition: color 0.2s ease; }
.mobile-nav-item:hover,
.mobile-nav-item.active {
    color: var(--theme-accent);
}
.mobile-nav-item i { font-size: 20px; margin-bottom: 4px; display: block; }
.mobile-nav-label { font-size: 11px; font-weight: 500; }
section.section .section-title h2{
    display: inline-block; font-weight: 700; font-size: 3rem;
    text-transform: uppercase; margin-bottom: 0px; font-family: 'Oswald', sans-serif;
    position: relative; padding-bottom: 8px;
}
section.section .section-title h2:before {
    content: ""; display: block; width: 80px; height: 4px;
    background: var(--theme-accent);
    position: absolute; bottom: 0px; left: 0px;
    -webkit-clip-path: polygon(0% 0%, 100% 0%, calc(100% - 4px) 100%, 0% 100%);
    clip-path: polygon(0% 0%, 100% 0%, calc(100% - 4px) 100%, 0% 100%);
}
@media (min-width: 992px) {
    .main-header { padding: 4px 0; }
    .main-header-inner { align-items: center; }
    .header-col-left { justify-content: flex-start; }
    .header-col-center {display: flex;justify-content: end;}
    .search-box { width: 100%; }
}
@media (max-width: 767px) {
    .logo img{ max-height: 75px; }
}
.bg-main{
    background: var(--bg-primary);
    color: var(--text-primary);
}
.footer-new {
    background-color: var(--bg-secondary);
    color: var(--text-primary);
    border-top: 4px solid var(--theme-accent);
}
.main-footer {
    padding: 60px 0;
}
.copyright {
    background-color: var(--color-white);
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-secondary);
}
.copyright b {
    color: var(--text-primary);
}
.copyright a {
    color: var(--theme-accent);
    font-weight: bold;
}
.footer-widget .widget-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 25px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 10px;
}
.footer-widget .widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--theme-accent);
}
.footer-widget p {
    color: var(--text-secondary);
    margin-bottom: 10px;
}
.footer-widget .info-address i {
    color: var(--theme-accent);
    width: 20px;
}
.footer-widget .info-address a {
    color: var(--text-secondary);
}
.footer-widget .info-address a:hover {
    color: var(--theme-accent);
}
.footer-widget .menu-list {
    padding: 0;
    list-style: none;
}
.footer-widget .menu-list li {
    margin-bottom: 12px;
}
.footer-widget .menu-list a {
    color: var(--text-secondary);
    position: relative;
    padding-left: 0;
    transition: all 0.3s ease;
}
.footer-widget .menu-list a:hover {
    color: var(--theme-accent);
    padding-left: 10px;
}
.footer-widget .menu-list a:hover::before {
    opacity: 1;
}
.footer-widget .menu-list a::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    color: var(--theme-accent);
}
.subscribe-form .input-group {
    border-radius: 50px;
    overflow: hidden;
    border: 1px solid var(--border-primary);
    background-color: var(--color-white);
}
.subscribe-form .form-control {
    background-color: transparent;
    border: none;
    color: var(--text-primary);
    padding: 10px 20px;
    height: 50px;
}
.subscribe-form .form-control:focus {
    box-shadow: none;
    background-color: var(--color-white);
}
.subscribe-form .btn-primary {
    background-color: var(--theme-accent);
    border: none;
    width: 60px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}
.subscribe-form .btn-primary:hover {
    background-color: var(--theme-accent-hover);
}
.social-list a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--color-white);
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 1px solid var(--border-primary);
}
.social-list a:hover {
    background-color: var(--theme-accent);
    color: var(--color-white);
    transform: translateY(-3px);
}
.contact-pills {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.contact-pill {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}
.contact-pill:hover {
    transform: translateY(-3px) scale(1.1);
    color: var(--color-white);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}
.contact-pill.zalo-pill { background-color: #0068ff; }
.contact-pill.messenger-pill { background: linear-gradient(45deg, #0062E0, #19A6D2); }
.contact-pill.back-to-top {
    background-color: #555;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}
.contact-pill.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.contact-pill.back-to-top:hover {
    background-color: var(--theme-accent);
}
.phone-icon-wrapper {
    position: relative;
    display: block;
    width: 55px;
    height: 55px;
    background-color: var(--theme-accent);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    transform: scale(1);
    display: flex;
    align-items: center;
    justify-content: center;
}
.phone-icon-wrapper::before,
.phone-icon-wrapper::after {
    position: absolute;
    content: "";
}
.phone-icon-wrapper::before {
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: transparent;
    border-radius: 100%;
    border: 2px solid var(--theme-accent);
    opacity: 1;
    transform: scale(0.9);
}
.phone-icon-wrapper i {
    transform: translate3d(0, 0, 0);
    color: var(--color-white);
}
.phone-icon-wrapper.is-animating {
    animation: phone-outer 2000ms infinite;
}
.phone-icon-wrapper.is-animating::before {
    animation: phone-inner 2000ms infinite;
}
.phone-icon-wrapper.is-animating i {
    animation: phone-icon 2000ms infinite;
}
@keyframes phone-outer {
    0% { transform: scale(1); box-shadow: 0 0 0 0em rgba(0, 0, 0, 0.4); }
    50% { transform: scale(1); box-shadow: 0 0 0 1.5em rgba(0, 0, 0, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0em rgba(0, 0, 0, 0); }
}
@keyframes phone-inner {
    0% { opacity: 1; transform: scale(0.9); }
    30% { opacity: 1; transform: scale(1.3); }
    100% { opacity: 0; transform: scale(1.6); }
}
@keyframes phone-icon {
    0%, 50%, 100% { transform: rotate(0deg); }
    5% { transform: rotate(-15deg); }
    10% { transform: rotate(15deg); }
    15% { transform: rotate(-15deg); }
    20% { transform: rotate(15deg); }
    25% { transform: rotate(-15deg); }
    30% { transform: rotate(0deg); }
}
@media (max-width: 991px) {
    .main-footer { padding: 40px 0; }
    .footer .footer-widget:first-child { text-align: center; }
    .footer .footer-widget:first-child .widget-title::after { left: 50%; transform: translateX(-50%); }
    .footer .footer-widget:first-child .social-list { justify-content: center; }
}
@media (max-width: 767px) {
    .footer-widget { text-align: center; }
    .footer-widget .widget-title::after { left: 50%; transform: translateX(-50%); }
    .footer-widget .social-list { justify-content: center; }
    .subscribe-form { max-width: 350px; margin: 20px auto 0 auto; }
    .contact-pills {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }
    .contact-pill {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    .phone-icon-wrapper {
        width: 50px;
        height: 50px;
    }
}
