﻿@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --font-main: 'Inter', Arial, Helvetica, sans-serif;
    --font-heading: "Montserrat", "Heebo", sans-serif;
    --color-primary: #1f4b43;
    --color-primary-dark: #163730;
    --color-accent: #c59253;
    --color-text: #23313a;
    --color-text-soft: #667681;
    --color-border: #e4ebe7;
    --color-surface: #ffffff;
    --color-surface-alt: #f6f8f7;
    --shadow-soft: 0 18px 50px rgba(21, 41, 35, 0.08);
    --shadow-card: 0 12px 30px rgba(18, 35, 31, 0.08);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --container-max: 1720px;
}

html {
    scroll-behavior: smooth;
}

body,
input,
button,
select,
textarea {
    font-family: var(--font-main) !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.site-shell {
    margin: 0;
    color: var(--color-text);
    background:
        radial-gradient(circle at top left, rgba(197, 146, 83, 0.08), transparent 30%),
        linear-gradient(180deg, #f9fbfa 0%, #f4f7f5 100%);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading) !important;
    color: var(--color-text);
    letter-spacing: 0;
}

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

a:hover {
    text-decoration: none;
}

.site-frame {
    max-width: 100%;
    margin: 0 auto;
    background: transparent !important;
    box-shadow: none;
}

.text-color-Xanh,
.text-primary {
    color: var(--color-primary) !important;
}

.text-color-Xam {
    color: var(--color-text-soft) !important;
}

.btn,
button {
    border-radius: 999px !important;
}

.btn-primary {
    background: var(--color-primary) !important;
    border-color: var(--color-primary) !important;
}

.btn-primary:hover,
.btn-primary:focus {
    background: var(--color-primary-dark) !important;
    border-color: var(--color-primary-dark) !important;
}

.btn-outline-primary {
    color: var(--color-primary) !important;
    border-color: var(--color-primary) !important;
}

.btn-outline-primary:hover {
    color: #fff !important;
    background: var(--color-primary) !important;
}

.site-header {
    position: fixed;
    top: 0;
    left: 50%;
    width: min(100%, var(--container-max));
    transform: translateX(-50%);
    z-index: 1050;
    margin: 6px auto 0;
    border: 1px solid rgba(228, 235, 231, 0.9);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.95) !important;
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(14px);
    transition: transform 0.3s ease, opacity 0.3s ease, box-shadow 0.3s ease, margin-top 0.3s ease;
}

#mainNavbar.scrolled,
#mainNavbar.visible {
    margin-top: 4px;
    box-shadow: 0 20px 50px rgba(17, 35, 30, 0.12);
}

#mainNavbar.fading {
    opacity: 0.2;
    transform: translate(-50%, -12px);
}

#mainNavbar:not(.fading) {
    transform: translateX(-50%);
}

.site-header__brand {
    border-right: 1px solid var(--color-border);
}

.site-brand {
    min-height: 78px;
}

.site-brand img,
.navbar-brand img {
    max-height: 58px;
    width: auto;
    object-fit: contain;
}

.site-navbar {
    min-height: 78px;
    padding: 0.7rem 1.4rem !important;
}

.site-navbar-collapse {
    align-items: center;
}

.site-nav-list {
    gap: 0.25rem;
    align-items: center;
}

.navbar-nav {
    display: flex;
    flex-wrap: nowrap;
}

.navbar-nav .nav-link,
.navbar-nav .nav-item > .nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0.7rem 1rem;
    margin: 0;
    color: var(--color-text) !important;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 999px;
    white-space: nowrap;
    transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-item:hover > .nav-link {
    color: var(--color-primary) !important;
    background: rgba(31, 75, 67, 0.08);
}

