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

:root {
    --color-white: #f5f5f5;
    --color-gray-light: #e5e5e5;
    --color-gray-med: #636579;
    --color-gray-dark: #343434;
    --color-highlight: #BB8F46;
    --color-green: #9bb563;
    --color-black: #000;
}

html {
    scroll-behavior: smooth;
}

body {
    position: relative;
    background-color: var(--color-white);
    font-size: 15px;
}

* {
    box-sizing: border-box;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    touch-action: manipulation;
}

img {
    display: block;
    object-fit: contain;
}


/* --------------------------------------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: grid;
    grid-template-columns: 1fr;
    grid-auto-columns: auto;
    grid-auto-flow: column;
    align-items: center;
    column-gap: 2rem;
    padding: 0 4rem;
    width: 100%;
    height: 110px;
}

header img {
    display: block;
    height: 60px;
    object-fit: contain;
}

header a:has(img) {
    justify-self: start;
}

nav {
    position: fixed;
    display: flex;
    flex-direction: column;
    right: 0;
    bottom: 0;
    z-index: 50;
    gap: 2rem;
    padding: 1.33rem;
    width: 300px;
    height: 100vh;
    background-color: var(--color-black);
    border-radius: 25px 0 0 25px;
    box-shadow: 0 0 3px #00000040;
    overflow: hidden;
    translate: 100%;
    transition: translate 0.3s;
}

nav.visible {
    translate: 0;
}

nav button {
    display: block;
    margin-left: auto;
    padding: 0;
    width: 35px;
    height: 35px;
    background-color: transparent;
    outline: none;
    border: none;
    color: var(--color-white);
    font-size: 1.2em;
    cursor: pointer;
}

nav div {
    display: flex;
    flex-direction: column;
    height: 100%;
    max-height: 340px;
    overflow: auto;
}

nav div::-webkit-scrollbar {
    width: 6px;
    border-radius: 3px;
}

nav div::-webkit-scrollbar-track {
    background-color: transparent;
}

nav div::-webkit-scrollbar-thumb {
    background-color: var(--color-gray-med);
    border-radius: 3px;
}

nav a {
    flex-shrink: 0;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 12px 5px;
    border-bottom: 1px solid #FFFFFF60;
    color: var(--color-white);
    text-decoration: none;
}


/* Footer */
footer {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    justify-items: center;
    column-gap: 2.5rem;
    padding: 0 2.5rem;
    min-height: 140px;
    background-color: var(--color-black);
    color: var(--color-white);
    font-size: 1em;
}

footer.store {
    padding: 4rem 6rem;
}

footer a {
    color: inherit;
}

footer p a {
    text-decoration: none;
}

footer p a:hover {
    text-decoration: underline;
}

.footer__brand {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    align-items: center;
    justify-content: start;
}

.footer__brand img {
    display: block;
    height: 30px;
    object-fit: contain;
}

.footer__links {
    justify-self: left;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer__links.right {
    justify-self: right;
    align-items: end;
}

.footer__links div {
    display: flex;
    gap: 1rem;
}


/* Buttons */
.btn-filled {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 160px;
    height: 50px;
    border-radius: 25px;
    background-color: var(--color-white);
    outline: none;
    border: none;
    color: var(--color-black);
    text-decoration: none;
    cursor: pointer;
    font-family: inherit;
}

.btn-filled.hl {
    background-color: var(--color-highlight);
    color: white;
}

.btn-filled i,
.btn-border i {
    min-width: 20px;
}

.btn-border {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 160px;
    height: 50px;
    border-radius: 25px;
    background-color: transparent;
    outline: none;
    border: 1.5px solid var(--color-white);
    color: var(--color-white);
    text-decoration: none;
    cursor: pointer;
    font-family: inherit;
}



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


/* Hero */
.home__hero-cont>img,
.home__hero-cont video {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home__hero {
    position: relative;
    display: block;
    z-index: 1;
    padding: 4rem;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    background-color: rgba(0, 0, 0, 0.3);
}

.home__hero>div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 5rem;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    max-width: 1200px;
    min-height: calc(100vh - 8rem);
}

.home__hero-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.home__hero-header img {
    height: 60px;
    width: 200px;
    object-fit: contain;
}

.home__hero-sm {
    display: flex;
    gap: 1rem;
    height: 100%;
    align-items: center;
}

.home__hero-sm a {
    color: var(--color-white);
    text-decoration: none;
    font-size: 1.8em;
    text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.25);
}

.home__hero-texts {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1000px;
    color: var(--color-white);
    text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.5);
    /* background-color: #eeeeee2a;
    backdrop-filter: blur(5px);
    padding: 55px;
    border-radius: 35px; */
}

.home__hero-texts h1 {
    margin: 0;
    font-size: 1.8em;
    text-transform: uppercase;
}

.home__hero-texts p {
    display: block;
    max-width: 700px;
    margin: 1.5rem 0 4rem 0;
    font-size: 1.17em;
    line-height: 1.9em;
}

.home__hero-texts div {
    display: flex;
    flex-wrap: wrap;
    column-gap: 2rem;
    row-gap: 1.2rem;
    margin-left: auto;
}

