:root {
    --bs-font-sans-serif: "Poppins", "Segoe UI", "Roboto", "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif;
    --custom-font: "Gotham", "Segoe UI", "Roboto", "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif;
    --bs-body-font-family: var(--custom-font);
    --color-transparent: transparent;
    --color-background: #efefef;
    --color-primary: #f00;
    --color-secondary: #595757;
    --color-black: #000;
    --color-white: #fff;
    --color-gray: #666;
    --color-gray-light: #9fa0a0;
}

@font-face {
    font-family: "Gotham";
    src:
        url("../fonts/gothamthin-webfont.woff2") format("woff2"),
        url("../fonts/gothamthin-webfont.woff") format("woff");
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: "Gotham";
    src:
        url("../fonts/gothamthinitalic-webfont.woff2") format("woff2"),
        url("../fonts/gothamthinitalic-webfont.woff") format("woff");
    font-weight: 100;
    font-style: italic;
}

@font-face {
    font-family: "Gotham";
    src:
        url("../fonts/gothamxlight-webfont.woff2") format("woff2"),
        url("../fonts/gothamxlight-webfont.woff") format("woff");
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: "Gotham";
    src:
        url("../fonts/gothamxlightitalic-webfont.woff2") format("woff2"),
        url("../fonts/gothamxlightitalic-webfont.woff") format("woff");
    font-weight: 200;
    font-style: italic;
}

@font-face {
    font-family: "Gotham";
    src:
        url("../fonts/gothamlight-webfont.woff2") format("woff2"),
        url("../fonts/gothamlight-webfont.woff") format("woff");
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: "Gotham";
    src:
        url("../fonts/gothamlightitalic-webfont.woff2") format("woff2"),
        url("../fonts/gothamlightitalic-webfont.woff") format("woff");
    font-weight: 300;
    font-style: italic;
}