.navbar-nav > .nav-link.active,
.navbar-nav > .nav-item.active > .nav-link,
.navbar-nav > .nav-item > .nav-link.active {
    color: #fff !important;
    background: linear-gradient(135deg, var(--color-primary) 0%, #2c665b 100%);
    box-shadow: 0 12px 24px rgba(31, 75, 67, 0.22);
}

.nav-item > .dropdown-toggle::after {
    display: none !important;
}

.nav-item.dropdown.show .fa-angle-down {
    transform: rotate(180deg);
}

.site-icon-btn,
.btn-search {
    width: 40px;
    height: 40px;
    padding: 0;
    border: 0;
    color: var(--color-text);
    background: transparent;
    box-shadow: none !important;
}

.site-icon-btn:hover,
.btn-search:hover {
    color: var(--color-primary);
    background: rgba(31, 75, 67, 0.08);
}

.site-mobile-actions {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.site-mobile-menu-btn {
    width: 40px;
    height: 40px;
    padding: 0;
    border: 1px solid var(--color-border);
    color: var(--color-text);
    background: #fff;
}

.dropdown-menu,
.dropdown-menuSub {
    padding: 0.75rem;
    border: 1px solid var(--color-border);
    border-radius: 10px !important;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-card);
}

.dropdown-menu {
    min-width: 260px;
    margin-top: 0 !important;
}

.site-dropdown-panel {
    min-width: 260px;
}

.dropdown-menu-columns {
    display: none;
}

.dropdown-item,
.dropdown-subitem {
    display: block;
    padding: 0.8rem 0.95rem;
    color: var(--color-text-soft);
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 12px;
    white-space: nowrap;
    transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.dropdown-item:hover,
.dropdown-subitem:hover {
    color: var(--color-primary);
    background: rgba(31, 75, 67, 0.08);
    transform: translateX(3px);
}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 100%;
    width: 12px;
}

.dropdown-submenu .dropdown-menuSub {
    display: none;
    position: absolute;
    top: -0.35rem;
    left: calc(100% - 2px);
    width: min(280px, calc(100vw - 40px));
    min-width: 220px;
    max-height: none;
    overflow: visible;
    z-index: 1200;
}

.dropdown-submenu:hover > .dropdown-menuSub {
    display: block;
}

.dropdown-menu1 {
    min-width: 260px !important;
}

@media (min-width: 992px) {
    .nav-item1 > .dropdown-menu.dropdown-menu-columns {
        left: 50%;
        width: min(560px, calc(100vw - 40px));
        max-width: calc(100vw - 40px);
        padding: 0.55rem;
        overflow-x: visible;
        overflow-y: visible;
        display: none;
        grid-template-columns: repeat(2, minmax(220px, 1fr));
        align-items: start;
        gap: 0.2rem 0.45rem;
        transform: translateX(-26%);
    }

    .nav-item1 > .dropdown-menu.dropdown-menu-columns,
    .nav-item1 > .dropdown-menu.dropdown-menu-columns .dropdown-submenu,
    .nav-item1 > .dropdown-menu.dropdown-menu-columns .dropdown-menuSub {
        overflow: visible !important;
    }

    .nav-item1 > .dropdown-menu.dropdown-menu-columns .dropdown-submenu {
        min-width: 0;
    }

    .nav-item1 > .dropdown-menu.dropdown-menu-columns .dropdown-item,
    .nav-item1 > .dropdown-menu.dropdown-menu-columns .dropdown-subitem {
        padding: 0.72rem 0.9rem;
        font-size: 0.9rem;
        line-height: 1.35;
        border-radius: 10px;
    }

    .nav-item1 > .dropdown-menu.dropdown-menu-columns .dropdown-item {
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .nav-item1 > .dropdown-menu.dropdown-menu-columns > .dropdown-submenu > .dropdown-menuSub {
        top: -0.45rem;
        left: calc(100% - 2px);
        right: auto;
        width: min(300px, calc(100vw - 42px));
        min-width: 240px;
        max-width: 300px;
        max-height: none;
        overflow: visible;
    }

    .nav-item1 > .dropdown-menu.dropdown-menu-columns > .dropdown-submenu > .dropdown-menuSub > .dropdown-submenu::after {
        left: auto;
        right: 100%;
    }

    .nav-item1 > .dropdown-menu.dropdown-menu-columns > .dropdown-submenu > .dropdown-menuSub > .dropdown-submenu > .dropdown-menuSub {
        top: -0.45rem;
        left: auto;
        right: calc(100% - 2px);
        width: min(300px, calc(100vw - 42px));
        min-width: 220px;
        max-width: 300px;
        max-height: none;
        overflow: visible;
    }

    .navbar-nav > .nav-item,
    .navbar-nav > .nav-link {
        position: relative;
    }

    .navbar-nav > .nav-item.dropdown::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        height: 16px;
    }

    .nav-item.dropdown > .dropdown-menu {
        top: calc(100% + 8px);
    }

    .nav-item.dropdown:hover > .dropdown-menu,
    .nav-item.dropdown > .dropdown-menu.show,
    .nav-item1:hover > .dropdown-menu,
    .nav-item1 > .dropdown-menu.show {
        display: block;
    }

    .nav-item1:hover > .dropdown-menu.dropdown-menu-columns,
    .nav-item1 > .dropdown-menu.dropdown-menu-columns.show {
        display: grid;
    }
}

@media (min-width: 992px) and (max-width: 1399.98px) {
    .nav-item1 > .dropdown-menu.dropdown-menu-columns {
        width: min(460px, calc(100vw - 32px));
        grid-template-columns: minmax(0, 1fr);
        transform: translateX(-14%);
    }

    .dropdown-submenu::after {
        left: auto;
        right: 100%;
    }

    .dropdown-submenu .dropdown-menuSub {
        left: auto;
        right: calc(100% - 2px);
    }

    .nav-item1 > .dropdown-menu.dropdown-menu-columns > .dropdown-submenu > .dropdown-menuSub {
        left: auto;
        right: calc(100% - 2px);
    }

    .nav-item1 > .dropdown-menu.dropdown-menu-columns > .dropdown-submenu > .dropdown-menuSub > .dropdown-submenu::after {
        left: 100%;
        right: auto;
    }

    .nav-item1 > .dropdown-menu.dropdown-menu-columns > .dropdown-submenu > .dropdown-menuSub > .dropdown-submenu > .dropdown-menuSub {
        left: calc(100% - 2px);
        right: auto;
    }
}

.custom-offcanvas,
.cart-offcanvas {
    width: min(86vw, 420px) !important;
    border-right: 0;
}

.offcanvas-backdrop.show {
    background: rgba(17, 30, 27, 0.45);
}

.site-offcanvas-header {
    padding: 1rem 1rem 0.75rem;
}

.site-offcanvas-header .nav-tabs {
    border-bottom: 0;
    gap: 0.5rem;
}

.site-offcanvas-header .nav-link {
    margin: 0;
    border: 0;
    border-radius: 999px;
    color: var(--color-text-soft) !important;
    background: #f1f4f2;
}

.site-offcanvas-header .nav-link.active {
    color: #fff !important;
    background: var(--color-primary);
}

.menu-link,
.submenu-link {
    display: block;
    padding: 0.95rem 1rem;
    color: var(--color-text);
    font-size: 0.96rem;
    font-weight: 500;
    border-bottom: 1px solid #f1f4f2;
    transition: color 0.25s ease, background-color 0.25s ease;
}

.menu-link:hover,
.submenu-link:hover {
    color: var(--color-primary);
    background: rgba(31, 75, 67, 0.06);
}

.toggle-icon {
    margin-right: 0.85rem;
    color: var(--color-text-soft);
    cursor: pointer;
}

.Content-Pm {
    padding-top: 84px;
}

.site-main {
    min-height: calc(100vh - 320px);
}

.search-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(12, 21, 18, 0.6);
    backdrop-filter: blur(8px);
}

