:root {
    --border-1: #eebaa9;
    --font-3: #fff;
}

#dark-overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -50;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: var(--transition);
}

#dark-overlay.active {
    z-index: 50;
    opacity: 1;
}

header {
    width: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: var(--main-shadow);
}

#sub-header,
#main-header,
#nav-header {
    width: 100%;
    display: flex;
    justify-content: center;
}

#sub-header {
    height: 40px;
    background-color: var(--bg-1);
    background-color: #485b48;
    color: #f6f5ed;
}

#main-header {
    width: 100%;
    height: 88px;
    background-color: var(--bg-1);
}

#nav-header {
    position: relative;
    width: 100%;
    height: 48px;
    background-color: var(--bg-1);
    border-top: 1px solid var(--border-1);
}

#sub-header__inner,
#main-header__inner,
#nav-header__inner {
    width: var(--inner-width);
    display: flex;
    align-items: center;
}

#sub-header__inner,
#main-header__inner {
    justify-content: space-between;
}

#nav-header__inner {
    justify-content: center;
}

.sub-header__section {
    display: flex;
}

.sub-header__section:nth-child(1) {
    gap: 16px;
}

.sub-header__section:nth-child(2) {
    gap: 24px;
}

.sub-header__divider {
    width: 1px;
    height: 16px;
    background-color: var(--border-1);
}

.sub-header__section > a {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 400;
}

.sub-header__section > a > img {
    width: 16px;
    height: 16px;
    object-fit: contain;
    object-position: center;
}

#main-header__menu {
    width: 32px;
    height: 32px;
    display: none;
}

#main-header__menu > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

#main-header__inner > .main-logo {
    margin-right: 80px;
}

#main-header__search {
    max-width: 720px;
    height: 48px;
    flex-grow: 1;
}

#main-header__search.active {
    position: fixed;
    top: 36px;
    left: 50%;
    z-index: 100;
    transform: translateX(-50%);
    padding: 24px;
    width: var(--inner-width);
    max-width: unset;
    height: auto;
    max-height: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    background-color: var(--bg-1);
    border-radius: 8px;
}

#main-header__cart {
    margin-left: 80px;
    position: relative;
    width: 32px;
    height: 32px;
    display: flex;
}

#main-header__cart > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

#main-header__cart > span {
    position: absolute;
    bottom: -8px;
    right: -8px;
    width: 16px;
    height: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--accent-1);
    border-radius: 50%;
    font-size: 10px;
    font-weight: 700;
    color: var(--font-3);
}

.nav-header__item {
    height: 100%;
}

.nav-header__item::after {
    content: '';
    display: block;
    width: 85px;
    height: 35px;
    position: absolute;
}

.nav-header__item > a {
    padding: 0 16px;
    height: 100%;
    display: flex;
    align-items: center;
    background-color: var(--bg-1);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    transition: var(--transition);
}

.nav-header__item:nth-child(2) > a {
    /* color: #C21D26; */
    color: #ff0000;
}

.nav-header__item:nth-child(1) > a {
    font-weight: 600;
    color: var(--accent-2);
}

.nav-header__item:hover {
    background-color: var(--bg-2);
}

.nav-header__item-dropdown {
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translateY(100%);
    z-index: 50;
    padding: 16px 32px;
    width: 100%;
    display: none;
    grid-template-columns: repeat(auto-fill, minmax(100px, 275px));
    background-color: var(--bg-1);
    border-top: 1px solid var(--border-1);
    border-bottom: 1px solid var(--border-1);
}

.nav-header__item:hover .nav-header__item-dropdown {
    display: grid;
}

.nav-header__item-dropdown:hover {
    display: grid;
}

.nav-header__item-dropdown-item {
    padding: 24px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: var(--transition);
}

.nav-header__item-dropdown-item:hover {
    box-shadow: var(--main-shadow);
}

.nav-header__item-dropdown-item > img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    object-position: center;
}

.nav-header__item-dropdown-item > h4 {
    font-size: 18px;
    font-weight: 600;
}

.nav-header__item-dropdown-item > p {
    font-size: 14px;
    font-weight: 400;
    color: var(--font-2);
}

#mobile-nav {
    position: fixed;
    top: 0;
    left: -100%;
    z-index: 100;
    width: 320px;
    height: 100vh;
    overflow-y: auto;
    background-color: var(--bg-1);
    transition: var(--transition);
}

body:has(#wpadminbar) #mobile-nav {
    top: 46px;
}

#mobile-nav.active {
    left: 0;
}

