:root {
    --color-white: #FFFFFF;
    --color-black: #000000;
    --color-light: #ECECEC;
    --color-green: #375847;
    --color-dark: #3F3F3F;
    --font-judson: 'Judson', serif;
    --font-gowun-dodum: 'Gowun Dodum', sans-serif;
    --swiper-pagination-color: var(--color-light);
    --swiper-pagination-bullet-inactive-color: #ECECEC;
    --swiper-pagination-bullet-inactive-opacity: 0.5;
}

body {
    position: relative;
    background-color: var(--color-white);
    font-family: var(--font-gowun-dodum);
    font-size: 15px;
    font-weight: 300;
}

* {
    box-sizing: border-box;
    scroll-behavior: smooth;
    touch-action: manipulation;
}

b {
    font-family: var(--font-gowun-dodum);
    color: var(--color-black);
    font-weight: bold;
}

/* --------------------------------------General-------------------------------------- */

/* Sections */
section {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

section.full {
    min-height: 100vh;
}

section.start {
    align-items: start;
}

section.end {
    align-items: end;
}

/* Header */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.33rem 2.66rem;
    width: 100%;
}

header img {
    display: block;
    width: 95px;
    object-fit: contain;
}

header a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-white);
}

header a span {
    color: inherit;
    text-decoration: underline;
    font-family: var(--font-gowun-dodum);
    font-size: 1.05em;
}

header a i {
    font-size: 1.33em;
}

/* Footer */
footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4rem 4rem 0 4rem;
    background-color: var(--color-white);
}

footer img {
    display: block;
    height: 155px;
}

footer span {
    margin: 1.4rem auto 1.66rem auto;
    font-size: 13px;
}

footer span i {
    font-size: 8px;
}

.footer__swiper-cont {
    position: relative;
    display: block;
    margin-top: 4rem;
    width: 100%;
    height: 336px;
    border-top: 2px solid #3F3F3F;
    border-bottom: 2px solid #3F3F3F;
    overflow: hidden;
}

.footer__swiper-cont .swiper {
    width: 100%;
    height: 100%;
}

.footer__swiper-cont .swiper-slide {
    display: block;
    width: 100%;
    height: 100%;
}

.footer__swiper-cont .swiper-pagination-bullet {
    background-color: var(--color-dark);
    opacity: 0.5;
}

.footer__swiper-cont .swiper-pagination-bullet-active {
    background-color: var(--color-dark);
    opacity: 1;
}

.swiper-button-prev, .swiper-button-next {
    color: var(--color-green);
}

.footer__swiper-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    width: 100%;
    height: 100%;
    color: var(--color-dark);
    text-align: center;
    font-size: 1.1em;
}

.footer__swiper-item i {
    font-size: 5.6em;
}


.footer__swiper-item p {
    width: 100%;
    max-width: 250px;
}

.footer__links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-items: center;
    width: 100%;
    border-bottom: 1px solid #3F3F3F33;
}

.footer__links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: max-content;
    height: 65px;
    /* border-bottom: 1px solid #3F3F3F33; */
    color: var(--color-dark);
    font-size: 1.05em;
}

.footer__links i {
    display: none;
}

.footer__links a:last-child {
    border-bottom: none;
}

/* Stripe */
.stripe {
    padding: 2rem;
    background-color: var(--color-light);
}

/* Loader */
.loader__modal {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    padding: 0 0 2rem 0;
    width: 100%;
    height: 100vh;
    background-color: #0016240C;
}

.loader__cont {
    position: relative;
    display: inline-block;
    width: 200px;
    height: 200px;
    overflow: hidden;
    background: transparent;
}

.loader__cont span {
    position: absolute;
    left: 54px;
    bottom: 2rem;
    color: #A8A9A8;
    text-align: center;
    font-size: 1.1em;
}

.loader {
    position: relative;
    width: 100%;
    height: 100%;
    transform: translateZ(0) scale(1);
    backface-visibility: hidden;
    transform-origin: 0 0;
}

.loader div {
    box-sizing: content-box;
    position: absolute;
    border-width: 4px;
    border-style: solid;
    opacity: 1;
    border-radius: 50%;
    animation: loader-animation 1.1363636363636365s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.loader div:nth-child(1) {
    border-color: #A8A9A8;
    animation-delay: 0s;
}

.loader div:nth-child(2) {
    border-color: #0D0D13;
    animation-delay: -0.5681818181818182s;
}

#loader-text {
    animation: loader-text 1.1363636363636365s ease-in-out infinite alternate;
}

