/* HERO */


.hero{


height:100vh;

position:relative;

display:flex;

align-items:center;

justify-content:center;

text-align:center;

overflow:hidden;

}





.hero-video{


position:absolute;

height:100%;

width:100%;

object-fit:cover;

z-index:0;

}




.overlay{


position:absolute;

inset:0;

background:rgba(0,0,0,.55);

z-index:1;

}





.hero-content{


position:relative;

z-index:2;

max-width:850px;

padding:20px;

animation:fade 1.5s ease;

}




.small-title{


font-size:13px;

letter-spacing:5px;

color:#ddd;

margin-bottom:30px;

}





.hero h1 {

    font-family: 'Montserrat', sans-serif;

    font-size: 72px;

    line-height: 1.08;

    font-weight: 700;

    margin-bottom: 30px;

    color: #F6F3EE;

}



.description{


font-size:20px;

line-height:1.8;

color:#eeeeee;

margin-bottom:45px;

}




.hero-btn{


display:inline-block;

background:#8B1E2D;

color:white;

padding:18px 45px;

border-radius:40px;

text-decoration:none;

font-weight:600;

transition:.3s;

}



.hero-btn:hover{


background:#b52a43;

transform:translateY(-4px);

}




.scroll{


position:absolute;

bottom:25px;

z-index:5;

font-size:35px;

animation:bounce 2s infinite;

}





@keyframes bounce{


50%{

transform:translateY(10px);

}


}



@keyframes fade{


from{

opacity:0;

transform:translateY(50px);

}


to{

opacity:1;

transform:translateY(0);

}


}






/* MOBILE */


@media(max-width:768px){



.hero h1{


font-size:42px;


}



.small-title{

font-size:11px;

letter-spacing:3px;

}



.description{


font-size:16px;


}


.hero-btn{


padding:16px 35px;


}
}

/* ================= MEET THE MAKER ================= */

.designer-section {

    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(190, 160, 130, 0.18),
            transparent 35%
        ),
        radial-gradient(
            circle at 85% 80%,
            rgba(220, 190, 170, 0.18),
            transparent 40%
        ),
        linear-gradient(
            135deg,
            #F6F3EE 0%,
            #EAE4DA 45%,
            #F2EDE5 100%
        );

    padding: 100px 25px;

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 55px;

}


/* ================= IMAGE ================= */

.designer-image {

    width: 100%;

    max-width: 500px;

}


.designer-image img {

    width: 100%;

    height: auto;

    display: block;

    object-fit: cover;

    border-radius: 4px;

    box-shadow:
        0 20px 50px
        rgba(70, 55, 45, 0.12);

}


/* ================= TEXT ================= */

.designer-text {

    width: 100%;

    max-width: 600px;

}


.section-label {

    font-family: 'Montserrat', sans-serif;

    font-size: 27px;

    letter-spacing: 5px;

    color: #999;

    margin-bottom: 30px;

}


.designer-text h2 {

    font-family: 'Cormorant Garamond', serif;

    font-size: 25px;

    line-height: 1.15;

    font-weight: 600;

    margin-bottom: 30px;

}


.designer-text p {

    font-family: 'Montserrat', sans-serif;

    font-size: 15px;

    line-height: 1.9;

    color: #000000;

    margin-bottom: 18px;

}


.maker-signature {

    font-family: 'Cormorant Garamond', serif !important;

    font-size: 25px !important;

    font-style: italic;

    color: #000000 !important;

    margin-top: 30px;

}

.maker-link{

    display:inline-flex;

    align-items:center;

    gap:8px;

    margin-top:28px;

    color:#7A2638;

    font-weight:600;

    text-decoration:none;

    transition:.3s;

}

.maker-link:hover{

    gap:14px;

}
/* ==========================================
   DISCOVER STORY BUTTON
========================================== */

.maker-story-link{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:12px;

    margin-top:34px;

    padding:14px 28px;

    border:1px solid rgba(122,38,56,.18);

    border-radius:999px;

    background:transparent;

    color:#7A2638;

    font-size:14px;

    font-weight:600;

    letter-spacing:.3px;

    text-decoration:none;

    transition:.35s ease;

}

.maker-story-link:hover{

    background:#7A2638;

    color:#FFFFFF;

    border-color:#7A2638;

    transform:translateY(-2px);

    box-shadow:

        0 14px 34px rgba(122,38,56,.18);

}

.story-arrow{

    transition:.35s ease;

}

.maker-story-link:hover .story-arrow{

    transform:translateX(5px);

}
/* ==========================================
   MOBILE
========================================== */

@media (max-width:768px){

.maker-story-link{

    width:100%;

    margin-top:26px;

    padding:13px 22px;

    font-size:13px;

    gap:10px;

}

}
/* ==========================================
   MEET THE MAKER - MOBILE
========================================== */

@media(max-width:900px){

.designer-section{

    padding:70px 24px;

    display:flex;

    flex-direction:column;

    gap:32px;

}

.designer-image{

    width:100%;

}

.designer-image img{

    width:100%;

    border-radius:22px;

}

.designer-text{

    text-align:center;

}

.designer-text .section-label{

    font-size:10px;

    letter-spacing:2px;

    margin-bottom:14px;

}

.designer-text h2{

    font-size:38px;

    line-height:1.08;

    margin-bottom:22px;

}

.designer-text p{

    font-size:14px;

    line-height:1.8;

    margin-bottom:18px;

}

.maker-signature{

    font-size:17px;

    margin-top:28px;

    font-style:italic;

}

.maker-link{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    margin-top:24px;

    padding:14px 28px;

    border:1px solid rgba(122,38,56,.18);

    border-radius:999px;

    background:#FFFFFF;

    color:#7A2638;

    font-size:14px;

    font-weight:600;

    text-decoration:none;

    transition:.3s;

}

.maker-link:hover{

    background:#7A2638;

    color:#FFFFFF;

}

}


