* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #f4f0e8;
    color: #24231f;
    font-family: Arial, Helvetica, sans-serif;
}


/* =========================
   NAVBAR
========================= */

.navbar {
    height: 90px;
    padding: 0 5vw;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: Georgia, serif;
    font-size: 32px;
    font-style: italic;
}

nav {
    display: flex;
    gap: 35px;
}

nav a {
    color: #24231f;
    text-decoration: none;

    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;

    transition: opacity 0.3s;
}

nav a:hover {
    opacity: 0.5;
}


/* =========================
   HERO
========================= */

.hero {
    min-height: calc(100vh - 90px);

    padding: 5vh 5vw;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 6vw;

    align-items: center;
}


/* TESTO */

.hero-text {
    min-height: 75vh;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    text-align: center;
}


/* PICCOLA SCRITTA */

.small-text {
    font-size: 11px;

    letter-spacing: 2px;

    text-transform: uppercase;

    margin-bottom: 25px;
}


/* AMÉLIE */

h1 {
    font-family: Georgia, serif;

    font-weight: normal;

    font-size: clamp(100px, 12vw, 190px);

    line-height: 0.8;

    letter-spacing: -8px;

    margin-bottom: 35px;
}


/* DESCRIZIONE */

.description {
    max-width: 320px;

    font-size: 15px;

    line-height: 1.6;

    margin-bottom: 30px;
}


/* BOTTONE */

.button {
    background: #24231f;

    color: #f4f0e8;

    padding: 15px 25px;

    text-decoration: none;

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: 1.5px;

    transition: 0.3s;
}

.button:hover {
    background: #b6a98f;
}


/* =========================
   FOTO HERO
========================= */

.hero-image {
    width: 100%;

    display: flex;

    justify-content: center;

    align-items: center;
}

.hero-image img {
    width: 100%;

    max-height: 75vh;

    object-fit: contain;

    display: block;
}


/* =========================
   INTRO
========================= */

.intro {
    min-height: 70vh;

    padding: 15vh 5vw;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    text-align: center;
}

.intro h2 {
    font-family: Georgia, serif;

    font-weight: normal;

    font-size: clamp(50px, 7vw, 100px);

    line-height: 0.9;

    letter-spacing: -4px;
}


/* =========================
   GALLERY
========================= */

.gallery {
    padding: 10vh 5vw 15vh;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;

    align-items: start;
}

.gallery-item {
    width: 100%;
}

.gallery-middle {
    margin-top: 100px;
}

.gallery-image {
    width: 100%;

    height: 55vh;

    overflow: hidden;

    margin-bottom: 15px;
}

.gallery-image img {
    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

    transition: transform 0.6s ease;
}

.gallery-image:hover img {
    transform: scale(1.04);
}

.gallery-item p {
    font-size: 10px;

    letter-spacing: 2px;

    text-transform: uppercase;
}


/* =========================
   MANIFESTO
========================= */

.manifesto {
    min-height: 90vh;

    padding: 15vh 5vw;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    text-align: center;
}

.manifesto h2 {
    font-family: Georgia, serif;

    font-weight: normal;

    font-size: clamp(55px, 8vw, 120px);

    line-height: 0.88;

    letter-spacing: -5px;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 800px) {

    .navbar {
        height: 75px;

        padding: 0 6vw;
    }

    .logo {
        font-size: 27px;
    }

    nav {
        gap: 15px;
    }

    nav a {
        font-size: 10px;
    }

    .hero {
        grid-template-columns: 1fr;

        padding: 30px 6vw 80px;

        gap: 50px;
    }

    .hero-text {
        min-height: 60vh;
    }

    h1 {
        font-size: 85px;

        letter-spacing: -5px;
    }

    .hero-image img {
        max-height: 60vh;
    }

    .intro {
        padding: 12vh 6vw;
    }

    .intro h2 {
        font-size: 50px;

        letter-spacing: -2px;
    }

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

        gap: 50px;

        padding: 8vh 6vw;
    }

    .gallery-middle {
        margin-top: 0;
    }

    .gallery-image {
        height: 65vh;
    }

    .manifesto {
        min-height: 70vh;

        padding: 12vh 6vw;
    }

    .manifesto h2 {
        font-size: 55px;

        letter-spacing: -3px;
    }
}
/* =========================
   GALLERY - EDITORIAL STYLE
========================= */

.gallery {
    padding: 12vh 5vw 18vh;

    display: grid;

    grid-template-columns: 1fr 1fr 1fr;

    gap: 30px;

    align-items: start;
}

.gallery-item {
    width: 100%;
}

.gallery-middle {
    margin-top: 120px;
}

.gallery-image {
    width: 100%;

    height: 58vh;

    overflow: hidden;

    margin-bottom: 18px;
}

.gallery-image img {
    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

    transition: transform 0.7s ease;
}

.gallery-image:hover img {
    transform: scale(1.04);
}

.gallery-item p {
    font-size: 10px;

    letter-spacing: 2px;

    text-transform: uppercase;

    margin-left: 2px;
}


/* MOBILE */

@media (max-width: 800px) {

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

        gap: 55px;

        padding: 8vh 6vw 12vh;
    }

    .gallery-middle {
        margin-top: 0;
    }

    .gallery-image {
        height: 65vh;
    }
}
/* =========================
   AMÉLIE MANIFESTO
========================= */

.manifesto {
    min-height: 100vh;

    padding: 15vh 6vw;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    text-align: center;
}

.manifesto .small-text {
    margin-bottom: 45px;
}

.manifesto h2 {
    font-family: Georgia, serif;

    font-weight: normal;

    font-size: clamp(65px, 9vw, 140px);

    line-height: 0.85;

    letter-spacing: -6px;
}


/* piccolo dettaglio decorativo */

.manifesto::after {
    content: "✳";

    font-size: 22px;

    margin-top: 55px;

    opacity: 0.6;
}


/* MOBILE */

@media (max-width: 800px) {

    .manifesto {
        min-height: 80vh;

        padding: 12vh 6vw;
    }

    .manifesto h2 {
        font-size: 60px;

        letter-spacing: -3px;
    }
}
/* =========================
   SHOP
========================= */

.shop-header {
    min-height: 55vh;

    padding: 12vh 5vw 8vh;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    text-align: center;
}

.shop-header h1 {
    margin-bottom: 30px;
}

.shop-description {
    max-width: 380px;

    font-size: 15px;

    line-height: 1.6;
}


/* =========================
   PRODUCTS
========================= */

.products {
    padding: 5vh 5vw 15vh;

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 80px 30px;
}

.product {
    width: 100%;
}

.product-image {
    width: 100%;

    height: 70vh;

    overflow: hidden;

    margin-bottom: 18px;
}

.product-image img {
    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

    transition: transform 0.7s ease;
}

.product:hover .product-image img {
    transform: scale(1.03);
}


/* PRODUCT INFO */

.product-info {
    display: flex;

    justify-content: space-between;

    align-items: baseline;

    gap: 20px;
}

.product-info h2 {
    font-family: Arial, Helvetica, sans-serif;

    font-size: 14px;

    font-weight: normal;

    letter-spacing: 0.5px;
}

.product-info p {
    font-size: 13px;
}


/* MOBILE */

@media (max-width: 800px) {

    .shop-header {
        min-height: 45vh;

        padding: 10vh 6vw 6vh;
    }

    .shop-header h1 {
        font-size: 85px;
    }

    .products {
        grid-template-columns: 1fr;

        gap: 60px;

        padding: 5vh 6vw 12vh;
    }

    .product-image {
        height: 65vh;
    }
}
/* =========================
   ABOUT PAGE
========================= */

.about-hero {
    min-height: 90vh;

    padding: 8vh 5vw 12vh;

    display: grid;

    grid-template-columns: 0.8fr 1.2fr;

    gap: 7vw;

    align-items: center;
}

.about-title {
    text-align: center;
}

.about-title h1 {
    margin-top: 20px;
}

.about-image {
    width: 100%;
}

.about-image img {
    width: 100%;

    max-height: 75vh;

    object-fit: contain;

    display: block;
}


/* =========================
   STORY
========================= */

.about-story {
    min-height: 90vh;

    padding: 15vh 15vw;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    text-align: center;
}

.about-story h2 {
    max-width: 1000px;

    font-family: Georgia, serif;

    font-weight: normal;

    font-size: clamp(50px, 7vw, 100px);

    line-height: 0.9;

    letter-spacing: -4px;

    margin-bottom: 60px;
}

.about-text {
    max-width: 550px;

    font-size: 16px;

    line-height: 1.7;
}


/* =========================
   VALUES
========================= */

.values {
    padding: 12vh 5vw 18vh;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 60px;
}

.value {
    border-top: 1px solid #24231f;

    padding-top: 20px;
}

.value span {
    font-size: 11px;

    letter-spacing: 2px;
}

.value h3 {
    font-size: 18px;

    font-weight: normal;

    letter-spacing: 1px;

    margin: 40px 0 20px;
}

.value p {
    max-width: 220px;

    font-size: 14px;

    line-height: 1.6;
}


/* =========================
   ABOUT FINAL
========================= */

.about-final {
    min-height: 80vh;

    padding: 15vh 6vw;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    text-align: center;
}

.about-final h2 {
    font-family: Georgia, serif;

    font-weight: normal;

    font-size: clamp(50px, 7vw, 100px);

    line-height: 0.9;

    letter-spacing: -4px;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 800px) {

    .about-hero {
        grid-template-columns: 1fr;

        gap: 50px;

        padding: 5vh 6vw 10vh;
    }

    .about-title h1 {
        font-size: 85px;
    }

    .about-story {
        padding: 12vh 8vw;
    }

    .about-story h2 {
        font-size: 55px;

        letter-spacing: -3px;
    }

    .values {
        grid-template-columns: 1fr;

        gap: 50px;

        padding: 8vh 6vw 12vh;
    }

    .about-final {
        min-height: 70vh;

        padding: 12vh 6vw;
    }

    .about-final h2 {
        font-size: 55px;

        letter-spacing: -3px;
    }
}
/* =========================
   JOURNAL
========================= */

.journal-header {
    min-height: 60vh;

    padding: 12vh 5vw 8vh;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    text-align: center;
}

.journal-header h1 {
    margin-bottom: 30px;
}

.journal-description {
    max-width: 400px;

    font-size: 15px;

    line-height: 1.6;
}


/* FEATURED STORY */

.featured-story {
    padding: 5vh 5vw 15vh;

    display: grid;

    grid-template-columns: 1.2fr 0.8fr;

    gap: 8vw;

    align-items: center;
}

.featured-image img {
    width: 100%;

    max-height: 75vh;

    object-fit: contain;

    display: block;
}

.featured-text {
    max-width: 450px;
}

.featured-text h2 {
    font-family: Georgia, serif;

    font-weight: normal;

    font-size: clamp(50px, 6vw, 85px);

    line-height: 0.9;

    letter-spacing: -4px;

    margin-bottom: 30px;
}

.featured-text > p:not(.small-text) {
    font-size: 15px;

    line-height: 1.7;

    margin-bottom: 30px;
}


/* STORIES */