.home__hero-scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.7rem;
}

.home__hero-scroll i {
    color: var(--color-white);
    font-size: 2em;
    text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.25);
}

.home__hero-scroll span {
    color: var(--color-white);
    font-size: 1em;
    text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.25);
}

/* Features */
.home__features-cont {
    padding: 3rem 2.5rem;
    background-color: rgba(0, 0, 0, 0.3);
}

.home__features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 2.5rem;
    row-gap: 2.5rem;
    width: 100%;
    max-width: 1200px;
}

.home__feature-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1.5rem;
    width: 100%;
    border-radius: 35px;
    color: var(--color-gray-dark);
    background-color: var(--color-white);
}

.home__feature-box i {
    font-size: 2.8em;
    opacity: 0.8;
    color: var(--color-highlight);
}

.home__feature-box h4 {
    margin: 1.2rem 0;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: .9em;
    text-transform: uppercase;
}

.home__feature-box p {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: .9em;
    line-height: 1.5em;
}


/* Specs */
.home__desc-cont {
    gap: 5rem;
    padding: 6rem 2.5rem;
    background-color: var(--color-white);
    margin: auto;
}

.home__desc-cont h2 {
    color: var(--color-black);
    text-align: center;
    font-size: 1.5em;
    text-transform: uppercase;
    font-weight: 700;
}

.home__description {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5rem;
    width: 100%;
    max-width: 1200px;
}

.home__description video {
    grid-column: 2 / 3;
    grid-row: 1 / 4;
    justify-self: center;
    display: block;
    width: 100%;
    max-width: 320px;
    /* height: max-content; */
    border-radius: 35px;
    object-fit: contain;
}

.home__desc-item {
    display: grid;
    grid-template-columns: 60px 1fr;
    grid-template-rows: min-content auto;
    column-gap: 1.33rem;
    row-gap: 0.5rem;
    width: 100%;
    color: var(--color-gray-dark);
}

.home__desc-item div {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    background-color: var(--color-highlight);
    color: var(--color-white);
}

.home__desc-item i {
    font-size: 1.5em;
}

.home__desc-item h4 {
    font-size: 1.4em;
}

.home__desc-item p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1em;
    font-weight: 500;
    line-height: 1.5em;
}

/* Store */
.home__store {
    gap: 4rem;
    padding: 6rem 2.5rem;
    background-color: var(--color-black);
}

.home__store h2 {
    color: var(--color-white);
    font-size: 1.5em;
    text-transform: uppercase;
    font-weight: 700;
}

.home__store-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, 250px);
    justify-content: center;
    gap: 3rem;
    width: 100%;
    max-width: 1200px;
}

.home__store-item {
    display: flex;
    flex-direction: column;
    width: 100%;
    /* border-radius: 10px; */
    text-decoration: none;
    overflow: hidden;
    cursor: pointer;
}

.home__store-item .image {
    display: block;
    width: 100%;
    aspect-ratio: 13 / 14;
    overflow: hidden;
    border-radius: 20px;
}

.home__store-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home__store-item .info {
    display: grid;
    grid-template-columns: 1fr;
    column-gap: 0.5rem;
    row-gap: 0.8rem;
    padding: 0.8rem 1rem;
    background-color: transparent;
    color: var(--color-gray-light);
    text-align: center;
}

.home__store-item h4 {
    display: block;
    width: 100%;
    color: var(--color-white);
    text-overflow: ellipsis;
    font-size: 1em;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
}

.home__store-item p {
    grid-row: 2 / 3;
    font-size: 0.93em;
}

.home__store-item span {
    grid-row: 2 / 3;
    text-decoration: underline;
    font-size: 0.9em;
}

.home__store-error {
    grid-column: 1 / -1;
    color: var(--color-white);
    text-align: center;
}

.home__store-error i {
    margin: 1.2rem 0 0.7rem 0;
    font-size: 2em;
}

.home__store-error p {
    font-size: 1.07em;
}

/* Comments */
.home__comments {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 4rem;
    padding: 6rem 4rem;
    background-color: var(--color-green);
}

.home__comments.two {
    background-color: var(--color-black);
}

.home__comments h2 {
    grid-column: 1 / 4;
    grid-row: 1 / 2;
    color: var(--color-gray-light);
    text-align: center;
    font-size: 1.5em;
    text-transform: uppercase;
}

.home__comments button {
    align-self: center;
    display: block;
    width: 40px;
    aspect-ratio: 1;
    background-color: transparent;
    outline: none;
    border: none;
    color: var(--color-gray-light);
    font-size: 2em;
    cursor: pointer;
}

.home__comm-swiper {
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
}

.home__comm-swiper .swiper {
    width: 100%;
    height: 100%;
}

.home__comm-swiper .swiper-slide {
    width: auto;
}

.home__comm {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin: auto;
    max-width: 245px;
    color: var(--color-white);
}

.home__comm img {
    display: block;
    width: 210px;
    aspect-ratio: 1;
    border-radius: 30px;
    object-fit: cover;
}

.home__comm h4 {
    text-align: center;
    font-size: 1.2em;
}