.mobile-nav__section:nth-child(1) {
    padding: 16px 16px 0 16px;
    width: 100%;
}

#mobile-nav__close {
    width: 32px;
    height: 32px;
}

#mobile-nav__close > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

#mobile-nav__categories {
    width: 100%;
    display: flex;
    flex-direction: column;
    list-style-type: none;
}

#mobile-nav__categories > li {
    padding: 16px 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    border-bottom: 1px solid var(--border-1);
}

#mobile-nav__categories > li:last-child {
    border-bottom: none;
}

#mobile-nav__categories > li > a {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#mobile-nav__categories > li > a > span {
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
}

#mobile-nav__categories > li:first-child > a > span {
    font-weight: 600;
    color: var(--accent-2);
}

#mobile-nav__categories > li > a > img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    object-position: center;
}

#mobile-nav__categories > li.active > a > img {
    transform: rotate(180deg);
}

.mobile-nav__subcategories {
    width: 100%;
    display: none;
    flex-direction: column;
    gap: 16px;
    list-style: none;
}

#mobile-nav__categories > li.active .mobile-nav__subcategories {
    display: flex;
}

.mobile-nav__subcategories > li {
    width: 100%;
}

.mobile-nav__subcategories > li > a {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
}

.mobile-nav__subcategories > li > a > img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
}

.mobile-nav__subcategories > li > a > span {
    font-size: 16px;
    font-weight: 500;
}

.mobile-nav__section:nth-child(2) {
    padding: 24px 16px 48px 16px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    background-color: var(--bg-2);
}

.mobile-nav__section:nth-child(2) a {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 15px;
    font-weight: 400;
}

.mobile-nav__section:nth-child(2) a > img {
    width: 16px;
    height: 16px;
    object-fit: contain;
    object-position: center;
}

.mobile-nav__section-divider {
    width: 100%;
    height: 1px;
    background-color: var(--border-1);
}

.mobile-nav__section-row {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 24px;
}

#mini-cart {
    /* border: 1px solid #EEBAA9; */
    position: fixed;
    top: 0;
    right: 0;
    z-index: 100;
    transform: translateX(100%);
    width: min(95%, 600px);
    height: 100%;
    max-height: 100%;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    background-color: var(--bg-1);
    transition: var(--transition);
    box-shadow: 1px 1px 2px black;
}

#mini-cart.active {
    transform: translateX(0);
}

#mini-cart__main {
    padding: 24px;
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

#mini-cart__heading {
    padding-bottom: 24px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-1);
}

#mini-cart__heading > span {
    font-size: 21px;
    font-weight: 500;
}

#mini-cart__close {
    width: 32px;
    height: 32px;
}

#mini-cart__close > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

#mini-cart__content {
    width: 100%;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.mini-cart__empty {
    padding: 24px 0;
    font-size: 16px;
    font-weight: 400;
    text-align: center;
}

.mini-cart__item {
    padding: 24px 0;
    width: 100%;
    display: flex;
    gap: 16px;
    border-bottom: 1px solid var(--border-1);
}

.mini-cart__item-img {
    width: 64px;
    height: 64px;
}

.mini-cart__item-img > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.mini-cart__item-content {
    width: calc(100% - 64px - 16px);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mini-cart__item-title {
    font-size: 16px;
    font-weight: 400;
}

.mini-cart__item-variation {
    font-size: 13px;
    font-weight: 400;
}

.mini-cart__item-variation > span {
    font-weight: 600;
}

.mini-cart__item-row {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mini-cart__item-quantity {
    width: 119px;
    height: 48px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    border: 1px solid var(--border-1);
    border-radius: 2px;
}

.mini-cart__item-quantity-decrease,
.mini-cart__item-quantity-increase {
    width: 24px;
    height: 24px;
}

.mini-cart__item-quantity-decrease > img,
.mini-cart__item-quantity-increase > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.mini-cart__item-quantity-value {
    font-size: 14px;
    font-weight: 600;
}

.mini-cart__item-price {
    font-size: 16px;
    font-weight: 700;
}

.mini-cart__item-remove {
    width: fit-content;
    font-size: 13px;
    font-weight: 600;
    color: var(--font-2);
}

#mini-cart__shipping {
    margin-top: 24px;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

#mini-cart__shipping.hidden {
    display: none;
}

#mini-cart__shipping > span {
    font-size: 16px;
    font-weight: 400;
}

#mini-cart__shipping > span:nth-child(2) {
    font-weight: 500;
}

