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

:root {
    --color-white: #F2EEE7;
    --color-cream: #FAF8F4;
    --color-sand: #D9CCBB;
    --color-stone: #B5ADA2;
    --color-olive: #7B8064;
    --color-forest: #5C6350;
    --color-wood: #A88B69;
    --color-gray-light: #B5ADA2;
    --color-gray-med: #6D6A66;
    --color-gray-dark: #2F2E2C;
    --color-black: #2F2E2C;
}

html {
    scroll-behavior: smooth;
}

body {
    position: relative;
    background-color: var(--color-white);
    color: var(--color-gray-dark);
}

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

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

h1,
h2,
h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.home__eyebrow {
    display: block;
    margin-bottom: 1rem;
    color: var(--color-olive);
    font-size: 0.85em;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}


/* --------------------------------------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 {
    position: relative;
    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: absolute;
    display: block;
    right: 4rem;
    bottom: 0;
    z-index: 50;
    width: 300px;
    height: max-content;
    max-height: 0;
    background-color: var(--color-gray-light);
    border-radius: 15px 3px 3px 15px;
    box-shadow: 0 0 3px #00000040;
    overflow: hidden;
    translate: 0 100%;
    transition: max-height 0.25s;
}

nav.expanded {
    max-height: 340px;
}

nav div {
    display: flex;
    flex-direction: column;
    padding: 1.33rem;
    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 #41485360;
    color: var(--color-gray-dark);
    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-gray-dark);
    color: var(--color-white);
    font-size: 1.2em;
}

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;
    gap: 1.5rem;
    align-items: center;
    justify-content: start;
}

.footer__brand img {
    display: block;
    height: 50px;
    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;

    min-width: 190px;

    width: max-content;

    height: 50px;

    padding: 0 1.5rem;

    border-radius: 25px;

    background-color: var(--color-olive);

    outline: none;

    border: none;

    color: var(--color-cream);

    text-decoration: none;

    cursor: pointer;

}

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

.btn-border {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 1rem;

    min-width: 190px;

    width: max-content;

    height: 50px;

    padding: 0 1.5rem;

    border-radius: 25px;

    background-color: transparent;

    outline: none;

    border: 1.5px solid currentColor;

    color: var(--color-white);

    text-decoration: none;

    cursor: pointer;

}



/* -------------------------------------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;
    opacity: .5;
}

.home__hero {
    position: relative;
    display: block;
    z-index: 1;
    padding: 4rem;
    width: 100%;
    height: 100%;
    min-height: 100vh;
}

.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: 80px;
}

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

.home__hero-sm a {
    color: var(--color-gray-light);
    text-decoration: none;
    font-size: 1.8em;
}

.home__hero-texts {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1000px;
    color: var(--color-white);
}

.home__hero-texts h1 {
    margin: 0;
    font-size: 2.2em;
}

.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;
}

.home__hero-scroll span {
    color: var(--color-white);
    font-size: 1em;
}

/* Features */
.home__features-cont {
    padding: 6rem 1rem;
    background: radial-gradient(circle at 60% 40%, #f3e6ff 0%, #ffe6ec 50%, #ffd6d6 100%);
}

.home__features-cont h2 {
    color: var(--color-gray-dark);
    text-align: center;
    font-size: 2.2em;
    font-weight: 700;
    margin-bottom: 3rem;
}

.home__features-cont a {
    margin-top: 3rem;
}

.home__features-cont .swiper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    overflow: hidden;
}

.home__features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: center;
    align-items: center;
    gap: 3rem;
    width: 100%;
    padding: 0 4rem;
    margin: auto;
}

.home__features-cont .swiper-button-prev, 
.home__features-cont .swiper-button-next {
    color: var(--color-cream);
    background: var(--color-olive);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-top: -20px;
    transition: background-color 0.25s ease;
}

.home__features-cont .swiper-button-prev:after,
.home__features-cont .swiper-button-next:after {
    font-size: 16px;
    font-weight: 700;
}

.home__features-cont .swiper-button-prev:hover,
.home__features-cont .swiper-button-next:hover {
    background-color: var(--color-forest);
}

.home__feature-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.75rem 1.5rem;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 30px;
    /* border: 2px solid var(--color-gray-med); */
    color: var(--color-gray-dark);
}

.home__feature-box i {
    font-size: 1.75em;
}

.home__feature-box h4 {
    margin: 1rem 0;
    text-align: center;
    font-size: 1.2em;
    text-transform: uppercase;
}

.home__feature-box p {
    text-align: center;
    font-size: 1.1em;
    line-height: 1.5;
}


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

.home__desc-cont h2 {
    color: var(--color-gray-light);
    text-align: center;
    font-size: 2.2em;
    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: 30px;
    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-light);
}

.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: radial-gradient(circle at 60% 40%, #f3e6ff 0%, #ffe6ec 50%, #ffd6d6 100%);
}

.home__desc-item i {
    font-size: 1.5em;
    color: var(--color-gray-dark);
}

.home__desc-item h4 {
    font-size: 1.3em;
    color: var(--color-white);
}

.home__desc-item p {
    font-size: 1em;
    font-weight: 500;
    line-height: 1.5em;
    color: var(--color-gray-light);
}

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

.home__store h2 {
    color: var(--color-gray-light);
    font-size: 2.2em;
    font-weight: 700;
}

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

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

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

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