.home__comm p {
    margin: 0;
    text-align: center;
    font-size: 1.07em;
    line-height: 1.6em;
}

/* Contact */
.home__contact {
    gap: 4rem;
    padding: 6rem 2.5rem;
    background-color: var(--color-gray-light);
}

.home__contact h2 {
    color: var(--color-black);
    font-size: 1.5em;
    text-transform: uppercase;
}

.home__contact form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    max-width: 750px;
}

.home__contact input,
.home__contact textarea {
    display: block;
    padding: 0 1rem;
    width: 100%;
    height: 50px;
    background: var(--color-white);
    border: none;
    outline: none;
    border-radius: 15px;
    color: #303030;
    font-family: inherit;
    font-size: 1.1em;
}

.home__contact textarea {
    padding: 1rem;
    height: auto;
    max-height: 130px;
    resize: none;
}

.home__contact-links {
    display: flex;
    gap: 1rem;
}

.home__contact-links a {
    color: var(--color-black);
    text-decoration: none;
    font-size: 1.6em;
}



/* --------------------------------------Store-------------------------------------- */

/* Banner */
.store__banner {
    position: relative;
    display: block;
    height: max(60vh, 450px);
    background-color: var(--color-gray-light);
}

.store__banner>img {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.store__banner-content {
    position: relative;
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: 110px auto;
    width: 100%;
    height: 100%;
    background-color: #00000020;
    transition: background-color 0.25s;
}

.store__banner-content.show-categories {
    background-color: #00000090;
}

.store__header {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    column-gap: 2rem;
    padding: 0 4rem;
    width: 100%;
    height: 100%;
}

.store__header a:has(img) {
    justify-self: start;
}

.store__header img {
    display: block;
    height: 60px;
    width: 200px;
    object-fit: contain;
}

.store__header #categories-btn.clicked {
    background-color: var(--color-white);
    color: var(--color-gray-dark);
}

.store__categories {
    align-self: center;
    justify-self: center;
    display: flex;
    flex-direction: column;
    padding-right: 10px;
    width: 100%;
    height: calc(100% - 4rem);
    max-width: 450px;
    opacity: 0;
    overflow: auto;
    transition: opacity 0.25s;
    pointer-events: none;
}

.show-categories .store__categories {
    opacity: 1;
    pointer-events: all;
}

.store__categories a {
    flex-shrink: 0;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 0 5px;
    width: 100%;
    height: 50px;
    color: var(--color-white);
    border-bottom: 1px solid var(--color-white);
    text-decoration: none;
}

.store__categories::-webkit-scrollbar {
    width: 6px;
    border-radius: 3px;
}

.store__categories::-webkit-scrollbar-track {
    background-color: transparent;
}

.store__categories::-webkit-scrollbar-thumb {
    background-color: var(--color-white);
    border-radius: 3px;
}

/* Products */
.store__products {
    gap: 4rem;
    padding: 6rem 2.5rem;
    background-color: var(--color-white);
}

.store__products h2 {
    color: var(--color-black);
    font-size: 1.5em;
    text-transform: uppercase;
    font-weight: 700;
}

.store__products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, 250px);
    justify-content: center;
    gap: 3rem;
    width: 100%;
    max-width: 1200px;
}

.store__product-item {
    display: flex;
    flex-direction: column;
    width: 100%;
    text-decoration: none;
    overflow: hidden;
    cursor: pointer;
}

.store__product-item .image {
    display: block;
    width: 100%;
    aspect-ratio: 13 / 14;
    overflow: hidden;
}

.store__product-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
}

.store__product-item .info {
    display: grid;
    grid-template-columns: 1fr auto;
    column-gap: 0.5rem;
    row-gap: 0.8rem;
    padding: 0.8rem 1rem;
}

.store__product-item h4 {
    grid-column: 1 / -1;
    display: block;
    width: 100%;
    color: var(--color-gray-med);
    text-overflow: ellipsis;
    font-size: 1em;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    color: var(--color-black);
}

.store__product-item p {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    font-size: 0.93em;
    color: var(--color-gray-dark);
}

.store__product-item span {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    text-decoration: underline;
    font-size: 0.9em;
    color: var(--color-highlight);
}

.store__products-error {
    grid-column: 1 / -1;
    text-align: center;
}

.store__products-error i {
    margin-bottom: 0.7rem;
    font-size: 2em;
}

.store__products-error p {
    font-size: 1.07em;
}



/* ----------------------------------Product detail---------------------------------- */

.product {
    padding: 4rem 2.66rem;
    min-height: calc(100vh - 110px);
}

.pro__grid {
    display: grid;
    grid-template-columns: 8fr 11fr;
    column-gap: 3rem;
    row-gap: 2rem;
    width: 100%;
    max-width: 1100px;
}

.pro__grid>span {
    grid-column: 1 / -1;
    font-size: 1.2em;
    font-weight: 700;
}

.pro__gallery {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pro__gallery img {
    display: block;
    width: 100%;
    aspect-ratio: 1;
    background-color: var(--color-gray-light);
    border-radius: 30px;
    box-shadow: 0 0 3px #00000040;
    object-fit: cover;
}

.pro__gallery #img-viewer {
    cursor: zoom-in;
}