#mini-cart__footer {
    padding: 24px;
    width: 100%;
    border-top: 1px solid var(--border-1);
}

#mini-cart__footer.hidden {
    display: none;
}

.mini-cart__footer-button {
    width: 100%;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background-color: var(--accent-1);
    box-shadow: var(--button-shadow);
    border-radius: 2px;
}

.mini-cart__footer-button > span {
    font-size: 15px;
    font-weight: 600;
    color: var(--font-3);
}

.mini-cart__footer-button > img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    object-position: center;
}

/* MEDIA QUERIES */
@media screen and (max-width: 1023px) {
    #sub-header {
        display: none;
    }

    #main-header {
        padding: 16px 0;
        height: auto;
    }

    #main-header__inner {
        flex-wrap: wrap;
        gap: 16px;
    }

    #main-header__menu {
        order: 1;
        display: flex;
    }

    #main-header__inner > .main-logo {
        order: 2;
        margin-right: 0;
    }

    #main-header__cart {
        order: 3;
        margin-left: 0;
    }

    #main-header__search {
        order: 4;
        width: 100%;
        max-width: 100%;
        height: 40px;
    }

    #nav-header {
        display: none;
    }
}

@media screen and (max-width: 1200px) {
    .nav-header__item > a {
        font-size: 11px;
    }
}

@media screen and (max-width: 1666px) {
    .nav-header__item > a {
        font-size: 12px;
    }
}

@media screen and (max-width: 1487px) {
    .nav-header__item > a {
        font-size: 11px;
    }
}

@media screen and (max-width: 1398px) {
    .nav-header__item > a {
        font-size: 10px;
    }
}

@media screen and (max-width: 1308px) {
    .nav-header__item > a {
        font-size: 9.5px;
    }
}

@media screen and (max-width: 1264px) {
    .nav-header__item > a {
        font-size: 9px;
    }
}

@media screen and (max-width: 1219px) {
    .nav-header__item > a {
        font-size: 8px;
    }
}

@media screen and (max-width: 1129px) {
    .nav-header__item > a {
        font-size: 7.5px;
    }
}

@media screen and (max-width: 1084px) {
    .nav-header__item > a {
        font-size: 7px;
    }
}

@media screen and (max-width: 1039px) {
    .nav-header__item > a {
        font-size: 6.5px;
    }
}

#dark-overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -50;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: var(--transition);
}

#dark-overlay.active {
    z-index: 50;
    opacity: 1;
}

header {
    width: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: var(--main-shadow);
}

#sub-header,
#main-header,
#nav-header {
    width: 100%;
    display: flex;
    justify-content: center;
}

#sub-header {
    height: 40px;
    background-color: var(--bg-1);
    background-color: #485b48;
    color: #f6f5ed;
}

#main-header {
    width: 100%;
    height: 88px;
    background-color: var(--bg-1);
}

#nav-header {
    position: relative;
    width: 100%;
    height: 48px;
    background-color: var(--bg-1);
    border-top: 1px solid var(--border-1);
}

#sub-header__inner,
#main-header__inner,
#nav-header__inner {
    width: var(--inner-width);
    display: flex;
    align-items: center;
}

#sub-header__inner,
#main-header__inner {
    justify-content: space-between;
}

#nav-header__inner {
    justify-content: center;
}

.sub-header__section {
    display: flex;
}

.sub-header__section:nth-child(1) {
    gap: 16px;
}

.sub-header__section:nth-child(2) {
    gap: 24px;
}

.sub-header__divider {
    width: 1px;
    height: 16px;
    background-color: var(--border-1);
}

.sub-header__section > a {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 400;
}

.sub-header__section > a > img {
    width: 16px;
    height: 16px;
    object-fit: contain;
    object-position: center;
}

#main-header__menu {
    width: 32px;
    height: 32px;
    display: none;
}

#main-header__menu > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

#main-header__inner > .main-logo {
    margin-right: 80px;
}

#main-header__search {
    max-width: 720px;
    height: 48px;
    flex-grow: 1;
}

#main-header__search.active {
    position: fixed;
    top: 36px;
    left: 50%;
    z-index: 100;
    transform: translateX(-50%);
    padding: 24px;
    width: var(--inner-width);
    max-width: unset;
    height: auto;
    max-height: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    background-color: var(--bg-1);
    border-radius: 8px;
}

#main-header__cart {
    margin-left: 80px;
    position: relative;
    width: 32px;
    height: 32px;
    display: flex;
}

#main-header__cart > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