.home__store-item .info {
    display: grid;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

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

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

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

.home__comments button {
    align-self: center;
    display: block;
    width: 40px;
    aspect-ratio: 1;
    background-color: transparent;
    outline: none;
    border: none;
    color: var(--color-gray-dark);
    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;
    max-width: 245px;
    color: var(--color-gray-med);
}

.home__comm img {
    display: block;
    width: 110px;
    aspect-ratio: 1;
    border-radius: 55px;
    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-dark);
}

.home__contact h2 {
    color: var(--color-white);
    font-size: 2.2em;
}

.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: transparent;
    border: 1px solid white;
    outline: none;
    border-radius: 15px;
    color: var(--color-gray-light);
    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-gray-med);
    text-decoration: none;
    font-size: 1.6em;
}



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

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

.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: #00000060;
}

.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;
    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-gray-light);
    border-radius: 3px;
}

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

.store__products h2 {
    color: var(--color-gray-light);
    font-size: 2em;
}

.store__products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, 250px);
    justify-content: center;
    gap: 2px;
    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;
}

.store__product-item .info {
    display: grid;
    grid-template-columns: 1fr auto;
    column-gap: 0.5rem;
    row-gap: 0.8rem;
    padding: 0.8rem 1rem;
    background-color: rgb(191, 214, 239);
    color: var(--color-gray-dark);
}

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

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

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



/* ----------------------------------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: 10px;
    box-shadow: 0 0 3px #00000040;
    object-fit: contain;
}

.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: 2.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;
}



/* ---------------------------------------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: 30px;
}

.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: 30px;
}

.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: 'Futura Std', 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: 30px;
}

.ship__form h2 {
    font-family: 'Futura Std', 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: 30px;
    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: 'Futura Std', 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: 'Futura Std', 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: 30px;
}

.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: 'Futura Std', 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: 30px;
}

.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-gray-med);
}

.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-gray-med);
    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: 'Futura Std', sans-serif;
    font-size: 1.2em;
    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;
}

.grecaptcha-badge {
    display: none !important;
}



/* -----------------------------------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;
        padding: 0 1rem;
    }

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

    .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;
    }

    /* 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 {
        right: 1.5rem;
    }

    /* 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 1rem;
    }

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

    .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);
    }
}

/* -----------------------------Dario Landing Refinement----------------------------- */

.home__hero-cont>img,
.home__hero-cont video {
    opacity: .42;
}

.home__hero {
    background: linear-gradient(90deg, rgba(47, 46, 44, 0.86) 0%, rgba(47, 46, 44, 0.55) 45%, rgba(47, 46, 44, 0.2) 100%);
}

.home__hero-texts {
    max-width: 920px;
}

.home__hero-texts h1 {
    max-width: 850px;
    font-size: clamp(2.4rem, 6vw, 5.625rem);
    line-height: 0.92;
}

.home__hero-texts p {
    max-width: 620px;
}

.home__philosophy {
    padding: 7rem 2.5rem;
    background-color: var(--color-white);
}

.home__philosophy-content {
    width: 100%;
    max-width: 920px;
}

.home__philosophy h2 {
    color: var(--color-gray-dark);
    font-size: clamp(3rem, 7vw, 6rem);
    line-height: 0.95;
}

.home__philosophy p {
    max-width: 720px;
    margin-top: 1.5rem;
    color: var(--color-gray-dark);
    font-size: 1.15em;
    line-height: 1.8;
}

.home__philosophy p:nth-of-type(2) {
    color: var(--color-olive);
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 1;
}

.home__features-cont {
    padding: 7rem 1.5rem;
    background: var(--color-cream);
}

.home__features-cont h2 {
    max-width: 780px;
    color: var(--color-gray-dark);
    text-align: center;
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1;
    margin-bottom: 4rem;
}

.home__features {
    grid-template-columns: repeat(2, minmax(260px, 1fr));
}

.home__feature-box {
    align-items: start;
    padding: 2.3rem;
    min-height: 390px;
    background-color: rgba(250, 248, 244, 0.72);
    border: 1px solid rgba(123, 128, 100, 0.22);
    border-radius: 6px;
}

.home__feature-box i {
    display: none;
}

.home__feature-box span {
    color: var(--color-olive);
    font-size: 0.95em;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.home__feature-box h4 {
    text-align: left;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.1em;
    text-transform: none;
}

.home__feature-box p {
    text-align: left;
}

.home__feature-box ul {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin: auto 0 0 0;
    padding-left: 1.1rem;
}

.home__feature-box li {
    line-height: 1.5;
}

.home__desc-cont {
    gap: 4rem;
    padding: 7rem 2.5rem;
    background-color: var(--color-gray-dark);
}

.home__desc-cont h2 {
    max-width: 820px;
    color: var(--color-white);
    text-align: center;
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1;
}

.home__desc-intro {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 820px;
    text-align: center;
}

.home__desc-intro p {
    margin-top: 1.5rem;
    max-width: 620px;
    color: var(--color-gray-light);
    font-size: 1.1em;
    line-height: 1.8;
}

.home__description {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home__desc-item {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
    color: var(--color-gray-light);
    border-top: 1px solid rgba(181, 173, 162, 0.4);
    padding-top: 1.5rem;
}

.home__desc-item div,
.home__desc-item i {
    display: none;
}

.home__desc-item h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2em;
}

.home__store {
    background-color: var(--color-white);
}

.home__store h2 {
    color: var(--color-gray-dark);
    font-size: clamp(2.5rem, 6vw, 5rem);
}

.home__store-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
}