@font-face {
    font-family: "Gotham";
    src:
        url("../fonts/gothambook-webfont.woff2") format("woff2"),
        url("../fonts/gothambook-webfont.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    /* font-display: swap; */
}

@font-face {
    font-family: "Gotham";
    src:
        url("../fonts/gothambookitalic-webfont.woff2") format("woff2"),
        url("../fonts/gothambookitalic-webfont.woff") format("woff");
    font-weight: normal;
    font-style: italic;
    /* font-display: swap; */
}

@font-face {
    font-family: "Gotham";
    src:
        url("../fonts/gothammedium-webfont.woff2") format("woff2"),
        url("../fonts/gothammedium-webfont.woff") format("woff");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "Gotham";
    src:
        url("../fonts/gothammediumitalic-webfont.woff2") format("woff2"),
        url("../fonts/gothammediumitalic-webfont.woff") format("woff");
    font-weight: 500;
    font-style: italic;
}

@font-face {
    font-family: "Gotham";
    src:
        url("../fonts/gothambold-webfont.woff2") format("woff2"),
        url("../fonts/gothambold-webfont.woff") format("woff");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "Gotham";
    src:
        url("../fonts/gothambolditalic-webfont.woff2") format("woff2"),
        url("../fonts/gothambolditalic-webfont.woff") format("woff");
    font-weight: 700;
    font-style: italic;
}

@font-face {
    font-family: "Gotham";
    src:
        url("../fonts/gothamblack-webfont.woff2") format("woff2"),
        url("../fonts/gothamblack-webfont.woff") format("woff");
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: "Gotham";
    src:
        url("../fonts/gothamblackitalic-webfont.woff2") format("woff2"),
        url("../fonts/gothamblackitalic-webfont.woff") format("woff");
    font-weight: 800;
    font-style: italic;
}

@font-face {
    font-family: "Gotham";
    src:
        url("../fonts/gothamultra-webfont.woff2") format("woff2"),
        url("../fonts/gothamultra-webfont.woff") format("woff");
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: "Gotham";
    src:
        url("../fonts/gothamultraitalic-webfont.woff2") format("woff2"),
        url("../fonts/gothamultraitalic-webfont.woff") format("woff");
    font-weight: 900;
    font-style: italic;
}

body {
    overflow-x: hidden;
    background-color: var(--color-background);
}

.action {
    box-shadow: none !important;
    font-weight: 300 !important;
    display: inline-block !important;
    text-decoration: none;
    border-radius: 2.5rem;
    padding: 1rem 2.5rem;
    font-size: 1.5rem;
    width: auto !important;
    margin: 0 !important;
    border: 1px solid;

    &.primary {
        background-color: var(--color-primary);
        border-color: var(--color-primary);

        &:is(:hover, :focus, :active, :focus-within, :focus-visible) {
            background-color: var(--color-white);
            color: var(--color-primary);
        }

        &.login,
        &.submit,
        &.checkout {
            background-color: var(--color-black);
            border-color: var(--color-black);
            color: var(--color-white) !important;

            &:is(:hover, :focus, :active, :focus-within, :focus-visible) {
                background-color: transparent;
                border-color: var(--color-black);
                color: var(--color-black) !important;
            }
        }
    }

    &.secondary {
        background-color: transparent;
        border-color: var(--color-black);
        color: var(--color-black) !important;

        &:is(:hover, :focus, :active, :focus-within, :focus-visible) {
            background-color: var(--color-black);
            color: var(--color-white) !important;
        }
    }

    &.link,
    &.remind {
        &,
        &:is(:hover, :focus, :active, :focus-within, :focus-visible) {
            background-color: transparent !important;
            border-color: transparent !important;
            color: var(--color-primary) !important;
        }
    }

    &.more {
        background-color: var(--color-black);
        border-color: var(--color-black);
        color: var(--color-white) !important;

        &:is(:hover, :focus, :active, :focus-within, :focus-visible) {
            background-color: var(--color-white);
            color: var(--color-black) !important;
        }
    }

    &.close {
        margin-left: auto;
    }

    &:is(:hover, :focus, :active, :focus-within, :focus-visible) {
        outline: none;
    }
}

.btn-rounded {
    border-radius: 999px;
}

.hero-text {
    font-size: 2rem;
    font-weight: bold;
}

.hero-subtext {
    color: var(--color-gray);
}

.form-create-account,
.form-login {
    input {
        &:not([type="checkbox"], [type="hidden"]) {
            height: 4.5rem;
            font-size: 1.6rem;
            padding: 0.5rem 1rem;
            border-radius: 0.5rem;
        }
    }
}

.form-login {
    .actions-toolbar {
        display: flex;
        flex-direction: column-reverse;

        /*
        .primary {
            a.action {
            }
        }
        */

        .secondary {
            text-align: right;

            a.action {
                margin-top: 0;
            }
        }
    }
}

.form-create-account {
    display: flex;
    flex-direction: column;

    .fieldset {
        &.create {
            legend {
                &,
                & + br {
                    opacity: 0;
                    display: none;
                    visibility: hidden;
                }
            }

            &.account {
                order: 1;
                &:after {
                    opacity: 0;
                    display: none;
                    content: unset;
                    visibility: hidden;
                }
            }

            &.info {
                order: 2;
            }

            .actions-toolbar {
                order: 3;
            }
        }
    }
}

#minicart-content-wrapper {
    padding-inline: 2rem;

    .minicart-items-wrapper {
        height: auto !important;

        .minicart-items {
            .product-item {
                & > .product {
                    display: grid;
                    grid-template-columns: 1fr 1fr;
                    &::before {
                        content: unset;
                    }
                    .product-item-photo {
                    }
                    .product-item-details {
                        padding-left: 0;

                        .actions {
                            display: flex;
                            justify-content: flex-end;
                            .primary {
                                display: none;
                            }
                        }
                    }
                }
            }
        }
    }
}

.breadcrumbs {
    .items {
        .item {
            &.home {
                a {
                    color: var(--color-gray-light);
                }
            }

            &:not(:has(a)) {
                color: var(--color-secondary);
            }
        }
    }
}