/* ================= DESKTOP ================= */

@media (min-width: 900px) {

    .designer-section {

        display: grid;

        grid-template-columns: 1fr 1fr;

        align-items: center;

        gap: 90px;

        padding: 150px 10%;

    }


    .designer-image {

        width: 100%;

        max-width: 600px;

    }


    .designer-text {

        max-width: 600px;

    }


    .designer-text h2 {

        font-size: 64px;

    }


    .designer-text p {

        font-size: 16px;

    }

}
/* ================= THE MOVEMENT ================= */

.movement-section {

    position: relative;

    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(190, 160, 130, 0.18),
            transparent 35%
        ),
        radial-gradient(
            circle at 85% 80%,
            rgba(220, 190, 170, 0.18),
            transparent 40%
        ),
        linear-gradient(
            135deg,
            #F6F3EE 0%,
            #EAE4DA 45%,
            #F2EDE5 100%
        );

    padding: 110px 25px;

    text-align: center;

    overflow: hidden;

}


/* Small section title */

.movement-label{

    font-size:11px;

    letter-spacing:5px;

    color:#999;

    margin-bottom:45px;

}


/* Main content */

.movement-content{

    max-width:850px;

    margin:0 auto;

}


/* Main heading */

.movement-content h2{

    font-family:'Cormorant Garamond',serif;

    font-size:46px;

    line-height:1.2;

    font-weight:600;

    margin-bottom:35px;

}


/* Paragraphs */

.movement-content p{

    max-width:650px;

    margin:0 auto 20px;

    color:#bdbdbd;

    font-size:16px;

    line-height:1.9;

}


/* Bottom statement */

.movement-statement {

    display: flex;

    justify-content: center;

    align-items: center;

    flex-wrap: wrap;

    gap: 18px;

    margin-top: 65px;

    font-size: 10px;

    letter-spacing: 3px;

    color: #8A8178;

}


/* Desktop */

@media(min-width:900px){

    .movement-section{

        padding:170px 80px;

    }


    .movement-content h2{

        font-size:64px;

    }


    .movement-content p{

        font-size:17px;

    }

}


/* Mobile */

@media(max-width:600px){

    .movement-section{

        padding:90px 25px;

    }


    .movement-content h2{

        font-size:38px;

    }


    .movement-content p{

        font-size:15px;

    }


    .movement-statement{

        gap:10px;

        line-height:2;

    }

}

/* ================= LIGHT LUXURY THEME TEXT ================= */

body {
    color: #1C1C1C;
}


/* Main Headings */

.designer-text h2,
.movement-content h2,
.aesthetic-header h2 {
    color: #1C1C1C;
}


/* Body Text */

.designer-text p,
.movement-content p,
.aesthetic-header p {
    color: #5F5A55;
}


/* Section Labels */

.section-label,
.movement-label,
.aesthetic-header .section-label {
    color: #77706A;
}


/* Signature */

.maker-signature {
    color: #3A3531 !important;
}

/* ================= THE AESTHETIC ================= */

.aesthetic-section {

    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(190, 160, 130, 0.18),
            transparent 35%
        ),
        radial-gradient(
            circle at 85% 80%,
            rgba(220, 190, 170, 0.18),
            transparent 40%
        ),
        linear-gradient(
            135deg,
            #F6F3EE 0%,
            #EAE4DA 45%,
            #F2EDE5 100%
        );

    padding: 110px 25px;

    color: #1C1C1C;

}


/* ================= HEADER ================= */

.aesthetic-header {

    max-width: 700px;

    margin: 0 auto 70px;

    text-align: center;

}


.aesthetic-header .section-label {

    color: #77706A;

    margin-bottom: 25px;

}


.aesthetic-header h2 {

    font-family: 'Cormorant Garamond', serif;

    font-size: 52px;

    line-height: 1.15;

    font-weight: 600;

    color: #1C1C1C;

    margin-bottom: 25px;

}


.aesthetic-header p {

    max-width: 600px;

    margin: auto;

    font-family: 'Montserrat', sans-serif;

    font-size: 16px;

    line-height: 1.9;

    color: #5F5A55;

}


/* ================= GRID ================= */

.aesthetic-grid {

    max-width: 1200px;

    margin: auto;

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 30px;

}


/* ================= CARD ================= */

.aesthetic-card {

    text-align: center;

}


.aesthetic-placeholder {

    aspect-ratio: 4 / 5;

    background:

        linear-gradient(
            135deg,
            rgba(255,255,255,0.65),
            rgba(220,210,200,0.55)
        );

    border-radius: 6px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    color: #77706A;

    font-family: 'Montserrat', sans-serif;

    font-size: 11px;

    letter-spacing: 3px;

    margin-bottom: 20px;

    border: 1px solid
        rgba(120,100,80,0.12);

}