/* Preloader */
.preloader {
    position: fixed;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    align-items: center;
    justify-items: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    background-color: var(--color-green);
    cursor: none;
    z-index: 3000;
}

#preloader-logo {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    animation: logo 4.55s linear infinite forwards;
}

#preloader-text {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    opacity: 0;
    translate: 65%;
    animation: text 4.55s linear 2s infinite forwards;
}



/* ----------------------------------------Home---------------------------------------- */

.home__hero-cont {
    background-color: var(--color-black);
    height: calc(100vw * 9 / 16);
    /* Maintain a 16:9 aspect ratio */
}

.home__hero-cont video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.home__hero {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: min-content auto;
    width: 100%;
    height: 100%;
}

.home__hero-texts {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
}

.home__hero-texts h1 {
    font-family: var(--font-judson);
    font-size: 2.33em;
    font-weight: 400;
}

.home__hero-texts h3 {
    margin: 1rem 0 3rem 0;
    font-size: 1.6em;
    font-weight: 300;
}

.home__hero-texts a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 3.66rem;
    height: 55px;
    background-color: var(--color-light);
    border-radius: 16px;
    color: var(--color-black);
    font-size: 1.2em;
}

/* Configurator */
.home__product-cont {
    display: grid;
    grid-template-columns: 440px 1fr;
}

.home__product {
    display: flex;
    flex-direction: column;
    padding: 4.53rem 2.33rem 0.6rem 2.33rem;
    width: 100%;
    color: var(--color-black);
}

.home__product p {
    margin: 0.8rem 0 2.33rem 0;
    font-size: 1.2em;
}

.home__product>span {
    display: block;
    width: 100%;
    color: var(--color-dark);
    text-align: center;
    font-size: 1.05em;
}

.home__product button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0.8rem 0 1.66em 0;
    padding: 0 2.33em;
    width: 100%;
    height: 75px;
    background-color: var(--color-black);
    outline: none;
    border: none;
    border-radius: 16px;
    color: var(--color-white);
    font-size: 1.45em;
}

.home__product-title {
    margin-bottom: 20px;
}

.home__product-title h2 {
    font-family: var(--font-judson);
    font-size: 2.2em;
    font-weight: 400;
}

.home__product-title .price_container {
    font-size: 1.2em;
}

.home__product-title .small {
    font-size: .9em;
}

.home__product-selects {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-auto-rows: 55px;
    column-gap: 1.66rem;
    row-gap: 1.33rem;
    margin-bottom: 2.33em;
    padding: 0 1.66em;
    width: 100%;
}

.home__product-icons {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.home__product-icons i {
    font-size: 1.66em;
}

.home__product-icons span {
    font-size: 0.95em;
}

.home__product-selects select {
    display: block;
    padding: 0 1.45rem;
    width: 100%;
    height: 100%;
    background-color: var(--color-black);
    outline: none;
    border: 1.5px solid var(--color-black);
    border-radius: 16px;
    color: var(--color-white);
    font-size: 1.2em;
}

.home__product-selects select:has(option:checked:disabled) {
    background-color: var(--color-light);
    color: var(--color-black);
}

.home__product-links {
    display: flex;
    flex-direction: column;
    margin-top: 1.66rem;
    padding: 0 0.66rem;
    border-top: 2px solid var(--color-black);
}

.home__product-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 65px;
    border-bottom: 1px solid #3F3F3F33;
    color: var(--color-dark);
    font-size: 1.05em;
}

.home__product-links a:last-child {
    border-bottom: none;
}

.home__product-swipers {
    align-self: center;
    justify-self: center;
    position: relative;
    display: block;
    width: min(calc(100% - 12rem), calc(80vh * 4 / 3));
    height: 80vh;
    aspect-ratio: 4 / 3;
    background-color: var(--color-light);
    border-radius: 16px;
    overflow: hidden;
}

.home__product-swipers .swiper {
    width: 100%;
    height: 100%;
}

.home__product-swipers .swiper-slide {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}

.home__product-swipers img,
.home__product-swipers video {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: 16px;
}