.home__store-item {
    border-radius: 4px;
}

.home__store-item .image {
    aspect-ratio: 4 / 5;
}

.home__store-item .info {
    display: grid;
    place-items: end start;
    position: absolute;
    inset: 0;
    padding: 1.5rem;
    background: linear-gradient(180deg, transparent 30%, rgba(47, 46, 44, 0.68) 100%);
    transform: none;
}

.home__store-item h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2em;
}

.home__comments {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    padding: 7rem 4rem;
    background-color: var(--color-cream);
}

.home__comments h2 {
    max-width: 760px;
    color: var(--color-gray-dark);
    text-align: center;
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1;
}

.home__team-intro {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.home__team-intro p {
    margin-top: 1.5rem;
    max-width: 560px;
    color: var(--color-gray-med);
    font-size: 1.05em;
    line-height: 1.8;
}

.home__team-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.home__comm {
    padding: 1.5rem;
    max-width: none;
    color: var(--color-gray-med);
    background: rgba(250, 248, 244, 0.78);
    border: 1px solid rgba(123, 128, 100, 0.18);
}

.home__comm span {
    color: var(--color-olive);
    text-align: center;
    font-size: 0.85em;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.home__comm h4 {
    color: var(--color-gray-dark);
    font-family: 'Cormorant Garamond', serif;
    font-size: 2em;
}

.home__contact {
    gap: 3rem;
    padding: 7rem 2.5rem;
    background-color: var(--color-gray-dark);
}

.home__contact h2 {
    max-width: 700px;
    text-align: center;
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1;
}

.home__contact input,
.home__contact textarea {
    border: 1px solid rgba(181, 173, 162, 0.78);
}

.home__contact-links a {
    color: var(--color-sand);
}

footer {
    background-color: var(--color-black);
}

@media screen and (max-width: 979px) {
    .home__features {
        grid-template-columns: 1fr;
        max-width: 650px;
        padding: 0 1rem;
    }

    .home__team-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
    }
}

@media screen and (max-width: 480px) {
    .home__hero-texts h1 {
        font-size: 2.55rem;
    }

    .home__feature-box {
        min-height: auto;
    }
}

/* -----------------------------Gallery Page----------------------------- */
.gallery-page {
    background: var(--color-white);
    color: var(--color-gray-dark);
}

.gallery-hero {
    justify-content: start;
    min-height: 82vh;
    padding: 2.5rem;
    background:
        linear-gradient(180deg, rgba(47, 46, 44, 0.62), rgba(47, 46, 44, 0.2)),
        url('../assets/img/cover.webp') center / cover no-repeat;
    color: var(--color-white);
}

.gallery-header {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1240px;
    height: auto;
    padding: 0;
    z-index: 2;
}

.gallery-header img {
    height: 72px;
}

.gallery-nav {
    position: static;
    display: flex;
    gap: 1.75rem;
    width: auto;
    max-height: none;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
    translate: none;
}

.gallery-nav a {
    display: block;
    padding: 0;
    border-bottom: none;
    color: var(--color-white);
    text-decoration: none;
    font-size: 0.95em;
}

.gallery-nav a:hover {
    text-decoration: underline;
}

.gallery-hero__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    min-height: calc(82vh - 5rem);
    padding-bottom: 0;
}

.gallery-hero .home__eyebrow {
    color: var(--color-sand);
}

.gallery-hero h1 {
    max-width: 900px;
    font-size: clamp(2.55rem, 6vw, 5.25rem);
    line-height: 0.92;
}

.gallery-hero p {
    max-width: 620px;
    margin-top: 1.5rem;
    font-size: 1.12em;
    line-height: 1.85;
}

.gallery-category-nav {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
    padding: 1rem 1.5rem;
    background: rgba(247, 241, 232, 0.88);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(111, 118, 84, 0.16);
}

.gallery-category-nav a {
    padding: 0.7rem 1.15rem;
    border: 1px solid rgba(111, 118, 84, 0.24);
    border-radius: 999px;
    color: var(--color-gray-dark);
    text-decoration: none;
    font-size: 0.92em;
    transition: background-color 0.25s, color 0.25s, border-color 0.25s;
}

.gallery-category-nav a:hover {
    background-color: var(--color-olive);
    border-color: var(--color-olive);
    color: var(--color-white);
}

.gallery-section {
    gap: 3rem;
    padding: 7rem 2.5rem;
    overflow: hidden;
}

.gallery-section:nth-of-type(odd) {
    background: var(--color-cream);
}

.gallery-section__intro {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    column-gap: 1.5rem;
    row-gap: 0.5rem;
    width: 100%;
    max-width: 1180px;
}

.gallery-section__intro span {
    grid-row: 1 / 3;
    color: var(--color-olive);
    font-weight: 700;
    letter-spacing: 0.14em;
}

.gallery-section__intro h2 {
    font-size: clamp(3rem, 7vw, 6rem);
    line-height: 0.95;
}

.gallery-section__intro p {
    max-width: 560px;
    color: var(--color-gray-med);
    font-size: 1.08em;
    line-height: 1.75;
}

.gallery-masonry {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    grid-auto-rows: 220px;
    gap: 1rem;
    width: 100%;
    max-width: 1180px;
}