.aesthetic-placeholder span {

    margin-top: 12px;

    font-size: 9px;

    letter-spacing: 2px;

    color: #9A9188;

}


.aesthetic-card h3 {

    font-family: 'Cormorant Garamond', serif;

    font-size: 32px;

    font-weight: 600;

    color: #2A2521;

    margin-bottom: 8px;

}


.aesthetic-card p {

    font-family: 'Montserrat', sans-serif;

    font-size: 13px;

    line-height: 1.7;

    color: #6D665F;

    max-width: 220px;

    margin: auto;

}


/* ================= DESKTOP ================= */

@media (min-width: 900px) {

    .aesthetic-section {

        padding: 160px 80px;

    }


    .aesthetic-header h2 {

        font-size: 68px;

    }


    .aesthetic-grid {

        grid-template-columns:
            repeat(4, 1fr);

        gap: 25px;

    }

}


/* ================= MOBILE ================= */

@media (max-width: 600px) {

    .aesthetic-section {

        padding: 90px 20px;

    }


    .aesthetic-header {

        margin-bottom: 50px;

    }


    .aesthetic-header h2 {

        font-size: 42px;

    }


    .aesthetic-header p {

        font-size: 15px;

    }


    .aesthetic-grid {

        grid-template-columns:
            repeat(2, 1fr);

        gap: 15px;

    }


    .aesthetic-placeholder {

        margin-bottom: 15px;

    }


    .aesthetic-card h3 {

        font-size: 26px;

    }


    .aesthetic-card p {

        font-size: 11px;

    }

}
/* ================= HOW IT'S MADE ================= */

.process-section {
    padding: 110px 24px;
    color: #1C1C1C;

    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(190, 160, 130, 0.18),
            transparent 35%
        ),
        radial-gradient(
            circle at 85% 80%,
            rgba(220, 190, 170, 0.18),
            transparent 40%
        ),
        linear-gradient(
            135deg,
            #F6F3EE 0%,
            #EAE4DA 45%,
            #F2EDE5 100%
        );
}


/* ================= HEADER ================= */

.process-header {
    max-width: 700px;
    margin: 0 auto 70px;
    text-align: center;
}

.process-header .section-label {
    margin-bottom: 25px;
    color: #77706A;
}

.process-header h2 {
    margin: 0 0 22px;

    font-family:
        'Cormorant Garamond',
        serif;

    font-size: 52px;
    font-weight: 600;
    line-height: 1.15;

    color: #1C1C1C;
}

.process-header p {
    max-width: 600px;
    margin: 0 auto;

    font-family:
        'Montserrat',
        sans-serif;

    font-size: 16px;
    line-height: 1.8;

    color: #5F5A55;
}


/* ================= GRID ================= */

.process-grid {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;

    display: grid;
    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 18px;
}


/* ================= CARD ================= */

.process-card {
    position: relative;

    min-width: 0;
    overflow: hidden;

    padding-bottom: 28px;

    border:
        1px solid
        rgba(120, 100, 80, 0.12);

    border-radius: 18px;

    background:
        rgba(255, 255, 255, 0.42);

    box-shadow:
        0 12px 30px
        rgba(42, 37, 33, 0.055);

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}

@media (hover: hover) {

    .process-card:hover {
        transform:
            translateY(-5px);

        background:
            rgba(255, 255, 255, 0.62);

        box-shadow:
            0 20px 40px
            rgba(42, 37, 33, 0.09);
    }

}


/* ================= IMAGE — 4:3 EVERYWHERE ================= */

.process-image {
    width: 100%;

    aspect-ratio: 4 / 3;

    overflow: hidden;

    background:
        #DDD4CA;
}

.process-image img,
.process-image .image-placeholder {
    width: 100%;
    height: 100%;
}

.process-image img {
    display: block;

    object-fit: cover;
    object-position: center;

    transition:
        transform 0.5s ease;
}

@media (hover: hover) {

    .process-card:hover
    .process-image img {
        transform:
            scale(1.035);
    }

}


/* ================= IMAGE PLACEHOLDER ================= */

.process-image .image-placeholder {
    display: flex;

    flex-direction: column;

    justify-content: center;
    align-items: center;

    padding: 20px;

    text-align: center;

    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.65),
            rgba(220, 210, 200, 0.55)
        );

    font-family:
        'Montserrat',
        sans-serif;

    font-size: 10px;
    letter-spacing: 3px;

    color: #77706A;
}

.process-image
.image-placeholder span {
    margin-top: 12px;

    font-size: 8px;
    letter-spacing: 1.5px;

    color: #9A9188;
}


/* ================= STEP NUMBER ================= */

.process-card
.process-number {
    position: relative;
    z-index: 1;

    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    margin:
        -21px 0 16px 20px;

    border:
        1px solid
        rgba(122, 38, 56, 0.12);

    border-radius: 50%;

    background:
        #F9F5F0;

    box-shadow:
        0 5px 14px
        rgba(42, 37, 33, 0.10);

    font-family:
        'Montserrat',
        sans-serif;

    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;

    color: #7A2638;
}


/* ================= CARD CONTENT ================= */

.process-card h3 {
    margin:
        0 20px 11px;

    font-family:
        'Cormorant Garamond',
        serif;

    font-size: 27px;
    font-weight: 600;
    line-height: 1.12;

    color: #2A2521;
}