/* Details */
.home__details {
    align-items: start;
    padding-left: 4rem;
    background-color: var(--color-black);
    color: var(--color-white);
}

.home__details h3 {
    font-family: var(--font-judson);
    font-size: 2.2em;
    margin: 4rem 0 1rem 0;
}

.home__details>p {
    font-size: 1.2em;
}

.home__details a.button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2.3rem;
    width: 100%;
    height: 75px;
    max-width: 370px;
    background-color: var(--color-white);
    border-radius: 16px;
    color: var(--color-black);
    font-size: 1.45em;
}

.home__reviews-swiper {
    position: relative;
    display: block;
    margin: 2.66rem 0 1.66rem 0;
    width: 100%;
    overflow: hidden;
}

.home__reviews-swiper .swiper {
    width: 100%;
    height: max-content;
}

.home__reviews-swiper .swiper-slide {
    display: block;
    width: max-content;
    height: 100%;
}

.home__reviews-swiper .swiper-slide:last-child {
    padding-right: 4rem;
}

.home__review {
    display: block;
    padding: 2.2rem 1.66rem;
    width: 285px;
    height: 100%;
    border: 2px solid var(--color-white);
    border-radius: 16px;
    font-size: 1.2em;
    line-height: 1.4em;
}

.home__review span {
    display: block;
    margin-top: 1.33rem;
    text-align: right;
}

.home__clients-swiper {
    position: relative;
    display: block;
    margin: 2.4rem 0 4rem 0;
    width: 100%;
    overflow: hidden;
}

.home__clients-swiper .swiper {
    width: 100%;
    height: max-content;
}

.home__clients-swiper .swiper-slide {
    display: block;
    width: max-content;
    height: 100%;
}

.home__clients-swiper .swiper-slide:last-child {
    padding-right: 4rem;
}

.home__client {
    display: flex;
    flex-direction: column;
    gap: 0.66rem;
    width: 270px;
}

.home__client img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    aspect-ratio: 27 / 32;
    border-radius: 16px;
}

.home__client a {
    font-size: 1.2em;
}

.home__client a:hover {
    text-decoration: underline;
}

.home__packing {
    display: grid;
    grid-template-columns: 370px 1fr;
    grid-template-rows: min-content 1fr;
    column-gap: 8.33rem;
    row-gap: 4rem;
    padding: 0 4rem 4rem 0;
    width: 100%;
    height: max-content;
}

.home__packing-text {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    align-self: start;
}

.home__packing-text h3 {
    margin: 0 0 1rem 0;
}

.home__packing-text p {
    font-size: 1.17em;
}

.home__packing-img {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
}

.home__packing-img img {
    display: block;
    width: 100%;
    height: 55vh;
    border-radius: 16px;
    object-fit: cover;
}

.home__packing-links {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.home__packing-links :last-child {
    text-decoration: underline;
    font-size: 1.17em;
}


/* ------------------------------------Shopping Bag------------------------------------ */

.bag {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 140px auto auto;
    justify-items: center;
    background-color: var(--color-light);
}

/* Header */
.bag__header {
    display: grid;
    grid-template-columns: 80px 1fr 80px;
    align-items: center;
    padding: 1.4rem 3rem 2.8rem 3rem;
    width: 100%;
    height: 140px;
    overflow: hidden;
}

.bag__header a {
    display: flex;
    align-items: center;
    gap: 5px;
}

.bag__header a span {
    text-decoration: underline;
    font-size: 1.1em;
}

.bag__header a i {
    font-size: 1.33em;
}

.bag__header-img {
    display: flex;
    justify-content: center;
    height: 100%;
    overflow: hidden;
}

.bag__header img {
    display: block;
    width: auto;
    height: 100%;
    object-fit: contain;
}

/* Items */
.bag__items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding-bottom: 1rem;
    width: 100%;
    max-width: 370px;
    min-height: calc(85vh - 140px);
}

.bag__items h1 {
    font-family: var(--font-judson);
    font-size: 2.1em;
    font-weight: 400;
}

.bag__items-list {
    display: flex;
    flex-direction: column;
}

.bag__items-list>p {
    display: block;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid #3F3F3F33;
    font-size: 1.2em;
}