.stories {
    padding: 10vh 5vw 15vh;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;

    align-items: start;
}

.story:nth-child(2) {
    margin-top: 100px;
}

.story img {
    width: 100%;

    height: 55vh;

    object-fit: cover;

    display: block;

    margin-bottom: 20px;
}

.story h2 {
    font-family: Georgia, serif;

    font-weight: normal;

    font-size: 32px;

    line-height: 1;

    letter-spacing: -1px;

    margin-bottom: 25px;
}

.journal-link {
    color: #24231f;

    text-decoration: none;

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: 1.5px;

    border-bottom: 1px solid #24231f;

    padding-bottom: 4px;
}


/* FINAL */

.journal-final {
    min-height: 80vh;

    padding: 15vh 5vw;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    text-align: center;
}

.journal-final h2 {
    font-family: Georgia, serif;

    font-weight: normal;

    font-size: clamp(70px, 10vw, 150px);

    line-height: 0.85;

    letter-spacing: -6px;
}


/* MOBILE */

@media (max-width: 800px) {

    .journal-header {
        min-height: 45vh;

        padding: 10vh 6vw;
    }

    .journal-header h1 {
        font-size: 85px;
    }

    .featured-story {
        grid-template-columns: 1fr;

        gap: 50px;

        padding: 5vh 6vw 12vh;
    }

    .featured-text h2 {
        font-size: 55px;
    }

    .stories {
        grid-template-columns: 1fr;

        gap: 60px;

        padding: 8vh 6vw 12vh;
    }

    .story:nth-child(2) {
        margin-top: 0;
    }

    .story img {
        height: 65vh;
    }

    .journal-final {
        min-height: 65vh;

        padding: 12vh 6vw;
    }

    .journal-final h2 {
        font-size: 70px;

        letter-spacing: -3px;
    }
}
/* =========================
   PRODUCT PAGE
========================= */

.product-page {
    min-height: calc(100vh - 90px);

    padding: 8vh 5vw 12vh;

    display: grid;

    grid-template-columns: 1.1fr 0.9fr;

    gap: 8vw;

    align-items: center;
}


/* FOTO */

.product-page-image {
    width: 100%;
}

.product-page-image img {
    width: 100%;

    max-height: 78vh;

    object-fit: contain;

    display: block;
}


/* INFO */

.product-page-info {
    max-width: 450px;
}

.product-page-info h1 {
    font-size: clamp(55px, 6vw, 90px);

    line-height: 0.9;

    letter-spacing: -4px;

    margin-bottom: 25px;
}

.product-price {
    font-size: 16px;

    margin-bottom: 35px;
}

.product-description {
    font-size: 15px;

    line-height: 1.7;

    max-width: 380px;

    margin-bottom: 45px;
}


/* SIZE */

.product-option > p {
    font-size: 10px;

    letter-spacing: 2px;

    margin-bottom: 15px;
}

.sizes {
    display: flex;

    gap: 8px;

    margin-bottom: 35px;
}

.sizes button {
    width: 45px;

    height: 45px;

    background: transparent;

    border: 1px solid #24231f;

    cursor: pointer;

    font-size: 11px;

    transition: 0.3s;
}

.sizes button:hover {
    background: #24231f;

    color: #f4f0e8;
}


/* ADD TO BAG */

.add-button {
    width: 100%;

    padding: 18px;

    border: none;

    background: #24231f;

    color: #f4f0e8;

    font-size: 11px;

    letter-spacing: 2px;

    cursor: pointer;

    transition: 0.3s;
}

.add-button:hover {
    background: #b6a98f;
}


/* MOBILE */

@media (max-width: 800px) {

    .product-page {
        grid-template-columns: 1fr;

        gap: 50px;

        padding: 5vh 6vw 10vh;
    }

    .product-page-info h1 {
        font-size: 60px;

        letter-spacing: -3px;
    }

}
/* =========================
   BEAUTIFUL PRODUCT PAGE
========================= */

.product-page {
    min-height: calc(100vh - 80px);

    padding: 6vh 5vw 12vh;

    display: grid;

    grid-template-columns: 1.15fr 0.85fr;

    gap: 8vw;

    align-items: center;
}


/* IMAGE */

.product-page-image {
    width: 100%;

    height: 78vh;

    overflow: hidden;
}

.product-page-image img {
    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

    transition: transform 0.8s ease;
}

.product-page-image:hover img {
    transform: scale(1.02);
}


/* INFO */

.product-page-info {
    max-width: 470px;

    padding-right: 3vw;
}

.product-page-info h1 {
    font-family: Georgia, serif;

    font-weight: normal;

    font-size: clamp(55px, 6vw, 88px);

    line-height: 0.88;

    letter-spacing: -5px;

    margin: 22px 0 25px;
}

.product-price {
    font-size: 15px;

    margin-bottom: 28px;
}


/* LINE */

.product-line {
    width: 100%;

    height: 1px;

    background: #24231f;

    opacity: 0.2;

    margin-bottom: 28px;
}


/* DESCRIPTION */

.product-description {
    font-size: 14px;

    line-height: 1.7;

    max-width: 390px;

    margin-bottom: 45px;
}


/* OPTIONS */

.option-title {
    display: flex;

    justify-content: space-between;

    margin-bottom: 15px;

    font-size: 10px;

    letter-spacing: 1.5px;
}

.option-title span:last-child {
    text-decoration: underline;

    opacity: 0.6;
}


/* SIZES */

.sizes {
    display: flex;

    gap: 8px;

    margin-bottom: 30px;
}

.sizes button {
    width: 48px;

    height: 48px;

    background: transparent;

    border: 1px solid #24231f;

    cursor: pointer;

    font-size: 10px;

    transition: all 0.3s ease;
}

.sizes button:hover {
    background: #24231f;

    color: #f4f0e8;
}


/* BAG */

.add-button {
    width: 100%;

    height: 55px;

    border: none;

    background: #24231f;

    color: #f4f0e8;

    font-size: 10px;

    letter-spacing: 2px;

    cursor: pointer;

    transition: all 0.3s ease;
}

.add-button:hover {
    background: #b4a68c;
}


/* DETAILS */

.product-details {
    margin-top: 45px;

    padding-top: 20px;

    border-top: 1px solid #24231f;

    font-size: 11px;

    line-height: 1.6;

    letter-spacing: 0.3px;
}

.product-details > div {
    font-size: 10px;

    letter-spacing: 2px;

    margin-bottom: 15px;
}

.product-details p {
    margin: 5px 0;

    opacity: 0.7;
}


/* MOBILE */

@media (max-width: 800px) {

    .product-page {
        grid-template-columns: 1fr;

        gap: 45px;

        padding: 4vh 6vw 10vh;
    }

    .product-page-image {
        height: 65vh;
    }

    .product-page-info {
        padding-right: 0;
    }

    .product-page-info h1 {
        font-size: 60px;

        letter-spacing: -3px;
    }

}
/* =================================
   AMÉLIE — FINAL VISUAL DETAILS
================================= */


/* ================================
   GENERAL
================================ */

html {
    scroll-behavior: smooth;
}

body {
    background: #f5f1e8;

    color: #24231f;
}


/* ================================
   LOGO
================================ */

.logo a {
    color: #24231f;

    text-decoration: none;

    font-family: Georgia, serif;

    font-size: 27px;

    font-style: italic;

    letter-spacing: -1px;

    transition: opacity 0.3s ease;
}

.logo a:hover {
    opacity: 0.55;
}


/* ================================
   NAVIGATION
================================ */

.navbar nav a {
    color: #24231f;

    text-decoration: none;

    position: relative;

    transition: opacity 0.3s ease;
}

.navbar nav a::after {
    content: "";

    position: absolute;

    left: 0;

    bottom: -5px;

    width: 0;

    height: 1px;

    background: #24231f;

    transition: width 0.3s ease;
}

.navbar nav a:hover::after {
    width: 100%;
}


/* ================================
   BIG HEADINGS
================================ */

.hero h1,
.shop-header h1,
.journal-header h1,
.about-title h1 {
    font-family: Georgia, serif;

    font-weight: normal;

    font-style: italic;

    letter-spacing: -7px;
}


/* ================================
   SMALL LABELS
================================ */

.small-text {
    font-size: 9px;

    letter-spacing: 2.5px;

    opacity: 0.65;
}


/* ================================
   HERO
================================ */

.hero-text {
    animation: appear 1s ease both;
}

.hero-image {
    animation: appearImage 1.2s ease both;
}


/* ================================
   BUTTONS
================================ */

.button {
    display: inline-block;

    color: #24231f;

    border-bottom: 1px solid #24231f;

    text-decoration: none;

    padding-bottom: 5px;

    font-size: 11px;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    transition: opacity 0.3s ease;
}

.button:hover {
    opacity: 0.5;
}


/* ================================
   IMAGES
================================ */

.hero-image img,
.gallery-image img,
.about-image img,
.featured-image img,
.story img,
.product-image img,
.product-page-image img {
    transition:
        transform 0.8s ease,
        filter 0.8s ease;
}

.hero-image:hover img,
.gallery-image:hover img,
.about-image:hover img,
.featured-image:hover img,
.story:hover img,
.product-image:hover img {
    transform: scale(1.025);
}


/* ================================
   INTRO
================================ */

.intro h2 {
    font-family: Georgia, serif;

    font-style: italic;

    font-weight: normal;

    letter-spacing: -3px;
}


/* ================================
   MANIFESTO
================================ */

.manifesto h2,
.about-final h2,
.journal-final h2 {
    font-style: italic;
}


/* ================================
   PRODUCT CARDS
================================ */

.product {
    color: #24231f;

    text-decoration: none;
}


/* ================================
   SIMPLE ANIMATIONS
================================ */

@keyframes appear {

    from {
        opacity: 0;

        transform: translateY(20px);
    }

    to {
        opacity: 1;

        transform: translateY(0);
    }

}

@keyframes appearImage {

    from {
        opacity: 0;

        transform: scale(1.03);
    }

    to {
        opacity: 1;

        transform: scale(1);
    }

}


/* ================================
   SELECTION
================================ */

::selection {
    background: #24231f;

    color: #f5f1e8;
}


/* ================================
   MOBILE
================================ */

@media (max-width: 800px) {

    .logo a {
        font-size: 24px;
    }

    .hero h1,
    .shop-header h1,
    .journal-header h1,
    .about-title h1 {
        letter-spacing: -4px;
    }

}
.hero .button {
    color: #24231f;

    background: transparent;

    border: none;

    border-bottom: 1px solid #24231f;

    padding: 0 0 5px 0;

    text-decoration: none;

    display: inline-block;

    font-size: 11px;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    cursor: pointer;

    transition: opacity 0.3s ease;
}

.hero .button:hover {
    opacity: 0.5;
}
/* =================================
   AMÉLIE — PINTEREST / SUMMER MOOD
================================= */

.hero {
    position: relative;
}


/* TITOLO AMÉLIE */

.hero h1 {
    font-family: Georgia, serif;

    font-size: clamp(100px, 15vw, 230px);

    font-weight: normal;

    font-style: italic;

    line-height: 0.75;

    letter-spacing: -12px;

    margin: 25px 0 45px;

    position: relative;

    z-index: 2;

    transform: rotate(-3deg);
}