.pro__gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
    gap: 1rem;
}

.pro__gallery-thumbs img {
    cursor: pointer;
}

.pro__gallery-thumbs .selected {
    outline: 1.5px solid #636579;
}

.pro__info {
    display: flex;
    flex-direction: column;
}

.pro__info h1 {
    margin: 0 0 1.5rem 0;
    font-size: 2em;
}

.pro__info h2 {
    margin: 0;
    font-size: 1.7em;
    font-weight: 400;
}

.pro__info p {
    margin: 0;
    font-size: 1.2em;
    line-height: 1.4em;
}

.pro__selects {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 50px;
    column-gap: 1rem;
    row-gap: 1.5rem;
    margin: 3rem 0;
}

.pro__selects select {
    padding: 0 1rem;
    width: 100%;
    height: 100%;
    background-color: var(--color-white);
    outline: none;
    border: 1px solid var(--color-gray-dark);
    border-radius: 25px;
}

.pro__purchase {
    display: flex;
    gap: 1rem;
    margin-top: 3rem;
}

.pro__qty {
    display: grid;
    grid-template-columns: 45px auto 45px;
    height: 50px;
    min-width: 160px;
    border-radius: 25px;
    box-shadow: 0 0 3px #00000040;
    overflow: hidden;
}

.pro__qty button {
    display: block;
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-gray-med);
    outline: none;
    border: none;
    color: var(--color-white);
    cursor: pointer;
}

.pro__qty span {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    width: 100%;
    height: 100%;
    color: var(--color-gray-dark);
    font-size: 1.17em;
}

.pro__error {
    text-align: center;
}

.pro__error h3 {
    font-size: 1.5em;
}

.pro__error i {
    margin: 2.2rem 0 1.2rem 0;
    font-size: 2em;
}

.pro__error p {
    font-size: 1.17em;
}



/* ---------------------------------------Cart--------------------------------------- */

.cart {
    align-items: start;
    justify-content: start;
    padding: 2rem 4rem 4rem 4rem;
    min-height: calc(100vh - 110px);
}

.cart h2 {
    margin-bottom: 2.66rem;
    color: var(--color-gray-dark);
    font-size: 1.8em;
}

.cart__empty h2 {
    margin-bottom: 1.33rem;
}

.cart__empty p {
    font-size: 1.17em;
}

.cart__empty a {
    color: var(--color-gray-med);
    text-decoration: underline;
}

.cart__grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    column-gap: 1.4rem;
    row-gap: 3.2rem;
    margin: 0 auto auto auto;
    width: 100%;
    max-width: 1200px;
}

/* Products */
.cart__products {
    display: flex;
    flex-direction: column;
    padding: 2rem 2rem 2.4rem 2rem;
    background-color: var(--color-gray-light);
    border-radius: 15px;
}

.cart__products-list {
    display: flex;
    flex-direction: column;
    gap: 1.33em;
}

.cart__product-row {
    display: grid;
    grid-template-columns: 70px 1fr 140px 120px;
    align-items: center;
    column-gap: 1.33rem;
}

.cart__product-row img {
    display: block;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 10px;
    box-shadow: 0 0 3px #00000040;
    object-fit: cover;
}

.cart__product-row p {
    font-size: 1.2em;
    font-weight: 400;
}

.cart__product-row>span {
    text-align: center;
    font-size: 1.07em;
    font-weight: 700;
}

.cart__product-qty {
    display: grid;
    grid-template-columns: 45px auto 45px;
    height: 45px;
    width: 140px;
    border-radius: 25px;
    background-color: var(--color-white);
    overflow: hidden;
}

.cart__product-qty button {
    display: block;
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-gray-med);
    outline: none;
    border: none;
    color: var(--color-white);
    cursor: pointer;
}

.cart__product-qty span {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    width: 100%;
    height: 100%;
    color: var(--color-gray-dark);
    font-size: 1.07em;
}