.page-header {
    padding: 1rem 0;
    background-color: var(--color-white);
    box-shadow: 0px 2px 4px 0px var(--color-black) 26;

    .header.content {
        padding: 0;
        display: flex;
        gap: 1.25rem;
        align-items: start;
        justify-content: space-between;

        .dropdown-toggle::after {
            display: none;
        }

        .navbar {
            order: 1;

            .navbar-toggler {
                border-color: var(--color-black);

                &:is(:hover, :focus, :active, :focus-within, :focus-visible) {
                    background: var(--color-transparent);
                    border-color: var(--color-primary);
                }
            }

            .navbar-collapse {
                margin-left: auto;
                margin-right: auto;
                justify-content: center;

                .navbar-nav {
                    .nav-item {
                        margin-bottom: 0;

                        .nav-link {
                            font-size: 1.4rem;
                            color: var(--color-black);

                            &:is(:hover, :focus, :active, :focus-within, :focus-visible) {
                                color: var(--color-primary);
                            }
                        }
                    }
                }
            }
        }

        .block-search {
            order: 2;
            width: auto;

            .user-search {
                .btn {
                    padding: 0;
                    font-size: 2rem;
                    color: var(--color-black);
                    &:is(:hover, :focus, :active, :focus-within, :focus-visible) {
                        box-shadow: none !important;
                        background: none !important;
                        border: none !important;
                    }
                }

                .dropdown-menu {
                    padding: 0;
                    li {
                        margin-bottom: 0;
                    }

                    &.show {
                        right: 0 !important;
                        left: unset !important;
                        border-color: var(--color-black);
                        overflow: hidden;
                    }
                }
                .control,
                input {
                    border: none;
                }
            }
        }

        .minicart-wrapper {
            order: 3;
            margin: 0;

            .action.showcart:before {
                color: var(--color-black);
            }
        }

        .user-actions {
            order: 4;

            .dropdown {
                .dropdown-toggle {
                    &,
                    &:is(:hover, :focus, :active, :focus-within, :focus-visible) {
                        transition: all 1s ease-in-out 0s;
                        box-shadow: none;
                        color: var(--color-black);
                        font-size: 1rem;
                        padding: 0;
                    }
                }

                .dropdown-menu {
                    padding: 0;

                    li {
                        margin-bottom: 0;
                    }
                }
            }
        }

        .compare.wrapper {
            order: 5;
        }
    }
}

.content-heading {
    &::before {
        content: "";
        background: unset;
    }
}
.info-main,
.tcl-main,
.about-main,
.blocks-banner:has(.info-main),
.blocks-banner:has(.tcl-main),
.blocks-banner:has(.about-main) {
    min-height: 750px !important;
    max-height: none !important;
    background-color: transparent !important;
}

.cms-home {
    .blocks-banner {
        max-height: 600px;
    }
}

.about-main {
    position: relative;
    display: flex;
    align-items: center;

    .about-banner-img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        aspect-ratio: 16/9;
        z-index: 0;
    }
    .content {
        z-index: 1;
        position: relative;

        .title {
            font-size: 4.5rem;
        }

        .info {
            font-size: 2rem;
        }

        &:not(:last-child) {
            margin-bottom: 10rem;
        }
    }
}

.tcl-main {
    background-color: var(--color-black) !important;

    .content {
        .title {
            font-size: 4rem;
        }

        .info {
            font-size: 1.6rem;
        }
    }
}

.info-main {
    .info-main-detail {
        width: 100%;
        min-height: 450px;
        border-radius: 1rem;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: var(--color-white) !important;

        img {
            aspect-ratio: auto;
        }
    }
}