/* PICCOLO DETTAGLIO SOPRA IL TITOLO */

.hero-text::before {
    content: "hello, summer ♡";

    display: block;

    font-family: Georgia, serif;

    font-size: 14px;

    font-style: italic;

    transform: rotate(-5deg);

    margin-bottom: 10px;

    opacity: 0.7;
}


/* DESCRIZIONE */

.hero .description {
    max-width: 330px;

    font-size: 14px;

    line-height: 1.7;

    margin-bottom: 35px;
}


/* FOTO HERO */

.hero-image {
    position: relative;
}


/* SCRITTA SULLA FOTO */

.hero-image::after {
    content: "AMÉLIE · SUMMER 2026";

    position: absolute;

    bottom: 20px;

    right: 20px;

    font-size: 9px;

    letter-spacing: 2px;

    background: #f5f1e8;

    padding: 8px 12px;
}


/* GALLERY PIÙ GIOIOSA */

.gallery-item:nth-child(1) {
    transform: rotate(-1.5deg);
}

.gallery-item:nth-child(2) {
    transform: rotate(2deg);
}

.gallery-item:nth-child(3) {
    transform: rotate(-1deg);
}


/* SCRITTE GALLERY */

.gallery-item p {
    font-family: Georgia, serif;

    font-style: italic;

    font-size: 13px;

    letter-spacing: 0;

    text-transform: lowercase;
}


/* INTRO */

.intro h2 {
    font-size: clamp(55px, 8vw, 115px);

    line-height: 0.85;

    max-width: 900px;

    text-align: center;
}


/* MANIFESTO */

.manifesto h2 {
    font-size: clamp(65px, 10vw, 145px);

    transform: rotate(-2deg);
}


/* MOBILE */

@media (max-width: 800px) {

    .hero h1 {
        font-size: 90px;

        letter-spacing: -6px;

        margin: 20px 0 35px;
    }

    .hero-text::before {
        font-size: 12px;
    }

    .hero-image::after {
        font-size: 8px;

        bottom: 12px;

        right: 12px;
    }

    .gallery-item:nth-child(1),
    .gallery-item:nth-child(2),
    .gallery-item:nth-child(3) {
        transform: none;
    }

}
/* =========================
   AMÉLIE — CLEAN PINTEREST
========================= */

.hero h1 {
    transform: none;
}

.gallery-item:nth-child(1),
.gallery-item:nth-child(2),
.gallery-item:nth-child(3) {
    transform: none;
}


/* AMÉLIE più grande ma ordinato */

.hero h1 {
    font-family: Georgia, serif;

    font-size: clamp(100px, 15vw, 220px);

    font-weight: normal;

    font-style: italic;

    line-height: 0.8;

    letter-spacing: -10px;

    margin: 25px 0 45px;

    text-align: center;
}


/* piccolo dettaglio */

.hero-text::before {
    content: "hello, summer ♡";

    display: block;

    font-family: Georgia, serif;

    font-size: 14px;

    font-style: italic;

    margin-bottom: 12px;

    opacity: 0.65;

    text-align: center;
}


/* scritte sotto le foto */

.gallery-item p {
    font-family: Georgia, serif;

    font-style: italic;

    font-size: 13px;

    letter-spacing: 0;

    text-transform: lowercase;
}


/* niente inclinazioni sulle immagini */

.gallery-item {
    transform: none;
}


/* manifesto pulito */

.manifesto h2 {
    transform: none;
}
.hero-text::before {
    content: none;
}
/* =========================
   AMÉLIE — LITTLE DETAIL
========================= */

.hero h1 {
    position: relative;
    display: inline-block;
}

.hero h1::after {
    content: "✦";

    position: absolute;

    right: -35px;

    top: -10px;

    font-family: Arial, sans-serif;

    font-size: 22px;

    font-style: normal;

    letter-spacing: 0;

    opacity: 0.55;
}
/* =========================
   AMÉLIE — SOFT PINK DETAIL
========================= */

.hero h1::after {
    color: #c9a9a6;
}

.gallery-item p {
    color: #8f7471;
}

.small-text {
    color: #6f5f5d;
}
.hero h1::after {
    content: none;
}
.gallery-item p {
    font-family: Arial, Helvetica, sans-serif;

    font-style: normal;

    font-size: 9px;

    font-weight: 400;

    letter-spacing: 2px;

    text-transform: uppercase;

    color: #24231f;

    margin-top: 12px;
}
/* =========================
   AMÉLIE — NAVBAR
========================= */

.navbar {
    height: 90px;

    padding: 0 5vw;

    display: flex;

    align-items: center;

    justify-content: space-between;

    position: relative;

    z-index: 100;
}


/* LOGO */

.navbar .logo a {
    font-family: Georgia, serif;

    font-size: 28px;

    font-weight: normal;

    font-style: italic;

    letter-spacing: -1px;

    color: #24231f;

    text-decoration: none;

    transition: opacity 0.3s ease;
}

.navbar .logo a:hover {
    opacity: 0.5;
}


/* MENU */

.navbar nav {
    display: flex;

    align-items: center;

    gap: 35px;
}

.navbar nav a {
    position: relative;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 9px;

    font-weight: 400;

    letter-spacing: 2px;

    text-transform: uppercase;

    color: #24231f;

    text-decoration: none;

    padding-bottom: 5px;
}


/* LINEA AL PASSAGGIO */

.navbar nav a::after {
    content: "";

    position: absolute;

    left: 0;

    bottom: 0;

    width: 0;

    height: 1px;

    background: #24231f;

    transition: width 0.3s ease;
}

.navbar nav a:hover::after {
    width: 100%;
}


/* MOBILE */

@media (max-width: 800px) {

    .navbar {
        height: 75px;

        padding: 0 6vw;
    }

    .navbar .logo a {
        font-size: 24px;
    }

    .navbar nav {
        gap: 18px;
    }

    .navbar nav a {
        font-size: 8px;

        letter-spacing: 1.3px;
    }

}
.navbar nav a {
    font-size: 12px;
    letter-spacing: 1.5px;
}

@media (max-width: 800px) {

    .navbar nav a {
        font-size: 10px;
        letter-spacing: 1px;
    }

}
/* =========================
   AMÉLIE — FOOTER
========================= */

.footer {
    background: #24231f;

    color: #f5f1e8;

    padding: 12vh 5vw 35px;

    margin-top: 10vh;
}


/* NEWSLETTER */

.footer-newsletter {
    max-width: 700px;

    margin-bottom: 12vh;
}

.footer-newsletter .small-text {
    color: #f5f1e8;

    opacity: 0.6;
}

.footer-newsletter h2 {
    font-family: Georgia, serif;

    font-weight: normal;

    font-style: italic;

    font-size: clamp(60px, 8vw, 110px);

    line-height: 0.85;

    letter-spacing: -5px;

    margin: 20px 0 25px;
}

.footer-newsletter > p:not(.small-text) {
    font-size: 14px;

    line-height: 1.6;

    opacity: 0.7;

    max-width: 350px;

    margin-bottom: 30px;
}


/* FORM */

.newsletter-form {
    width: 100%;

    max-width: 500px;

    display: flex;

    border-bottom: 1px solid rgba(245, 241, 232, 0.6);
}

.newsletter-form input {
    flex: 1;

    background: transparent;

    border: none;

    outline: none;

    color: #f5f1e8;

    padding: 15px 0;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 13px;
}

.newsletter-form input::placeholder {
    color: #f5f1e8;

    opacity: 0.5;
}

.newsletter-form button {
    background: transparent;

    border: none;

    color: #f5f1e8;

    font-size: 22px;

    cursor: pointer;

    padding: 0 5px;

    transition: transform 0.3s ease;
}

.newsletter-form button:hover {
    transform: translateX(5px);
}


/* LINKS */

.footer-links {
    display: grid;

    grid-template-columns: 2fr 1fr 1fr 1fr;

    gap: 40px;

    padding-top: 50px;

    border-top: 1px solid rgba(245, 241, 232, 0.2);
}

.footer-brand h3 {
    font-family: Georgia, serif;

    font-size: 32px;

    font-weight: normal;

    font-style: italic;

    margin-bottom: 15px;
}

.footer-brand p {
    max-width: 220px;

    font-size: 12px;

    line-height: 1.6;

    opacity: 0.6;
}

.footer-column {
    display: flex;

    flex-direction: column;

    gap: 12px;
}

.footer-title {
    font-size: 9px;

    letter-spacing: 2px;

    opacity: 0.5;

    margin-bottom: 5px;
}

.footer-column a {
    color: #f5f1e8;

    text-decoration: none;

    font-size: 12px;

    transition: opacity 0.3s ease;
}

.footer-column a:hover {
    opacity: 0.5;
}


/* BOTTOM */

.footer-bottom {
    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-top: 10vh;

    padding-top: 25px;

    border-top: 1px solid rgba(245, 241, 232, 0.2);

    font-size: 10px;

    opacity: 0.6;
}

.footer-bottom div {
    display: flex;

    gap: 25px;
}

.footer-bottom a {
    color: #f5f1e8;

    text-decoration: none;
}


/* MOBILE */

@media (max-width: 800px) {

    .footer {
        padding: 10vh 6vw 30px;
    }

    .footer-newsletter h2 {
        font-size: 65px;

        letter-spacing: -3px;
    }

    .footer-links {
        grid-template-columns: 1fr 1fr;

        gap: 50px 30px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        flex-direction: column;

        align-items: flex-start;

        gap: 20px;

        margin-top: 60px;
    }

}
/* =========================
   AMÉLIE — CART
========================= */

.cart-page {
    min-height: 80vh;

    padding: 8vh 5vw 15vh;
}


/* HEADER */

.cart-header {
    margin-bottom: 10vh;
}

.cart-header h1 {
    font-family: Georgia, serif;

    font-size: clamp(70px, 10vw, 140px);

    font-weight: normal;

    font-style: italic;

    letter-spacing: -7px;

    line-height: 0.8;

    margin-top: 25px;
}


/* CONTENT */

.cart-content {
    display: grid;

    grid-template-columns: 1.5fr 0.5fr;

    gap: 8vw;

    align-items: start;
}


/* PRODUCT */

.cart-product {
    display: grid;

    grid-template-columns: 280px 1fr;

    gap: 35px;

    padding-bottom: 40px;

    border-bottom: 1px solid rgba(36, 35, 31, 0.2);
}

.cart-product img {
    width: 100%;

    height: 360px;

    object-fit: cover;

    display: block;
}

.cart-product-info h2 {
    font-family: Georgia, serif;

    font-weight: normal;

    font-size: 42px;

    line-height: 0.95;

    letter-spacing: -2px;

    margin: 15px 0 25px;
}

.cart-product-info > p:not(.small-text) {
    font-size: 13px;

    margin: 8px 0;
}


/* REMOVE */

.remove-button {
    background: transparent;

    border: none;

    border-bottom: 1px solid #24231f;

    padding: 0 0 4px;

    margin-top: 25px;

    font-size: 9px;

    letter-spacing: 1.5px;

    cursor: pointer;
}