/* Resume */
.cart__resume {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.cart__resume-frame {
    display: flex;
    flex-direction: column;
    padding: 2rem 2rem 1.6rem 2rem;
    background-color: var(--color-gray-light);
    border-radius: 15px;
}

.cart__resume-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart__resume-row p {
    margin-bottom: 2rem;
    font-size: 1.17em;
    font-weight: 400;
}

.cart__resume-row b {
    font-size: 1.17rem;
    font-weight: 700;
}

.cart__resume-coupon {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 0 auto 2rem auto;
    width: 100%;
    max-width: 400px;
}

.cart__resume-coupon .cart__resume-row {
    display: none;
}

.cart__resume-coupon.valid .cart__resume-row {
    display: flex;
}

.cart__resume-coupon.valid span,
.cart__resume-coupon.valid input {
    display: none;
}

.cart__resume-coupon p {
    margin: 0;
}

.cart__resume-coupon span {
    text-align: center;
    font-size: 1.07em;
    opacity: 0.75;
}

.cart__resume-coupon input {
    display: block;
    padding: 0 1.2rem;
    width: 100%;
    height: 50px;
    background-color: var(--color-white);
    outline: none;
    border: 1px solid #707070;
    border-radius: 25px;
    font-size: 1.2em;
}

.cart__resume-coupon button {
    display: block;
    margin: 0 auto;
    padding: 0;
    width: max-content;
    height: max-content;
    background-color: transparent;
    outline: none;
    border: none;
    color: var(--color-orange);
    text-decoration: underline;
    cursor: pointer;
}

.cart__resume>a,
.cart__resume>button {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    width: 100%;
    height: 50px;
    max-width: 360px;
    background-color: var(--color-gray-med);
    outline: none;
    border: none;
    border-radius: 25px;
    color: var(--color-white);
    text-decoration: none;
    font-size: 1.17em;
    cursor: pointer;
}



/* -------------------------------------Shipping------------------------------------- */

.ship__cont {
    justify-content: start;
    padding: 2rem 4rem 4rem 4rem;
    min-height: calc(100vh - 110px);
}

.shipping {
    display: grid;
    grid-template-columns: 1fr 360px;
    column-gap: 1.4rem;
    width: 100%;
    max-width: 1200px;
}

.shipping h2 {
    margin-bottom: 2.66rem;
    color: var(--color-gray-dark);
    font-size: 1.8em;
}

.shipping h3 {
    margin: 3.33rem 0 2rem 0;
    color: var(--color-gray-dark);
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5em;
}

.shipping h3:first-child {
    margin-top: 0;
}

/* Form */
.ship__form {
    display: flex;
    flex-direction: column;
    padding: 2rem 2rem 3.33rem 2rem;
    background-color: var(--color-gray-light);
    border-radius: 15px;
}

.ship__form h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5em;
    font-weight: 400;
}

.ship__method {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.33rem;
    margin: 1rem 0 3.5rem 0;
}

.ship__method button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.33rem;
    width: 100%;
    height: 50px;
    background-color: transparent;
    outline: none;
    border: 1.5px solid var(--color-gray-med);
    border-radius: 25px;
    color: var(--color-gray-dark);
    font-size: 1.07em;
    line-height: 1em;
    cursor: pointer;
    transition: background-color 0.3s;
}

.ship__method button.current {
    background-color: var(--color-gray-med);
    color: var(--color-gray-light);
}

.ship__inputs>label {
    display: block;
    margin-bottom: 10px;
    font-size: 1em;
}

.ship__inputs input {
    display: block;
    margin-bottom: 1.33rem;
    padding: 0 1.33rem;
    width: 100%;
    height: 50px;
    background-color: #E8E9F2;
    outline: none;
    border: none;
    border-radius: 10px;
    font-size: 1.07em;
}

.ship__inputs>span {
    display: block;
    margin-bottom: 1rem;
    width: 100%;
    text-align: end;
    font-size: 0.8em;
}

.ship__options {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 2.66rem;
    border: none;
}

.ship__options input {
    display: none;
}

.ship__option {
    display: grid;
    grid-template-columns: 26px 1fr auto;
    align-items: center;
    column-gap: 1rem;
    row-gap: 5px;
    font-size: 1.07em;
    user-select: none;
    cursor: pointer;
}

.ship__option .radio {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 1;
    background-color: var(--color-white);
    border: 2px solid var(--color-gray-med);
    border-radius: 13px;
}

.ship__option .radio div {
    display: block;
    width: 15px;
    aspect-ratio: 1;
    background-color: var(--color-white);
    border-radius: 7.5px;
    transition: 0.2s background-color;
}

.ship__option:has(:checked) .radio div {
    background-color: var(--color-gray-med);
}

.ship__option p {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

.ship__option span {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    font-size: 0.85em;
    font-weight: 700;
    color: #0D0D13A0;
}

.ship__option b {
    grid-column: 3 / 4;
    grid-row: 1 / 3;
    font-weight: 700;
}

/* Store */
.ship__store {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    column-gap: 1.33rem;
    row-gap: 3rem;
    margin-top: 1rem;
    color: var(--color-gray-dark);
}

.ship__store i {
    font-size: 1.3em;
}

.ship__store p {
    font-size: 1.17em;
}

.ship__store iframe {
    grid-column: 1 / 3;
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 10px;
}

/* No product */
.ship__no-product p {
    font-size: 1.4em;
    font-weight: 400;
}

.ship__no-product p a {
    color: var(--color-orange);
    text-decoration: underline;
    font-weight: 600;
}

/* Loader */
.ship__loader-cont {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    z-index: 500;
    padding: 2rem;
    width: 100%;
    height: 100vh;
    background-color: #0D0D1330;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.ship__loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.8rem;
    padding: 2rem;
    width: 100%;
    max-width: 280px;
    background-color: var(--color-white);
    border-radius: 15px;
    font-size: 1.17em;
}

.ship__loader-spin {
    width: 48px;
    height: 48px;
    border: 5px solid #CF97591A;
    border-bottom-color: var(--color-orange);
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}


/* --------------------------------------Success------------------------------------- */

.success__cont {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3.33rem;
    padding: 2rem 3rem 4.66rem 3rem;
    min-height: calc(100vh - 266px);
}

.success {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    padding: 3.33rem 5rem 2.66rem 5rem;
    width: 100%;
    max-width: 700px;
    border: 1.5px solid var(--color-black);
    border-radius: 5px;
}

.success h1 {
    margin: 0;
    color: var(--color-green-1);
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 2em;
    font-weight: 400;
}

.success>p {
    font-size: 1.33em;
    line-height: 1.4em;
}

.success__info-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 3rem;
    row-gap: 10px;
}

