/* BASE
================================================== */

body {
    color: #4c4c4c;
    background: #fff;
}

body,
input,
button,
textarea {
    font-family: 'Open Sans', Arial, sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

p,
ul,
ol,
table,
figure {
    margin-bottom: 1.5rem;
}

a,
input,
textarea,
button {
    transition: color 0.3s, background-color 0.3s, border-color 0.3s, opacity 0.3s;
}

a {
    text-decoration: none;
    color: #62521f;
}

a:hover {
    color: #4c4c4c;
}

*,
*:focus {
    outline: none !important;
}

img {
    max-width: 100%;
    height: auto;
}

figure img {
    width: 100%;
}

.font-yellow{
    color: #c2a120;
}

/* LAYOUT
================================================== */

/*
	Header
*/

.header {
    position: sticky;
    display: flex;
    align-items: center;
    z-index: 1010;
    top: 0;
    right: 0;
    left: 0;
    height: 4rem;
    background: #fff;
    transition: box-shadow 0.3s;
}

.header > .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__logo {
    height: 3rem;
}

.header__logo img,
.header__logo svg {
    width: auto;
    height: 100%;
}

.header--sticky {
    box-shadow: 0 0 1rem rgba(0 0 0 / 20%);
}

/*
    Navigation
*/

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 1.25rem;
    height: 1rem;
    margin-left: 2rem;
    transition: all 0.3s;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: #000;
}

.main-menu {
    display: flex;
    align-items: center;
}

.main-menu ul {
    margin-bottom: 0;
    padding: 0;
    list-style-type: none;
}

.main-menu li {
    position: relative;
}

.main-menu li a {
    position: relative;
    display: block;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #62521f;
}

.main-menu li a.btn {
    text-transform: uppercase;
    color: #fff;
    background: #c1a01e;
}

.main-menu li:hover a.btn {
    text-decoration: none;
    color: #fff;
    background: #62521f;
}

.main-menu > ul {
    display: flex;
    align-items: center;
}

.main-menu > ul > li:hover > a,
.main-menu > ul > li.active > a {
    text-decoration: underline;
    color: #c1a01e;
}

.main-menu ul ul {
    position: absolute;
    z-index: 1;
    visibility: hidden;
    top: 100%;
    left: 0;
    min-width: 15rem;
    text-align: left;
    background: #fff;
    opacity: 0;
    transition: all 0.3s;
    box-shadow: 0 1rem 1rem -0.5rem rgba(0 0 0 / 20%);
    border-radius: 0 0 1.5rem 1.5rem;
}

.main-menu ul ul li:hover > a,
.main-menu ul ul li.active > a {
    color: #c1a01e;
}

.main-menu li:hover > ul {
    visibility: visible;
    opacity: 1;
}

/*
	Footer
*/

.footer__top {
    padding-top: 2rem;
    padding-bottom: 0.5rem;
    color: #fff;
    background: #62521f;
}

.footer__top a {
    color: #fff;
}

.footer__top a:hover {
    color: rgba(255, 255, 255, 0.6);
}

.footer__logo img {
    height: 3rem;
}

.copyright {
    padding-top: 0.5rem;
    padding-bottom: 1.5rem;
    text-align: center;
    font-size: 0.9375rem;
    color: #62521f;
}

.copyright p,
.copyright ul {
    margin: 0;
}

.copyright ul {
    padding: 0;
    list-style-type: none;
}

.copyright ul li {
    margin-top: 0.25rem;
}

.copyright a {
    text-decoration: underline;
    color: inherit;
}

/*
    Offcanvas
*/

.offcanvas {
    max-width: 80%;
    font-size: 1.125rem;
    background: #c1a01e;
}

.offcanvas ul {
    padding: 0;
    list-style-type: none;
}

.offcanvas ul a {
    display: flex;
    align-items: center;
    min-height: 3rem;
    padding: 0.25rem 0;
    color: #fff;
}

.offcanvas ul a i {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 2.5rem;
    height: 2.5rem;
    font-size: 0.75rem;
    margin-left: auto;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 100%;
    cursor: pointer;
    transform: rotate(-90deg);
}

.offcanvas ul a i:after {
    position: absolute;
    content: '';
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg) translate(1px, -6px);
    transform-origin: center center 0;
}

.offcanvas ul ul {
    margin-left: 1.5rem;
    font-size: 1rem;
}

.offcanvas-body > ul ul {
    display: none;
}

.offcanvas-body > ul li.active > ul {
    display: block;
}

.offcanvas ul li.active > a > i {
    transform: rotate(0);
}

/* SECTIONS
================================================== */

