site-header,
site-header2,
site-footer {
    display: block;
}

.site-header-bar {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 15px 5%;
    background: var(--secondary-color, #1b5e20);
}

.site-header-bar .logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 26px;
    font-weight: 800;
    letter-spacing: 1px;
    text-decoration: none;
}

.tb-brand-mark {
    display: grid;
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    color: var(--secondary-color, #1b5e20);
    background: #fff;
    border-radius: 50% 50% 50% 12%;
    place-items: center;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: -.02em;
    transform: rotate(-10deg);
}

.tb-brand-mark > span {
    font-family: Georgia, "Times New Roman", serif;
    transform: rotate(10deg);
}

.tb-brand-name {
    color: inherit;
    font: inherit;
    letter-spacing: inherit;
}

.site-header-bar .desktop-menu {
    display: none;
    align-items: center;
    gap: 35px;
}

.site-header-bar .nav-link {
    position: relative;
    padding-bottom: 5px;
    color: rgba(255, 255, 255, .86);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .5px;
    text-decoration: none;
    text-transform: uppercase;
    transition: color .3s ease;
}

.site-header-bar .nav-link::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #a5d6a7;
    content: "";
    transition: width .3s ease;
}

.site-header-bar .nav-link:hover,
.site-header-bar .nav-link:focus-visible {
    color: #fff;
}

.site-header-bar .nav-link:hover::after,
.site-header-bar .nav-link:focus-visible::after {
    width: 100%;
}

.site-header-bar .nav-btn {
    padding: 10px 24px;
    color: var(--secondary-color, #1b5e20);
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .1);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .5px;
    text-decoration: none;
    text-transform: uppercase;
    transition: transform .3s ease, box-shadow .3s ease, background-color .3s ease;
}

.site-header-bar .nav-btn:hover,
.site-header-bar .nav-btn:focus-visible {
    background: #e8f5e9;
    box-shadow: 0 6px 15px rgba(0, 0, 0, .2);
    transform: translateY(-2px);
}

.site-header-bar .hamburger {
    display: grid;
    padding: .35rem;
    color: #fff;
    background: transparent;
    border: 0;
    cursor: pointer;
    font-size: 26px;
    place-items: center;
}

.site-menu-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1500;
    visibility: hidden;
    background: rgba(0, 0, 0, .5);
    opacity: 0;
    transition: opacity .35s ease, visibility .35s ease;
}

.site-menu-backdrop.active {
    visibility: visible;
    opacity: 1;
}

.site-mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 2000;
    display: flex;
    width: min(80%, 320px);
    height: 100vh;
    padding: 30px 20px;
    flex-direction: column;
    background: var(--secondary-color, #1b5e20);
    box-shadow: -5px 0 20px rgba(0, 0, 0, .3);
    transition: right .4s cubic-bezier(.77, 0, .175, 1);
}

.site-mobile-menu.active {
    right: 0;
}

.site-mobile-menu .mobile-close-btn {
    align-self: flex-end;
    margin-bottom: 30px;
    padding: .3rem;
    color: #fff;
    background: transparent;
    border: 0;
    cursor: pointer;
    font-size: 30px;
}

.site-mobile-menu a {
    padding: 15px 0;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    transition: padding-left .3s ease, color .3s ease;
}

.site-mobile-menu a:hover,
.site-mobile-menu a:focus-visible {
    padding-left: 10px;
    color: #a5d6a7;
}

.site-category-strip {
    width: 100%;
    padding: 20px 0;
    overflow-x: auto;
    background: linear-gradient(to bottom, var(--secondary-color, #1b5e20), #4caf50);
    box-shadow: 0 5px 15px rgba(0, 0, 0, .15);
    cursor: grab;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.site-category-strip::-webkit-scrollbar {
    display: none;
}

.site-category-strip:active {
    cursor: grabbing;
}

.site-category-strip .marquee-track {
    display: flex;
    width: max-content;
}

.site-category-strip .circle-item {
    display: flex;
    width: 90px;
    margin: 0 10px;
    flex-direction: column;
    align-items: center;
    color: #fff;
    text-decoration: none;
    user-select: none;
}

.site-category-strip .circle-img {
    width: 80px;
    height: 80px;
    margin-bottom: 8px;
    padding: 3px;
    object-fit: cover;
    background: rgba(255, 255, 255, .1);
    border: 2px solid rgba(255, 255, 255, .4);
    border-radius: 50%;
    pointer-events: none;
    transition: transform .3s ease, border-color .3s ease;
}

.site-category-strip .circle-item:hover .circle-img,
.site-category-strip .circle-item:focus-visible .circle-img {
    border-color: #fff;
    transform: scale(1.08);
}

.site-category-strip .circle-item span {
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    pointer-events: none;
}

.site-footer {
    display: flex;
    min-height: 150px;
    padding: 35px 20px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #fff;
    background: #102f22;
    text-align: center;
}

.site-footer .footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 1px;
    text-decoration: none;
}

.site-footer .tb-brand-mark {
    color: #102f22;
    background: #fff;
}

.site-footer .footer-text {
    margin: 0;
    color: rgba(255, 255, 255, .72);
    font-size: 13px;
    line-height: 1.6;
}

@media (min-width: 992px) {
    .site-header-bar .desktop-menu {
        display: flex;
    }

    .site-header-bar .hamburger {
        display: none;
    }
}

@media (max-width: 520px) {
    .site-header-bar .logo {
        gap: 8px;
        font-size: 15px;
        letter-spacing: .07em;
    }

    .tb-brand-mark {
        width: 34px;
        height: 34px;
        flex-basis: 34px;
        font-size: 9px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .site-header-bar *,
    .site-mobile-menu,
    .site-menu-backdrop,
    .site-category-strip * {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}