.success__info-grid h3 {
    grid-column: 1 / -1;
    margin-bottom: 1.33rem;
    color: var(--color-green-2);
    font-size: 1.5em;
}

.success__info-grid p {
    font-size: 1.2em;
    line-height: 1.4em;
}

.success__info-grid p.bold {
    text-align: end;
    font-weight: 700;
}

.success__info-grid .break {
    line-break: anywhere;
}

.success__info-grid .end {
    text-align: end;
}

.success__pro-grid {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    column-gap: 3.66rem;
    row-gap: 10px;
}

.success__pro-grid h4 {
    color: var(--color-green-2);
    font-size: 1.5em;
}

.success__pro-grid p {
    font-size: 1.2em;
    line-height: 1.4em;
}

.success__pro-grid b {
    font-weight: 700;
}

.success__pro-grid .center {
    text-align: center;
}

.success__pro-grid .end {
    text-align: end;
}

.success__pro-grid .mob {
    display: none;
}

.success__pro-item {
    display: grid;
    grid-template-columns: 70px auto;
    align-items: center;
    column-gap: 1.33rem;
}

.success__pro-item img {
    display: block;
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.success__pro-mob {
    display: none;
}

.success__pro-mob p:first-child {
    font-size: 1.33em;
}

/* Links */
.success__links {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
}

.success__links span {
    font-size: 1.2em;
}

.success__links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 50px;
    max-width: 350px;
    background-color: var(--color-green-1);
    border-radius: 25px;
    color: var(--color-white);
    text-decoration: none;
    font-size: 1.2em;
}

.success__links :nth-child(2) {
    margin: 1rem 0 2.66rem 0;
}

.success__links :nth-child(3) {
    background-color: #4176640D;
    border: 1.5px solid var(--color-green-1);
    color: var(--color-green-1);
}



/* ------------------------------------Buyer Form------------------------------------ */

form .cart__grid {
    margin-bottom: 3rem;
}

.buyer__inputs {
    grid-row: 1 / 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    width: 100%;
    border-radius: 10px;
    text-align: start;
}

.buyer__inputs input {
    display: block;
    margin-bottom: 1rem;
    padding: 0 1rem;
    width: 100%;
    max-width: 600px;
    height: 45px;
    background: var(--color-white);
    border: none;
    outline: none;
    border-radius: 5px;
    color: var(--color-brown);
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2em;
}

.buyer__inputs label {
    color: var(--color-brown);
    margin-bottom: 5px;
}

.buyer__inputs h2,
.buyer__inputs label {
    width: 100%;
    max-width: 600px;
    text-align: start;
}

.buyer__coupon {
    display: grid;
    grid-template-columns: 1fr 140px;
    grid-template-rows: auto 45px;
    column-gap: 1rem;
    margin-top: 3rem;
    width: 100%;
    max-width: 600px;
}

.buyer__coupon label {
    grid-column: 1 / 3;
}

.buyer__coupon button {
    display: block;
    width: 100%;
    height: 45px;
    background: var(--color-white);
    outline: none;
    border: none;
    border-radius: 22.5px;
    color: var(--color-brown);
    font-weight: 700;
    cursor: pointer;
}

.cart__grid input[type="submit"] {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    height: 50px;
    width: 100%;
    max-width: 380px;
    background-color: var(--color-gray-dark);
    outline: none;
    border: none;
    border-radius: 25px;
    color: #FFF;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: 700;
    cursor: pointer;
}



/* -------------------------------------Stripe------------------------------------- */

#payment-form .cart {
    padding: 0 3rem;
}

.stripe__cont {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 3rem auto;
    padding: 2rem 2rem 1rem 2rem;
    width: 100%;
    max-width: 900px;
    border-radius: 15px;
}

.stripe__cont #submit {
    margin: 2rem auto 0 auto;
    height: 45px;
    width: 100%;
    max-width: 150px;
    background-color: var(--color-gray-dark);
    border: none;
    outline: none;
    border-radius: 25px;
    color: #FFF;
    font-size: 1em;
    font-weight: 700;
    cursor: pointer;
}



/* --------------------------------------Order-------------------------------------- */

.order__cont {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 0 3rem;
    width: 100%;
    min-height: 100vh;
    background-color: #FFF;
    font-family: 'Montserrat', sans-serif;
    color: var(--color-text-black);
}

.order {
    display: flex;
    flex-direction: column;
    margin: 0 auto 2rem auto;
    padding: 3rem;
    width: 100%;
    max-width: 950px;
    border-radius: 15px;
}

.order h1 {
    margin: 0 auto 4rem auto;
    color: var(--color-brown);
    font-size: 2.3em;
    text-align: center;
}

.order h2 {
    margin: 0 0 2.5rem 0;
    color: var(--color-brown);
    font-size: 1.2em;
    text-transform: uppercase;
}