.section {
    padding-top: 3rem;
    padding-bottom: 1.5rem;
}

/*
    Headline
*/

.headline {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    color: #fff;
    background: linear-gradient(to right, #a98909 0%, #c2a120 100%);
}

.headline--search {
    padding-bottom: 8rem;
}

.headline--back {
    padding-bottom: 3rem;
}

/*
    Section Split
*/

.section-split {
    position: relative;
    font-size: 1.5rem;
    color: #62521f;
    background: #eaeaea;
}

.section-split__highlighted {
    position: relative;
    background: #c2a120;
}

.section-split__title {
    font-size: 2rem;
    color: #62521f;
}

.section-split__logo:hover {
    opacity: 0.6;
}

.section-split__logo img {
    height: 4rem;
}

/*
    Hero
*/

.hero {
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
    color: #fff;
}

.hero:before {
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: linear-gradient(to right, #a98909 0%, #c2a120 100%);
}

.hero > * {
    position: relative;
    z-index: 2;
}

.hero__image {
    display: block;
    width: 100%;
    height: auto;
    margin-bottom: 1.5rem;
    transform: translate(-2rem, -3rem);
    transition: transform 2s;
}

.hero .swiper-button-next,
.hero .swiper-button-prev {
    color: #fff;
}

.hero .swiper {
    overflow: initial;
}

.hero .swiper-slide-active .hero__image {
    transform: translate(0, 0);
}

/*
    Details Bar
*/

.details-bar {
    position: relative;
    padding-bottom: 1.5rem;
    background-position: center center;
    background-size: cover;
}

.details-bar:after {
    position: absolute;
    content: '';
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #62521f;
    opacity: 0.9;
}

.details-bar > * {
    position: relative;
    z-index: 2;
}

.button-bar__images {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 3rem;
    transform: translate(0, -1rem);
}

.button-bar__images figure {
    position: relative;
    overflow: hidden;
    width: 8rem;
    margin-bottom: 0;
    border-radius: 1.5rem;
}

.button-bar__images figure:first-child {
    margin-top: 3rem;
}

.button-bar__images figure:after {
    display: block;
    content: '';
    padding-bottom: 100%;
}

.button-bar__images figure img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.button-bar__btn,
.button-bar__btn:hover {
    color: #fff;
}

.button-bar__btn {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
}

.button-bar__btn i {
    color: #c2a120;
}

.button-bar__btn:hover {
    opacity: 0.7;
}

/* MODULES
================================================== */

/*
    Carousels
*/

.swiper-pagination {
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.swiper-pagination-bullet {
    transition: all 0.3s;
}

.swiper-button-next,
.swiper-button-prev {
    color: #c1a01e;
    transition: opacity 0.3s;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    opacity: 0.6;
}

/*
    Article Box
*/

.article-box {
    position: relative;
    padding: 1.5rem;
    color: #62521f;
}

.article-box:before {
    position: absolute;
    content: '';
    z-index: 1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #f4f4f4;
    border-radius: 1rem;
}

.article-box > * {
    position: relative;
    z-index: 2;
}

.article-box figure {
    overflow: hidden;
    margin: -1.5rem -1.5rem 1.5rem;
    border-radius: 1rem;
}

/*
    Product Box
*/

.product-list {
    row-gap: 5rem;
}

.product-box {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    font-size: 1.25rem;
    color: #62521f;
    background: #fff;
    border-radius: 1rem;
    transition: all 0.3s;
}

.product-box .badges {
    position: absolute;
    z-index: 0;
    top: 0;
    right: 0;
    margin: 0;
    transform: translate(0, -50%);
}

.product-box figure {
    overflow: hidden;
    margin: 0;
    border-radius: 1rem;
}

.product-box__content {
    flex: 1 0 0;
    padding: 1.5rem;
}

.product-box__content > *:last-child {
    margin-bottom: 0;
}

.product-box__content li svg {
    fill: #62521f;
}

.product-box__title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.product-box__footer {
    display: flex;
    align-items: center;
    transform: translate(0, 50%);
}

.product-box__footer .btn {
    margin-left: auto;
    padding: 0.5rem 1rem;
    font-size: 1.125rem;
}

.product-box:hover {
    color: #62521f;
    box-shadow: 0 0 1rem rgba(0 0 0 / 20%);
}

.product-box:hover .btn {
    border-color: #62521f;
    color: #fff;
    background: #62521f;
}

/*
    Map
*/

.map iframe {
    display: block;
    width: 100%;
    height: 30rem;
    max-height: 70vh;
}

/*
    Search Form
*/

.search-form-wrapper {
    margin-top: -6.375rem;
}

.search-form {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #9a9a9a;
    background: #fff;
    border-radius: 1rem;
}

.search-form__header {
    display: flex;
    flex-wrap: nowrap;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #ccc;
    list-style-type: none;
}

.search-form__header li {
    flex: 1 1 0;
}

.search-form li:not(:last-child) {
    border-right: 1px solid #ccc;
}

.search-form__header label {
    display: flex;
    width: 100%;
    height: 100%;
}

.search-form__header label input {
    position: absolute;
    overflow: hidden;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.search-form__header label span {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 0.5rem 1rem;
    text-align: left;
    color: #3f3f3f;
    background: #f4f4f4;
    transition: all 0.3s;
}

.search-form__header label span svg {
    flex: 0 0 auto;
    width: 2.75rem;
    height: 2.75rem;
    margin-right: 1rem;
    transition: fill 0.3s;
}

.search-form__header label input:checked + span {
    color: #c2a120;
    background: #fff;
}

.search-form label input:checked + span svg {
    fill: #c2a120;
}

.search-form__body {
    padding: 1rem;
}

.search-form__footer {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    border-top: 1px solid #ccc;
}

/*
    Image with Logo
*/

.image-with-logo {
    position: relative;
}

.image-with-logo figure {
    overflow: hidden;
    border-radius: 1.25rem;
}

.image-with-logo__logo {
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 50%;
    transform: translate(-50%, 0);
}

.image-with-logo__logo:after {
    display: block;
    content: '';
    padding-bottom: 100%;
}

.image-with-logo__logo img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/*
    Panel
*/

.panel {
    padding: 1.5rem;
    border-radius: 1.25rem;
}

/* COMPONENTS
================================================== */

/*
	Buttons
*/

.btn {
    padding: 0.75rem 2rem;
    border-width: 2px;
    font-size: 1.125rem;
    font-weight: 400;
    box-shadow: none;
    border-radius: 0.75rem;
}

.btn:focus,
.btn:active:focus {
    box-shadow: 0 0 0 0.25rem rgba(0 0 0 / 10%);
}

.btn-primary,
.btn-primary:focus {
    border-color: #c1a01e;
    color: #fff;
    background-color: #c1a01e;
}

.btn-primary:hover,
.btn-primary:first-child:active,
.btn-primary:hover:active,
.btn-primary:focus:active {
    border-color: #62521f;
    color: #fff;
    background-color: #62521f;
}

.btn--white,
.btn--white:focus {
    border-color: #fff;
    color: #c1a01e;
    background-color: #fff;
}

.btn--white:hover,
.btn--white:first-child:active,
.btn--white:hover:active,
.btn--white:focus:active {
    border-color: #62521f;
    color: #fff;
    background-color: #62521f;
}

.btn--primary-dark,
.btn--primary-dark:focus {
    border-color: #62521f;
    color: #fff;
    background-color: #62521f;
}

.btn--primary-dark:hover,
.btn--primary-dark:first-child:active,
.btn--primary-dark:hover:active,
.btn--primary-dark:focus:active {
    border-color: #413614;
    color: #fff;
    background-color: #413614;
}

/*
	Form components
*/

.form-control,
.form-select {
    padding: 0.75rem 1rem;
    border-radius: 1rem;
}

.form-control,
.form-control:focus,
.form-select,
.form-select:focus {
    border-color: #9a9a9a;
    background-color: #fff;
}

.form-control:focus,
.form-select:focus {
    box-shadow: 0 0 0 0.25rem rgba(0 0 0 / 10%);
}

.form-control::placeholder {
    color: #999;
}

.form-control--gray,
.form-control--gray:focus,
.form-select--gray,
.form-select--gray:focus {
    background-color: #ebebeb;
}

.form-control--gray::placeholder {
    color: #777;
}

.form-check {
    padding-left: 2.5em;
}

.form-check a {
    text-decoration: underline;
    color: inherit;
}

.form-check a:hover {
    text-decoration: none;
}

.form-check .form-check-input {
    width: 1.75em;
    height: 1.75em;
    margin-left: -2.5em;
    margin-top: -0.125em;
    border-width: 1px;
    border-color: #9a9a9a;
    background-color: #fff;
}

.form-check .form-check-input[type='checkbox'] {
    border-radius: 0.375rem;
}

.form-check .form-check-input:focus {
    box-shadow: 0 0 0 0.25rem rgba(0 0 0 / 10%);
}

.form-check .form-check-input:checked {
    border-color: #c2a120;
    background-color: #c2a120;
}

.form-check--gray .form-check-input {
    background-color: #ebebeb;
}

/*
    Titles
*/

.page-title {
    font-size: 2.25rem;
}

.section-title {
    font-size: 2.25rem;
    color: #62521f;
}

.article-title {
    font-size: 2rem;
}

/*
    Badges
*/

.badges {
    display: flex;
    gap: 0.75rem;
    padding: 0;
    list-style-type: none;
}

.badges li {
    padding: 0.25rem 1rem;
    font-size: 1.125rem;
    color: #4c4c4c;
    background: #d1d1d1;
    border-radius: 1rem;
}

.badges li.highlighted {
    color: #fff;
    background: #c22020;
}

/*
    Price
*/

.price {
    position: relative;
}

.price span,
.price ins {
    display: flex;
    align-items: center;
    min-height: 3rem;
    text-decoration: none;
    padding: 0.25rem 1rem;
    border: 2px solid #c1a01e;
    font-size: 1.25rem;
    color: #fff;
    background: #c1a01e;
    border-radius: 0.75rem;
}

.price del {
    position: absolute;
    bottom: 100%;
    right: 0;
    margin-bottom: -0.5rem;
    padding: 0.125rem 0.75rem;
    font-size: 1rem;
    color: #fff;
    background: #c22020;
    border-radius: 0.75rem;
}

/*
    Lists
*/

.list-social {
    display: flex;
    padding: 0;
    gap: 2rem;
    list-style-type: none;
}

.list-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    font-size: 1.5rem;
    color: #fff;
    border-radius: 100%;
    filter: grayscale(1);
    transition: all .3s;
}

.list-social a:hover {
    color: #fff;
    filter: grayscale(0);
}

.list-social .icon-facebook {
    background: linear-gradient(to bottom, #1777ef 0%, #2921a4 100%);
}

.list-social .icon-instagram {
    background: linear-gradient(to bottom, #ffdd7d 0%, #f83a8e 50%, #6b4ae8 100%);
}

.list-social .icon-tiktok {
    background: linear-gradient(to bottom, #23004a 0%, #020005 100%);
}

.list-social .icon-youtube {
    background: linear-gradient(to bottom, #fd0000 0%, #a20000 100%);
}

.list-with-icon {
    padding: 0;
    list-style-type: none;
}

.list-with-icon__item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.list-with-icon svg {
    width: 1.25em;
    height: 1.25em;
    margin-right: .75em;
    object-fit: contain;
}

/*
    Pagination
*/

.pagination {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.pagination a,
.pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    color: #62521f;
    border-radius: 1rem;
}

.pagination a:hover {
    color: #c2a120;
}

.pagination span {
    color: #fff;
    background: #62521f;
}

/*
    Gallery
*/

.gallery-wrapper {
    margin-top: -1.5rem;
}

.gallery-item {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 1rem;
}

.gallery-item:after {
    display: block;
    content: '';
    padding-bottom: 65%;
}

.gallery-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* GLOBALS
================================================== */

.bg--gray {
    background: #f4f4f4;
}

.bg--primary {
    background: #c2a120;
}

.c--secondary {
    color: #62521f;
}

.shrinked-bg {
    position: relative;
}

.shrinked-bg:before {
    position: absolute;
    content: '';
    z-index: 0;
    top: 3rem;
    right: 0;
    bottom: 3rem;
    left: 0;
    background: #f4f4f4;
}

.shrinked-bg > * {
    position: relative;
    z-index: 1;
}

.z--10 {
    z-index: 10;
}

[data-parallax] {
    transition: transform 0.6s;
}

/* RESPONSIVE
================================================== */

/*
	XS
*/

@media screen and (max-width: 575px) {
    .hero .swiper-button-next,
    .hero .swiper-button-prev {
        top: 8rem;
    }
}

/*
	SM and down
*/

@media screen and (max-width: 767px) {
}

/*
	MD and down
*/

@media screen and (max-width: 991px) {
}

/*
	LG and down
*/

@media screen and (max-width: 1199px) {
}

/*
	MD and up
*/

@media screen and (min-width: 768px) {
    .section-split__highlighted:before {
        position: absolute;
        content: '';
        top: 0;
        right: 100%;
        bottom: 0;
        width: 2000px;
        background: #c2a120;
    }
}

/*
	LG and up
*/

@media screen and (min-width: 992px) {
    .copyright ul {
        display: flex;
        gap: 1rem;
    }

    .copyright ul li {
        margin-top: 0;
    }

    .hero {
        padding-bottom: 5rem;
    }

    .hero:before {
        bottom: 3rem;
    }

    .hero .container {
        position: relative;
        align-items: center;
        display: flex;
        min-height: 20rem;
    }

    .hero__image {
        position: absolute;
        z-index: 2;
        top: 0;
        left: 0;
        width: auto;
        height: calc(100% + 3rem);
    }

    .hero__icon {
        position: absolute;
        z-index: 1;
        top: 50%;
        left: 50%;
        width: 15rem;
        height: 15rem;
        object-fit: contain;
        transform: translate(-100%, -60%);
    }

    .headline--back + .section {
        margin-top: -3rem;
    }

    .article-box:before {
        right: 20%;
    }

    .article-box figure {
        margin: 0 0 -1rem;
    }

    .details-bar {
        padding-bottom: 0;
    }

    .button-bar__images {
        margin: -2rem 0;
        transform: none;
    }

    .button-bar__btn {
        margin-left: auto;
    }
}

/*
    XL and up
*/

@media screen and (min-width: 1200px) {
    .header {
        height: 6rem;
    }

    .header__logo {
        height: 3.5rem;
    }

    .footer__logo img {
        height: 4.375rem;
    }

    .copyright ul {
        gap: 0;
    }

    .copyright li:not(:last-child):after {
        content: '|';
        padding: 0 0.5rem;
    }

    .copyright a {
        text-decoration: none;
    }

    .section-split__logo img {
        height: 6rem;
    }

    .search-form {
        flex-direction: row;
    }

    .search-form__header {
        flex-direction: column;
        width: 11rem;
        border-bottom: 0;
        border-right: 1px solid #ccc;
    }

    .search-form__body {
        flex: 1 1 0;
    }

    .search-form__footer {
        border-top: 0;
        border-left: 1px solid #ccc;
    }

    .search-form li:not(:last-child) {
        border-right: 0;
        border-bottom: 1px solid #ccc;
    }
}

/*
	XXL and up
*/

@media screen and (min-width: 1400px) {
    html {
        font-size: calc(1600vw / 100 / 16);
    }

    body {
        font-size: 1.3rem;
    }

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: calc(1524vw / 16);
    }

    .header {
        height: 7.5rem;
    }

    .header__logo {
        height: 4rem;
    }

    .main-menu > ul > li {
        margin-left: 1rem;
    }

    .main-menu li a {
        font-size: 1.25rem;
    }

    .footer {
        font-size: 1.125rem;
    }

    .headline--back {
        padding-bottom: 5rem;
    }

    .headline--back + .section {
        margin-top: -4rem;
    }

    .hero {
        padding-bottom: 7rem;
        font-size: 1.625rem;
    }

    .hero .container {
        min-height: 28rem;
    }

    .hero__image {
        height: calc(100% + 7rem);
    }

    .product-list {
        row-gap: 8rem;
    }

    .product-box {
        font-size: 1.625rem;
    }

    .product-box__title {
        font-size: 2rem;
    }

    .product-box__footer .btn {
        font-size: 1.625rem;
    }

    .button-bar__btn {
        font-size: 3.5rem;
        margin-right: auto;
    }

    .button-bar__images figure {
        width: 10rem;
    }

    .button-bar__images figure:first-child {
        margin-top: 6rem;
    }

    .swiper-button-prev,
    .swiper-rtl .swiper-button-next {
        left: 2rem;
    }

    .swiper-button-next,
    .swiper-rtl .swiper-button-prev {
        right: 2rem;
    }

    .search-form-wrapper {
        margin-top: -8.125rem;
        font-size: 1.25rem;
    }

    .search-form__header {
        width: 14rem;
    }

    .search-form__header label span {
        padding-left: 1.5rem;
    }

    .search-form__header label span svg {
        margin-right: 1.5rem;
    }

    .search-form__body,
    .search-form__footer {
        padding-left: 3rem;
        padding-right: 3rem;
    }

    .panel {
        padding: 2rem 2.5rem;
    }

    .page-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 3.625rem;
    }

    .article-title {
        font-size: 2.75rem;
    }

    .btn {
        font-size: 1.625rem;
        border-radius: 1.25rem;
    }

    .badges li {
        padding: 0.5rem 1.5rem;
        font-size: 1.625rem;
    }

    .price span,
    .price ins {
        font-size: 2.25rem;
        padding-bottom: 0;
        padding-top: 0;
        border-radius: 1.25rem;
    }

    .price del {
        font-size: 1.25rem;
    }

    .pagination a,
    .pagination span {
        width: 4rem;
        height: 4rem;
        border-radius: 1.5rem;
    }

    .text--sm {
        font-size: 1.125rem;
    }
}

/*
	XXXL and up
*/

@media screen and (min-width: 1600px) {
    html {
        font-size: 16px;
    }

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1524px;
    }
}

@media print {
    .header,
    .footer {
        display: none;
    }
}