.process-card p {
    max-width: none;

    margin:
        0 20px;

    padding: 0;

    font-family:
        'Montserrat',
        sans-serif;

    font-size: 12px;
    line-height: 1.75;

    color: #6D665F;
}


/* ================= TABLET ================= */

@media (max-width: 1050px) {

    .process-grid {
        max-width: 760px;

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 22px;
    }

}


/* ================= MOBILE ================= */

@media (max-width: 600px) {

    .process-section {
        padding:
            82px 16px;
    }

    .process-header {
        max-width: 500px;

        margin-bottom: 38px;

        padding:
            0 4px;
    }

    .process-header
    .section-label {
        margin-bottom: 14px;

        font-size: 10px;
        letter-spacing: 2px;
    }

    .process-header h2 {
        margin-bottom: 15px;

        font-size: 38px;
        line-height: 1.08;
    }

    .process-header p {
        font-size: 13px;
        line-height: 1.65;
    }

    .process-grid {
        grid-template-columns: 1fr;

        gap: 14px;
    }

    .process-card {
        padding-bottom: 18px;

        border-radius: 15px;

        box-shadow:
            0 8px 22px
            rgba(42, 37, 33, 0.055);
    }

    /*
       Image remains 4:3 on mobile.
    */

    .process-image {
        aspect-ratio: 4 / 3;
    }

    .process-card
    .process-number {
        width: 34px;
        height: 34px;

        margin:
            -17px 0 10px 16px;

        font-size: 8px;

        box-shadow:
            0 4px 10px
            rgba(42, 37, 33, 0.09);
    }

    .process-card h3 {
        margin:
            0 16px 6px;

        font-size: 23px;
        line-height: 1.08;
    }

    .process-card p {
        margin:
            0 16px;

        font-size: 11px;
        line-height: 1.6;
    }

    .process-image
    .image-placeholder {
        padding: 15px;

        font-size: 9px;
        letter-spacing: 2px;
    }

    .process-image
    .image-placeholder span {
        margin-top: 8px;

        font-size: 7px;
        letter-spacing: 1px;
    }

}


/* ================= SMALL MOBILE ================= */

@media (max-width: 380px) {

    .process-section {
        padding:
            72px 14px;
    }

    .process-header h2 {
        font-size: 35px;
    }

    .process-card {
        padding-bottom: 16px;
    }

    .process-card h3 {
        font-size: 22px;
    }

    .process-card p {
        font-size: 10.5px;
        line-height: 1.55;
    }

}


/* ================= REDUCED MOTION ================= */

@media (prefers-reduced-motion: reduce) {

    .process-card,
    .process-image img {
        transition: none;
    }

}
/* ================= FROM FORGOTTEN TO FABULOUS ================= */

.transformation-section {

    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(190, 160, 130, 0.18),
            transparent 35%
        ),
        radial-gradient(
            circle at 85% 80%,
            rgba(220, 190, 170, 0.18),
            transparent 40%
        ),
        linear-gradient(
            135deg,
            #F6F3EE 0%,
            #EAE4DA 45%,
            #F2EDE5 100%
        );

    padding: 110px 25px;

    color: #1C1C1C;

}


/* ================= HEADER ================= */

.transformation-header {

    max-width: 700px;

    margin:
        0 auto 70px;

    text-align: center;

}


.transformation-header .section-label {

    color: #77706A;

    margin-bottom: 25px;

}


.transformation-header h2 {

    font-family:
        'Cormorant Garamond',
        serif;

    font-size: 52px;

    line-height: 1.15;

    font-weight: 600;

    color: #1C1C1C;

    margin-bottom: 25px;

}


.transformation-header p {

    font-family:
        'Montserrat',
        sans-serif;

    font-size: 16px;

    line-height: 1.8;

    color: #5F5A55;

}


/* ================= STORY ================= */

.transformation-story {

    max-width: 1000px;

    margin: auto;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 35px;

}


/* ================= CARDS ================= */

.transformation-card {

    width: 100%;

    max-width: 400px;

    text-align: center;

}


/* ================= IMAGE ================= */

.transformation-image {

    width: 100%;

    aspect-ratio: 4 / 5;

    overflow: hidden;

    margin-bottom: 25px;

}


.transformation-placeholder {

    width: 100%;

    height: 100%;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    text-align: center;

    padding: 20px;

    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.65),
            rgba(220, 210, 200, 0.55)
        );

    border:
        1px solid
        rgba(120, 100, 80, 0.12);

    color: #77706A;

    font-family:
        'Montserrat',
        sans-serif;

    font-size: 10px;

    letter-spacing: 3px;

}


.transformation-placeholder span {

    margin-top: 12px;

    font-size: 8px;

    letter-spacing: 1.5px;

    color: #9A9188;

}


/* ================= LABEL ================= */

.transformation-label {

    font-family:
        'Montserrat',
        sans-serif;

    font-size: 10px;

    letter-spacing: 4px;

    color: #9A9188;

    margin-bottom: 10px;

}


/* ================= TITLE ================= */

.transformation-card h3 {

    font-family:
        'Cormorant Garamond',
        serif;

    font-size: 36px;

    font-weight: 600;

    color: #2A2521;

    margin-bottom: 10px;

}


/* ================= DESCRIPTION ================= */

.transformation-card p {

    font-family:
        'Montserrat',
        sans-serif;

    font-size: 13px;

    line-height: 1.8;

    color: #6D665F;

}


/* ================= ARROW ================= */