.order h3 {
    margin: 0 0 1rem 0;
    color: var(--color-brown);
    font-size: 1em;
    text-transform: uppercase;
}

.order__grid {
    display: grid;
    grid-template-columns: 2fr 3fr;
    row-gap: 1.1em;
    margin-bottom: 4rem;
    width: 100%;
    font-size: 1.2em;
}

.order p {
    display: inline;
    margin: 0;
    padding: 0;
    font-weight: 700;
    text-align: end;
}

.order__products {
    display: grid;
    grid-template-columns: 1fr auto auto auto;
    column-gap: 2rem;
    row-gap: 1.1em;
    width: 100%;
    font-size: 1.2em;
}

.order__products .mid {
    text-align: center;
}

.order__back {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 3rem auto;
    height: 45px;
    width: 100%;
    max-width: 180px;
    background-color: var(--color-base-bkg);
    border: none;
    outline: none;
    border-radius: 25px;
    color: #FFF;
    text-decoration: none;
    font-size: 1em;
    font-weight: 700;
    cursor: pointer;
}



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

.thanks__cont {
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: auto min-content;
    width: 100%;
    min-height: 100vh;
}

.thanks__cont section {
    padding: 3rem;
}

.thanks {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 800px;
    color: var(--color-black);
}

.thanks h1 {
    margin: 0;
    font-size: 2.5em;
}

.thanks p {
    max-width: 650px;
    font-size: 1.2em;
    line-height: 1.8em;
}

.thanks__links {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 2rem 0 0 auto;
}

.thanks__links div {
    display: flex;
    gap: 1rem;
}

.thanks__links div a {
    color: var(--color-highlight);
    text-decoration: none;
    font-size: 1.4em;
}

.thanks__body>div {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin: 3rem 0 0 auto;
}



/* -------------------------------------Footers------------------------------------- */

.footer,
.pro-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 0 min(8%, 7rem);
    height: 140px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1em;
    text-align: center;
}

.footer a,
.pro-footer a {
    color: inherit;
    text-align: end;
}

.pro-footer {
    height: 180px;
}

.footer-aside {
    width: 230px;
    text-align: start;
}

.footer-logo {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    justify-content: start;
}

.footer-img {
    display: inline-block;
    width: 60px;
    height: 60px;
}

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

.footer span a {
    text-decoration: none;
}

.footer span a:hover {
    text-decoration: underline;
}