.gallery-masonry--reverse {
    grid-template-columns: 1fr 0.8fr 1.2fr;
}



/* -----------------------------Gallery Hover Stability Fix----------------------------- */
.gallery-photo {
    isolation: isolate;
    contain: paint;
    transform: translateZ(0);
}

.gallery-photo,
.gallery-photo img,
.gallery-photo::after {
    border-radius: inherit;
}

.gallery-photo::after {
    pointer-events: none;
}

.gallery-photo:hover {
    z-index: 2;
}

.gallery-photo:hover img {
    transform: none;
    filter: brightness(0.92) contrast(1.03);
}

.gallery-photo img {
    transition: filter 0.3s ease;
}

.gallery-photo--large {
    grid-column: span 2;
    grid-row: span 2;
    border-radius: 36px;
}

.gallery-photo--tall {
    grid-row: span 2;
}

.gallery-cta {
    gap: 1.5rem;
    padding: 7rem 2.5rem;
    background-color: var(--color-gray-dark);
    color: var(--color-white);
    text-align: center;
}

.gallery-cta .home__eyebrow {
    color: var(--color-sand);
}

.gallery-cta h2 {
    max-width: 720px;
    font-size: clamp(3rem, 7vw, 5.5rem);
    line-height: 0.95;
}

.gallery-cta p {
    max-width: 560px;
    color: var(--color-gray-light);
    font-size: 1.1em;
    line-height: 1.8;
}

.gallery-cta .btn-filled {
    margin-top: 1.5rem;
}

@media screen and (max-width: 900px) {
    .gallery-hero {
        min-height: 72vh;
        padding: 2rem;
    }

    .gallery-header {
        gap: 1.5rem;
    }

    .gallery-nav {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: end;
    }

    .gallery-hero__content {
        min-height: calc(72vh - 4rem);
        padding-bottom: 3rem;
    }

    .gallery-masonry,
    .gallery-masonry--reverse {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 200px;
    }

    .gallery-photo--large {
        grid-column: span 2;
        grid-row: span 2;
    }
}

@media screen and (max-width: 640px) {
    .gallery-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .gallery-header img {
        height: 58px;
    }

    .gallery-nav {
        justify-content: start;
    }

    .gallery-section {
        padding: 5rem 1.25rem;
    }

    .gallery-section__intro {
        grid-template-columns: 1fr;
    }

    .gallery-section__intro span {
        grid-row: auto;
    }

    .gallery-masonry,
    .gallery-masonry--reverse {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }

    .gallery-photo,
    .gallery-photo--large,
    .gallery-photo--tall {
        grid-column: auto;
        grid-row: auto;
        min-height: 0;
        aspect-ratio: 4 / 5;
        border-radius: 24px;
    }

    .gallery-photo--large {
        aspect-ratio: 1 / 1.15;
    }

    .gallery-category-nav {
        justify-content: start;
        overflow-x: auto;
        flex-wrap: nowrap;
    }

    .gallery-category-nav a {
        flex-shrink: 0;
    }
}

/* -----------------------------Gallery Modal----------------------------- */
body.gallery-modal-open {
    overflow: hidden;
}

.gallery-modal {
    position: fixed;
    inset: 0;
    z-index: 999;
    display: grid;
    place-items: center;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.28s ease, visibility 0.28s ease;
}

.gallery-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.gallery-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(47, 46, 44, 0.78);
    backdrop-filter: blur(18px);
}

.gallery-modal__dialog {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 1.2rem;
    width: min(100%, 1180px);
    max-height: calc(100vh - 4rem);
    z-index: 1;
}

.gallery-modal__figure {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    min-width: 0;
}

.gallery-modal__figure img {
    display: block;
    width: auto;
    max-width: 100%;
    max-height: calc(100vh - 9rem);
    border-radius: 28px;
    object-fit: contain;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
}

.gallery-modal__figure figcaption {
    color: var(--color-white);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.65em;
    line-height: 1;
}

.gallery-modal__close,
.gallery-modal__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(247, 241, 232, 0.45);
    border-radius: 999px;
    background: rgba(247, 241, 232, 0.14);
    color: var(--color-white);
    cursor: pointer;
    backdrop-filter: blur(12px);
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.gallery-modal__close:hover,
.gallery-modal__nav:hover {
    background: rgba(247, 241, 232, 0.28);
    transform: translateY(-2px);
}

.gallery-modal__close {
    position: absolute;
    top: -0.75rem;
    right: 0;
    z-index: 2;
}

.gallery-modal__nav i,
.gallery-modal__close i {
    font-size: 1.15em;
}