/* SUMMARY */

.cart-summary {
    border-top: 1px solid #24231f;

    padding-top: 20px;
}

.summary-line {
    display: flex;

    justify-content: space-between;

    font-size: 11px;

    letter-spacing: 1.5px;

    margin-bottom: 30px;
}


/* CHECKOUT */

.checkout-button {
    width: 100%;

    height: 55px;

    background: #24231f;

    color: #f5f1e8;

    border: none;

    font-size: 10px;

    letter-spacing: 2px;

    cursor: pointer;

    transition: opacity 0.3s ease;
}

.checkout-button:hover {
    opacity: 0.7;
}


/* EMPTY */

.empty-cart {
    padding: 8vh 0;
}

.empty-cart h2 {
    font-family: Georgia, serif;

    font-weight: normal;

    font-style: italic;

    font-size: 55px;

    margin-bottom: 30px;
}

.empty-cart a {
    color: #24231f;

    text-decoration: none;

    border-bottom: 1px solid #24231f;

    padding-bottom: 5px;

    font-size: 11px;

    letter-spacing: 1.5px;
}


/* MOBILE */

@media (max-width: 800px) {

    .cart-page {
        padding: 6vh 6vw 12vh;
    }

    .cart-header h1 {
        font-size: 75px;

        letter-spacing: -4px;
    }

    .cart-content {
        grid-template-columns: 1fr;

        gap: 60px;
    }

    .cart-product {
        grid-template-columns: 1fr;

        gap: 25px;
    }

    .cart-product img {
        height: 500px;
    }

    .cart-product-info h2 {
        font-size: 38px;
    }

}
/* =========================
   SIZE SELECTION
========================= */

.sizes {
    display: flex;
    gap: 8px;
    margin-top: 15px;
}

.sizes button {
    width: 48px;
    height: 45px;

    background: transparent;

    border: 1px solid rgba(36, 35, 31, 0.35);

    color: #24231f;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 10px;

    letter-spacing: 1px;

    cursor: pointer;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
}


/* TAGLIA SELEZIONATA */

.sizes button.selected {
    background: #24231f;

    color: #f5f1e8;

    border-color: #24231f;
}


/* HOVER */

.sizes button:hover {
    border-color: #24231f;
}
/* =========================
   PRODUCT SIZE BUTTONS
========================= */

.size-button {
    width: 48px;
    height: 45px;

    background: transparent;

    border: 1px solid rgba(36, 35, 31, 0.35);

    color: #24231f;

    font-size: 10px;

    letter-spacing: 1px;

    cursor: pointer;

    transition: all 0.2s ease;
}


.size-button:hover {
    border-color: #24231f;
}


.size-button.selected {
    background: #24231f;

    color: #f5f1e8;

    border-color: #24231f;
}
/* =========================
   QUANTITY
========================= */

.quantity {
    display: flex;

    align-items: center;

    width: fit-content;

    margin-top: 25px;

    border: 1px solid rgba(36, 35, 31, 0.3);
}


.quantity button {
    width: 38px;

    height: 36px;

    background: transparent;

    border: none;

    font-size: 18px;

    cursor: pointer;

    color: #24231f;
}


.quantity button:hover {
    background: rgba(36, 35, 31, 0.08);
}


.quantity span {
    width: 35px;

    text-align: center;

    font-size: 11px;
}
/* =========================
   CHECKOUT
========================= */

.checkout-page {

    max-width: 1200px;

    margin: 80px auto;

    padding: 0 40px;

    display: grid;

    grid-template-columns: 1.4fr 0.8fr;

    gap: 100px;

}


.checkout-left h1 {

    font-size: 48px;

    font-weight: 400;

    margin: 15px 0 60px;

}


.checkout-section {

    margin-bottom: 45px;

}


.checkout-section h2 {

    font-size: 11px;

    letter-spacing: 2px;

    font-weight: 500;

    margin-bottom: 18px;

}


.checkout-section input {

    width: 100%;

    height: 48px;

    border: 1px solid rgba(36, 35, 31, 0.25);

    background: transparent;

    padding: 0 14px;

    margin-bottom: 10px;

    font-family: inherit;

    font-size: 13px;

    box-sizing: border-box;

}


.checkout-section input:focus {

    outline: none;

    border-color: #24231f;

}


.checkout-row {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 10px;

}


/* SHIPPING */

.shipping-option {

    display: flex;

    align-items: center;

    gap: 12px;

    border: 1px solid rgba(36, 35, 31, 0.25);

    padding: 18px;

    margin-bottom: 10px;

    cursor: pointer;

}


.shipping-option input {

    width: auto;

    margin: 0;

}


.shipping-option span {

    flex: 1;

    font-size: 13px;

}


.shipping-option strong {

    font-size: 13px;

    font-weight: 400;

}


/* PAYMENT */

.payment-box {

    border: 1px solid rgba(36, 35, 31, 0.25);

    padding: 20px;

}


.payment-box p {

    margin: 0 0 5px;

    font-size: 13px;

}


.payment-note {

    opacity: 0.5;

    font-size: 11px !important;

}


/* PLACE ORDER */

.place-order {

    width: 100%;

    height: 55px;

    border: none;

    background: #24231f;

    color: #f5f1e8;

    font-size: 11px;

    letter-spacing: 2px;

    cursor: pointer;

}


.place-order:hover {

    opacity: 0.85;

}


/* =========================
   ORDER SUMMARY
========================= */

.checkout-summary {

    position: sticky;

    top: 40px;

    height: fit-content;

    border-top: 1px solid rgba(36, 35, 31, 0.3);

    padding-top: 25px;

}


.checkout-summary h2 {

    font-size: 11px;

    letter-spacing: 2px;

    font-weight: 500;

    margin-bottom: 30px;

}


.checkout-product {

    display: grid;

    grid-template-columns: 70px 1fr auto;

    gap: 15px;

    align-items: center;

    padding-bottom: 20px;

    margin-bottom: 20px;

    border-bottom: 1px solid rgba(36, 35, 31, 0.12);

}


.checkout-product img {

    width: 70px;

    height: 85px;

    object-fit: cover;

}


.checkout-product p {

    margin: 0 0 6px;

    font-size: 13px;

}


.checkout-product span {

    font-size: 11px;

    opacity: 0.55;

}


.checkout-product strong {

    font-size: 12px;

    font-weight: 400;

}


.checkout-total {

    display: flex;

    justify-content: space-between;

    margin: 15px 0;

    font-size: 12px;

}


.checkout-final {

    display: flex;

    justify-content: space-between;

    border-top: 1px solid rgba(36, 35, 31, 0.3);

    padding-top: 20px;

    margin-top: 25px;

    font-size: 14px;

}


.checkout-final strong {

    font-weight: 500;

}


/* =========================
   MOBILE
========================= */

@media (max-width: 800px) {

    .checkout-page {

        grid-template-columns: 1fr;

        gap: 60px;

        margin-top: 50px;

        padding: 0 20px;

    }


    .checkout-left h1 {

        font-size: 38px;

    }


    .checkout-summary {

        position: static;

    }

}
/* =========================
   AMÉLIE CHECKOUT
========================= */

.checkout-page {

    max-width: 1150px;

    margin: 80px auto;

    padding: 0 40px;

    display: grid;

    grid-template-columns: 1.25fr 0.75fr;

    gap: 100px;

}


.checkout-left h1 {

    font-size: 52px;

    font-weight: 400;

    letter-spacing: -2px;

    margin: 15px 0 70px;

}


.checkout-section {

    margin-bottom: 55px;

}


.section-heading {

    display: flex;

    align-items: baseline;

    gap: 15px;

    margin-bottom: 18px;

}


.section-heading span {

    font-size: 9px;

    letter-spacing: 1px;

    opacity: 0.45;

}


.section-heading h2 {

    font-size: 11px;

    letter-spacing: 2px;

    font-weight: 500;

    margin: 0;

}


/* INPUT */

.checkout-section input {

    width: 100%;

    height: 50px;

    box-sizing: border-box;

    border: none;

    border-bottom: 1px solid rgba(36, 35, 31, 0.25);

    background: transparent;

    padding: 0 4px;

    margin-bottom: 18px;

    font-family: inherit;

    font-size: 13px;

}


.checkout-section input:focus {

    outline: none;

    border-bottom-color: #24231f;

}


.checkout-section input::placeholder {

    color: #24231f;

    opacity: 0.45;

}


.checkout-row {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 25px;

}


/* SHIPPING */

.shipping-option {

    display: flex;

    align-items: center;

    gap: 15px;

    border: 1px solid rgba(36, 35, 31, 0.2);

    padding: 20px;

    margin-bottom: 10px;

    cursor: pointer;

    transition: all 0.2s ease;

}


.shipping-option:hover {

    border-color: #24231f;

}


.shipping-option input {

    width: auto;

    height: auto;

    margin: 0;

}


.shipping-option span {

    flex: 1;

    display: flex;

    flex-direction: column;

    gap: 5px;

}


.shipping-option strong {

    font-size: 12px;

    font-weight: 500;

}


.shipping-option small {

    font-size: 10px;

    opacity: 0.5;

}


.shipping-option b {

    font-size: 11px;

    font-weight: 400;

}


/* PAYMENT */

.payment-box {

    border: 1px solid rgba(36, 35, 31, 0.2);

    padding: 22px;

}


.payment-top {

    display: flex;

    justify-content: space-between;

    font-size: 12px;

    margin-bottom: 25px;

}


.payment-box input {

    margin-bottom: 15px;

}


.payment-note {

    font-size: 10px;

    opacity: 0.45;

    line-height: 1.5;

}


/* PLACE ORDER */

.place-order {

    width: 100%;

    height: 58px;

    border: none;

    background: #24231f;

    color: #f5f1e8;

    font-size: 10px;

    letter-spacing: 2.5px;

    cursor: pointer;

    transition: opacity 0.2s ease;

}


.place-order:hover {

    opacity: 0.8;

}


/* =========================
   ORDER SUMMARY
========================= */

.checkout-summary {

    position: sticky;

    top: 40px;

    height: fit-content;

    border-top: 1px solid rgba(36, 35, 31, 0.3);

    padding-top: 25px;

}


.checkout-summary > .small-text {

    margin-bottom: 30px;

}


.checkout-product {

    display: grid;

    grid-template-columns: 70px 1fr auto;

    gap: 15px;

    align-items: center;

    margin-bottom: 25px;

}


.checkout-image {

    position: relative;

    width: 70px;

    height: 85px;

}


.checkout-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}


.checkout-image span {

    position: absolute;

    top: -7px;

    right: -7px;

    width: 19px;

    height: 19px;

    border-radius: 50%;

    background: #24231f;

    color: #f5f1e8;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 9px;

}


.checkout-product-info {

    display: flex;

    flex-direction: column;

    gap: 6px;

}


.checkout-product-info strong {

    font-size: 12px;

    font-weight: 400;

}


.checkout-product-info small {

    font-size: 10px;

    opacity: 0.5;

}


.checkout-product > strong {

    font-size: 11px;

    font-weight: 400;

}


.checkout-line {

    display: flex;

    justify-content: space-between;

    font-size: 11px;

    padding: 10px 0;

}