.search-overlay .close-btn {
    position: absolute;
    top: 28px;
    right: 36px;
    color: #fff;
    font-size: 42px;
    line-height: 1;
    cursor: pointer;
}

.search-box {
    position: absolute;
    top: 26%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    width: min(92vw, 620px);
    padding: 1rem 1.4rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.1);
}

.search-box input {
    flex: 1;
    border: 0;
    outline: 0;
    color: #fff;
    background: transparent;
    font-size: 1.1rem;
}

.search-box input::placeholder {
    color: rgba(255, 255, 255, 0.78);
}

.search-box i {
    color: #fff;
    font-size: 1.25rem;
    cursor: pointer;
}

.search-results {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    width: 100%;
    max-height: 280px;
    margin: 0;
    padding: 0.45rem;
    list-style: none;
    overflow-y: auto;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    background: rgba(9, 15, 13, 0.88);
}

.search-results li {
    padding: 0.9rem 1rem;
    color: #fff;
    border-radius: 12px;
    cursor: pointer;
}

.search-results li:hover,
.search-results li.active {
    background: rgba(255, 255, 255, 0.12);
}

.site-footer {
    margin-top: 4.5rem;
    border-radius: 24px 24px 0 0;
    background:
        radial-gradient(circle at top right, rgba(197, 146, 83, 0.24), transparent 26%),
        linear-gradient(180deg, #214b43 0%, #132f2a 100%);
}

.footer-custom h5,
.footer-custom h6 {
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.footer-custom h5 {
    margin-bottom: 1.25rem;
    font-size: 1rem;
    text-transform: uppercase;
}

.footer-custom p,
.footer-custom li,
.footer-custom a {
    color: rgba(255, 255, 255, 0.82);
}

.footer-custom a:hover {
    color: #fff;
}

.footer-custom img {
    max-width: 160px;
    border-radius: 16px;
}

.newsletter .form-control {
    min-height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 14px;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.newsletter .form-control::placeholder {
    color: rgba(255, 255, 255, 0.72);
}

.newsletter button {
    min-height: 50px;
    font-weight: 700;
    color: var(--color-primary) !important;
    background: #f6efe7 !important;
    border-radius: 14px !important;
}

.newsletter button:hover {
    background: #fff !important;
}

.contactnow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    color: var(--color-primary) !important;
    font-size: 0.98rem;
    font-weight: 700;
    background: #f7efe4;
}

.contactnow:hover {
    background: #fff;
}

.payment-icons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.payment-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 58px;
    min-height: 42px;
    padding: 0.25rem 0.45rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    transition: transform 0.25s ease, background-color 0.25s ease;
}

.payment-icon svg {
    width: auto !important;
    height: 28px;
    fill: #fff;
}

.payment-icon:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.16);
}