.transformation-arrow {

    font-family:
        'Cormorant Garamond',
        serif;

    font-size: 40px;

    color: #7A2638;

    flex-shrink: 0;

}


/* ================= FINAL STATEMENT ================= */

.transformation-statement {

    margin-top: 90px;

    text-align: center;

}


.transformation-statement p {

    font-family:
        'Cormorant Garamond',
        serif;

    font-size: 34px;

    color: #2A2521;

    margin-bottom: 10px;

}


.transformation-statement span {

    font-family:
        'Montserrat',
        sans-serif;

    font-size: 11px;

    letter-spacing: 3px;

    text-transform: uppercase;

    color: #77706A;

}


/* ================= DESKTOP ================= */

@media (min-width: 900px) {

    .transformation-section {

        padding:
            160px 80px;

    }


    .transformation-header h2 {

        font-size: 68px;

    }


    .transformation-story {

        gap: 60px;

    }

}


/* ================= MOBILE ================= */

@media (max-width: 600px) {

    .transformation-section {

        padding:
            90px 20px;

    }


    .transformation-header {

        margin-bottom: 50px;

    }


    .transformation-header h2 {

        font-size: 42px;

    }


    .transformation-header p {

        font-size: 15px;

    }


    .transformation-story {

        flex-direction: column;

        gap: 35px;

    }


    .transformation-card {

        max-width: 100%;

    }


    .transformation-image {

        aspect-ratio: 4 / 5;

    }


    .transformation-arrow {

        transform:
            rotate(90deg);

        font-size: 35px;

    }


    .transformation-statement {

        margin-top: 60px;

    }


    .transformation-statement p {

        font-size: 29px;

    }

}
/* ================= CUSTOM ORDERS ================= */

.custom-section {

    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(190, 160, 130, 0.18),
            transparent 35%
        ),
        radial-gradient(
            circle at 85% 80%,
            rgba(220, 190, 170, 0.18),
            transparent 40%
        ),
        linear-gradient(
            135deg,
            #F6F3EE 0%,
            #EAE4DA 45%,
            #F2EDE5 100%
        );

    padding:
        110px 25px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    gap:
        70px;

    color:
        #1C1C1C;

}


/* ================= CONTENT ================= */

.custom-content {

    width:
        100%;

    max-width:
        550px;

}


.custom-content .section-label {

    color:
        #77706A;

    margin-bottom:
        25px;

}


.custom-content h2 {

    font-family:
        'Cormorant Garamond',
        serif;

    font-size:
        55px;

    line-height:
        1.1;

    font-weight:
        600;

    color:
        #1C1C1C;

    margin-bottom:
        30px;

}


.custom-content p {

    font-family:
        'Montserrat',
        sans-serif;

    font-size:
        15px;

    line-height:
        1.9;

    color:
        #5F5A55;

    margin-bottom:
        20px;

}


/* ================= BUTTON ================= */

.custom-btn {

    display:
        inline-block;

    margin-top:
        20px;

    padding:
        16px 30px;

    background:
        #7A2638;

    color:
        #F6F3EE;

    font-family:
        'Montserrat',
        sans-serif;

    font-size:
        10px;

    letter-spacing:
        1.5px;

    text-transform:
        uppercase;

    text-decoration:
        none;

    border-radius:
        30px;

    transition:
        background 0.3s ease,
        transform 0.3s ease;

}


.custom-btn:hover {

    background:
        #5F1D2C;

    transform:
        translateY(-3px);

}


/* ================= IMAGE ================= */

.custom-image {

    width:
        100%;

    max-width:
        450px;

}


.custom-image-placeholder {

    width:
        100%;

    aspect-ratio:
        4 / 5;

    display:
        flex;

    flex-direction:
        column;

    align-items:
        center;

    justify-content:
        center;

    text-align:
        center;

    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.65),
            rgba(220, 210, 200, 0.55)
        );

    border:
        1px solid
        rgba(120, 100, 80, 0.12);

    color:
        #77706A;

    font-family:
        'Montserrat',
        sans-serif;

    font-size:
        10px;

    letter-spacing:
        3px;

}


.custom-image-placeholder span {

    margin-top:
        12px;

    font-size:
        8px;

    letter-spacing:
        1.5px;

    color:
        #9A9188;

}


/* ================= DESKTOP ================= */

@media (min-width: 900px) {

    .custom-section {

        padding:
            160px 80px;

    }

}


/* ================= MOBILE ================= */

@media (max-width: 700px) {

    .custom-section {

        flex-direction:
            column;

        padding:
            90px 20px;

        gap:
            50px;

        text-align:
            center;

    }


    .custom-content {

        max-width:
            600px;

    }


    .custom-content h2 {

        font-size:
            44px;

    }


    .custom-content p {

        font-size:
            14px;

    }


    .custom-image {

        max-width:
            100%;

    }

}

/* ================= CUSTOM ORDER IMAGE POLISH ================= */

.custom-image {
    overflow: hidden;
    border-radius: 22px;
    background: #E8E0D7;
    box-shadow:
        0 18px 45px rgba(42, 37, 33, 0.12),
        0 2px 8px rgba(42, 37, 33, 0.06);
}

.custom-image img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    object-fit: cover;
    transition:
        transform 0.55s ease,
        filter 0.55s ease;
}

@media (hover: hover) {

    .custom-image:hover img {
        transform: scale(1.025);
        filter: brightness(1.025);
    }

}