.checkout-final {

    display: flex;

    justify-content: space-between;

    border-top: 1px solid rgba(36, 35, 31, 0.3);

    margin-top: 15px;

    padding-top: 22px;

    font-size: 14px;

}


.checkout-final strong {

    font-weight: 500;

}


/* =========================
   MOBILE
========================= */

@media (max-width: 800px) {

    .checkout-page {

        display: block;

        margin: 50px auto;

        padding: 0 22px;

    }


    .checkout-left h1 {

        font-size: 40px;

        margin-bottom: 55px;

    }


    .checkout-summary {

        position: static;

        margin-top: 70px;

    }


    .checkout-row {

        grid-template-columns: 1fr;

        gap: 0;

    }

}
/* =========================
   BAG — CHECKOUT BUTTON
========================= */

.checkout-button {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 100%;

    height: 58px;

    box-sizing: border-box;

    background: #24231f;

    color: #f5f1e8;

    text-decoration: none;

    border: none;

    font-size: 10px;

    letter-spacing: 2.5px;

    cursor: pointer;

    transition: opacity 0.2s ease;

}


.checkout-button:hover {

    opacity: 0.8;

}
/* =========================
   AMÉLIE — FINAL POLISH
========================= */

.navbar {
    padding: 28px 45px;
    align-items: center;
}

.logo a {
    font-size: 24px;
    letter-spacing: -0.5px;
    text-decoration: none;
}

.navbar nav {
    gap: 32px;
}