/* Products footer */
.footer-contact,
.footer-sm {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.footer-sm {
    align-items: end;
}

.footer-contact a,
.footer-sm a {
    text-decoration: none;
    font-size: 1.2em;
}

.footer-icons,
.thanks__icons {
    display: flex;
    gap: 1rem;
}



/* ------------------------------------Specials------------------------------------ */

.hidden {
    display: none;
}

.top {
    justify-content: start;
}

.bold {
    font-weight: 700;
}

.home__info {
    width: 100%;
    height: 65vh;
    background-image: url("../assets/img/banners/nuevo-lugar.jpg");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 6rem 3rem;
    position: relative;
}

.home__info h2 {
    font-size: 3em;
    color: var(--color-highlight);
    text-align: left;
    margin: 0 auto 25px 0;
    display: block;
}

.home__info h4 {
    font-size: 1.5em;
    font-weight: normal;
    color: var(--color-gray-dark);
    opacity: .75;
    text-align: left;
    width: 60%;
    margin: 0 auto auto 0;
    display: block;
    line-height: 1.8em;
}

.home__info a {
    margin: 0 auto 0 0;
    background-color: var(--color-gray-dark);
    color: white;
}

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

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

    /* Cart */
    .cart__grid {
        grid-template-columns: 1fr;
        grid-template-rows: unset;
        row-gap: 1rem;
        max-width: 850px;
    }

    .cart {
        padding: 2rem 3rem 4rem 3rem;
    }

    /* Shipping */
    .shipping {
        grid-template-columns: 1fr 320px;
    }
}

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

    /* Home */
    .home__features {
        grid-template-columns: 1fr 1fr;
        max-width: 650px;
    }

    .home__description {
        grid-template-columns: 1fr 1fr;
        max-width: 700px;
    }

    .home__description video {
        grid-column: 1 / -1;
        grid-row: 1 / 2;
    }
}

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

    /* Home */
    .home__comments {
        column-gap: 2.5rem;
        padding: 5rem 2.5rem;
    }

    /* Product */
    .pro__grid {
        grid-template-columns: 100%;
        max-width: 650px;
    }

    .pro__info {
        grid-row: 2 / 3;
    }

    .pro__gallery {
        margin-top: 3rem;
        width: 80%;
    }

    /* Shipping */
    .ship__cont {
        padding: 2rem 6rem 4.66rem 6rem;
    }

    .shipping {
        grid-template-columns: 1fr;
        row-gap: 4rem;
    }

    .success__pro-grid {
        column-gap: 2rem;
    }

    /* Footers */
    footer {
        grid-template-columns: 100%;
        gap: 2.5rem;
        padding: 2rem 2.5rem;
    }

    footer.store {
        grid-template-columns: 1fr 1fr;
        justify-items: center;
        column-gap: 2rem;
        row-gap: 3rem;
        padding: 3rem 4rem;
    }

    footer.store .footer__brand {
        grid-column: 1 / -1;
        grid-row: 1 / 2;
    }

    .footer__links,
    .footer__links.right {
        align-items: center;
    }
}

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

    /* General */
    header {
        column-gap: 1.2rem;
        padding: 0 1.5rem;
    }

    header .btn-filled {
        width: 50px;
    }

    header .btn-filled span {
        display: none;
    }

    /* Home */
    .home__description {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

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

    .home__store-item .info {
        display: flex;
        flex-direction: column;
    }

    .home__comm {
        margin: 0 auto;
    }

    .home__info h2 {
        font-size: 2em;
    }
    .home__info h4 {
        font-size: 1.2em;
        line-height: 1.6em;
    }

    /* Store */
    .store__header {
        column-gap: 1.2rem;
        padding: 0 1.5rem;
    }

    .store__header .btn-filled {
        width: 50px;
    }

    .store__header .btn-filled span {
        display: none;
    }

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

    .store__product-item .info {
        display: flex;
        flex-direction: column;
    }

    /* Cart */
    .cart__product-row {
        grid-template-columns: 95px 1fr;
        row-gap: 0.8rem;
    }

    .cart__product-row img {
        grid-column: 1 / 2;
        grid-row: 1 / 4;
        align-self: start;
    }

    .cart__product-row>span {
        text-align: start;
    }

    .cart__product-qty {
        grid-row: 3 / 4;
        grid-template-columns: 40px 1fr 40px;
        width: 130px;
        height: 30px;
    }

    /* Shipping */
    .ship__cont {
        padding: 2rem 3rem 4.66rem 3rem;
    }

    .ship__method {
        grid-template-columns: 100%;
    }
}

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

    /* General */
    nav {
        padding: 1.5rem 2.5rem;
        width: 100%;
        border-radius: 0;
    }

    /* Home */
    .home__hero {
        padding: 3rem 2rem;
    }

    .home__hero-header img {
        height: 60px;
    }

    .home__hero-sm {
        font-size: 0.95em;
    }

    .home__hero-texts h1 {
        font-size: 1.9em;
    }

    .home__hero-texts p {
        font-size: 1.07em;
    }

    .home__hero-texts div {
        justify-content: center;
    }

    .home__features-cont {
        padding: 5rem 2.5rem;
    }

    .home__features {
        grid-template-columns: 100%;
    }

    .home__desc-cont {
        padding: 4rem 1.5rem;
    }

    .home__desc-cont h2 {
        font-size: 1.9em;
    }

    .home__description video {
        width: 80%;
    }

    .home__store {
        gap: 4rem;
        padding: 4rem 1.5rem;
    }

    .home__store h2 {
        font-size: 1.9em;
    }

    .home__store-grid {
        gap: 1.5rem;
    }

    .home__comments {
        column-gap: 1.5rem;
        padding: 5rem 1.5rem;
    }

    .home__comments h2 {
        font-size: 2em;
    }

    /* Store */
    .store__categories {
        width: 85%;
    }

    .store__products {
        padding: 4rem 1.5rem;
    }

    .store__products h2 {
        font-size: 1.9em;
    }

    .store__products-grid {
        gap: 1.5rem;
    }

    /* Product */
    .product {
        padding: 4rem 1.5rem;
    }

    .pro__grid>span {
        font-size: 1.1em;
    }

    .pro__info h1 {
        font-size: 1.9em;
    }

    .pro__info h2 {
        font-size: 1.5em;
    }

    .pro__selects {
        grid-template-columns: 100%;
        grid-template-rows: 50px 50px;
    }

    .pro__gallery {
        width: 100%;
    }

    .pro__gallery-thumbs {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Cart */
    .cart {
        padding: 2rem 1.2rem 4rem 1.2rem;
    }

    .cart__products {
        padding: 2rem 1.5rem 2.4rem 1.5rem;
    }

    .cart__product-row p {
        font-size: 1.07em;
    }

    .cart__product-row>span {
        font-size: 1em;
    }

    .cart__resume-frame {
        padding: 2rem 1.5rem 1.6rem 1.5rem;
    }

    .cart__resume-row p,
    .cart__resume-row b {
        font-size: 1.07em;
    }

    /* Shipping */
    .ship__cont {
        padding: 2rem 1.5rem 4.66rem 1.5rem;
    }

    .ship__form {
        padding: 3.33rem 1.66rem 3.33rem 1.66rem;
    }

    .ship__form h2,
    .ship__client-info h3 {
        font-size: 1.3em;
    }

    .ship__client-info input {
        font-size: 1.2em;
    }

    .ship__client-info span {
        font-size: 1.1em;
        line-height: 1.5em;
    }

    /* Thanks */
    .thanks h1 {
        font-size: 2em;
    }

    .thanks p {
        font-size: 1em;

    }

    .thanks__links {
        flex-direction: column;
        margin: 1.5rem 0 0 auto;
    }

    /* Footers */
    footer.store {
        padding: 3rem 1.5rem;
    }
}



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


@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}