.footer-bottom {
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.74);
    background: rgba(0, 0, 0, 0.1);
}

.social-fixed-left {
    position: fixed;
    left: max(10px, calc((100vw - var(--container-max)) / 2 + 12px));
    bottom: 92px;
    top: auto;
    transform: none;
    z-index: 1040;
}

.social-fixed-left .items {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

    .social-fixed-left .item,
    .floating-open-btn {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 16px 28px rgba(17, 35, 30, 0.18);
    }

/* --- Hiệu ứng phồng --- */
@keyframes bubblePulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }

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

.social-fixed-left .item {
    position: relative;
    transition: transform 0.25s ease;
    animation: bubblePulse 2.5s infinite ease-in-out;
}

    .social-fixed-left .item::before {
        content: "";
        position: absolute;
        inset: -4px;
        border-radius: inherit;
        border: 1px solid rgba(255, 255, 255, 0.24);
        animation: bubbleRipple 2.5s infinite ease-out;
    }
@keyframes bubbleRipple {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }

    70% {
        transform: scale(1.9);
        opacity: 0;
    }

    100% {
        transform: scale(1.9);
        opacity: 0;
    }
}
.social-fixed-left .item:hover {
    transform: translateY(-3px);
}

.social-fixed-left .item img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    animation: wobbleRotate 2s infinite ease-in-out;
}

/* --- Icon xoay nhẹ kiểu rung --- */
@keyframes wobbleRotate {
    0% {
        transform: rotate(0deg);
    }

    15% {
        transform: rotate(-12deg);
    }

    30% {
        transform: rotate(12deg);
    }

    45% {
        transform: rotate(-10deg);
    }

    60% {
        transform: rotate(10deg);
    }

    75% {
        transform: rotate(-5deg);
    }

    100% {
        transform: rotate(0deg);
    }
}
.item.fb {
    background: #1877f2;
}

.item.zalo {
    background: #0a7cff;
}

.item.whatsapp {
    background: #25d366;
}

.item.call {
    background: #e5533d;
}

.toggle-btn {
    position: absolute;
    top: -42px;
    right: 2px;
    width: 28px;
    height: 28px;
    padding: 0;
    border: 0;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.94) !important;
    box-shadow: 0 8px 18px rgba(18, 35, 31, 0.14);
}

#toggleBtn {
    opacity: 0;
    transition: opacity 0.25s ease;
}

.social-fixed-left:hover #toggleBtn {
    opacity: 1;
}

.floating-open-btn {
    display: none;
    position: fixed;
    left: max(12px, calc((100vw - var(--container-max)) / 2 + 12px));
    bottom: 92px;
    border: 0;
    color: #fff;
    background: var(--color-primary);
}