.page-main {
    .product-item-meta {
        margin-bottom: 1.5rem;
        padding-block: 1.5rem;
        border-block: 2px solid var(--color-background);

        .product-meta-info {
            list-style: disc;
            text-align: left;
            font-size: 1.75rem;
        }
    }
    .carousel {
        .carousel-item {
            position: relative;

            img {
                min-height: 400px;
                max-height: 700px;
                object-fit: cover;
                transition: all 1s ease-in-out 0s;
            }

            /* &:is(:hover, :focus, :active, :focus-within, :focus-visible) {
                img {
                    transform: scale(1.1);
                    filter: brightness(0.7);
                    transition: all 1s ease-in-out 0s;
                }
            } */
        }

        .carousel-indicators {
            [data-bs-target] {
                width: 1.5rem;
                height: 1.5rem;
                aspect-ratio: 1;
                border-radius: 50%;
                box-shadow: none;
                background-color: #d9d9d9;
            }

            .active {
                background-color: var(--color-primary);
            }
        }
    }

    .swatch-attribute {
        &:not(:last-child) {
            margin-bottom: 2rem;
        }

        .swatch-attribute-options {
            margin: 0;
            gap: 2rem;
            display: flex;
            align-items: center;
            justify-content: center;

            .swatch-option {
                margin: 0;
                width: 3rem;
                height: 3rem;
                aspect-ratio: 1;
                padding: 0.375rem;
                border-radius: 100%;
                color: var(--color-secondary);
                background-color: var(--color-white);
                border: 1px solid var(--color-secondary);
                outline: 1px solid var(--color-secondary);

                &:is(.selected, :hover, :focus, :active, :focus-within, :focus-visible) {
                    transition: all 1s ease-in-out 0s;
                    color: var(--color-primary);
                    border: 1px solid var(--color-primary);
                    outline: 1px solid var(--color-primary);
                }
            }
        }
    }

    .content-heading {
        .title {
            font-size: 3.5rem;
            font-weight: 400;
        }

        .info {
            font-size: 2.5rem;
        }
    }

    .blocks-banner {
        background-color: var(--color-white);
        position: relative;
        width: 100%;

        .banner-background-grid {
            position: absolute;
            top: 0;
            left: 0;
            z-index: 0;
            width: 100%;
            height: 100%;
        }

        .block-banner {
            &.home-main {
                z-index: 1;
                width: 100%;
                height: auto;
                max-width: 100%;
                margin-bottom: 0;
                position: relative;

                .content {
                    width: 100%;
                    padding: 3rem;
                    background: unset;
                    position: relative;
                    inset: unset;

                    .info {
                        .sub {
                            font-weight: 400;
                            font-size: 3.5rem;
                            text-transform: lowercase;
                        }

                        .main {
                            font-weight: 800;
                            font-size: 5rem;
                            text-transform: uppercase;
                        }
                    }

                    .title {
                        font-weight: 300;
                        font-size: 2.5rem;
                    }
                }
            }
        }
    }

    .blocks-new-arrivals {
        .block-new-arrivals {
            width: 100%;
            height: 100%;
            padding: 2rem;
            border-radius: 0.5rem;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: space-around;
            background-color: var(--color-white);

            .content {
                display: flex;
                gap: 1.5rem;
                flex-direction: column;
                background-color: var(--color-transparent) !important;

                .title {
                    margin-bottom: 0;
                    font-size: 1.6rem;
                }

                .info {
                    font-size: 1.4rem;
                }
            }

            &.home-main {
                margin-bottom: 0;
            }

            &:is(:hover, :focus, :active, :focus-within, :focus-visible) {
                background-color: #9ba29c;
                transition: all 1s ease-in-out 0s;
            }

            .block-new-arrivals-link {
                img {
                    transition: all 1s ease-in-out 0s;
                }
                &:is(:hover, :focus, :active, :focus-within, :focus-visible) {
                    img {
                        transform: scale(1.1);
                        filter: brightness(0.7);
                        transition: all 1s ease-in-out 0s;
                    }
                }
            }
        }

        .block-new-arrivals-wrapper {
            display: grid;
            grid-template-rows: auto;
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
    }

    .blocks-tcl-lifestyle {
        .tabs-lifestyle {
            &.nav-tabs {
                margin-bottom: 0;
                position: relative;
                top: 5rem;
                z-index: 1;
                border: 0;

                li {
                    margin: 0;

                    .nav-link {
                        font-size: 2.25rem;
                        color: var(--color-secondary);
                        &,
                        &:is(:hover, :focus, :active, :focus-within, :focus-visible) {
                            box-shadow: none !important;
                            background: none !important;
                            border: none !important;
                        }

                        &.active {
                            color: var(--color-white);
                            font-weight: 500;
                        }
                    }
                }
            }
        }

        .carousel {
            .carousel-item {
                &::before {
                    background-image: linear-gradient(
                        to bottom,
                        rgba(255, 255, 255, 0) 0,
                        rgba(255, 255, 255, 0) 0,
                        rgba(255, 255, 255, 0) 50%,
                        rgba(255, 255, 255, 0.75) 100%
                    );
                    content: "";
                    position: absolute;
                    bottom: 0;
                    width: 100%;
                    height: 300px;
                }

                .carousel-caption {
                    color: var(--color-black);
                    position: relative;
                    bottom: 70px;
                    right: 0;
                    left: 0;

                    h5 {
                        font-size: 3rem;
                        font-weight: 500;
                    }

                    p {
                        font-size: 2rem;
                    }
                }
            }
        }
    }

    .blog-wrapper {
        .blog {
            &.card {
                img {
                    transition: all 1s ease-in-out 0s;
                }
                &:is(:hover, :focus, :active, :focus-within, :focus-visible) {
                    img {
                        transform: scale(1.1);
                        filter: brightness(0.7);
                        transition: all 1s ease-in-out 0s;
                    }
                }
                .card-meta {
                    display: flex;
                    justify-content: space-between;
                    border-bottom: 1px solid #eee;
                    padding-bottom: 0.75rem;
                }

                p {
                    font-size: 2rem;
                }
            }
        }
    }
}

.catalog-category-view {
    .columns {
        display: grid;
        grid-template-areas:
            "sidebar-main main"
            "sidebar-additional main";
        grid-template-columns: 1fr 3fr;
        grid-template-rows: auto auto;

        .sidebar,
        .column {
            padding: 0 !important;
        }

        .sidebar,
        .column {
            padding: 0 !important;
            width: 100% !important;
        }

        .sidebar-additional,
        .sidebar-main {
            padding: 2rem !important;
        }
        .sidebar-main {
            grid-area: sidebar-main;

            .filter-options-item {
                .item,
                .filter-options-title {
                    font-size: 1.4rem;
                    width: 100%;
                    gap: 1rem;
                    display: flex;
                    justify-content: space-between;
                }
                .item {
                    color: var(--color-gray-light);
                    input[type="checkbox"] {
                        accent-color: var(--color-black);
                    }
                }
                .filter-options-title {
                    color: var(--color-secondary);
                    font-weight: 600;
                }
            }
        }
        .sidebar-additional {
            grid-area: sidebar-additional;
        }
        .column {
            grid-area: main;
        }
    }
    .products-grid {
        .product-items {
            gap: 2rem;
            display: grid;
            grid-template-rows: auto;
            grid-template-columns: 1fr;
            justify-items: stretch;
            align-items: stretch;
        }
        .product-item {
            margin: 0 !important;
            padding: 0;
            width: 100% !important;

            .product-item-info {
                padding: 2.5rem;
                border-radius: 0.5rem;
                background-color: var(--color-white);
                box-shadow: none;
                align-items: center;
                justify-content: center;
                flex-direction: column;
                display: flex;

                &,
                .product-item-photo,
                .product-image-container {
                    width: 100% !important;
                }

                .product-image-wrapper {
                    min-height: 250px;
                    display: flex;
                    justify-content: center;
                    align-items: center;

                    img {
                        inset: unset;
                        position: static;
                        display: block;
                        transition: all 1s ease-in-out 0s;
                    }
                    &:is(:hover, :focus, :active, :focus-within, :focus-visible) {
                        img {
                            transform: scale(1.1);
                            filter: brightness(0.7);
                            transition: all 1s ease-in-out 0s;
                        }
                    }
                }

                .product {
                    text-align: center;
                    flex-direction: column;
                    display: flex;
                    gap: 1rem;
                    padding: 0;
                    margin: 0;

                    .product-item-name,
                    .product-item-sku {
                        a {
                            text-decoration: none;
                            text-transform: uppercase;
                            color: var(--color-black);
                        }
                    }

                    .product-item-name {
                        a {
                            font-size: 2.75rem;
                            font-weight: 600;
                        }
                    }
                    .product-item-sku {
                        a {
                            font-size: 1.8rem;
                            font-weight: 500;
                        }
                    }
                }

                .product-item-inner {
                    box-shadow: none;
                    border: none;
                    inset: unset;
                    height: unset;
                    width: unset;
                    clip: unset;
                    overflow: unset;
                    position: static;
                    display: block;
                    margin: 0;
                    padding: 0;

                    &::before {
                        content: unset;
                        background: none;
                    }
                }

                &:is(:hover, :focus, :active, :focus-within, :focus-visible) {
                    transition: all 1s ease-in-out 0s;
                    box-shadow: none;
                    margin: 0;
                    border: 0;
                }
            }
        }
    }
}

.catalog-product-view {
    .columns {
        .column {
            display: grid;
            grid-template-areas:
                "product-media product-info-main"
                "product-info-detailed product-info-detailed";
            grid-template-columns: 1fr 1fr;
            gap: 1rem;

            & > div {
                width: 100%;
            }
            .product-info-main,
            .product.media {
            }

            .product-info-main {
                grid-area: product-info-main;
                padding-inline: 3rem;
                .page-title-wrapper {
                    .page-title {
                        box-shadow: none;
                        border: none;
                        inset: unset;
                        height: unset;
                        width: unset;
                        clip: unset;
                        overflow: unset;
                        position: static;
                        display: block;
                        margin: 0;
                        padding: 0;
                        font-size: 3.2rem;
                        font-weight: 600;
                    }

                    .product-type {
                        a {
                            font-size: 1.75rem;
                            text-decoration: none;
                            color: var(--color-primary);
                        }
                    }
                }

                .product-add-form {
                    padding-top: 0;
                    margin: 1rem 0 2rem;
                    border-block: 2px solid var(--color-gray-light);

                    .swatch-opt {
                        .swatch-attribute {
                            display: flex;
                            align-items: center;
                            gap: 1rem;
                            .swatch-attribute-options {
                                justify-content: flex-start;
                            }
                        }
                    }
                }

                .product-meta-info {
                    font-size: 1.4rem;
                }

                .product-options-bottom {
                    display: flex;
                    align-items: center;
                    gap: 1rem;

                    .product-info-price {
                        margin-bottom: 0;
                        border-bottom: unset;

                        .price-wrapper {
                            padding: 0;
                            margin: 0;
                        }

                        .price-box {
                            color: var(--color-black);
                            padding-bottom: 0;
                        }
                    }

                    .product-social-links {
                        margin-left: auto;

                        .product-addto-links {
                            display: flex;
                            align-items: center;
                            gap: 1rem;

                            .active {
                                color: var(--color-primary);
                            }
                        }
                    }

                    .box-tocart {
                        padding: 0;
                        margin: 0;

                        .fieldset {
                            margin-bottom: 0;
                        }
                    }

                    .product-social-links,
                    .product-info-price,
                    .box-tocart {
                        width: auto;
                    }
                }
            }

            .product.media {
                grid-area: product-media;
                display: flex;
                flex-direction: column;
                align-items: center;
            }

            .product.info.detailed {
                grid-area: product-info-detailed;
                background-color: var(--color-black);
                padding: 5rem 3rem 3rem;
                margin-bottom: 0;

                .tabs-product-detail {
                    &.nav-tabs {
                        gap: 2rem;
                        border: 0;

                        & > li {
                            .nav-link {
                                font-size: 2.25rem;
                                letter-spacing: 1px;
                                color: var(--color-secondary);
                                &,
                                &:is(:hover, :focus, :active, :focus-within, :focus-visible) {
                                    box-shadow: none !important;
                                    background: none !important;
                                    border: none !important;
                                }

                                &.active {
                                    color: var(--color-white);
                                    font-weight: 500;
                                }
                            }

                            &:not(:first-child) {
                                list-style: disc;
                            }

                            &::marker {
                                color: var(--color-secondary);
                            }
                        }
                    }
                }

                .product-specification-section {
                    border-radius: 1rem;
                    max-width: 600px;
                    margin: auto;

                    .tabs-product-specification {
                        &.nav-tabs {
                            background-color: var(--color-background);
                            margin-bottom: 0;
                            border: 0;
                            & > li {
                                margin: 0;

                                .nav-link {
                                    font-size: 1.5rem;
                                    box-shadow: none !important;
                                    background: none !important;
                                    color: var(--color-black);
                                    border-bottom: 1px solid var(--color-transparent) !important;

                                    &:is(.active, :hover, :focus, :active, :focus-within, :focus-visible) {
                                        border-bottom: 1px solid var(--color-primary) !important;
                                        color: var(--color-primary);
                                        font-weight: 500;
                                    }
                                }
                            }
                        }
                    }
                    .tab-content {
                        background-color: var(--color-secondary);
                        padding: 2rem;

                        .table {
                            tr {
                                &:first-child {
                                    th,
                                    td {
                                        border-top: none;
                                    }
                                }
                                &:last-child {
                                    th,
                                    td {
                                        border-bottom: none;
                                    }
                                }
                            }
                            th,
                            td {
                                background-color: var(--color-secondary);
                                color: var(--color-white);
                                font-size: 1.5rem;
                                font-weight: 400;
                                padding-block: 1rem;
                            }
                        }
                    }
                }
            }
        }
    }
}

.page-footer {
    .footer.content {
        background-color: var(--color-secondary);

        .links li {
            background: var(--color-transparent);
            border: none;
        }

        p,
        li a {
            color: var(--color-white);
            font-size: 1.5rem;
            padding: 0.75rem 0;
        }
    }

    .footer-bottom {
        border-top: 1px solid #eee;
    }
}

.block.newsletter {
    input {
        margin-right: 0;
        padding: 0.5rem 0.75rem;
    }

    .btn {
        padding: 0.625rem 1.5rem;
        font-size: 1.5rem;
        line-height: 1;
    }
}

@media (max-width: 767.98px), print {
    .page-header {
        border: 0;
        margin-bottom: 0;
    }
}

@media (min-width: 768px), print {
    .page-header {
        .panel.wrapper {
            display: none;
        }
    }

    .navigation,
    .breadcrumbs,
    .page-header .header.panel,
    .header.content,
    .footer.content,
    .page-wrapper > .widget,
    .page-wrapper > .page-bottom,
    .block.category.event,
    .top-container,
    .page-main {
        max-width: 100% !important;
        padding: 0;
    }

    .page-main {
        .blocks-banner {
            overflow: hidden;
            max-height: 600px;

            .block-banner {
                &.home-main {
                    .info {
                        .sub {
                            font-size: 5rem;
                        }

                        .main {
                            font-size: 7.5rem;
                        }
                    }
                }
            }
        }

        .blocks-new-arrivals {
            .block-new-arrivals-wrapper {
                grid-template-columns: repeat(2, minmax(50%, 1fr));
            }
        }
    }

    .page-products {
        .products-grid {
            .product-items {
                grid-template-columns: repeat(2, 1fr);
            }
        }
    }
}

@media (min-width: 992px), print {
    .page-header {
        .header.content {
            gap: 1.5rem;
            align-items: center;
        }
    }
}

@media (min-width: 1024px), print {
    .page-products {
        .products-grid {
            .product-items {
                grid-template-columns: repeat(3, 1fr);
            }
        }
    }
}

@media (min-width: 769px), print {
    .navigation,
    .breadcrumbs,
    .page-header .header.panel,
    .header.content,
    .footer.content,
    .page-wrapper > .widget,
    .page-wrapper > .page-bottom,
    .block.category.event,
    .top-container,
    .page-main {
        max-width: none !important;
    }
}