.navbar nav a {
    font-size: 10px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.navbar nav a:hover {
    opacity: 0.45;
}


/* =========================
   GENERAL TYPOGRAPHY
========================= */

h1,
h2,
h3,
p {
    line-height: 1.4;
}

.small-text {
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
}


/* =========================
   PRODUCT PAGES
========================= */

.product-page-info h1 {
    font-size: 42px;
    font-weight: 400;
    letter-spacing: -1.5px;
}

.product-price {
    font-size: 13px;
    letter-spacing: 1px;
}

.product-description {
    max-width: 400px;
    line-height: 1.8;
    font-size: 13px;
}


/* =========================
   PRODUCT BUTTON
========================= */

.add-button {
    width: 100%;
    height: 56px;

    background: #24231f;
    color: #f5f1e8;

    border: none;

    font-size: 10px;
    letter-spacing: 2.5px;

    cursor: pointer;

    transition: opacity 0.2s ease;
}

.add-button:hover {
    opacity: 0.8;
}


/* =========================
   SIZE BUTTONS
========================= */

.size-button {
    transition:
        background 0.2s ease,
        color 0.2s ease,
        border 0.2s ease;
}

.size-button.selected {
    background: #24231f;
    color: #f5f1e8;
}


/* =========================
   BAG
========================= */

.cart-page {
    max-width: 1100px;
    margin: 80px auto;
    padding: 0 40px;
}

.cart-header h1 {
    font-size: 50px;
    font-weight: 400;
    letter-spacing: -2px;
    margin-top: 12px;
}

.cart-summary {
    border-top: 1px solid rgba(36,35,31,0.25);
    padding-top: 25px;
    margin-top: 60px;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;

    font-size: 12px;
    letter-spacing: 1px;
}


/* =========================
   REMOVE
========================= */

.remove-button {
    background: none;
    border: none;
    padding: 0;

    margin-top: 18px;

    font-size: 9px;
    letter-spacing: 1.5px;

    cursor: pointer;

    opacity: 0.5;
}

.remove-button:hover {
    opacity: 1;
}


/* =========================
   EMPTY BAG
========================= */

.empty-cart {
    text-align: center;
    padding: 100px 20px;
}

.empty-cart h2 {
    font-weight: 400;
    font-size: 24px;
    margin-bottom: 20px;
}

.empty-cart a {
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}


/* =========================
   MOBILE NAV
========================= */

@media (max-width: 700px) {

    .navbar {
        padding: 22px 20px;
    }

    .navbar nav {
        gap: 14px;
    }

    .navbar nav a {
        font-size: 8px;
        letter-spacing: 1px;
    }

    .logo a {
        font-size: 21px;
    }

    .cart-page {
        margin-top: 50px;
        padding: 0 20px;
    }

    .cart-header h1 {
        font-size: 38px;
    }

}
/* =========================
   AMÉLIE — ABOUT
========================= */

.about-page {

    max-width: 1100px;

    margin: 90px auto 0;

    padding: 0 40px;

}


/* INTRO */

.about-intro {

    max-width: 800px;

    margin-bottom: 150px;

}


.about-intro h1 {

    font-size: 70px;

    line-height: 1;

    font-weight: 400;

    letter-spacing: -3px;

    margin-top: 25px;

}


/* STORY */

.about-story {

    display: grid;

    grid-template-columns: 180px 1fr;

    gap: 80px;

    max-width: 900px;

    margin: 0 auto 160px;

}


.about-label {

    padding-top: 8px;

}


.about-label span {

    font-size: 9px;

    letter-spacing: 2px;

    opacity: 0.45;

}


.about-text {

    max-width: 620px;

}


.about-text p {

    font-size: 14px;

    line-height: 1.9;

    margin: 0 0 32px;

}


.about-text .about-large {

    font-size: 25px;

    line-height: 1.5;

    letter-spacing: -0.4px;

}


.about-words {

    font-size: 18px !important;

    line-height: 1.8 !important;

}


.about-text .welcome {

    font-size: 23px;

    margin-top: 60px;

    margin-bottom: 10px;

}


.signature {

    opacity: 0.55;

}


/* SOCIAL */

.about-social {

    text-align: center;

    padding: 100px 20px;

    border-top: 1px solid rgba(36,35,31,0.15);

}


.about-social h2 {

    font-size: 42px;

    font-weight: 400;

    letter-spacing: -1px;

    margin: 15px 0 35px;

}


.social-links {

    display: flex;

    justify-content: center;

    gap: 45px;

}


.social-links a {

    color: #24231f;

    text-decoration: none;

    font-size: 10px;

    letter-spacing: 2px;

    text-transform: uppercase;

    border-bottom: 1px solid #24231f;

    padding-bottom: 5px;

}


.social-links a:hover {

    opacity: 0.5;

}


/* FOOTER */

.site-footer {

    margin-top: 80px;

    padding: 55px 45px;

    border-top: 1px solid rgba(36,35,31,0.15);

    display: grid;

    grid-template-columns: 1fr 1fr 1fr;

    gap: 40px;

}


.site-footer strong {

    font-size: 20px;

    font-weight: 400;

}


.site-footer p {

    font-size: 10px;

    opacity: 0.5;

    margin-top: 10px;

}


.footer-links,
.footer-socials {

    display: flex;

    flex-direction: column;

    gap: 12px;

}


.site-footer a {

    color: #24231f;

    text-decoration: none;

    font-size: 10px;

    letter-spacing: 1.5px;

    text-transform: uppercase;

}


.site-footer a:hover {

    opacity: 0.45;

}


/* MOBILE */

@media (max-width: 700px) {


    .about-page {

        margin-top: 60px;

        padding: 0 22px;

    }


    .about-intro {

        margin-bottom: 90px;

    }


    .about-intro h1 {

        font-size: 48px;

        letter-spacing: -2px;

    }


    .about-story {

        grid-template-columns: 1fr;

        gap: 30px;

        margin-bottom: 100px;

    }


    .about-text .about-large {

        font-size: 22px;

    }


    .about-social {

        padding: 70px 20px;

    }


    .about-social h2 {

        font-size: 32px;

    }


    .social-links {

        gap: 25px;

    }


    .site-footer {

        grid-template-columns: 1fr;

        padding: 45px 22px;

    }

}
/* =========================
   ABOUT — SOFT & PERSONAL
========================= */

.about-page {
    max-width: 1000px;
    margin: 100px auto 0;
    padding: 0 35px;
}

.about-intro {
    text-align: center;
    margin-bottom: 110px;
}

.about-intro h1 {
    font-size: 68px;
    line-height: 1;
    font-weight: 400;
    letter-spacing: -3px;
    margin-top: 22px;
}

.about-story {
    max-width: 620px;
    margin: 0 auto;
}

.about-story p {
    font-size: 14px;
    line-height: 2;
    margin: 0 0 38px;
}

.about-story .about-large {
    font-size: 25px;
    line-height: 1.55;
    letter-spacing: -0.4px;
    margin-bottom: 55px;
}

.about-story .about-highlight {
    font-size: 23px;
    line-height: 1.6;
    margin: 65px 0;
}

.about-story .signature {
    margin-top: 55px;
    font-size: 18px;
}


/* SOCIAL */

.about-social {
    text-align: center;
    margin-top: 150px;
    padding: 100px 20px;
    border-top: 1px solid rgba(36,35,31,0.12);
}

.about-social h2 {
    font-size: 38px;
    font-weight: 400;
    letter-spacing: -1px;
    margin: 18px 0 35px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.social-links a {
    color: #24231f;
    text-decoration: none;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-bottom: 1px solid #24231f;
    padding-bottom: 5px;
}

.social-links a:hover {
    opacity: 0.45;
}


/* MOBILE */

@media (max-width: 700px) {

    .about-page {
        margin-top: 65px;
        padding: 0 22px;
    }

    .about-intro {
        margin-bottom: 75px;
    }

    .about-intro h1 {
        font-size: 47px;
        letter-spacing: -2px;
    }

    .about-story p {
        font-size: 13px;
        line-height: 1.9;
    }

    .about-story .about-large {
        font-size: 21px;
    }

    .about-story .about-highlight {
        font-size: 20px;
    }

    .about-social {
        margin-top: 90px;
        padding: 70px 20px;
    }

    .about-social h2 {
        font-size: 30px;
    }

}
/* =========================
   ABOUT — FASHION & COOL
========================= */

.about-page {
    max-width: 1200px;
    margin: 100px auto 0;
    padding: 0 40px;
}


/* HERO */

.about-hero {
    text-align: center;
    padding: 60px 0 150px;
}

.about-hero h1 {
    font-size: 72px;
    line-height: 1.02;
    font-weight: 400;
    letter-spacing: -3px;
    margin: 25px 0 0;
}


/* CONTENT */

.about-content {
    max-width: 680px;
    margin: 0 auto;
}

.about-content p {
    font-size: 14px;
    line-height: 1.9;
    margin: 0 0 38px;
}

.about-content .about-intro-text {
    font-size: 24px;
    line-height: 1.5;
    letter-spacing: -0.3px;
    margin-bottom: 65px;
}

.about-content .about-statement {
    font-size: 21px;
    line-height: 1.6;
    margin-top: 70px;
    margin-bottom: 70px;
}


/* SOCIAL */

.about-social {
    text-align: center;
    margin-top: 150px;
    padding: 90px 20px;
    border-top: 1px solid rgba(36, 35, 31, 0.14);
}

.about-social .small-text {
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 45px;
}

.social-links a {
    color: #24231f;
    text-decoration: none;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-bottom: 1px solid #24231f;
    padding-bottom: 5px;
    transition: opacity 0.2s ease;
}

.social-links a:hover {
    opacity: 0.45;
}


/* MOBILE */

@media (max-width: 700px) {

    .about-page {
        margin-top: 55px;
        padding: 0 22px;
    }

    .about-hero {
        padding: 40px 0 90px;
    }

    .about-hero h1 {
        font-size: 47px;
        letter-spacing: -2px;
    }

    .about-content {
        max-width: 100%;
    }

    .about-content p {
        font-size: 13px;
        line-height: 1.9;
    }

    .about-content .about-intro-text {
        font-size: 21px;
    }

    .about-content .about-statement {
        font-size: 19px;
    }

    .about-social {
        margin-top: 90px;
        padding: 65px 20px;
    }

    .social-links {
        gap: 28px;
    }

}
/* =========================
   FOOTER — AMÉLIE
========================= */

.site-footer {
    margin-top: 80px;
    padding: 28px 45px;
    
    border-top: 1px solid rgba(36, 35, 31, 0.18);

    display: grid;
    grid-template-columns: 1fr 1fr 1fr;

    align-items: start;

    gap: 50px;

    min-height: auto;
}


/* COLONNA 1 */

.site-footer > div:first-child {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.site-footer strong {
    font-size: 18px;
    font-weight: 400;
}

.site-footer p {
    font-size: 9px;
    margin: 0;
    opacity: 0.5;
    letter-spacing: 0.5px;
}


/* COLONNA 2 */

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}


/* COLONNA 3 */

.footer-socials {
    display: flex;
    flex-direction: column;
    gap: 8px;
}


/* LINKS */

.site-footer a {
    color: #24231f;
    text-decoration: none;

    font-size: 9px;
    letter-spacing: 1.5px;
    text-transform: uppercase;

    transition: opacity 0.2s ease;
}

.site-footer a:hover {
    opacity: 0.45;
}


/* MOBILE */

@media (max-width: 700px) {

    .site-footer {
        grid-template-columns: 1fr 1fr;
        padding: 28px 22px;
        gap: 35px;
    }

    .site-footer > div:first-child {
        grid-column: 1 / -1;
    }

}
/* =========================
   NUOVA STRISCIA FINALE
========================= */

.site-footer {
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;

    margin-top: 70px !important;
    padding: 25px 45px !important;

    background: #e8dfd0 !important;

    box-sizing: border-box;

    display: grid !important;
    grid-template-columns: 2fr 1fr 1fr !important;

    gap: 50px !important;

    border: none !important;
}


/* COLONNE */

.footer-brand,
.footer-column {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
}


/* AMÉLIE */

.footer-brand {
    gap: 5px !important;
}

.footer-brand strong {
    font-size: 17px !important;
    font-weight: 400 !important;
}

.footer-brand p {
    margin: 0 !important;
    font-size: 9px !important;
    opacity: 0.55 !important;
}


/* TITOLI */

.footer-column span {
    font-size: 8px !important;
    letter-spacing: 1.8px !important;
    opacity: 0.45 !important;
    margin-bottom: 7px !important;
}


/* LINK */

.footer-column a {
    font-size: 9px !important;
    letter-spacing: 1.2px !important;
    text-transform: uppercase !important;

    color: #24231f !important;
    text-decoration: none !important;

    margin-bottom: 5px !important;
}


/* MOBILE */

@media (max-width: 700px) {

    .site-footer {
        grid-template-columns: 1fr 1fr !important;
        padding: 25px 22px !important;
    }

    .footer-brand {
        grid-column: 1 / -1 !important;
    }

}
/* =========================
   FIND US
========================= */

.find-us {

    padding: 130px 40px;

    text-align: center;

    border-top: 1px solid rgba(36,35,31,0.12);

}


.find-us .small-text {

    margin-bottom: 55px;

}


.find-us-links {

    max-width: 1000px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 20px;

}


.find-us-links a {

    min-height: 190px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-decoration: none;

    color: #24231f;

    border: 1px solid rgba(36,35,31,0.18);

    transition:
        background 0.25s ease,
        color 0.25s ease;

}


.find-us-links a span {

    font-size: 34px;

    font-weight: 400;

    letter-spacing: -1px;

}


.find-us-links a small {

    margin-top: 12px;

    font-size: 9px;

    letter-spacing: 1.5px;

    opacity: 0.5;

}


.find-us-links a:hover {

    background: #24231f;

    color: #f5f1e8;

}


.find-us-links a:hover small {

    opacity: 0.7;

}


/* MOBILE */

@media (max-width: 700px) {

    .find-us {

        padding: 90px 20px;

    }

    .find-us-links {

        grid-template-columns: 1fr;

    }

    .find-us-links a {

        min-height: 150px;

    }

    .find-us-links a span {

        font-size: 28px;

    }

}
/* FIX FIND US HOME */

.find-us {
    position: relative;
    z-index: 50;
}

.find-us-links {
    position: relative;
    z-index: 51;
}

.find-us-links a {
    position: relative;
    z-index: 52;

    pointer-events: auto !important;

    cursor: pointer;
}
/* =================================
   AMÉLIE — FOOTER
================================= */

.site-footer {
    width: 100%;
    box-sizing: border-box;

    margin-top: 70px;

    background: #3f2a22;

    color: #f7f1e8;

    padding: 42px 50px 18px;
}


/* TOP */

.footer-top {
    display: grid;

    grid-template-columns: 2fr 1fr 1fr;

    gap: 60px;

    max-width: 1200px;

    margin: 0 auto;
}


/* BRAND */

.footer-brand h3 {
    margin: 0 0 8px;

    font-size: 23px;

    font-weight: 400;

    letter-spacing: -0.5px;
}

.footer-brand p {
    margin: 0;

    font-size: 10px;

    line-height: 1.6;

    opacity: 0.65;
}


/* COLUMNS */

.footer-column {
    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 8px;
}


.footer-column span,
.footer-newsletter span {
    font-size: 8px;

    letter-spacing: 2px;

    opacity: 0.55;

    margin-bottom: 6px;
}


.footer-column a {
    color: #f4eee5;

    text-decoration: none;

    font-size: 10px;

    letter-spacing: 1px;

    transition: opacity 0.2s ease;
}


.footer-column a:hover {
    opacity: 0.55;
}


/* NEWSLETTER */

.footer-newsletter {

    max-width: 1200px;

    margin: 42px auto 0;

    padding-top: 30px;

    border-top: 1px solid rgba(244,238,229,0.22);

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 50px;
}


.footer-newsletter h4 {
    margin: 4px 0 6px;

    font-size: 25px;

    font-weight: 400;

    letter-spacing: -0.5px;
}


.footer-newsletter p {
    margin: 0;

    font-size: 10px;

    line-height: 1.6;

    opacity: 0.65;
}


/* FORM */

.footer-newsletter-form {

    display: flex;

    width: 330px;

    border-bottom: 1px solid rgba(244,238,229,0.65);
}


.footer-newsletter-form input {

    flex: 1;

    min-width: 0;

    border: none;

    outline: none;

    background: transparent;

    color: #f4eee5;

    padding: 10px 0;

    font-family: inherit;

    font-size: 10px;
}


.footer-newsletter-form input::placeholder {
    color: rgba(244,238,229,0.55);
}


.footer-newsletter-form button {

    border: none;

    background: transparent;

    color: #f4eee5;

    font-family: inherit;

    font-size: 9px;

    letter-spacing: 1.5px;

    cursor: pointer;

    padding: 10px 0 10px 15px;
}


/* BOTTOM */

.footer-bottom {

    max-width: 1200px;

    margin: 30px auto 0;

    padding-top: 15px;

    border-top: 1px solid rgba(244,238,229,0.12);

    display: flex;

    justify-content: space-between;

    font-size: 7px;

    letter-spacing: 1.5px;

    opacity: 0.45;
}


/* MOBILE */

@media (max-width: 700px) {

    .site-footer {
        padding: 35px 22px 18px;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;

        gap: 35px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-newsletter {
        flex-direction: column;

        align-items: flex-start;

        gap: 25px;
    }

    .footer-newsletter-form {
        width: 100%;
    }

    .footer-bottom {
        flex-direction: column;

        gap: 8px;
    }

}
/* =========================================
   AMÉLIE — FINAL FOOTER
========================================= */

.site-footer {
    width: 100%;
    box-sizing: border-box;

    margin-top: 90px;

    background: #35231d;
    color: #f4eee5;

    padding: 58px 55px 20px;

    position: relative;
}


/* =========================================
   TOP — BRAND + LINKS
========================================= */

.footer-top {
    max-width: 1250px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr;

    gap: 70px;
}


/* BRAND */

.footer-brand h3 {
    margin: 0 0 12px;

    font-size: 28px;
    line-height: 1;

    font-weight: 400;
    letter-spacing: -1px;
}

.footer-brand p {
    margin: 0;

    max-width: 220px;

    font-size: 10px;
    line-height: 1.7;

    color: rgba(244, 238, 229, 0.62);
}


/* =========================================
   FOOTER COLUMNS
========================================= */

.footer-column {
    display: flex;
    flex-direction: column;

    align-items: flex-start;

    gap: 9px;
}


.footer-column span,
.footer-newsletter span {

    display: block;

    margin-bottom: 7px;

    font-size: 8px;

    letter-spacing: 2.2px;

    color: rgba(244, 238, 229, 0.5);

}


.footer-column a {

    color: #f4eee5;

    text-decoration: none;

    font-size: 10px;

    letter-spacing: 1.2px;

    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
}


.footer-column a:hover {

    opacity: 0.55;

    transform: translateX(3px);
}


/* =========================================
   NEWSLETTER
========================================= */

.footer-newsletter {

    max-width: 1250px;

    margin: 55px auto 0;

    padding-top: 38px;

    border-top:
        1px solid rgba(244, 238, 229, 0.18);

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 70px;
}


.footer-newsletter h4 {

    margin: 3px 0 9px;

    font-size: 31px;

    line-height: 1;

    font-weight: 400;

    letter-spacing: -1px;
}


.footer-newsletter p {

    margin: 0;

    max-width: 310px;

    font-size: 10px;

    line-height: 1.7;

    color:
        rgba(244, 238, 229, 0.62);
}


/* =========================================
   NEWSLETTER FORM
========================================= */

.footer-newsletter-form {

    width: 360px;

    display: flex;

    align-items: center;

    border-bottom:
        1px solid rgba(244, 238, 229, 0.55);

    padding-bottom: 7px;
}


.footer-newsletter-form input {

    flex: 1;

    min-width: 0;

    border: none;

    outline: none;

    background: transparent;

    color: #f4eee5;

    font-family: inherit;

    font-size: 10px;

    letter-spacing: 0.4px;
}


.footer-newsletter-form input::placeholder {

    color:
        rgba(244, 238, 229, 0.45);
}


.footer-newsletter-form button {

    border: none;

    background: transparent;

    color: #f4eee5;

    font-family: inherit;

    font-size: 8px;

    letter-spacing: 2px;

    cursor: pointer;

    padding: 8px 0 8px 20px;

    transition: opacity 0.2s ease;
}


.footer-newsletter-form button:hover {

    opacity: 0.5;
}


/* =========================================
   BOTTOM LINE
========================================= */

.footer-bottom {

    max-width: 1250px;

    margin: 42px auto 0;

    padding-top: 17px;

    border-top:
        1px solid rgba(244, 238, 229, 0.1);

    display: flex;

    justify-content: space-between;

    align-items: center;

    font-size: 7px;

    letter-spacing: 1.7px;

    color:
        rgba(244, 238, 229, 0.38);
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

    .site-footer {

        margin-top: 65px;

        padding:
            42px 22px 18px;
    }


    .footer-top {

        grid-template-columns:
            1fr 1fr;

        gap: 38px;
    }


    .footer-brand {

        grid-column:
            1 / -1;
    }


    .footer-brand h3 {

        font-size: 25px;
    }


    .footer-newsletter {

        margin-top: 45px;

        padding-top: 30px;

        flex-direction: column;

        align-items: flex-start;

        gap: 28px;
    }


    .footer-newsletter h4 {

        font-size: 27px;
    }


    .footer-newsletter-form {

        width: 100%;
    }


    .footer-bottom {

        margin-top: 35px;

        flex-direction: column;

        align-items: flex-start;

        gap: 9px;
    }

}/* =========================================
   AMÉLIE FOOTER — COLOR FIX
========================================= */

.site-footer {
    background-color: #2f1f19 !important;
    color: #fffaf2 !important;
}


/* TUTTE LE SCRITTE */

.site-footer h3,
.site-footer h4,
.site-footer p,
.site-footer span,
.site-footer a,
.site-footer strong {
    color: #fffaf2 !important;
}


/* TESTI SECONDARI */

.site-footer .footer-brand p,
.site-footer .footer-newsletter p,
.site-footer .footer-column span,
.site-footer .footer-newsletter span,
.site-footer .footer-bottom {
    color: rgba(255, 250, 242, 0.72) !important;
}


/* LINK */

.site-footer .footer-column a {
    color: #fffaf2 !important;
}


/* NEWSLETTER INPUT */

.site-footer input {
    color: #fffaf2 !important;
    background: transparent !important;
}


.site-footer input::placeholder {
    color: rgba(255, 250, 242, 0.65) !important;
}


/* BOTTONE */

.site-footer button {
    color: #fffaf2 !important;
    background: transparent !important;
}


/* LINEE */

.site-footer,
.site-footer .footer-newsletter,
.site-footer .footer-bottom {
    border-color: rgba(255, 250, 242, 0.25) !important;
}


/* HOVER */

.site-footer a:hover,
.site-footer button:hover {
    color: #ffffff !important;
    opacity: 0.65;
}
/* ==================================================
   AMÉLIE — AESTHETIC FOOTER
================================================== */

.site-footer {
    width: 100% !important;
    box-sizing: border-box !important;

    margin-top: 100px !important;

    padding: 55px 55px 22px !important;

    background: #38251e !important;

    color: #f8f1e7 !important;

    font-family: inherit !important;
}


/* ==================================================
   TOP
================================================== */

.footer-top {
    max-width: 1250px !important;

    margin: 0 auto !important;

    display: grid !important;

    grid-template-columns: 2.4fr 1fr 1fr !important;

    gap: 70px !important;
}


/* ==================================================
   AMÉLIE
================================================== */

.footer-brand h3 {
    margin: 0 0 12px !important;

    color: #f8f1e7 !important;

    font-size: 30px !important;

    line-height: 1 !important;

    font-weight: 400 !important;

    letter-spacing: -1.5px !important;
}


.footer-brand p {
    margin: 0 !important;

    max-width: 230px !important;

    color: rgba(248,241,231,0.62) !important;

    font-size: 10px !important;

    line-height: 1.7 !important;
}


/* ==================================================
   COLONNE
================================================== */

.footer-column {
    display: flex !important;

    flex-direction: column !important;

    align-items: flex-start !important;

    gap: 9px !important;
}


.footer-column span {
    margin-bottom: 8px !important;

    color: rgba(248,241,231,0.45) !important;

    font-size: 8px !important;

    letter-spacing: 2.2px !important;
}


.footer-column a {
    color: #f8f1e7 !important;

    text-decoration: none !important;

    font-size: 10px !important;

    letter-spacing: 1px !important;

    transition: opacity .2s ease !important;
}


.footer-column a:hover {
    opacity: .5 !important;
}


/* ==================================================
   NEWSLETTER
================================================== */

.footer-newsletter {
    max-width: 1250px !important;

    margin: 58px auto 0 !important;

    padding-top: 38px !important;

    border-top:
        1px solid rgba(248,241,231,.16) !important;

    display: flex !important;

    justify-content: space-between !important;

    align-items: flex-end !important;

    gap: 60px !important;
}


.footer-newsletter span {
    color: rgba(248,241,231,.45) !important;

    font-size: 8px !important;

    letter-spacing: 2.2px !important;
}


.footer-newsletter h4 {
    margin: 8px 0 8px !important;

    color: #f8f1e7 !important;

    font-size: 32px !important;

    line-height: 1 !important;

    font-weight: 400 !important;

    letter-spacing: -1.2px !important;
}


.footer-newsletter p {
    margin: 0 !important;

    max-width: 300px !important;

    color: rgba(248,241,231,.62) !important;

    font-size: 10px !important;

    line-height: 1.7 !important;
}


/* ==================================================
   EMAIL
================================================== */

.footer-newsletter-form {
    width: 360px !important;

    display: flex !important;

    align-items: center !important;

    border-bottom:
        1px solid rgba(248,241,231,.55) !important;

    padding-bottom: 8px !important;
}


.footer-newsletter-form input {
    flex: 1 !important;

    min-width: 0 !important;

    border: 0 !important;

    outline: 0 !important;

    background: transparent !important;

    color: #f8f1e7 !important;

    font-family: inherit !important;

    font-size: 10px !important;
}


.footer-newsletter-form input::placeholder {
    color:
        rgba(248,241,231,.55) !important;
}


.footer-newsletter-form button {
    border: 0 !important;

    background: transparent !important;

    color: #f8f1e7 !important;

    font-family: inherit !important;

    font-size: 8px !important;

    letter-spacing: 2px !important;

    cursor: pointer !important;

    padding: 7px 0 7px 20px !important;
}


/* ==================================================
   BOTTOM
================================================== */

.footer-bottom {
    max-width: 1250px !important;

    margin: 45px auto 0 !important;

    padding-top: 16px !important;

    border-top:
        1px solid rgba(248,241,231,.10) !important;

    display: flex !important;

    justify-content: space-between !important;

    color:
        rgba(248,241,231,.38) !important;

    font-size: 7px !important;

    letter-spacing: 1.8px !important;
}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 700px) {

    .site-footer {
        padding: 42px 22px 18px !important;
    }


    .footer-top {
        grid-template-columns: 1fr 1fr !important;

        gap: 38px !important;
    }


    .footer-brand {
        grid-column: 1 / -1 !important;
    }


    .footer-brand h3 {
        font-size: 27px !important;
    }


    .footer-newsletter {
        flex-direction: column !important;

        align-items: flex-start !important;

        gap: 28px !important;
    }


    .footer-newsletter h4 {
        font-size: 28px !important;
    }


    .footer-newsletter-form {
        width: 100% !important;
    }


    .footer-bottom {
        flex-direction: column !important;

        align-items: flex-start !important;

        gap: 8px !important;
    }

}
/* =========================
   HOME HERO — POLISH
========================= */

.hero {
    padding-top: 40px;
    padding-bottom: 80px;
}

.hero-text {
    align-items: center;
    text-align: center;
}

.hero .small-text {
    font-size: 10px;
    letter-spacing: 2px;
    margin-bottom: 22px;
}

.hero h1 {
    font-size: clamp(110px, 14vw, 210px);
    line-height: 0.82;
    letter-spacing: -9px;
    margin: 0 0 32px;
}

.hero .description {
    max-width: 360px;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 28px;
}

.hero .button {
    font-size: 10px;
    letter-spacing: 1.8px;
    padding-bottom: 5px;
}

.hero-image img {
    max-height: 72vh;
}


/* MOBILE */

@media (max-width: 700px) {

    .hero h1 {
        font-size: 82px;
        letter-spacing: -5px;
    }

    .hero .description {
        font-size: 13px;
    }

    .hero-image img {
        max-height: 58vh;
    }

}
/* =========================
   HOME HERO — FIX
========================= */

.hero {
    padding-top: 55px;
    padding-bottom: 90px;
}

.hero-text {
    text-align: center;
}


/* AMÉLIE */

.hero h1 {
    font-size: clamp(75px, 10vw, 145px) !important;
    line-height: 0.95 !important;
    letter-spacing: -5px !important;

    margin: 0 0 45px !important;
}


/* EVERYDAY ESSENTIALS */

.hero .small-text {
    display: block !important;

    position: relative !important;

    margin: 0 0 20px !important;

    font-size: 10px !important;

    line-height: 1.4 !important;

    letter-spacing: 2.5px !important;

    white-space: nowrap;
}


/* TESTO SOTTO */

.hero .description {
    max-width: 380px;

    margin: 0 auto 30px;

    font-size: 14px;

    line-height: 1.7;
}


/* MOBILE */

@media (max-width: 700px) {

    .hero h1 {
        font-size: 65px !important;
        letter-spacing: -3px !important;
        margin-bottom: 35px !important;
    }

    .hero .small-text {
        font-size: 9px !important;
        letter-spacing: 2px !important;
    }

}
/* =========================
   AROUND HERE
========================= */

.around-here {
    padding: 120px 5vw 140px;
}

.around-text {
    max-width: 620px;
    margin-bottom: 70px;
}

.around-text h2 {
    font-size: clamp(42px, 6vw, 78px);
    line-height: 1;
    font-weight: 400;
    letter-spacing: -3px;
    margin: 20px 0 25px;
}

.around-text > p:last-child {
    max-width: 430px;
    font-size: 14px;
    line-height: 1.8;
}

.around-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    grid-template-rows: 280px 280px;
    gap: 24px;
}

.around-item {
    overflow: hidden;
}

.around-large {
    grid-row: 1 / 3;
}

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

    transition: transform 0.6s ease;
}