.bag__item {
    display: grid;
    grid-template-columns: 85px 1fr auto;
    grid-template-rows: 45px auto;
    column-gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #3F3F3F33;
}

.bag__item img {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    display: block;
    width: 100%;
    aspect-ratio: 1;
    border: 1px solid var(--color-black);
    border-radius: 16px;
    object-fit: cover;
}

.bag__item-info {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}

.bag__item-info h4 {
    font-family: var(--font-judson);
    font-size: 1.17em;
}

.bag__item-info p {
    color: var(--color-dark);
    font-size: 0.85em;
}

.home__item-qty {
    display: grid !important;
    grid-template-columns: 30px 1fr 30px;
    align-items: center;
    justify-items: center;
    padding: 0 1rem;
    width: 100%;
    height: 100%;
    background-color: var(--color-white);
    border: 1px solid var(--color-black);
    border-radius: 8px;
    position: relative;
}

.bag__item-qty {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
    display: grid;
    grid-template-columns: 30px 1fr 30px;
    align-items: center;
    justify-items: center;
    padding: 0 1rem;
    width: 130px;
    height: 100%;
    background-color: var(--color-white);
    border: 1px solid var(--color-black);
    border-radius: 8px;
}

.bag__item-qty button, .home__item-qty button {
    display: block;
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    aspect-ratio: 1;
    background-color: transparent;
    outline: none;
    border: none;
    border-radius: 0;
    font-size: 1.2em;
    cursor: pointer;
    color: var(--color-black);
}

.bag__item-qty span {
    font-size: 1.33em;
}

.home__item-qty input {
    background-color: transparent;
    border: none;
    outline: none;
    width: 100%;
    height: 100%;
    text-align: center;
}

.bag__item-price {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
    align-self: center;
    justify-self: end;
    font-size: 1.17em;
}

.bag__coupon {
    display: grid;
    grid-template-columns: 1fr auto;
    column-gap: 0.8rem;
    row-gap: 1rem;
    margin-top: auto;
}

.bag__coupon input {
    display: block;
    padding: 0 1.66rem;
    width: 100%;
    height: 55px;
    background-color: var(--color-white);
    outline: none;
    border: 1px solid var(--color-black);
    border-radius: 16px;
    font-size: 1.17em;
}

.bag__coupon button {
    display: block;
    padding: 0 2.2rem;
    height: 55px;
    background-color: var(--color-black);
    outline: none;
    border: none;
    border-radius: 16px;
    color: var(--color-white);
    font-size: 1.17em;
}

.bag__coupon span {
    grid-column: 1 / 3;
    padding: 0 16px;
    color: var(--color-dark);
    font-size: 0.9em;
}

/* Chekout */
.bag__checkout {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3.2rem;
    padding: 2rem 2rem 3.2rem 2rem;
    width: 100%;
    background-color: var(--color-black);
}

.bag__resume {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1rem;
    width: 100%;
    max-width: 370px;
    color: var(--color-white);
    font-size: 1.17em;
}

.bag__resume :nth-child(2n) {
    text-align: end;
}

.bag__checkout button {
    display: block;
    width: 100%;
    height: 55px;
    max-width: 370px;
    background-color: var(--color-white);
    outline: none;
    border: none;
    border-radius: 16px;
    color: var(--color-black);
    font-size: 1.2em;
}

.bag__checkout a {
    color: var(--color-white);
    font-size: 1.2em;
}

/* Sweet Alert Override */
h2#swal2-title {
    font-family: var(--font-judson);
}

div:where(.swal2-container) div:where(.swal2-popup) {
    border-radius: 0 !important;
}

button.swal2-cancel.swal2-styled.swal2-default-outline {
    color: var(--color-black);
}


/* ---------------------------------------Thanks--------------------------------------- */

.thanks {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    padding: 7vh 2rem;
    background-color: var(--color-light);
    text-align: center;
}

.thanks img {
    display: block;
    height: 110px;
    object-fit: contain;
}

.thanks h1 {
    margin: 4rem 0 2rem 0;
    font-family: var(--font-judson);
    font-size: 2.2em;
    font-weight: 400;
}

.thanks h2 {
    margin: 2rem 0 2rem 0;
}

.thanks p {
    width: 100%;
    font-size: 1.33em;
    line-height: 1.4em;
}

.thanks p>a {
    text-decoration: underline;
}