@media screen and (max-width: 720px) {
    .gallery-modal {
        padding: 1rem;
    }

    .gallery-modal__dialog {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .gallery-modal__figure {
        grid-column: 1 / -1;
        grid-row: 1 / 2;
    }

    .gallery-modal__figure img {
        max-height: calc(100vh - 11rem);
        border-radius: 22px;
    }

    .gallery-modal__close {
        top: 0.75rem;
        right: 0.75rem;
    }

    .gallery-modal__nav {
        width: 100%;
        max-width: none;
    }

    .gallery-modal__nav--prev {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
    }

    .gallery-modal__nav--next {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
    }
}

/* -----------------------------Gallery Masonry Extensions----------------------------- */
.gallery-photo--wide {
    grid-column: span 2;
}

@media screen and (max-width: 640px) {
    .gallery-photo--wide {
        grid-column: auto;
    }
}

/* -----------------------------Team Flip Cards----------------------------- */
.home__team-card {
    min-height: 390px;
    padding: 0;
    background: transparent;
    border: none;
    perspective: 1200px;
}

.home__team-card-inner {
    position: relative;
    width: 100%;
    min-height: 390px;
    transform-style: preserve-3d;
    transition: transform 0.7s cubic-bezier(0.2, 0.65, 0.2, 1);
}

.home__team-card:hover .home__team-card-inner,
.home__team-card:focus-within .home__team-card-inner {
    transform: rotateY(180deg);
}

.home__team-card-face {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.4rem;
    min-height: 390px;
    padding: 2rem;
    border: 1px solid rgba(111, 118, 84, 0.16);
    border-radius: 24px;
    backface-visibility: hidden;
    overflow: hidden;
}

.home__team-card-front {
    background: rgba(247, 241, 232, 0.72);
    color: var(--color-gray-med);
}

.home__team-card-front h4,
.home__team-card-back h4 {
    margin: 0;
}

.home__team-card-front p {
    max-width: 300px;
}

.home__team-card-front small {
    margin-top: auto;
    color: var(--color-olive);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.home__team-card-back {
    padding: 0;
    transform: rotateY(180deg);
    background: var(--color-gray-dark);
    color: var(--color-white);
}

.home__team-card-back img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
    object-fit: cover;
}

.home__team-card-back::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(23, 24, 18, 0.05) 20%, rgba(23, 24, 18, 0.82) 100%);
}

.home__team-card-back div {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: end;
    gap: 0.8rem;
    width: 100%;
    height: 100%;
    padding: 2rem;
    text-align: center;
}

.home__team-card-back span {
    color: var(--color-sand);
}

.home__team-card-back h4 {
    color: var(--color-white);
}

@media screen and (max-width: 979px) {
    .home__team-card,
    .home__team-card-inner,
    .home__team-card-face {
        min-height: 360px;
    }
}

@media screen and (max-width: 640px) {
    .home__team-card:hover .home__team-card-inner {
        transform: none;
    }

    .home__team-card:active .home__team-card-inner,
    .home__team-card:focus-within .home__team-card-inner {
        transform: rotateY(180deg);
    }
}
/* -----------------------------Home Gallery Layout Fix----------------------------- */
.home__store-grid {
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    max-width: 960px;
}

@media screen and (max-width: 900px) {
    .home__store-grid {
        grid-template-columns: repeat(2, minmax(220px, 1fr));
        max-width: 680px;
    }
}

@media screen and (max-width: 560px) {
    .home__store-grid {
        grid-template-columns: 1fr;
        max-width: 360px;
    }
}

/* -----------------------------Team Cards Mobile Only Fix----------------------------- */
@media screen and (max-width: 640px) {
    .home__comments {
        padding: 5rem 1.25rem;
    }

    .home__team-grid {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
        max-width: 420px;
        gap: 1.5rem;
        margin: 0 auto;
    }

    .home__team-card {
        width: 100%;
        max-width: none;
        min-width: 0;
        min-height: 430px;
        margin: 0 auto;
        padding: 0;
        background: transparent;
        border: none;
        perspective: 1200px;
    }

    .home__team-card-inner {
        position: relative;
        width: 100%;
        min-width: 0;
        min-height: 430px;
        transform-style: preserve-3d;
    }

    .home__team-card-face {
        position: absolute;
        inset: 0;
        width: 100%;
        min-width: 0;
        min-height: 430px;
        padding: 1.75rem;
        border-radius: 24px;
        overflow: hidden;
        backface-visibility: hidden;
    }

    .home__team-card-front {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1.25rem;
        text-align: center;
    }

    .home__team-card-front span,
    .home__team-card-back span {
        display: block;
        width: 100%;
        max-width: 100%;
        line-height: 1.35;
        word-break: normal;
        overflow-wrap: normal;
    }

    .home__team-card-front h4,
    .home__team-card-back h4 {
        width: 100%;
        max-width: 100%;
        margin: 0;
        font-size: 2.25em;
        line-height: 0.95;
        word-break: normal;
        overflow-wrap: normal;
    }

    .home__team-card-front p {
        width: 100%;
        max-width: 310px;
        margin: 0 auto;
        font-size: 1em;
        line-height: 1.7;
    }

    .home__team-card-front small {
        margin-top: 0.5rem;
    }

    .home__team-card-back {
        padding: 0;
    }

    .home__team-card-back img {
        position: absolute;
        inset: 0;
        width: 100% !important;
        height: 100% !important;
        max-width: none !important;
        aspect-ratio: auto !important;
        border-radius: 0 !important;
        object-fit: cover !important;
    }

    .home__team-card-back div {
        position: relative;
        z-index: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: end;
        width: 100%;
        height: 100%;
        padding: 2rem;
        text-align: center;
    }
}

/* -----------------------------Photography Section Mobile Fix----------------------------- */
@media screen and (max-width: 979px) {
    .home__desc-cont {
        padding: 6rem 2rem;
    }

    .home__description {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 2.5rem;
        max-width: 720px;
    }

    .home__description video {
        grid-column: 1 / -1;
        grid-row: auto;
        width: 100%;
        max-width: 360px;
        margin: 0 auto;
    }
}