.around-item:hover img {
    transform: scale(1.025);
}


/* =========================
   HOME JOURNAL NEW
========================= */

.home-journal-new {
    padding: 120px 5vw 150px;
}

.journal-new-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;

    gap: 40px;

    margin-bottom: 60px;
}

.journal-new-header h2 {
    max-width: 750px;

    font-size: clamp(40px, 6vw, 78px);
    line-height: 1;

    font-weight: 400;
    letter-spacing: -3px;

    margin-top: 18px;
}

.journal-new-header > a {
    color: #24231f;

    text-decoration: none;

    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;

    border-bottom: 1px solid #24231f;
    padding-bottom: 4px;
}

.journal-cards {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 24px;
}

.journal-card {
    color: #24231f;
    text-decoration: none;
}

.journal-card img {
    width: 100%;
    height: 420px;

    object-fit: cover;
    display: block;

    margin-bottom: 18px;

    transition: transform 0.6s ease;
}

.journal-card:hover img {
    transform: scale(1.02);
}

.journal-card span {
    display: block;

    font-size: 8px;
    letter-spacing: 2px;

    opacity: 0.5;

    margin-bottom: 10px;
}

.journal-card h3 {
    margin: 0;

    font-size: 20px;
    line-height: 1.2;

    font-weight: 400;
    letter-spacing: -0.5px;
}