.back-to-top {
    right: 24px;
    bottom: 24px;
    color: #fff !important;
    background: var(--color-primary) !important;
    border: 0 !important;
    box-shadow: 0 16px 28px rgba(19, 39, 34, 0.18);
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDownFade {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(24px);
    }
}

.items.show {
    animation: slideUpFade 0.35s ease forwards;
}

.items.hide {
    animation: slideDownFade 0.35s ease forwards;
}

@media (max-width: 1199.98px) {
    .site-header {
        width: calc(100% - 20px);
    }

    .site-header__brand {
        border-right: 0;
    }

    .site-dropdown-panel {
        min-width: 260px;
    }
}

@media (min-width: 1400px) {
    .nav-item1 > .dropdown-menu.dropdown-menu-columns {
        width: min(620px, calc(100vw - 48px));
        grid-template-columns: repeat(2, minmax(240px, 1fr));
        transform: translateX(-30%);
    }
}

@media (max-width: 991.98px) {
    .site-header {
        margin-top: 8px;
        border-radius: 12px;
    }

    .site-navbar {
        min-height: 68px;
        padding: 0.75rem 1rem !important;
    }

    .logo-mobile {
        margin: 0 auto;
    }

    .site-mobile-actions {
        margin-left: auto;
    }

    .Content-Pm {
        padding-top: 82px;
    }

    .navbar-nav {
        flex-direction: column;
        align-items: stretch;
        gap: 0.2rem;
        padding-top: 0.75rem;
    }

    .navbar-nav .nav-link,
    .navbar-nav .nav-item > .nav-link {
        justify-content: flex-start;
        width: 100%;
        min-height: 42px;
    }

    .dropdown-menu {
        min-width: auto;
    }

    .dropdown-submenu .dropdown-menuSub {
        display: none !important;
    }

    .site-footer {
        margin-top: 3rem;
        border-radius: 16px 16px 0 0;
    }
}

@media (max-width: 767.98px) {
    .Content-Pm {
        padding-top: 78px;
    }

    .search-overlay .close-btn {
        top: 18px;
        right: 20px;
    }

    .search-box {
        top: 20%;
        padding: 0.9rem 1rem;
        border-radius: 20px;
    }

    .search-box input {
        font-size: 1rem;
    }

    .social-fixed-left,
    .floating-open-btn {
        left: 14px;
        bottom: 86px;
    }

    #toggleBtn {
        opacity: 1;
    }

    .footer-custom {
        text-align: center;
    }

    .payment-icons {
        justify-content: center;
    }
}

/* Fashion storefront header/footer */
:root {
    --color-primary: #183d33;
    --color-primary-dark: #102b24;
    --color-accent: #7a9c59;
    --color-text: #222222;
    --color-text-soft: #666666;
    --color-border: #eeeeee;
    --color-surface-alt: #faf8f1;
}

body.site-shell {
    color: var(--color-text);
    background: #ffffff;
}

.site-header {
    position: fixed;
    top: 0;
    left: auto;
    width: 100%;
    max-width: none;
    margin: 0;
    border: 0;
    border-bottom: 1px solid #eeeeee;
    border-radius: 0;
    background: #ffffff !important;
    box-shadow: none;
    transform: none;
    backdrop-filter: none;
    z-index: 2100;
}

#mainNavbar.scrolled,
#mainNavbar.visible,
#mainNavbar.fading,
#mainNavbar:not(.fading) {
    margin-top: 0;
    opacity: 1;
    box-shadow: none;
    transform: none;
}

.site-header__brand {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
    border-right: 0;
}

.site-header__nav {
    flex: 1 1 auto;
    width: auto;
    max-width: none;
}

.site-brand {
    min-height: 92px;
    padding: 0 28px !important;
}

.site-brand img,
.navbar-brand img {
    max-height: 54px;
}

.site-brand__text {
    color: #183d33;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 2px;
}

.site-navbar {
    min-height: 92px;
    padding: 0 6% !important;
}

.site-nav-list {
    justify-content: center !important;
    width: auto !important;
    gap: 24px;
}

.navbar-nav .nav-link,
.navbar-nav .nav-item > .nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: auto;
    padding: 10px 0 14px;
    color: #333333 !important;
    background: transparent;
    border-radius: 0;
    font-size: 15px;
    font-weight: 600;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-item:hover > .nav-link,