.thanks p.stretch {
    max-width: 370px;
}

.thanks p:has(span) {
    margin: 2rem 0 3rem 0;
    word-break: break-all;
}

.thanks>a {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 55px;
    max-width: 370px;
    background-color: var(--color-black);
    border-radius: 16px;
    color: var(--color-white);
    font-size: 1.2em;
}

.thanks__order-summary {
    display: grid;
    grid-template-columns: repeat(3, auto);
    row-gap: 7px;
    margin-bottom: 3rem;
}

.thanks__order-summary div {
    grid-column: 1 / -1;
    display: block;
    width: 100%;
    height: 1px;
    background-color: var(--color-black);
    opacity: 0.5;
}

.thanks__order-summary p {
    padding: 0 1.5rem;
    font-size: 14px;
}

.thanks__order-summary span {
    padding: 0 1.5rem;
    font-size: 1.07em;
    font-weight: 700;
}



/* ----------------------------------------Cancel--------------------------------------- */

.cancel {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    padding: 7vh 2rem;
    background-color: var(--color-light);
    text-align: center;
}

.cancel__icon {
    margin-top: 2rem;
    font-size: 2.4em;
}

.cancel img {
    display: block;
    height: 110px;
    object-fit: contain;
}

.cancel h1 {
    margin: 3rem 0 2rem 0;
    font-family: var(--font-judson);
    font-size: 2.2em;
    font-weight: 400;
}

.cancel p {
    width: 100%;
    max-width: 370px;
    font-size: 1.33em;
    line-height: 1.4em;
}

.cancel a {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 3.5rem;
    width: 220px;
    height: 55px;
    max-width: 370px;
    background-color: var(--color-black);
    border-radius: 16px;
    color: var(--color-white);
    font-size: 1.2em;
}

/* gus */
/* .form-group {
    margin-bottom: 15px;
}

button {
    padding: 10px 15px;
    background-color: #007BFF;
    color: white;
    border: none;
    cursor: pointer;
}

button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
} */

/* -------------------------------------Information------------------------------------- */

.info__cont {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 95px auto;
    align-items: start;
    justify-items: center;
    row-gap: 4rem;
    padding: 1.4rem 3rem 8rem 3rem;
    background-color: var(--color-light);
}

