.th-topbar {
    background: var(--th-dark-deep);
    color: #fff;
}

.th-topbar-inner {
    min-height: 36px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    font-size: 13px;
}

.th-topbar-message {
    display: flex;
    align-items: center;
    gap: 8px;
}

.th-topbar-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #52d38a;
}

.th-topbar-link {
    color: rgba(255,255,255,.72);
}

.th-site-header {
    background: #fff;
    position: relative;
    z-index: 100;
}

.th-header-row {
    min-height: 82px;

    display: grid;
    grid-template-columns:
        auto
        minmax(300px, 1fr)
        auto;

    align-items: center;
    gap: 32px;
}

.th-brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: var(--th-dark);
}

.th-brand-name {
    font-size: 30px;
    font-weight: 900;
    letter-spacing: -.8px;
}

.th-brand-bag {
    position: relative;

    width: 25px;
    height: 27px;

    display: block;

    border-radius: 6px 6px 9px 9px;

    background:
        linear-gradient(
            145deg,
            #2678ef,
            #1257ca
        );
}

.th-brand-bag::before {
    content: "";

    position: absolute;

    width: 10px;
    height: 8px;

    left: 50%;
    top: -5px;

    transform: translateX(-50%);

    border:
        2px solid
        var(--th-blue);

    border-bottom: 0;

    border-radius: 7px 7px 0 0;
}

.th-brand-bag span {
    position: absolute;

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: rgba(255,255,255,.92);

    left: 50%;
    top: 10px;

    transform: translateX(-50%);
}

.th-header-search {
    width: 100%;
    max-width: 560px;

    justify-self: center;

    display: grid;
    grid-template-columns: 1fr 48px;

    min-height: 48px;

    border:
        1px solid
        var(--th-border);

    border-radius: 11px;

    background: #fff;

    overflow: hidden;

    transition: border-color .18s ease;
}

.th-header-search:focus-within {
    border-color:
        rgba(23,105,232,.55);
}

.th-header-search input {
    min-width: 0;

    padding: 0 15px;

    border: 0;

    background: transparent;

    color: var(--th-text);

    font-size: 13px;
}

.th-header-search button {
    border: 0;
    background: transparent;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--th-muted);
}

.th-header-search svg,
.th-header-icon svg {
    width: 20px;
    height: 20px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.th-header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.th-header-icon {
    min-height: 46px;

    display: inline-flex;
    align-items: center;
    gap: 7px;

    padding: 0 10px;

    border:
        1px solid
        var(--th-border);

    border-radius: 10px;

    color: var(--th-dark);

    font-size: 13px;
    font-weight: 700;

    position: relative;
}

.th-header-icon:hover {
    border-color:
        rgba(23,105,232,.3);

    color: var(--th-blue);
}

.th-cart-count {
    min-width: 17px;
    height: 17px;

    padding: 0 4px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 20px;

    background: var(--th-blue);
    color: #fff;

    font-size: 9px;
}

.th-nav-bar {
    border-top:
        1px solid
        var(--th-border);

    border-bottom:
        1px solid
        var(--th-border);

    background: #fff;
}

.th-nav-menu {
    min-height: 48px;

    margin: 0;
    padding: 0;

    list-style: none;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;

    overflow-x: auto;
    scrollbar-width: none;
}

.th-nav-menu::-webkit-scrollbar {
    display: none;
}

.th-nav-menu li {
    flex: 0 0 auto;
}

.th-nav-menu a {
    color: #475467;

    font-size: 13px;
    font-weight: 700;

    white-space: nowrap;
}

.th-nav-menu a:hover {
    color: var(--th-blue);
}

.th-menu-toggle {
    display: none;

    width: 40px;
    height: 40px;

    border:
        1px solid
        var(--th-border);

    border-radius: 10px;

    background: #fff;

    padding: 9px;
}

.th-menu-toggle span {
    display: block;

    height: 2px;

    margin: 4px 0;

    border-radius: 4px;

    background: var(--th-dark);
}


/* Footer */

.th-site-footer {
    margin-top: 40px;

    background: var(--th-dark-deep);
    color: #fff;
}

.th-footer-main {
    padding-block: 58px;

    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 60px;
}

.th-brand-footer {
    color: #fff;
}

.th-footer-brand p {
    max-width: 340px;

    margin: 17px 0;

    color: rgba(255,255,255,.58);

    font-size: 13px;
}

.th-footer-dev {
    color: rgba(255,255,255,.4);
    font-size: 10px;
}

.th-footer-dev a {
    color: rgba(255,255,255,.75);
    font-weight: 700;
}

.th-footer-column h4 {
    margin: 0 0 16px;

    color: #fff;

    font-size: 13px;
}

.th-footer-column ul {
    margin: 0;
    padding: 0;

    list-style: none;
}

.th-footer-column li {
    margin: 8px 0;
}

.th-footer-column a {
    color: rgba(255,255,255,.56);
    font-size: 13px;
}

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

.th-footer-bottom {
    border-top:
        1px solid
        rgba(255,255,255,.08);
}

.th-footer-bottom-inner {
    min-height: 62px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    color: rgba(255,255,255,.4);

    font-size: 10px;
}

.th-footer-payment {
    display: flex;
    align-items: center;
    gap: 7px;
}

.th-footer-payment span {
    padding: 4px 7px;

    border:
        1px solid
        rgba(255,255,255,.12);

    border-radius: 5px;

    color: rgba(255,255,255,.68);

    font-size: 8px;
}

/* Footer readability */

.th-footer-brand p {
    font-size: 13px;
    line-height: 1.9;
}

.th-footer-column h4 {
    font-size: 15px;
    margin-bottom: 18px;
}

.th-footer-column a {
    font-size: 13px;
    line-height: 1.9;
}

.th-footer-column li {
    margin: 10px 0;
}

.th-footer-dev {
    font-size: 13px;
}

.th-footer-bottom-inner {
    font-size: 13px;
}