#main-header__cart > span {
    position: absolute;
    bottom: -8px;
    right: -8px;
    width: 16px;
    height: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--accent-1);
    border-radius: 50%;
    font-size: 10px;
    font-weight: 700;
    color: var(--font-3);
}

.nav-header__item {
    height: 100%;
}

.nav-header__item::after {
    content: '';
    display: block;
    width: 85px;
    height: 35px;
    position: absolute;
}

.nav-header__item > a {
    padding: 0 16px;
    height: 100%;
    display: flex;
    align-items: center;
    background-color: var(--bg-1);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    transition: var(--transition);
}

.nav-header__item:nth-child(2) > a {
    /* color: #C21D26; */
    color: #ff0000;
}

.nav-header__item:nth-child(1) > a {
    font-weight: 600;
    color: var(--accent-2);
}

.nav-header__item:hover {
    background-color: var(--bg-2);
}

.nav-header__item-dropdown {
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translateY(100%);
    z-index: 50;
    padding: 16px 32px;
    width: 100%;
    display: none;
    grid-template-columns: repeat(auto-fill, minmax(100px, 275px));
    background-color: var(--bg-1);
    border-top: 1px solid var(--border-1);
    border-bottom: 1px solid var(--border-1);
}

.nav-header__item:hover .nav-header__item-dropdown {
    display: grid;
}

.nav-header__item-dropdown:hover {
    display: grid;
}

.nav-header__item-dropdown-item {
    padding: 24px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: var(--transition);
}

.nav-header__item-dropdown-item:hover {
    box-shadow: var(--main-shadow);
}

.nav-header__item-dropdown-item > img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    object-position: center;
}

.nav-header__item-dropdown-item > h4 {
    font-size: 18px;
    font-weight: 600;
}

.nav-header__item-dropdown-item > p {
    font-size: 14px;
    font-weight: 400;
    color: var(--font-2);
}

#mobile-nav {
    position: fixed;
    top: 0;
    left: -100%;
    z-index: 100;
    width: 320px;
    height: 100vh;
    overflow-y: auto;
    background-color: var(--bg-1);
    transition: var(--transition);
}

body:has(#wpadminbar) #mobile-nav {
    top: 46px;
}

#mobile-nav.active {
    left: 0;
}

.mobile-nav__section:nth-child(1) {
    padding: 16px 16px 0 16px;
    width: 100%;
}

#mobile-nav__close {
    width: 32px;
    height: 32px;
}

#mobile-nav__close > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

#mobile-nav__categories {
    width: 100%;
    display: flex;
    flex-direction: column;
    list-style-type: none;
}

#mobile-nav__categories > li {
    padding: 16px 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    border-bottom: 1px solid var(--border-1);
}

#mobile-nav__categories > li:last-child {
    border-bottom: none;
}

#mobile-nav__categories > li > a {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#mobile-nav__categories > li > a > span {
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
}

#mobile-nav__categories > li:first-child > a > span {
    font-weight: 600;
    color: var(--accent-2);
}

#mobile-nav__categories > li > a > img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    object-position: center;
}

#mobile-nav__categories > li.active > a > img {
    transform: rotate(180deg);
}

.mobile-nav__subcategories {
    width: 100%;
    display: none;
    flex-direction: column;
    gap: 16px;
    list-style: none;
}

#mobile-nav__categories > li.active .mobile-nav__subcategories {
    display: flex;
}

.mobile-nav__subcategories > li {
    width: 100%;
}

.mobile-nav__subcategories > li > a {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
}

.mobile-nav__subcategories > li > a > img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
}

.mobile-nav__subcategories > li > a > span {
    font-size: 16px;
    font-weight: 500;
}

.mobile-nav__section:nth-child(2) {
    padding: 24px 16px 48px 16px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    background-color: var(--bg-2);
}

.mobile-nav__section:nth-child(2) a {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 15px;
    font-weight: 400;
}

.mobile-nav__section:nth-child(2) a > img {
    width: 16px;
    height: 16px;
    object-fit: contain;
    object-position: center;
}

.mobile-nav__section-divider {
    width: 100%;
    height: 1px;
    background-color: var(--border-1);
}

.mobile-nav__section-row {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 24px;
}

#mini-cart {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 100;
    transform: translateX(100%);
    width: min(95%, 450px);
    height: 100%;
    max-height: 100%;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    background-color: var(--bg-1);
    transition: var(--transition);
}

#mini-cart.active {
    transform: translateX(0);
}