/* Header */
.info__header {
    display: grid;
    grid-template-columns: 80px 1fr 80px;
    justify-items: center;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.info__header a {
    justify-self: start;
    display: flex;
    align-items: center;
    gap: 5px;
}

.info__header a span {
    text-decoration: underline;
    font-size: 1.1em;
}

.info__header a i {
    font-size: 1.33em;
}

.info__header-img {
    display: block;
    height: 100%;
    overflow: hidden;
}

.info__header img {
    justify-self: center;
    display: block;
    height: 100%;
    object-fit: contain;
}

/* Content */
.info {
    max-width: 800px;
    color: var(--color-dark);
    line-height: 1.43em;
    font-size: 1.05em;

}

.info h1 {
    margin: 0 0 2rem 0;
    color: var(--color-black);
    font-family: var(--font-judson);
    font-size: 1.9em;
    font-weight: 400;
}

.info a {
    text-decoration: underline;
}



/* --------------------------------------Specials-------------------------------------- */
.hidden {
    display: none;
}



/* -------------------------------------Responsive------------------------------------- */


@media screen and (max-width: 1200px) {
    .home__product-swipers {
        width: calc(100% - 8rem);
        height: calc(100% - 8rem);
        max-height: 90vh;
    }
}

@media screen and (max-width: 1020px) {
    .home__product-cont {
        grid-template-columns: 1fr;
        grid-template-rows: 67vh auto;
    }

    .home__product-swipers {
        grid-row: 1 / 2;
    }

    .home__product-swipers {
        width: min(calc(100% - 4rem), calc((67vh - 4rem) * 4 / 3));
        height: calc(67vh - 4rem);
    }
}


@media screen and (max-width: 900px) {

    /* Home */
    .home__product {
        justify-self: center;
        max-width: 600px;
    }

    .home__packing {
        grid-template-columns: 1fr;
    }

    .home__packing-img {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
    }

    .home__packing-links {
        grid-row: 3 / 4;
    }

    .home__packing-img img {
        height: unset;
        object-fit: contain;
    }

    .footer__swiper-cont {
        height: auto;
        padding: 4rem 0;
    }

    .footer__swiper-item {
        padding-bottom: 4rem;
    }
}

@media screen and (max-width: 760px) {
    .home__hero-texts h1 {
        font-size: 2em;
    }

    .home__hero-texts h3 {
        font-size: 1em;
    }

    .home__hero-texts a {
        display: none;
    }

    .home__hero-cont {
        background-color: var(--color-black);
        height: 40vh;
        /* Maintain a 16:9 aspect ratio */
    }

    /* Home */
    .footer__links {
        grid-template-columns: 1fr;
        border-bottom: none;
    }

    .footer__links a {
        width: 100%;
        border-bottom: 1px solid #3F3F3F33;
    }

    .home__product {
        padding: 3rem 2.33rem 0.6rem 2.33rem;
    }

    .footer__links i {
        display: inline;
    }

    .home__details {
        padding-left: 2.33rem;
    }

    .home__details>a.button {
        width: calc(100% - 2.33rem);
    }

    .home__packing {
        padding: 0 2.33rem 4rem 0;
    }

    footer {
        padding: 4rem 2.33rem 0 2.33rem;
    }
}

@media screen and (max-width: 480px) {

    /* Home */
    header {
        padding: 1.66rem 2.66rem 0 1.66rem;
    }

    .home__product-title span {
        max-width: 80px;
        text-align: end;
    }

    /* Bag */
    .bag__header {
        padding: 1.4rem 2.33rem 2.8rem 2.33rem;
    }

    .bag__items {
        padding: 0 2.33rem 1rem 2.33rem;
        max-width: unset;
    }

    .bag__item-qty {
        justify-self: end;
        padding: 0 0.75rem;
        width: 105px;
    }

    .home__item-qty {
        justify-self: end;
        padding: 0 0.75rem;
        width: 100%;
    }

    /* Info */
    .info__cont {
        grid-template-rows: 75px auto;
        padding: 2rem 2rem 4rem 2rem;
    }

    .swiper-button-prev, .swiper-button-next {
        display: none;
    }
}

@media screen and (max-width: 400px) {

    /* Bag */
    .bag__header {
        padding: 1.4rem 1.5rem 2.8rem 1.5rem;
    }

    .bag__items {
        padding: 0 1.5rem 1rem 1.5rem;
    }
}

/* IPhone SE */
@media screen and (max-width: 376px) and (max-height: 668px) {}



/* -------------------------------------Animations------------------------------------- */

.preloader.appear {
    animation: fade-in 0.3s;
}

.preloader.disappear {
    animation: fade-out 0.3s forwards;
}

/* Keyframes */
@keyframes logo {
    0% {
        opacity: 1;
        rotate: 10deg;
        translate: 0;
    }

    9.187% {
        translate: 0 -12%;
    }

    10.857% {
        translate: 0 -13%;
    }

    17.121% {
        rotate: -7deg;
    }

    18.791% {
        rotate: -9deg;
    }

    20.044% {
        translate: 0 6%;
    }

    21.714% {
        translate: 0 8%;
    }

    25.89% {
        rotate: 10deg;
        translate: 0;
    }

    31.319% {
        opacity: 1;
    }

    41.758% {
        opacity: 0;
        rotate: 80deg;
        translate: 0 -90%;
    }

    42%,
    95% {
        opacity: 0;
        rotate: 10deg;
        translate: 0;

    }

    100% {
        opacity: 1;
        rotate: 10deg;
        translate: 0;
    }
}

@keyframes text {
    0% {
        opacity: 0;
        translate: 65%;
    }

    8.462% {
        opacity: 0.8;
        translate: 20%;
    }

    15.385%,
    27.692% {
        opacity: 1;
        translate: 0;
    }

    38.462%,
    100% {
        opacity: 0;
        translate: 0;
    }
}



@keyframes fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 100%;
    }
}

@keyframes fade-out {
    0% {
        opacity: 100%;
    }

    100% {
        opacity: 0;
    }
}

@keyframes loader-animation {
    0% {
        top: 96px;
        left: 96px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 78px;
        left: 78px;
        width: 36px;
        height: 36px;
        opacity: 0;
    }
}

@keyframes loader-text {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0.5;
    }
}