.navbar-nav > .nav-link.active,
.navbar-nav > .nav-item.active > .nav-link,
.navbar-nav > .nav-item > .nav-link.active {
    color: #7a9c59 !important;
    background: transparent;
    box-shadow: none;
}

.navbar-nav > .nav-link.active::after,
.navbar-nav > .nav-item.active > .nav-link::after,
.navbar-nav > .nav-item > .nav-link.active::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 4px;
    width: 26px;
    height: 2px;
    border-radius: 999px;
    background: #7a9c59;
    transform: translateX(-50%);
}

.site-search-inline {
    display: flex;
    align-items: center;
    width: 42px;
    min-width: 42px;
    height: 42px;
    overflow: hidden;
    border: 1px solid transparent;
    border-radius: 30px;
    background: #ffffff;
    transition: width .24s ease, border-color .24s ease, box-shadow .24s ease;
}

.site-search-inline input {
    width: 0;
    min-width: 0;
    padding: 10px 0;
    border: 0;
    outline: 0;
    opacity: 0;
    color: #222222;
    background: transparent;
    font-size: 14px;
    pointer-events: none;
    transition: width .24s ease, padding .24s ease, opacity .18s ease;
}

.site-search-inline.is-open,
.site-search-inline:focus-within {
    width: 190px;
    min-width: 190px;
    border-color: #dddddd;
    box-shadow: 0 8px 20px rgba(24, 61, 51, 0.08);
}

.site-search-inline.is-open input,
.site-search-inline:focus-within input {
    width: 100%;
    padding: 10px 8px 10px 14px;
    opacity: 1;
    pointer-events: auto;
}

.site-search-inline button {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    border: 0;
    color: #183d33;
    background: transparent;
}

.site-icon-btn,
.site-icon-link,
.btn-search {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 0;
    color: #183d33;
    background: transparent;
    font-size: 20px;
    box-shadow: none !important;
}

.site-icon-btn:hover,
.site-icon-link:hover,
.btn-search:hover {
    color: #7a9c59;
    background: transparent;
}

.Content-Pm {
    padding-top: 92px;
}

.site-footer {
    margin-top: 0;
    border-radius: 0;
    background: #111111;
}

.footer-custom .container {
    max-width: none;
    padding-right: 6%;
    padding-left: 6%;
}

.footer-custom .row {
    display: grid;
    grid-template-columns: 1.2fr 1.4fr 1fr 1fr;
    gap: 35px;
    margin-right: 0;
    margin-left: 0;
}

.footer-custom .row > [class*="col-"] {
    width: auto;
    max-width: none;
    padding-right: 0;
    padding-left: 0;
}

.footer-custom h5,
.footer-custom h6,
.footer-brand-text {
    color: #d7e8c4;
}

.footer-brand-text {
    margin-bottom: 18px;
    font-size: 32px;
    font-weight: 800;
    letter-spacing: 2px;
}

.footer-custom p,
.footer-custom li,
.footer-custom a {
    color: #dddddd;
    font-size: 14px;
}

.footer-custom a:hover {
    color: #d7e8c4;
}

.footer-custom img {
    max-width: 180px;
    border-radius: 0;
}

.footer-bottom {
    margin-top: 34px;
    border-top: 1px solid #333333;
    color: #aaaaaa;
    background: transparent;
}

@media (max-width: 1199.98px) {
    .site-nav-list {
        gap: 16px;
    }

    .site-search-inline.is-open,
    .site-search-inline:focus-within {
        width: 170px;
        min-width: 170px;
    }
}

@media (max-width: 991.98px) {
    .site-header {
        width: 100%;
        margin-top: 0;
        border-radius: 0;
    }

    .site-navbar {
        min-height: 70px;
        padding: 0 16px !important;
    }

    .site-brand {
        min-height: 70px;
        padding: 0 !important;
    }

    .Content-Pm {
        padding-top: 70px;
    }

    .site-nav-list {
        align-items: stretch;
        gap: 0;
        padding: 12px 0;
    }

    .navbar-nav .nav-link,
    .navbar-nav .nav-item > .nav-link {
        padding: 12px 0;
    }

    .site-search-inline,
    .site-icon-link,
    .site-cart-btn {
        display: none;
    }

    .footer-custom .row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .footer-custom .row {
        grid-template-columns: 1fr;
    }
}