@media (max-width: 600px) {

    .custom-image {
        border-radius: 17px;
        box-shadow:
            0 12px 30px rgba(42, 37, 33, 0.10),
            0 2px 6px rgba(42, 37, 33, 0.05);
    }

}

@media (prefers-reduced-motion: reduce) {

    .custom-image img {
        transition: none;
    }

}
/* ================= JOIN THE MOVEMENT ================= */

.join-section {

    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(190, 160, 130, 0.18),
            transparent 35%
        ),
        radial-gradient(
            circle at 85% 80%,
            rgba(220, 190, 170, 0.18),
            transparent 40%
        ),
        linear-gradient(
            135deg,
            #F6F3EE 0%,
            #EAE4DA 45%,
            #F2EDE5 100%
        );

    padding:
        110px 25px;

    text-align:
        center;

    color:
        #1C1C1C;

}


.join-content {

    max-width:
        650px;

    margin:
        0 auto;

}


.join-content .section-label {

    color:
        #77706A;

    margin-bottom:
        25px;

}


.join-content h2 {

    font-family:
        'Cormorant Garamond',
        serif;

    font-size:
        52px;

    line-height:
        1.15;

    font-weight:
        600;

    color:
        #1C1C1C;

    margin-bottom:
        25px;

}


.join-content p {

    max-width:
        550px;

    margin:
        0 auto 15px;

    font-family:
        'Montserrat',
        sans-serif;

    font-size:
        15px;

    line-height:
        1.9;

    color:
        #5F5A55;

}


/* ================= EMAIL FORM ================= */

.subscribe-form {

    display:
        flex;

    max-width:
        500px;

    margin:
        35px auto 15px;

    border:
        1px solid
        rgba(100, 80, 60, 0.25);

    background:
        rgba(255, 255, 255, 0.45);

    border-radius:
        40px;

    padding:
        5px;

}


.subscribe-form input {

    flex:
        1;

    min-width:
        0;

    border:
        none;

    outline:
        none;

    background:
        transparent;

    padding:
        12px 18px;

    font-family:
        'Montserrat',
        sans-serif;

    font-size:
        12px;

    color:
        #2A2521;

}


.subscribe-form input::placeholder {

    color:
        #8A8178;

}


.subscribe-form button {

    border:
        none;

    cursor:
        pointer;

    padding:
        12px 25px;

    background:
        #7A2638;

    color:
        #F6F3EE;

    font-family:
        'Montserrat',
        sans-serif;

    font-size:
        9px;

    letter-spacing:
        1.5px;

    text-transform:
        uppercase;

    border-radius:
        30px;

    transition:
        background 0.3s ease;

}


.subscribe-form button:hover {

    background:
        #5F1D2C;

}


/* ================= INSTAGRAM BUTTON ================= */

.instagram-btn {

    display:
        inline-block;

    margin-top:
        15px;

    padding:
        14px 28px;

    border:
        1px solid
        rgba(100, 80, 60, 0.3);

    background:
        rgba(255, 255, 255, 0.25);

    color:
        #5F5A55;

    font-family:
        'Montserrat',
        sans-serif;

    font-size:
        9px;

    letter-spacing:
        1.5px;

    text-transform:
        uppercase;

    text-decoration:
        none;

    border-radius:
        30px;

    transition:
        all 0.3s ease;

}


.instagram-btn:hover {

    background:
        rgba(255, 255, 255, 0.6);

    transform:
        translateY(-2px);

}


/* ================= DESKTOP ================= */

@media (min-width: 900px) {

    .join-section {

        padding:
            140px 40px;

    }


    .join-content h2 {

        font-size:
            68px;

    }

}


/* ================= MOBILE ================= */

@media (max-width: 600px) {

    .join-section {

        padding:
            90px 20px;

    }


    .join-content h2 {

        font-size:
            42px;

    }


    .join-content p {

        font-size:
            14px;

    }


    .subscribe-form {

        width:
            100%;

    }


    .subscribe-form input {

        width:
            100%;

        font-size:
            11px;

    }


    .subscribe-form button {

        padding:
            12px 18px;

    }


    .instagram-btn {

        width:
            100%;

        max-width:
            300px;

    }

}
/* ================= THE COLLECTION ================= */

.collection-section {

    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(190, 160, 130, 0.18),
            transparent 35%
        ),
        radial-gradient(
            circle at 85% 80%,
            rgba(220, 190, 170, 0.18),
            transparent 40%
        ),
        linear-gradient(
            135deg,
            #F6F3EE 0%,
            #EAE4DA 45%,
            #F2EDE5 100%
        );

    padding:
        110px 0;

    color: #1C1C1C;

}


/* ================= COLLECTION HEADER ================= */

.collection-header {

    max-width: 700px;

    margin:
        0 auto 90px;

    padding:
        0 25px;

    text-align: center;

}


.collection-header .section-label {

    color: #77706A;

    margin-bottom: 25px;

}


.collection-header h2 {

    font-family:
        'Cormorant Garamond',
        serif;

    font-size: 52px;

    line-height: 1.15;

    font-weight: 600;

    color: #1C1C1C;

    margin-bottom: 25px;

}


.collection-header p {

    font-family:
        'Montserrat',
        sans-serif;

    font-size: 16px;

    line-height: 1.8;

    color: #5F5A55;

}