/* MOBILE */

@media (max-width: 700px) {

    .around-here {
        padding: 85px 22px 100px;
    }

    .around-grid {
        grid-template-columns: 1fr;
        grid-template-rows: none;
    }

    .around-large {
        grid-row: auto;
    }

    .around-item {
        height: 420px;
    }


    .home-journal-new {
        padding: 90px 22px 110px;
    }

    .journal-new-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .journal-cards {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .journal-card img {
        height: 480px;
    }

}
/* =========================================
   AMÉLIE FOOTER — WARM EDITORIAL
========================================= */

.site-footer {
    background: #8a5843 !important;
    color: #fff8ef !important;

    margin-top: 0 !important;

    padding: 44px 55px 18px !important;
}


/* TESTI PRINCIPALI */

.site-footer h3,
.site-footer h4,
.site-footer strong,
.site-footer a {
    color: #fff8ef !important;
}


/* TESTI SECONDARI */

.site-footer p,
.site-footer span {
    color: rgba(255, 248, 239, 0.72) !important;
}


/* TITOLI PICCOLI */

.footer-column span,
.footer-newsletter span {
    color: rgba(255, 248, 239, 0.5) !important;
}


/* LINK */

.footer-column a {
    color: #fff8ef !important;
}

.footer-column a:hover {
    opacity: 0.55 !important;
}


/* NEWSLETTER */

.footer-newsletter {
    border-top:
        1px solid rgba(255, 248, 239, 0.25) !important;
}

.footer-newsletter-form {
    border-bottom:
        1px solid rgba(255, 248, 239, 0.6) !important;
}

.footer-newsletter-form input,
.footer-newsletter-form button {
    color: #fff8ef !important;
}

.footer-newsletter-form input::placeholder {
    color: rgba(255, 248, 239, 0.6) !important;
}


/* PARTE FINALE */

.footer-bottom {
    border-top:
        1px solid rgba(255, 248, 239, 0.15) !important;

    color:
        rgba(255, 248, 239, 0.55) !important;
}
/* =========================================
   ABOUT NEW
========================================= */

.about-new {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}


/* HERO */

.about-new-hero {
    min-height: 72vh;

    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;

    text-align: center;
}

.about-new-hero h1 {
    max-width: 800px;

    margin: 20px 0 0;

    font-size: clamp(58px, 8vw, 110px);

    line-height: 0.95;

    font-weight: 400;

    letter-spacing: -5px;
}


/* TEXT */

.about-new-text {
    max-width: 650px;

    margin: 0 auto;

    padding: 85px 0;
}

.about-new-text p {
    margin: 0 0 30px;

    font-size: 14px;

    line-height: 1.9;
}

.about-new-intro {
    font-size: 28px !important;

    line-height: 1.4 !important;

    letter-spacing: -0.6px;

    margin-bottom: 35px !important;
}


/* IMAGE */

.about-new-image {
    width: 100%;

    max-width: 880px;

    margin: 20px auto 0;
}

.about-new-image img {
    width: 100%;

    max-height: 72vh;

    object-fit: contain;

    display: block;
}


/* SECOND TEXT */

.about-new-text-second {
    padding-top: 105px;
}

.about-new-statement {
    font-size: 30px !important;

    line-height: 1.35 !important;

    letter-spacing: -0.8px;

    margin-bottom: 50px !important;
}


/* SOCIAL */

.about-new-social {
    margin-top: 70px;

    padding: 80px 0 100px;

    text-align: center;

    border-top:
        1px solid rgba(36,35,31,0.14);
}

.about-new-social .small-text {
    margin-bottom: 30px;
}

.about-new-social-links {
    display: flex;

    justify-content: center;

    gap: 55px;
}

.about-new-social-links a {
    color: #24231f;

    text-decoration: none;

    font-size: 14px;

    letter-spacing: 0.5px;

    border-bottom:
        1px solid rgba(36,35,31,0.6);

    padding-bottom: 4px;

    transition: opacity 0.2s ease;
}

.about-new-social-links a:hover {
    opacity: 0.5;
}


/* MOBILE */

@media (max-width: 700px) {

    .about-new {
        padding: 0 22px;
    }

    .about-new-hero {
        min-height: 60vh;
    }

    .about-new-hero h1 {
        font-size: 52px;

        letter-spacing: -3px;
    }

    .about-new-text {
        padding: 65px 0;
    }

    .about-new-intro,
    .about-new-statement {
        font-size: 22px !important;
    }

    .about-new-image img {
        max-height: 60vh;
    }

    .about-new-social {
        padding: 65px 0 80px;
    }

    .about-new-social-links {
        gap: 30px;
    }

}
/* =========================================
   ABOUT — COMPACT FIX
========================================= */

/* PRIMA PARTE */

.about-new-hero {
    min-height: auto !important;
    padding: 150px 0 85px !important;
}

.about-new-hero h1 {
    margin-top: 15px !important;
}


/* TESTO SUBITO DOPO IL TITOLO */

.about-new-text {
    padding: 45px 0 65px !important;
}

.about-new-intro {
    margin-bottom: 25px !important;
}


/* FOTO */

.about-new-image {
    margin-top: 15px !important;
    margin-bottom: 0 !important;
}


/* SECONDO BLOCCO DI TESTO */

.about-new-text-second {
    padding: 65px 0 55px !important;
}


/* SOCIAL */

.about-new-social {
    margin-top: 20px !important;
    padding: 55px 0 70px !important;
}


/* FOOTER ATTACCATO MEGLIO ALLA PAGINA */

.about-new + .site-footer {
    margin-top: 0 !important;
}
/* ABOUT — TYPOGRAPHY */

.about-new-intro,
.about-new-statement {
    font-family: Georgia, "Times New Roman", serif !important;
    font-weight: 400 !important;
    letter-spacing: -1px !important;
}

.about-new-intro {
    font-size: 32px !important;
    line-height: 1.15 !important;
}

.about-new-statement {
    font-size: 38px !important;
    line-height: 1.12 !important;
}

.about-new-text p:not(.about-new-intro):not(.about-new-statement) {
    font-size: 13px !important;
    line-height: 1.75 !important;
    font-weight: 400 !important;
    max-width: 590px;
}
.about-new-hero h1 em {
    font-weight: 400;
}
/* =========================
   AROUND HERE
========================= */

.around-here {
    padding: 120px 5vw 140px;
}

.around-text {
    max-width: 620px;
    margin-bottom: 70px;
}

.around-text h2 {
    font-size: clamp(42px, 6vw, 78px);
    line-height: 1;
    font-weight: 400;
    letter-spacing: -3px;
    margin: 20px 0 25px;
}

.around-text > p:last-child {
    max-width: 430px;
    font-size: 14px;
    line-height: 1.8;
}

.around-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    grid-template-rows: 280px 280px;
    gap: 24px;
}

.around-item {
    overflow: hidden;
}

.around-large {
    grid-row: 1 / 3;
}

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

    transition: transform 0.6s ease;
}

.around-item:hover img {
    transform: scale(1.025);
}


/* =========================
   HOME JOURNAL NEW
========================= */

.home-journal-new {
    padding: 120px 5vw 150px;
}

.journal-new-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;

    gap: 40px;

    margin-bottom: 60px;
}

.journal-new-header h2 {
    max-width: 750px;

    font-size: clamp(40px, 6vw, 78px);
    line-height: 1;

    font-weight: 400;
    letter-spacing: -3px;

    margin-top: 18px;
}

.journal-new-header > a {
    color: #24231f;

    text-decoration: none;

    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;

    border-bottom: 1px solid #24231f;
    padding-bottom: 4px;
}

.journal-cards {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 24px;
}

.journal-card {
    color: #24231f;
    text-decoration: none;
}

.journal-card img {
    width: 100%;
    height: 420px;

    object-fit: cover;
    display: block;

    margin-bottom: 18px;

    transition: transform 0.6s ease;
}

.journal-card:hover img {
    transform: scale(1.02);
}

.journal-card span {
    display: block;

    font-size: 8px;
    letter-spacing: 2px;

    opacity: 0.5;

    margin-bottom: 10px;
}

.journal-card h3 {
    margin: 0;

    font-size: 20px;
    line-height: 1.2;

    font-weight: 400;
    letter-spacing: -0.5px;
}


/* MOBILE */

@media (max-width: 700px) {

    .around-here {
        padding: 85px 22px 100px;
    }

    .around-grid {
        grid-template-columns: 1fr;
        grid-template-rows: none;
    }

    .around-large {
        grid-row: auto;
    }

    .around-item {
        height: 420px;
    }


    .home-journal-new {
        padding: 90px 22px 110px;
    }

    .journal-new-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .journal-cards {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .journal-card img {
        height: 480px;
    }

}
/* =========================
   MOBILE
========================= */

@media (max-width: 700px) {

    body {
        overflow-x: hidden;
    }

    .navbar {
        padding: 20px 18px;
    }

    .navbar nav {
        gap: 12px;
    }

    .navbar nav a {
        font-size: 9px;
        letter-spacing: 1px;
    }

    .logo a {
        font-size: 22px;
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 30px 20px 60px;
        gap: 35px;
    }

    .hero-text {
        min-height: auto;
        padding: 40px 0 20px;
    }

    .hero h1 {
        font-size: 70px !important;
        letter-spacing: -4px !important;
    }

    .hero .description {
        max-width: 300px;
        font-size: 13px;
    }

    .hero-image img {
        width: 100%;
        max-height: none;
        object-fit: contain;
    }

    .products {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 40px 20px 80px;
    }

    .product-image {
        height: auto;
    }

    .product-image img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    .product-page {
        grid-template-columns: 1fr;
        padding: 30px 20px 70px;
        gap: 35px;
    }

    .product-page-image {
        height: auto;
    }

    .product-page-image img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    .product-page-info {
        padding-right: 0;
    }

    .product-page-info h1 {
        font-size: 48px;
        letter-spacing: -2px;
    }

    .cart-page {
        padding: 40px 20px 80px;
    }

    .cart-content {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .cart-product {
        grid-template-columns: 120px 1fr;
        gap: 20px;
    }

    .cart-product img {
        height: 160px;
    }

    .checkout-page {
        display: block;
        margin: 40px auto;
        padding: 0 20px;
    }

    .checkout-summary {
        position: static;
        margin-top: 60px;
    }

    .checkout-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .site-footer {
        padding: 35px 20px 18px !important;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr !important;
        gap: 30px !important;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-newsletter {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 25px !important;
    }

    .footer-newsletter-form {
        width: 100% !important;
    }
}
.shop-description {
    font-family: Georgia, "Times New Roman", serif;

    font-size: 24px;

    font-style: italic;

    font-weight: 400;

    line-height: 1.45;

    letter-spacing: -0.4px;

    max-width: 520px;

    margin: 35px auto 0;

    text-align: center;

    color: #24231f;
}