#mini-cart__main {
    padding: 24px;
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

#mini-cart__heading {
    padding-bottom: 24px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-1);
}

#mini-cart__heading > span {
    font-size: 21px;
    font-weight: 500;
}

#mini-cart__close {
    width: 32px;
    height: 32px;
}

#mini-cart__close > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

#mini-cart__content {
    width: 100%;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.mini-cart__empty {
    padding: 24px 0;
    font-size: 16px;
    font-weight: 400;
    text-align: center;
}

.mini-cart__item {
    padding: 24px 0;
    width: 100%;
    display: flex;
    gap: 16px;
    border-bottom: 1px solid var(--border-1);
}

.mini-cart__item-img {
    width: 64px;
    height: 64px;
}

.mini-cart__item-img > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.mini-cart__item-content {
    width: calc(100% - 64px - 16px);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mini-cart__item-title {
    font-size: 16px;
    font-weight: 400;
}

.mini-cart__item-variation {
    font-size: 13px;
    font-weight: 400;
}

.mini-cart__item-variation > span {
    font-weight: 600;
}

.mini-cart__item-row {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mini-cart__item-quantity {
    width: 119px;
    height: 48px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    border: 1px solid var(--border-1);
    border-radius: 2px;
}

.mini-cart__item-quantity-decrease,
.mini-cart__item-quantity-increase {
    width: 24px;
    height: 24px;
}

.mini-cart__item-quantity-decrease > img,
.mini-cart__item-quantity-increase > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.mini-cart__item-quantity-value {
    font-size: 14px;
    font-weight: 600;
}

.mini-cart__item-price {
    font-size: 16px;
    font-weight: 700;
}

.mini-cart__item-remove {
    width: fit-content;
    font-size: 13px;
    font-weight: 600;
    color: var(--font-2);
}

#mini-cart__shipping {
    margin-top: 24px;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

#mini-cart__shipping.hidden {
    display: none;
}

#mini-cart__shipping > span {
    font-size: 16px;
    font-weight: 400;
}

#mini-cart__shipping > span:nth-child(2) {
    font-weight: 500;
}

#mini-cart__footer {
    padding: 24px;
    width: 100%;
    border-top: 1px solid var(--border-1);
}

#mini-cart__footer.hidden {
    display: none;
}

.mini-cart__footer-button {
    width: 100%;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background-color: var(--accent-1);
    box-shadow: var(--button-shadow);
    border-radius: 2px;
}

.mini-cart__footer-button > span {
    font-size: 15px;
    font-weight: 600;
    color: var(--font-3);
}

.mini-cart__footer-button > img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    object-position: center;
}

.mini-cart__footer-button:hover {
    background-color: #cbd5c4;
}

/* MEDIA QUERIES */
@media screen and (max-width: 1023px) {
    #sub-header {
        display: none;
    }

    #main-header {
        padding: 16px 0;
        height: auto;
    }

    #main-header__inner {
        flex-wrap: wrap;
        gap: 16px;
    }

    #main-header__menu {
        order: 1;
        display: flex;
    }

    #main-header__inner > .main-logo {
        order: 2;
        margin-right: 0;
    }

    #main-header__cart {
        order: 3;
        margin-left: 0;
    }

    #main-header__search {
        order: 4;
        width: 100%;
        max-width: 100%;
        height: 40px;
    }

    #nav-header {
        display: none;
    }
}

@media screen and (max-width: 1200px) {
    .nav-header__item > a {
        font-size: 11px;
    }
}

@media screen and (max-width: 1666px) {
    .nav-header__item > a {
        font-size: 12px;
    }
}

@media screen and (max-width: 1487px) {
    .nav-header__item > a {
        font-size: 11px;
    }
}

@media screen and (max-width: 1398px) {
    .nav-header__item > a {
        font-size: 10px;
    }
}

@media screen and (max-width: 1308px) {
    .nav-header__item > a {
        font-size: 9.5px;
    }
}

@media screen and (max-width: 1264px) {
    .nav-header__item > a {
        font-size: 9px;
    }
}

@media screen and (max-width: 1219px) {
    .nav-header__item > a {
        font-size: 8px;
    }
}

@media screen and (max-width: 1129px) {
    .nav-header__item > a {
        font-size: 7.5px;
    }
}

@media screen and (max-width: 1084px) {
    .nav-header__item > a {
        font-size: 7px;
    }
}

@media screen and (max-width: 1039px) {
    .nav-header__item > a {
        font-size: 6.5px;
    }
}

button {
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
}

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