@media screen and (max-width: 640px) {
    .home__desc-cont {
        gap: 3rem;
        padding: 5rem 1.25rem;
        overflow: hidden;
    }

    .home__desc-cont h2 {
        max-width: 100%;
        font-size: clamp(2.6rem, 14vw, 4rem);
        line-height: 0.95;
    }

    .home__desc-intro p {
        max-width: 100%;
        font-size: 1em;
        line-height: 1.7;
    }

    .home__description {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.6rem;
        width: 100%;
        max-width: 420px;
    }

    .home__description video {
        grid-column: auto;
        grid-row: auto;
        width: 100%;
        max-width: 320px;
        margin: 0 auto 1rem auto;
        border-radius: 24px;
    }

    .home__desc-item {
        width: 100%;
        min-width: 0;
        padding: 1.35rem 0 0 0;
        border-top: 1px solid rgba(247, 241, 232, 0.28);
    }

    .home__desc-item h4 {
        font-size: 2.45em;
        line-height: 0.95;
    }

    .home__desc-item p {
        width: 100%;
        max-width: 100%;
        font-size: 1em;
        font-weight: 500;
        line-height: 1.65;
        color: var(--color-gray-light);
        word-break: normal;
        overflow-wrap: normal;
    }
}

/* -----------------------------Contact Notification----------------------------- */
.contact-notification {
    display: none;
    width: min(100%, 720px);
    padding: 1rem 1.25rem;
    border-radius: 18px;
    border: 1px solid rgba(247, 241, 232, 0.24);
    color: var(--color-white);
    text-align: center;
    font-weight: 600;
    line-height: 1.6;
}

.contact-notification.is-visible {
    display: block;
}

.contact-notification.is-success {
    background: rgba(111, 118, 84, 0.85);
}

.contact-notification.is-warning {
    background: rgba(216, 199, 173, 0.22);
    border-color: rgba(216, 199, 173, 0.55);
}

.contact-notification.is-error {
    background: rgba(139, 67, 67, 0.82);
}

.home__contact button[disabled] {
    opacity: 0.7;
    cursor: wait;
}
/* -----------------------------Hero Scroll Hint Subtle----------------------------- */
.home__hero-scroll {
    opacity: 0.62;
    gap: 0.45rem;
}

.home__hero-scroll span {
    font-size: 0.82em;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.home__hero-scroll i {
    font-size: 1.25em;
    opacity: 0.78;
}

@media screen and (max-width: 640px) {
    .home__hero-scroll {
        opacity: 0.5;
    }

    .home__hero-scroll span {
        font-size: 0.72em;
    }

    .home__hero-scroll i {
        font-size: 1.05em;
    }
}

/* -----------------------------Contact Select----------------------------- */
.home__contact select {
    display: block;
    padding: 0 1rem;
    width: 100%;
    height: 50px;
    background: transparent;
    border: 1px solid rgba(181, 173, 162, 0.78);
    outline: none;
    border-radius: 15px;
    color: var(--color-gray-light);
    font-size: 1.1em;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, var(--color-sand) 50%), linear-gradient(135deg, var(--color-sand) 50%, transparent 50%);
    background-position: calc(100% - 22px) 50%, calc(100% - 16px) 50%;
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
}

.home__contact select:invalid {
    color: rgba(181, 173, 162, 0.78);
}

.home__contact select option,
.home__contact select optgroup {
    background-color: var(--color-gray-dark);
    color: var(--color-white);
}
/* -----------------------------Gallery Masonry Gap Fix----------------------------- */
.gallery-masonry,
.gallery-masonry--reverse {
    display: block;
    columns: 3 280px;
    column-gap: 1rem;
    width: 100%;
    max-width: 1180px;
}

.gallery-photo,
.gallery-photo--large,
.gallery-photo--tall,
.gallery-photo--wide {
    display: block;
    width: 100%;
    min-height: 0;
    margin: 0 0 1rem 0;
    break-inside: avoid;
    grid-column: auto;
    grid-row: auto;
}

.gallery-photo img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.gallery-photo--large img,
.gallery-photo--wide img {
    aspect-ratio: 16 / 10;
}

.gallery-photo--tall img {
    aspect-ratio: 4 / 5;
}

.gallery-photo:not(.gallery-photo--large):not(.gallery-photo--wide):not(.gallery-photo--tall) img {
    aspect-ratio: 1 / 1;
}

@media screen and (max-width: 900px) {
    .gallery-masonry,
    .gallery-masonry--reverse {
        columns: 2 240px;
    }
}

@media screen and (max-width: 640px) {
    .gallery-masonry,
    .gallery-masonry--reverse {
        columns: 1;
        column-gap: 0;
    }

    .gallery-photo,
    .gallery-photo--large,
    .gallery-photo--tall,
    .gallery-photo--wide {
        margin-bottom: 1rem;
    }
}
/* -----------------------------Gallery Sticky Nav Logo----------------------------- */
.gallery-category-nav {
    align-items: center;
    justify-content: center;
    min-height: 74px;
}

.gallery-category-nav__logo {
    position: absolute;
    left: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: none;
    border-radius: 0;
    opacity: 0.86;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.gallery-category-nav__logo:hover {
    background: transparent;
    color: inherit;
    opacity: 1;
    transform: translateY(-1px);
}

.gallery-category-nav__logo img {
    display: block;
    width: auto;
    height: 42px;
    object-fit: contain;
}

.gallery-category-nav__links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
}