/* ================= CATEGORY ================= */

.collection-category {

    margin-bottom: 90px;

}


.category-heading {

    max-width: 1200px;

    margin:
        0 auto 30px;

    padding:
        0 25px;

    display: flex;

    align-items: center;

    justify-content: space-between;

}


.category-heading h3 {

    font-family:
        'Cormorant Garamond',
        serif;

    font-size: 42px;

    font-weight: 600;

    color: #2A2521;

    margin: 0;

}


.category-heading span {

    font-family:
        'Montserrat',
        sans-serif;

    font-size: 10px;

    letter-spacing: 2px;

    text-transform: uppercase;

    color: #8A8178;

}


/* ================= PRODUCT SLIDER ================= */

.products-slider {

    display: flex;

    gap: 20px;

    overflow-x: auto;

    overflow-y: hidden;

    padding:
        0 25px 25px;

    scroll-snap-type:
        x mandatory;

    scroll-behavior:
        smooth;

    -webkit-overflow-scrolling:
        touch;

}


/* Hide Scrollbar */

.products-slider::-webkit-scrollbar {

    height: 4px;

}


.products-slider::-webkit-scrollbar-track {

    background:
        rgba(120, 100, 80, 0.08);

}


.products-slider::-webkit-scrollbar-thumb {

    background:
        rgba(120, 100, 80, 0.3);

    border-radius:
        10px;

}


/* ================= PRODUCT CARD ================= */

.product-card {

    flex:
        0 0 235px;

    scroll-snap-align:
        start;

    background:
        rgba(255, 255, 255, 0.45);

    border:
        1px solid
        rgba(120, 100, 80, 0.12);

    border-radius:
        5px;

    overflow:
        hidden;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;

}


.product-card:hover {

    transform:
        translateY(-6px);

    box-shadow:
        0 20px 40px
        rgba(80, 60, 45, 0.12);

}


/* ================= PRODUCT IMAGE ================= */

.product-image {

    position:
        relative;

    width:
        100%;

    aspect-ratio:
        4 / 5;

    overflow:
        hidden;

}


.product-placeholder {

    width:
        100%;

    height:
        100%;

    display:
        flex;

    flex-direction:
        column;

    justify-content:
        center;

    align-items:
        center;

    text-align:
        center;

    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.7),
            rgba(220, 210, 200, 0.6)
        );

    color:
        #77706A;

    font-family:
        'Montserrat',
        sans-serif;

    font-size:
        10px;

    letter-spacing:
        3px;

}


.product-placeholder span {

    margin-top:
        12px;

    font-size:
        8px;

    letter-spacing:
        1.5px;

    color:
        #9A9188;

}


/* ================= STATUS ================= */

.product-status {

    position:
        absolute;

    top:
        15px;

    left:
        15px;

    padding:
        7px 10px;

    background:
        rgba(246, 243, 238, 0.9);

    color:
        #5F5A55;

    font-family:
        'Montserrat',
        sans-serif;

    font-size:
        8px;

    letter-spacing:
        1.5px;

}


/* ================= PRODUCT INFO ================= */

.product-info {

    padding: 14px 16px 16px;

}


.product-info h4 {

    font-family:
        'Cormorant Garamond',
        serif;

    font-size:
        27px;

    line-height:
        1.2;

    font-weight:
        600;

    color:
        #2A2521;

    margin-bottom: 5px;

    line-height: 1.15;

}


.product-info p {

    font-family:
        'Montserrat',
        sans-serif;

    font-size:
        11px;

    line-height:
        1.7;

    color:
        #6D665F;

    .product-info p {

    margin-bottom: 12px;

    line-height: 1.55;

}

}


/* ================= PRODUCT BOTTOM ================= */

.product-bottom {

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        10px;

}


.product-price {

    font-family:
        'Montserrat',
        sans-serif;

    font-size:
        14px;

    font-weight:
        600;

    color:
        #2A2521;

}
.product-price-group{

    display:flex;

    flex-direction:column;

    gap:4px;

}

.product-original-price{

    font-size:14px;

    color:#9B948C;

    text-decoration:line-through;

}

.product-discount{

    display:inline-flex;

    width:max-content;

    padding:3px 8px;

    border-radius:20px;

    background:#F4ECE1;

    font-size:11px;

    font-weight:600;

    letter-spacing:.08em;

    color:#6E5C46;

    text-transform:uppercase;

}


/* ================= BUTTON ================= */

.product-btn {

    display:
        inline-block;

    padding:
        10px 16px;

    background:
        #7A2638;

    color:
        #F6F3EE;

    font-family:
        'Montserrat',
        sans-serif;

    font-size:
        9px;

    letter-spacing:
        1px;

    text-transform:
        uppercase;

    text-decoration:
        none;

    border-radius:
        30px;

    transition:
        background 0.3s ease;

}


.product-btn:hover {

    background:
        #5F1D2C;

}


.product-btn.disabled {

    background:
        #A49B92;

    pointer-events:
        none;

}


/* ================= DESKTOP ================= */

@media (min-width: 900px) {

    .collection-section {

        padding:
            160px 0;

    }


    .collection-header h2 {

        font-size:
            68px;

    }


    .products-slider {

        max-width:
            1250px;

        margin:
            auto;

        padding:
            0 25px 30px;

    }


    .product-card {

        flex:
            0 0 280px;

    }

}


/* ================= MOBILE ================= */

