@font-face {
    font-family: 'Roboto_Condensed-Regular';
    src: url('./fonts/Roboto/Roboto_Condensed-Regular.woff2') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Roboto_Condensed-Bold';
    src: url('./fonts/Roboto/Roboto_Condensed-Bold.woff2') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    font-size: 16px;
    scroll-behavior: smooth;
}
body {
    font-family: var(--font-base, 'Roboto_Condensed-Regular'), sans-serif;
    font-weight: 400;
    color: var(--text-color, #333);
    background-color: var(--background-color, #fff);
    line-height: 1.6;
    position: relative; 
}
:root {
    --font-base: 'Roboto_Condensed-Regular', sans-serif;
    --font-heading: 'Roboto_Condensed-Bold', sans-serif;
    --primary-color: #343a40;
    --primary-color-hover: #1565c0;
    --secondary-color: #43a047;
    --accent-color: #ff5722;
    --background-color: #ffffff;
    --background-alt: #f8f9fa;
    --text-color: #333333;
    --heading-color: #111111;
    --border-color: #dddddd;
    --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;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: var(--primary-color); text-decoration: none; transition: color 0.2s ease; }
ul li{ list-style: none; }
a:hover { color: var(--primary-color-hover); text-decoration: none; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 700; color: var(--heading-color); line-height: 1.3; }
.breadcrumb-item::before {
    content: none !important; 
}
.breadcrumb-item + .breadcrumb-item::before {
    content: "\f105"; 
    font-family: "Font Awesome 6 Free"; 
    font-weight: 900; 
    content: "\f105" !important;
    padding-right: 0.75rem;
    padding-left: 0.75rem;
    color: #6c757d;
    vertical-align: middle; 
}
body.show-offcanvas {
    overflow: hidden;
}
.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: #fff;
    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;
}
.header {
    position: sticky; 
    top: 0;
    width: 100%;
    z-index: 999;
    transition: all 0.4s ease; 
    box-shadow: var(--box-shadow);
    background-color: var(--background-color);
}
.top-bar {
    background-color: var(--background-alt);
    padding: 8px 0;
    font-size: 13px;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.4s ease;
    max-height: 50px;
    overflow: hidden;
}
.top-bar a {
    color: var(--text-color);
    margin-left: 15px;
}
.top-bar a:hover {
    color: var(--primary-color-hover);
}
.main-header {
    padding: 10px 0;
    transition: padding 0.4s ease;
}
.main-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.header-col-left, .header-col-right {
    flex: 0 0 auto; 
}
.header-col-center {
    flex-grow: 1; 
    display: flex;
    justify-content: center; 
}
.header-col-right {
    display: flex;
    justify-content: flex-end; 
}
.logo img {
    max-height: 45px;
    display: block;
}
.search-box {
    position: relative;
}
.search-box input {
    border-radius: 20px;
    padding-left: 20px;
    border: 1px solid var(--border-color);
    height: 40px;
}
.search-box button {
    position: absolute; right: 0; top: 0; height: 100%; width: 50px;
    border: none; background: transparent; color: var(--primary-color);
    font-size: 18px; cursor: pointer;
}
.header-actions {
    display: flex;
    align-items: center;
    margin-left: 15px;
}
.user-actions a {
    color: var(--text-color); 
    font-weight: 400; 
    font-family: var(--font-base);
}
.cart-action {
    margin-left: 15px;
}
.cart-icon {
    position: relative;
    font-size: 24px;
    color: var(--text-color);
}
.cart-icon:hover {
    color: var(--primary-color-hover);
}
.cart-count {
    position: absolute; top: -5px; right: -10px; background-color: var(--accent-color);
    color: white; width: 20px; height: 20px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 11px; font-family: var(--font-heading);
}
.mobile-menu-toggle a {
    font-size: 24px;
    color: var(--text-color);
}
.mobile-search-container {
    padding: 0 0 15px 0;
    background-color: var(--background-color);
    border-top: 1px solid var(--border-color);
    transition: all 0.4s ease;
    max-height: 100px;
    overflow: hidden;
}
.main-nav-container {
    background-color: var(--primary-color);
}
.main-menu-desktop {
    margin: 0; padding: 0; display: flex;
}
.main-menu-desktop li a {
    display: block; padding: 12px 20px; color: white;
    text-transform: uppercase; font-family: var(--font-heading); font-size: 14px;
}
.main-menu-desktop li a:hover {
    background-color: var(--primary-color-hover); text-decoration: none;
}
@media (min-width: 992px) {
    .main-header {
        padding: 15px 0;
    }
    .main-header-inner {
        display: grid;
        grid-template-columns: 25% 50% 25%; 
        align-items: center;
    }
    .header-col-left {
        justify-content: flex-start;
    }
    .header-col-center {
        display: flex;
        justify-content: center;
    }
    .search-box {
        max-width: 400px;
        width: 100%;
    }
    .header-col-right {
        justify-content: flex-end;
    }
}
.offcanvas-menu-wrapper {
    position: fixed; top: 0; left: -300px; width: 300px; height: 100%;
    background-color: var(--background-color); z-index: var(--z-modal);
    transition: left var(--transition-speed) ease;
    box-shadow: 5px 0 15px rgba(0,0,0,0.2);
    display: flex; flex-direction: column;
    z-index: 1050;
}
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: var(--z-overlay);
    opacity: 0; visibility: hidden;
    transition: opacity var(--transition-speed) ease, visibility var(--transition-speed) ease;
    z-index: 1040;
}
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-color);
    background: var(--primary-color); color: white;
}
.offcanvas-header .offcanvas-title {
    margin: 0; font-size: 16px; text-transform: uppercase; font-family: var(--font-heading);
}
.offcanvas-header .offcanvas-close {
    font-size: 24px; 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-color);
    border-bottom: 1px solid var(--border-color);
    font-family: var(--font-heading);
}
.offcanvas-menu-content ul li a:hover {
    background-color: var(--background-alt); color: var(--primary-color-hover); text-decoration: none;
}
.cart-offcanvas-wrapper {
    position: fixed;
    top: 0;
    right: -320px; 
    width: 320px; 
    height: 100%;
    background-color: #fff;
    z-index: var(--z-modal, 3000); 
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    transition: right 0.4s ease;
    z-index: 1050; 
}
body.show-cart-offcanvas .cart-offcanvas-wrapper {
    right: 0;
}
body.show-offcanvas .offcanvas-overlay,
body.show-cart-offcanvas .offcanvas-overlay {
    opacity: 1;
    visibility: visible;
}
.cart-offcanvas-wrapper .offcanvas-body {
    flex-grow: 1;
    overflow-y: auto;
    padding: 20px;
}
.cart-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 20px;
}
.cart-item_image{
    flex: 0 0 70px;
}
.cart-item_image img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border: 1px solid #eee;
}
.cart-item_info {
    flex: 1 1 auto;
    min-width: 0;
}
.cart-item_info .item-name {
    display: block;
    color: #333;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 8px;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.cart-item_info .item-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}
.item-price {
    color: #dc3545; 
    font-weight: bold;
}
.item-remove {
    color: #6c757d;
    font-size: 16px;
}
.item-remove:hover {
    color: #dc3545;
}
.cart-offcanvas-wrapper .offcanvas-footer {
    padding: 20px;
    border-top: 1px solid #eee;
    background-color: #f8f9fa;
}
.cart-summary {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
}
.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(--background-color);
    list-style: none;
    padding: 10px 0;
    margin: 0;
    border-top: 3px solid var(--primary-color-hover);
    box-shadow: var(--box-shadow);
    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-color);
    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(--background-alt);
    color: var(--primary-color-hover);
}
.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-color);
    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: #fff;
    border-top: 1px solid #e9ecef;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.08);
    z-index: 999; 
    padding: 6px 0;
}
.mobile-bottom-nav .nav-item {
    flex: 1; 
    color: #555;
    text-decoration: none;
    transition: color 0.2s ease;
}
.mobile-bottom-nav .nav-item:hover,
.mobile-bottom-nav .nav-item.active { 
    color: #007bff; 
}
.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(--primary-color); 
    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;
}
.contact-pill {
    display: block;
    transition: transform 0.2s ease-in-out;
}
.contact-pill:hover {
    transform: scale(1.15) rotate(5deg);
}
.contact-pill img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.gotop {
    position: fixed;
    bottom: 40px;
    right: 20px;
    width: 45px;
    height: 45px;
    background-color: var(--primary-color-hover, #1565c0);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.gotop.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.gotop:hover {
    background-color: var(--accent-color, #ff5722);
    color: #fff;
    transform: scale(1.1);
}


.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    border-top: 1px solid var(--border-color, #ddd);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.08);
    z-index: 999;
    display: flex;
    justify-content: space-around;
    padding: 6px 0;
}
.mobile-nav-item {
    flex: 1;
    text-align: center;
    color: #555;
    text-decoration: none;
    transition: color 0.2s ease;
}
.mobile-nav-item:hover,
.mobile-nav-item.active {
    color: var(--primary-color-hover, #1565c0);
}
.mobile-nav-item i {
    font-size: 20px;
    margin-bottom: 4px;
    display: block;
}
.mobile-nav-label {
    font-size: 11px;
    font-weight: 500;
}


.footer {
    background-color: var(--background-alt, #f8f9fa);
    color: var(--text-color, #333);
    padding: 60px 0 0 0; 
    border-top: 3px solid var(--primary-color-hover, #1565c0);
}
.footer__item {
    margin-bottom: 30px;
}
.footer__title {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--heading-color, #111);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}
.footer__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color-hover, #1565c0);
    border-radius: 2px;
}
.footer__logo img {
    max-width: 180px;
    height: auto;
}
.footer__list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer__list li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
}
.footer__list li .company-name {
    font-family: var(--font-heading);
    color: var(--heading-color);
}
.footer__list i {
    margin-right: 12px;
    color: var(--primary-color-hover, #1565c0);
    width: 20px;
    text-align: center;
    flex-shrink: 0;
    margin-top: 4px;
}
.footer__list a {
    color: var(--text-color, #333);
    text-decoration: none;
    transition: color 0.2s ease;
}
.footer__list a:hover {
    color: var(--primary-color-hover, #1565c0);
}


#footer-contact-form .form-group {
    margin-bottom: 1rem;
}
#footer-contact-form .form-control {
    border-radius: var(--border-radius, 8px);
    border: 1px solid var(--border-color, #ddd);
}
#footer-contact-form .form-control:focus {
    border-color: var(--primary-color-hover, #1565c0);
    box-shadow: 0 0 0 0.2rem rgba(21, 101, 192, 0.25);
}


.copyright {
    background-color: #f1f1f1;
    padding: 20px 0;
    margin-top: 30px;
    font-size: 14px;
    color: #666;
    border-top: 1px solid var(--border-color, #ddd);
}
.copyright p {
    margin: 0;
    padding: 2px 0;
}
.copyright .tht-credit a {
    color: var(--primary-color-hover, #1565c0);
    font-weight: 500;
    text-decoration: none;
}
.copyright .tht-credit a:hover {
    text-decoration: underline;
}