@media screen and (max-width: 900px) {
    .gallery-category-nav {
        justify-content: flex-start;
        gap: 1rem;
        padding: 0.85rem 1.25rem;
    }

    .gallery-category-nav__logo {
        position: static;
        flex-shrink: 0;
    }

    .gallery-category-nav__logo img {
        height: 34px;
    }

    .gallery-category-nav__links {
        flex: 1;
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 0.15rem;
        scrollbar-width: none;
    }

    .gallery-category-nav__links::-webkit-scrollbar {
        display: none;
    }

    .gallery-category-nav__links a {
        flex-shrink: 0;
    }
}

@media screen and (max-width: 480px) {
    .gallery-category-nav__logo img {
        height: 30px;
    }
}
/* -----------------------------Gallery Sticky Logo Dark Version----------------------------- */
.gallery-category-nav__logo {
    min-width: auto;
    min-height: auto;
    padding: 0;
    background-color: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.gallery-category-nav__logo:hover {
    background-color: transparent;
}

.gallery-category-nav__logo img {
    height: 42px;
    max-width: 120px;
    filter: brightness(0) saturate(100%) invert(17%) sepia(5%) saturate(388%) hue-rotate(2deg) brightness(94%) contrast(90%);
}

@media screen and (max-width: 900px) {
    .gallery-category-nav__logo img {
        height: 34px;
        max-width: 96px;
    }
}

@media screen and (max-width: 480px) {
    .gallery-category-nav__logo img {
        height: 30px;
        max-width: 86px;
    }
}

/* -----------------------------Gallery Sticky Logo No Border----------------------------- */
.gallery-category-nav .gallery-category-nav__logo {
    border: none;
    background-color: transparent;
    box-shadow: none;
}

.gallery-category-nav .gallery-category-nav__logo:hover {
    border: none;
    background-color: transparent;
}



/* -----------------------------Gallery Mobile Natural Image Fix----------------------------- */
@media screen and (max-width: 640px) {
    .gallery-masonry,
    .gallery-masonry--reverse {
        display: block;
        columns: 1;
        column-gap: 0;
    }

    .gallery-photo,
    .gallery-photo--large,
    .gallery-photo--tall,
    .gallery-photo--wide {
        display: block;
        width: 100%;
        min-height: 0 !important;
        height: auto !important;
        aspect-ratio: auto !important;
        margin: 0 0 1rem 0;
        background-color: transparent;
        border-radius: 26px;
        overflow: hidden;
    }

    .gallery-photo img,
    .gallery-photo--large img,
    .gallery-photo--tall img,
    .gallery-photo--wide img,
    .gallery-photo:not(.gallery-photo--large):not(.gallery-photo--wide):not(.gallery-photo--tall) img {
        display: block;
        width: 100%;
        height: auto !important;
        min-height: 0 !important;
        aspect-ratio: auto !important;
        object-fit: contain !important;
        border-radius: 0;
    }
}

/* -----------------------------Gallery Hero Mobile Header Same Row Fix----------------------------- */
@media screen and (max-width: 640px) {
    .gallery-hero .gallery-header {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 1.25rem !important;
        width: 100%;
        padding: 0;
    }

    .gallery-hero .gallery-header > a {
        flex: 0 0 auto;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        width: auto;
    }

    .gallery-hero .gallery-header > a img {
        width: auto;
        height: 58px;
        object-fit: contain;
    }

    .gallery-hero .gallery-nav {
        position: static !important;
        flex: 1 1 auto;
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 1rem !important;
        width: auto !important;
        max-width: none !important;
        max-height: none !important;
        padding: 0 !important;
        background: transparent !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        translate: none !important;
        scrollbar-width: none;
    }

    .gallery-hero .gallery-nav::-webkit-scrollbar {
        display: none;
    }

    .gallery-hero .gallery-nav a {
        flex: 0 0 auto;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        border: none;
        color: var(--color-white);
        font-size: 0.95rem;
        font-weight: 600;
        line-height: 1;
        text-decoration: none;
        white-space: nowrap;
    }
}

@media screen and (max-width: 390px) {
    .gallery-hero .gallery-header {
        gap: 0.9rem !important;
    }

    .gallery-hero .gallery-header > a img {
        height: 50px;
    }

    .gallery-hero .gallery-nav {
        gap: 0.85rem !important;
    }

    .gallery-hero .gallery-nav a {
        font-size: 0.86rem;
    }
}

/* -----------------------------Gallery Rounded Corners Final Fix----------------------------- */
.gallery-photo,
.gallery-photo--large,
.gallery-photo--tall,
.gallery-photo--wide {
    border-radius: 26px !important;
    overflow: hidden !important;
    -webkit-mask-image: -webkit-radial-gradient(white, black);
    clip-path: inset(0 round 26px);
}

.gallery-photo img,
.gallery-photo--large img,
.gallery-photo--tall img,
.gallery-photo--wide img {
    border-radius: 26px !important;
    overflow: hidden !important;
}

@media screen and (max-width: 640px) {
    .gallery-photo,
    .gallery-photo--large,
    .gallery-photo--tall,
    .gallery-photo--wide,
    .gallery-photo img,
    .gallery-photo--large img,
    .gallery-photo--tall img,
    .gallery-photo--wide img {
        border-radius: 22px !important;
        clip-path: inset(0 round 22px);
    }
}

/* -----------------------------Privacy Notice Minimal Adjustments----------------------------- */
.privacy-page .gallery-hero {
    min-height: 68vh;
}

.privacy-page .gallery-hero__content {
    min-height: calc(68vh - 5rem);
}

.privacy-content {
    align-items: center;
}

.privacy-card {
    padding: clamp(2rem, 5vw, 4rem);
    background-color: var(--color-cream);
    border: 1px solid rgba(123, 128, 100, 0.16);
    border-radius: 28px;
    box-shadow: 0 24px 70px rgba(47, 46, 44, 0.08);
}

.privacy-updated {
    margin-bottom: 2rem;
    color: var(--color-olive);
    font-size: 0.9em;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.privacy-card h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-gray-dark);
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1;
}