@media (max-width: 600px) {

    .collection-section {

        padding:
            90px 0;

    }


    .collection-header {

        margin-bottom:
            65px;

    }


    .collection-header h2 {

        font-size:
            42px;

    }


    .collection-header p {

        font-size:
            15px;

    }


    .category-heading {

        padding:
            0 20px;

    }


    .category-heading h3 {

        font-size:
            36px;

    }


    .category-heading span {

        font-size:
            8px;

    }


    .products-slider {

        gap:
            15px;

        padding:
            0 20px 20px;

    }


    .product-card {

        flex:
            0 0 62vw;

        max-width:
            250px;

    }


    .product-info h4 {

        font-size:
            25px;

    }

}
/* ================= VIEW ALL LINK ================= */

.view-all-link {

    font-family:
        'Montserrat',
        sans-serif;

    font-size:
        10px;

    letter-spacing:
        1.5px;

    text-transform:
        uppercase;

    color:
        #7A2638;

    text-decoration:
        none;

    white-space:
        nowrap;

    transition:
        color 0.3s ease;

}


.view-all-link:hover {

    color:
        #5F1D2C;

}
/* ================= PRODUCT MEDIA ================= */

.product-image img,
.product-image video {

    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;

    transition:
        transform 0.4s ease;

}


.product-card:hover .product-image img,
.product-card:hover .product-image video {

    transform: scale(1.04);

}


/* ================= COLLECTION LOADING ================= */

.collection-loading {

    width: 100%;
    padding: 40px 25px;
    text-align: center;

    font-family:
        'Montserrat',
        sans-serif;

    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;

    color: #77706A;

}


/* ================= COLLECTION EMPTY STATE ================= */

.collection-empty {

    max-width: 700px;
    margin: 0 auto;
    padding: 40px 25px;
    text-align: center;

    font-family:
        'Montserrat',
        sans-serif;

    font-size: 14px;
    line-height: 1.7;

    color: #6D665F;

}
/* ================= VIEW ALL SLIDER ITEM ================= */

.view-all-card {

    flex: 0 0 280px;

    min-height: 420px;

    display: flex;
    align-items: center;
    justify-content: center;

    scroll-snap-align: start;

    text-decoration: none;

    background: transparent;
    border: none;

}


/* No large outer circle */

.view-all-card-circle {

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 16px;

    text-align: center;

    color: #2A2521;

    background: transparent;
    border: none;
    box-shadow: none;

}


/* VIEW ALL TEXT */

.view-all-card-label {

    font-family:
        'Cormorant Garamond',
        serif;

    font-size: 38px;
    line-height: 1;

    font-weight: 600;

    color: #2A2521;

    transition:
        color 0.3s ease,
        transform 0.3s ease;

}


/* SMALL ARROW CIRCLE */

.view-all-card-arrow {

    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #FFFFFF;

    border:
        1px solid
        rgba(122, 38, 56, 0.14);

    box-shadow:
        0 12px 28px
        rgba(80, 60, 45, 0.12);

    color: #7A2638;

    font-size: 22px;

    transition:
        transform 0.35s ease,
        background 0.35s ease,
        color 0.35s ease,
        box-shadow 0.35s ease;

}


/* CATEGORY NAME */

.view-all-card-category {

    font-family:
        'Montserrat',
        sans-serif;

    font-size: 9px;
    font-weight: 500;

    letter-spacing: 2.5px;
    line-height: 1.5;

    text-transform: uppercase;

    color: #77706A;

}


/* HOVER */

.view-all-card:hover .view-all-card-label {

    color: #7A2638;

    transform: translateY(-2px);

}


.view-all-card:hover .view-all-card-arrow {

    transform: translateX(6px);

    background: #7A2638;
    color: #F6F3EE;

    box-shadow:
        0 18px 35px
        rgba(122, 38, 56, 0.22);

}

/* =====================================================
   HOMEPAGE PRODUCT WISHLIST HEART
===================================================== */

.homepage-product-wishlist-button {

    position: absolute;

    top: 11px;
    right: 11px;

    z-index: 3;

    width: 39px;
    height: 39px;

    padding: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid rgba(255,255,255,.46);

    border-radius: 50%;

    background: rgba(246,243,238,.88);

    color: #7A2638;

    font-family: 'Cormorant Garamond', serif;

    font-size: 21px;

    line-height: 1;

    cursor: pointer;

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    transition:
        background .25s ease,
        color .25s ease,
        transform .25s ease;
}

.homepage-product-wishlist-button:hover,
.homepage-product-wishlist-button.saved {

    background: #7A2638;
    color: #FFFFFF;

}

.homepage-product-wishlist-button.heart-pop {

    animation:
        homepageWishlistHeartPop
        .28s
        cubic-bezier(.22,1,.36,1);

}

@keyframes homepageWishlistHeartPop {

    0% {
        transform: scale(1);
    }

    35% {
        transform: scale(1.25);
    }

    65% {
        transform: scale(.9);
    }

    100% {
        transform: scale(1);
    }

}

/* MOBILE */

@media (max-width: 600px) {

    .view-all-card {

        flex: 0 0 78vw;

        max-width: 320px;
        min-height: 420px;

    }


    .view-all-card-label {

        font-size: 34px;

    }


    .view-all-card-arrow {

        width: 48px;
        height: 48px;

        font-size: 20px;

    }

}