.privacy-card h2:first-of-type {
    margin-top: 0;
}

.privacy-card p,
.privacy-card li {
    color: var(--color-gray-med);
    font-size: 1.03em;
    line-height: 1.85;
}

.privacy-card ul {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    margin: 1rem 0 0 0;
    padding-left: 1.25rem;
}

.privacy-card a:not(.btn-border):not(.btn-filled) {
    color: var(--color-olive);
    font-weight: 700;
    text-decoration: none;
}

.privacy-card a:not(.btn-border):not(.btn-filled):hover {
    color: var(--color-forest);
    text-decoration: underline;
}

.privacy-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 3rem;
}

.privacy-actions .btn-border {
    color: var(--color-gray-dark);
}

@media screen and (max-width: 720px) {
    .privacy-page .gallery-hero {
        min-height: auto;
    }

    .privacy-page .gallery-hero__content {
        min-height: auto;
        padding: 5rem 0 2rem;
    }

    .privacy-card {
        border-radius: 22px;
    }

    .privacy-actions {
        flex-direction: column;
    }

    .privacy-actions .btn-border,
    .privacy-actions .btn-filled {
        width: 100%;
    }
}
/* -----------------------------Privacy Notice Simple Layout Override----------------------------- */
.privacy-simple-header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    width: 100%;
    height: auto;
    padding: 1.5rem 2.5rem;
    background-color: var(--color-white);
    border-bottom: 1px solid rgba(123, 128, 100, 0.16);
}

.privacy-simple-header img {
    width: auto;
    height: 58px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(17%) sepia(5%) saturate(388%) hue-rotate(2deg) brightness(94%) contrast(90%);
}

.privacy-simple-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
    width: auto;
    max-height: none;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
    translate: none;
}

.privacy-simple-nav a {
    display: inline-flex;
    padding: 0;
    border: none;
    color: var(--color-gray-dark);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
}

.privacy-simple-nav a:hover {
    color: var(--color-olive);
    text-decoration: underline;
}

.privacy-page {
    background-color: var(--color-white);
}

.privacy-content {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 2.5rem;
    background-color: var(--color-white);
}

.privacy-card {
    width: min(100%, 920px);
    padding: clamp(2rem, 5vw, 3.5rem);
    background-color: var(--color-cream);
    border: 1px solid rgba(123, 128, 100, 0.16);
    border-radius: 24px;
    box-shadow: 0 18px 50px rgba(47, 46, 44, 0.07);
}

.privacy-card h1 {
    margin: 0;
    color: var(--color-gray-dark);
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 1;
}

.privacy-intro {
    max-width: 680px;
    margin-top: 1.25rem;
    color: var(--color-gray-med);
    font-size: 1.08rem;
    line-height: 1.75;
}

.privacy-updated {
    margin-top: 2rem;
    margin-bottom: 2.25rem;
    color: var(--color-olive);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.privacy-card h2 {
    margin-top: 2.25rem;
    margin-bottom: 0.85rem;
    color: var(--color-gray-dark);
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.65rem, 3vw, 2.35rem);
    line-height: 1.05;
}

.privacy-card h2:first-of-type {
    margin-top: 0;
}

.privacy-card p,
.privacy-card li {
    color: var(--color-gray-med);
    font-size: 1rem;
    line-height: 1.8;
}

.privacy-card p + p {
    margin-top: 0.75rem;
}

.privacy-card ul {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin: 0.85rem 0 0 0;
    padding-left: 1.25rem;
}

.privacy-card a:not(.btn-border):not(.btn-filled) {
    color: var(--color-olive);
    font-weight: 700;
    text-decoration: none;
}

.privacy-card a:not(.btn-border):not(.btn-filled):hover {
    color: var(--color-forest);
    text-decoration: underline;
}

.privacy-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 3rem;
}

.privacy-actions .btn-border {
    color: var(--color-gray-dark);
}

@media screen and (max-width: 720px) {
    .privacy-simple-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 1.25rem;
        padding: 1.25rem;
    }

    .privacy-simple-header img {
        height: 52px;
    }

    .privacy-simple-nav {
        flex-wrap: wrap;
        gap: 0.85rem 1.1rem;
    }

    .privacy-simple-nav a {
        font-size: 0.9rem;
    }

    .privacy-content {
        padding: 3rem 1.25rem;
    }

    .privacy-card {
        border-radius: 20px;
    }

    .privacy-card h1 {
        font-size: 2.4rem;
    }

    .privacy-card h2 {
        font-size: 1.75rem;
    }

    .privacy-actions {
        flex-direction: column;
    }

    .privacy-actions .btn-border,
    .privacy-actions .btn-filled {
        width: 100%;
    }
}