/* =========================================
   GLOBAL
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    margin: 0;

    background: #fffaf7;

    color: #5d4748;

    font-family:
        "Montserrat",
        Arial,
        sans-serif;
}


img {
    max-width: 100%;
    display: block;
}


a {
    text-decoration: none;
}


button,
input {
    font-family: inherit;
}


.container {
    width: calc(100% - 40px);
    max-width: 1240px;

    margin: 0 auto;
}


.section-padding {
    padding: 65px 0;
}


.w-full{max-width:100% !important;}



/* =========================================
   HEADER
========================================= */
/* =====================================================
   GLOBAL
===================================================== */


body.menu-open {
    overflow: hidden;
}


/* =====================================================
   TOP BAR
===================================================== */

.top-bar {
    width: 100%;
    min-height: 34px;

    display: flex;
    align-items: center;

    background: #672243;

    position: relative;
    z-index: 10001;
}

.top-bar-inner {
    min-height: 34px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}

.top-message {
    flex: 1;

    color: #ffffff;

    font-family: "Cormorant Garamond", serif;

    font-size: 10px;
    font-weight: 500;

    letter-spacing: 1.3px;

    text-align: center;
}

.top-social {
    display: flex;
    align-items: center;

    gap: 13px;
}

.top-social a {
    color: #ffffff;

    font-size: 11px;

    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}

.top-social a:hover {
    opacity: 0.75;

    transform: translateY(-2px);
}


/* =====================================================
   HEADER
===================================================== */

.site-header {
    width: 100%;

    position: absolute;
    top: 34px;
    left: 0;

    background: rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);

    border-bottom: 1px solid rgba(255,255,255,0.15);

    z-index: 10000;

    transition:
        background 0.35s ease,
        box-shadow 0.35s ease,
        border 0.35s ease;
}


/* Fixed header after scroll */

.site-header.header-scrolled {
    position: fixed;

    top: 0;

    background: rgba(255,255,255,0.96);

    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);

    border-bottom: 1px solid rgba(103,34,67,0.08);

    box-shadow:
        0 7px 30px rgba(0,0,0,0.08);

    animation: headerSlideDown 0.35s ease;
}


@keyframes headerSlideDown {

    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }

}


/* =====================================================
   HEADER INNER
===================================================== */

.header-inner {
    min-height: 105px;

    display: grid;

    grid-template-columns:
        1fr
        200px
        1fr;

    align-items: center;

    gap: 25px;

    transition: min-height 0.3s ease;
}

.site-header.header-scrolled .header-inner {
    min-height: 80px;
}


/* =====================================================
   LOGO
===================================================== */

.logo {
    width: 180px;

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;

    z-index: 5;
}

.logo img {
    width: 100%;
    max-height: 78px;

    display: block;

    object-fit: contain;

    transition:
        max-height 0.3s ease,
        transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.03);
}

.site-header.header-scrolled .logo img {
    max-height: 61px;
}


/* =====================================================
   DESKTOP NAVIGATION
===================================================== */

.nav {
    display: flex;
    align-items: center;

    gap: 25px;
}

.nav-right {
    justify-content: flex-end;
}

.nav > a,
.dropdown-link {
    position: relative;

    display: flex;
    align-items: center;

    gap: 5px;

    color: #634e4e;

    font-family: "Cormorant Garamond", serif;

    font-size: 13px;
    font-weight: 600;

    letter-spacing: 0.4px;

    text-decoration: none;

    text-transform: uppercase;

    white-space: nowrap;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.nav > a:hover,
.dropdown-link:hover {
    color: #672243;
}


/* underline hover */

.nav > a:not(.cart-icon):not(.header-user-icon)::after,
.dropdown-link::after {
    content: "";

    width: 0;
    height: 1px;

    position: absolute;

    left: 50%;
    bottom: -7px;

    background: #672243;

    transform: translateX(-50%);

    transition: width 0.25s ease;
}

.nav > a:hover::after,
.menu-item-has-children:hover .dropdown-link::after {
    width: 100%;
}


/* =====================================================
   DESKTOP SHOP DROPDOWN
===================================================== */

.menu-item-has-children {
    height: 105px;

    position: relative;

    display: flex;
    align-items: center;
}

.site-header.header-scrolled .menu-item-has-children {
    height: 80px;
}

.dropdown-link i {
    font-size: 9px;

    transition: transform 0.25s ease;
}

.menu-item-has-children:hover .dropdown-link i {
    transform: rotate(180deg);
}


.dropdown-menu {
     width: 225px;

    position: absolute;

    top: calc(100% - 5px);
    left: 50%;

    padding:  0;

    background: rgba(255,255,255,0.98);

    border: 1px solid rgba(103,34,67,0.08);

    box-shadow:
        0 15px 40px rgba(0,0,0,0.12);

    transform:
        translateX(-50%)
        translateY(15px);

    opacity: 0;
    visibility: hidden;

    pointer-events: none;

    transition:
        opacity 0.25s ease,
        transform 0.25s ease,
        visibility 0.25s ease;

    z-index: 99999;
}

.menu-item-has-children:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;

    pointer-events: auto;

    transform:
        translateX(-50%)
        translateY(0);
}


/* dropdown arrow */

.dropdown-menu::before {
    content: "";

    width: 12px;
    height: 12px;

    position: absolute;

    top: -7px;
    left: 50%;

    background: #ffffff;

    border-top: 1px solid rgba(103,34,67,0.08);
    border-left: 1px solid rgba(103,34,67,0.08);

    transform:
        translateX(-50%)
        rotate(45deg);
}


.dropdown-menu a {
    width: 100%;

    padding: 11px 18px;

    display: block;

    color: #6c5552;

    font-family: "Cormorant Garamond", serif;

    font-size: 14px;
    font-weight: 500;

    text-decoration: none;

    border-bottom:
        1px solid rgba(103,34,67,0.06);

    transition:
        background 0.2s ease,
        color 0.2s ease,
        padding-left 0.2s ease;
}

.dropdown-menu a:last-child {
    border-bottom: 0;
}

.dropdown-menu a:hover {
    padding-left: 24px;

    background: #faf1ed;

    color: #672243;
}


/* =====================================================
   USER + CART
===================================================== */

.header-user-icon,
.cart-icon {
    width: 37px;
    height: 37px;

    padding: 0;

    display: flex !important;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    font-size: 17px !important;
}

.header-user-icon:hover,
.cart-icon:hover {
    background: rgba(103,34,67,0.07);
}

.cart-icon {
    position: relative;
}

.cart-count {
    min-width: 16px;
    height: 16px;

    padding: 0 4px;

    position: absolute;

    top: -1px;
    right: -2px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #672243;

    color: #ffffff;

    font-family: Arial, sans-serif;

    font-size: 8px;
    line-height: 1;
}


/* =====================================================
   MOBILE HEADER ACTIONS
===================================================== */

.mobile-header-actions {
    display: none;
}


/* =====================================================
   OFFCANVAS
===================================================== */

.mobile-offcanvas {
    width: 360px;
    max-width: 88%;

    height: 100dvh;

    position: fixed;

    top: 0;
    left: 0;

    display: flex;
    flex-direction: column;

    background: #fffaf7;

    box-shadow:
        15px 0 50px rgba(0,0,0,0.15);

    transform: translateX(-105%);

    transition:
        transform 0.38s cubic-bezier(.77,0,.18,1);

    z-index: 110000;
}

.mobile-offcanvas.active {
    transform: translateX(0);
}


/* Overlay */

.offcanvas-overlay {
    position: fixed;

    inset: 0;

    background: rgba(30,18,22,0.52);

    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;

    z-index: 109999;
}

.offcanvas-overlay.active {
    opacity: 1;
    visibility: visible;
}


/* =====================================================
   OFFCANVAS HEADER
===================================================== */

.offcanvas-header {
    min-height: 95px;

    padding: 18px 22px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    border-bottom: 1px solid #eee0db;
}

.offcanvas-logo {
    width: 145px;

    display: block;
}

.offcanvas-logo img {
    width: 100%;
    height: auto;

    display: block;
}

.offcanvas-close {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 0;
    border-radius: 50%;

    background: #f4e9e5;

    color: #672243;

    font-size: 18px;

    cursor: pointer;

    transition:
        background 0.2s ease,
        transform 0.25s ease;
}

.offcanvas-close:hover {
    background: #672243;

    color: #ffffff;

    transform: rotate(90deg);
}


/* =====================================================
   MOBILE NAV
===================================================== */

.mobile-nav {
    flex: 1;

    padding: 15px 22px;

    overflow-y: auto;
}

.mobile-nav-link,
.mobile-dropdown-heading {
    width: 100%;

    min-height: 53px;

    border-bottom:
        1px solid #ede1dc;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;

    color: #604a4a;

    font-family: "Cormorant Garamond", serif;

    font-size: 17px;
    font-weight: 600;

    text-decoration: none;

    text-transform: uppercase;

    letter-spacing: 0.4px;
}

.mobile-nav-link i {
    color: #8a6c6a;

    font-size: 15px;
}


/* =====================================================
   MOBILE DROPDOWN
===================================================== */

.mobile-dropdown-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-dropdown-heading > a {
    flex: 1;

    color: #604a4a;

    font-family: "Cormorant Garamond", serif;

    font-size: 17px;
    font-weight: 600;

    text-decoration: none;

    text-transform: uppercase;
}

.mobile-submenu-toggle {
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 0;

    background: transparent;

    color: #672243;

    cursor: pointer;
}

.mobile-submenu-toggle i {
    transition: transform 0.3s ease;
}

.mobile-dropdown.open
.mobile-submenu-toggle i {
    transform: rotate(180deg);
}


.mobile-submenu {
    max-height: 0;

    padding-left: 15px;

    overflow: hidden;

    opacity: 0;

    transition:
        max-height 0.4s ease,
        opacity 0.3s ease,
        padding 0.3s ease;
}

.mobile-dropdown.open .mobile-submenu {
    max-height: 400px;

    padding-top: 7px;
    padding-bottom: 10px;

    opacity: 1;
}

.mobile-submenu a {
    padding: 11px 12px;

    display: block;

    color: #78605d;

    font-family: "Cormorant Garamond", serif;

    font-size: 15px;

    text-decoration: none;

    border-left:
        2px solid #e4d1cb;

    transition:
        color 0.2s ease,
        border-color 0.2s ease,
        padding-left 0.2s ease;
}

.mobile-submenu a:hover {
    padding-left: 18px;

    color: #672243;

    border-color: #672243;
}


/* =====================================================
   OFFCANVAS BOTTOM
===================================================== */

.offcanvas-bottom {
    padding: 22px;

    border-top: 1px solid #eee0db;

    background: #f9efeb;
}

.offcanvas-bottom p {
    margin: 0 0 12px;

    color: #725957;

    font-family: "Cormorant Garamond", serif;

    font-size: 14px;
    font-weight: 600;

    text-transform: uppercase;
}

.offcanvas-social {
    display: flex;

    gap: 10px;
}

.offcanvas-social a {
    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    border:
        1px solid #d8c0b9;

    border-radius: 50%;

    color: #672243;

    text-decoration: none;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.offcanvas-social a:hover {
    background: #672243;

    color: #ffffff;
}


/* =====================================================
   MOBILE HAMBURGER
===================================================== */

.mobile-toggle {
    width: 42px;
    height: 42px;

    padding: 0;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 5px;

    border: 0;

    background: transparent;

    cursor: pointer;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;

    display: block;

    border-radius: 3px;

    background: #672243;

    transition:
        width 0.25s ease,
        transform 0.25s ease;
}

.mobile-toggle:hover span:nth-child(2) {
    width: 17px;
}


/* =====================================================
   LAPTOP
===================================================== */

@media (max-width: 1150px) {

    .nav {
        gap: 16px;
    }

    .nav > a,
    .dropdown-link {
        font-size: 11px;
    }

    .header-inner {
        grid-template-columns:
            1fr
            170px
            1fr;
    }

    .logo {
        width: 155px;
    }

}


/* =====================================================
   TABLET / MOBILE HEADER
===================================================== */

@media (max-width: 900px) {

    .container {
        width: calc(100% - 30px);
    }


    /* Top bar */

    .top-bar {
        min-height: 30px;
    }

    .top-bar-inner {
        min-height: 30px;
    }

    .top-message {
        font-size: 8px;

        letter-spacing: 0.8px;
    }

    .top-social {
        display: none;
    }


    /* Header */

    .site-header {
        top: 30px;

        background:
            rgba(255,255,255,0.42);

        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .site-header.header-scrolled {
        top: 0;
    }


    .header-inner {
        min-height: 78px;

        display: flex;

        align-items: center;
        justify-content: space-between;

        gap: 15px;
    }

    .site-header.header-scrolled
    .header-inner {
        min-height: 68px;
    }


    /* Hide desktop nav */

    .nav-left,
    .nav-right {
        display: none;
    }


    /* Logo */

    .logo {
        width: 125px;

        margin: 0;

        justify-content: flex-start;
    }

    .logo img {
        max-height: 55px;
    }

    .site-header.header-scrolled
    .logo img {
        max-height: 48px;
    }


    /* Actions */

    .mobile-header-actions {
        margin-left: auto;

        display: flex;
        align-items: center;

        gap: 3px;
    }


    .mobile-action-icon {
        width: 40px;
        height: 40px;

        position: relative;

        display: flex;
        align-items: center;
        justify-content: center;

        color: #672243;

        border-radius: 50%;

        font-size: 17px;

        text-decoration: none;

        transition: background 0.2s ease;
    }

    .mobile-action-icon:hover {
        background:
            rgba(103,34,67,0.08);
    }


    .mobile-cart-count {
        min-width: 15px;
        height: 15px;

        padding: 0 3px;

        position: absolute;

        top: 4px;
        right: 2px;

        display: flex;
        align-items: center;
        justify-content: center;

        border-radius: 20px;

        background: #672243;

        color: #ffffff;

        font-family: Arial, sans-serif;

        font-size: 8px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .top-message {
        white-space: nowrap;

        overflow: hidden;

        text-overflow: ellipsis;
    }

    .header-inner {
        min-height: 72px;
    }

    .logo {
        width: 110px;
    }

    .mobile-header-actions {
        gap: 0;
    }

    .mobile-action-icon {
        width: 36px;
        height: 36px;

        font-size: 16px;
    }

    .mobile-toggle {
        width: 38px;
        height: 38px;
    }

    .mobile-toggle span {
        width: 22px;
    }

}


/* =====================================================
   VERY SMALL MOBILE
===================================================== */

@media (max-width: 380px) {

    .logo {
        width: 95px;
    }

    .mobile-action-icon {
        width: 33px;
    }

    .mobile-toggle {
        width: 35px;
    }

}

/* =========================================
   HERO
========================================= */

.hero {
    width: 100%;
    min-height: 95vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* background: linear-gradient(
            90deg,
            #f6ece8 0%,
            #fffaf6 45%,
            #f0dfda 100%
        ); */
    background: url(/assets/images/hero-banner.png);
    background-size: cover;
    background-position: center center;
}


.hero-overlay {
    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at center,
            rgba(255, 255, 255, .86),
            rgba(255, 244, 239, .25)
        );

    z-index: 1;
}


.hero-side {
    width: 42%;
    height: 100%;

    position: absolute;

    top: 0;

    z-index: 2;
}


.hero-side img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


.hero-left {
    left: 0;

    clip-path:
        polygon(
            0 0,
            65% 0,
            88% 100%,
            0 100%
        );
}


.hero-right {
    right: 0;

    clip-path:
        polygon(
            25% 0,
            100% 0,
            100% 100%,
            0 100%
        );
}


.hero-left::after,
.hero-right::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        rgba(247, 226, 219, .24);
}


.hero-content {
    width: 100%;
    max-width: 590px;
    padding: 55px 25px;
    position: relative;
    z-index: 10;
    text-align: center;
    left: -220px;
}

/* Large laptop */
@media (max-width: 1200px) {
    .hero-content {
        left: -120px;
    }
}

/* Tablet */
@media (max-width: 992px) {
    .hero-content {
        left: -60px;
        max-width: 520px;
    }
}

/* Small tablet */
@media (max-width: 768px) {
    .hero-content {
        left: 0;
        max-width: 100%;
        padding: 45px 20px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .hero-content {
        left: 0;
        width: 100%;
        max-width: 100%;
        padding: 35px 18px;
    }
}


.hero-small {
    display: block;

    margin-bottom: 17px;

    color: #755b58;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 13px;

    font-weight: 600;

    letter-spacing: 1.5px;
}


.hero-content h1 {
    margin: 0;

    color: #794958;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 57px;

    line-height: .95;

    font-weight: 500;
}


.hero-content h1 span {
    display: block;

    margin-top: 12px;

    color: #9a735e;

    font-family:
        "Great Vibes",
        cursive;

    font-size: 58px;

    font-weight: 400;
}


.hero-content p {
    margin:
        35px
        0
        28px;

    color: #614e4b;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 18px;

    line-height: 1.55;
}


.hero-buttons {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 13px;

    flex-wrap: wrap;
}



/* =========================================
   BUTTON
========================================= */

.button {
    min-height: 42px;

    padding:
        0
        25px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    border:
        1px solid
        #7a4055;

    font-size: 10px;

    font-weight: 500;

    letter-spacing: 1px;

    text-transform: uppercase;

    transition:
        .25s ease;
}


.primary-button {
    background: #672243;

    color: #ffffff;
}


.primary-button:hover {
    background: #4e1833;
}


.outline-button {
    background:
        rgba(255, 255, 255, .75);

    color: #674c4b;
}


.outline-button:hover {
    background: #672243;

    color: #ffffff;
}



/* =========================================
   SECTION HEADINGS
========================================= */

.section-heading {
    margin-bottom: 30px;

    text-align: center;
}


.section-heading h2 {
    margin: 0;

    color: #76545a;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 30px;

    font-weight: 500;

    letter-spacing: 1px;
}


.section-heading p {
    margin-top: 7px;

    color: #78625e;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 15px;
}



/* =========================================
   COLLECTIONS
========================================= */

.collection-section {
    background: #fffaf7;
}


.collection-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 24px;
}


.collection-card {
    overflow: hidden;

    background: #ffffff;

    border:
        1px solid
        #eee2dd;

    box-shadow:
        0 7px 20px
        rgba(88, 55, 58, .04);

    text-align: center;
}


.collection-image {
    height: 285px;

    overflow: hidden;
}


.collection-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .4s ease;
}


.collection-card:hover img {
    transform: scale(1.05);
}


.collection-content {
    padding:
        18px
        12px
        20px;
}


.collection-content h3 {
    margin-bottom: 13px;

    color: #735156;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 19px;

    font-weight: 500;

    line-height: 1.05;
}


.collection-content h3 span {
    display: block;
}


.collection-content a {
    color: #654d4d;

    font-size: 9px;

    font-weight: 500;

    letter-spacing: .7px;
}


.collection-content a i {
    margin-left: 5px;
}



/* =========================================
   PRODUCTS
========================================= */

.signature-section {
    background: #fdf8f5;
}


.product-grid {
    display: grid;

    grid-template-columns:
        repeat(5, minmax(0, 1fr));

    gap: 18px;
}


.product-card {
    text-align: center;
}


.product-image {
    width: 100%;
    height: 225px;

    overflow: hidden;

    background: #eee;
}


.product-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .35s ease;
}


.product-card:hover img {
    transform: scale(1.04);
}


.product-card h3 {
    margin:
        13px
        0
        4px;

    color: #684b4f;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 17px;

    font-weight: 600;
}


.price {
    display: block;

    margin-bottom: 10px;

    color: #7d6862;

    font-size: 11px;
}


.add-cart {
    min-height: 31px;

    padding:
        0
        13px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    border:
        1px solid
        #b99a95;

    color: #684d4d;

    font-size: 8px;

    letter-spacing: .4px;

    transition:
        .2s ease;
}


.add-cart:hover {
    background: #672243;

    color: #ffffff;
}


.view-products {
    margin-top: 30px;

    text-align: center;
}



/* =========================================
   DESIGNER
========================================= */

.designer-section {
    background:
        linear-gradient(
            90deg,
            #f2ded6,
            #fff7f3
        );
}


.designer-grid {
    max-width: 1250px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        1fr
        1fr;

    align-items: stretch;
}


.designer-image {
    min-height: 430px;
}


.designer-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


.designer-content {
    padding:
        70px
        80px;

    display: flex;

    flex-direction: column;

    align-items: flex-start;
    justify-content: center;

    position: relative;
}


.designer-content::after {
    content: "❀";

    position: absolute;

    right: 45px;
    bottom: 25px;

    color: rgba(146, 101, 96, .14);

    font-size: 120px;
}


.designer-content > span {
    margin-bottom: 10px;

    color: #755c58;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 12px;

    letter-spacing: 1px;
}


.designer-content h2 {
    margin: 0 0 20px;

    color: #8f5c64;

    font-family:
        "Great Vibes",
        cursive;

    font-size: 55px;

    font-weight: 400;
}


.designer-content p {
    max-width: 450px;

    margin-bottom: 25px;

    color: #654f4d;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 16px;

    line-height: 1.6;

    position: relative;

    z-index: 2;
}



/* =========================================
   CUSTOM CTA
========================================= */

.custom-section {
    width: 100%;

    position: relative;

    padding:
        55px
        0;

    overflow: hidden;

    background:
        url(
            "https://images.unsplash.com/photo-1526047932273-341f2a7631f9?auto=format&fit=crop&w=2000&q=90"
        )
        center / cover
        no-repeat;
}


.custom-overlay {
    position: absolute;

    inset: 0;

    background:
        rgba(92, 20, 58, .93);
}


.custom-inner {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        1fr
        1fr;

    align-items: center;

    gap: 60px;
}


.custom-text h2 {
    margin-bottom: 10px;

    color: #ffffff;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 34px;

    font-weight: 500;

    line-height: 1.1;
}


.custom-text p {
    margin-bottom: 20px;

    color: #ead3dc;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 16px;
}


.transparent-button {
    border-color: #d9b5c5;

    background: transparent;

    color: #ffffff;
}


.transparent-button:hover {
    background: #ffffff;

    color: #672243;
}


.custom-features {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;
}


.custom-feature {
    text-align: center;

    color: #efc5d4;
}


.custom-feature i {
    margin-bottom: 13px;

    color: #d79b4d;

    font-size: 37px;
}


.custom-feature h3 {
    margin-bottom: 4px;

    color: #ffffff;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 17px;

    font-weight: 500;
}


.custom-feature p {
    font-size: 10px;
}



/* =========================================
   INSTAGRAM
========================================= */

.instagram-section {
    background: #fffaf7;
    padding: 60px 50px;
}


.instagram-grid {
    display: grid;

    grid-template-columns:
        repeat(6, minmax(0, 1fr));

    gap: 10px;
}


.instagram-grid img {
    width: 100%;
    height: 290px;
    object-fit: cover;
    border-radius: 15px;
}

.instagram-button {
    margin-top: 25px;

    text-align: center;
}


.instagram-button i {
    margin-right: 7px;
}



/* =========================================
   FOOTER
========================================= */

.footer {
    background: #faf3ef;

    border-top:
        1px solid
        #e4d4cf;
}


.footer-grid {
    padding:
        55px
        0
        45px;

    display: grid;

    grid-template-columns:
        1.4fr
        1fr
        1fr
        1fr
        1.5fr;

    gap: 35px;
}
.footer-logo img {
    width: 280px !important;
    max-height: 200px;
}

.footer-logo {
    margin-bottom: 25px;
}


.footer-brand p,
.footer-column p {
    color: #75625e;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 13px;

    line-height: 1.6;
}


.footer-column h3 {
    margin-bottom: 15px;

    color: #714c55;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 15px;

    font-weight: 600;

    letter-spacing: .5px;
}


.footer-column a {
    display: block;

    margin-bottom: 7px;

    color: #74615d;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 13px;

    transition:
        color .2s ease;
}


.footer-column a:hover {
    color: #672243;
}



/* =========================================
   NEWSLETTER
========================================= */

.newsletter-form {
    width: 100%;

    height: 38px;

    margin:
        15px
        0;

    display: flex;

    border:
        1px solid
        #d9c5bf;

    background: #ffffff;
}


.newsletter-form input {
    width: calc(100% - 42px);
    height: 100%;

    padding:
        0
        12px;

    border: 0;

    outline: none;

    color: #654e4d;

    font-size: 11px;
}


.newsletter-form button {
    width: 42px;
    height: 100%;

    border: 0;

    background: #672243;

    color: #ffffff;

    cursor: pointer;
}


.footer-social {
    display: flex;

    gap: 9px;
}


.footer-social a {
    width: 30px;
    height: 30px;

    margin: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border:
        1px solid
        #c8b0aa;

    border-radius: 50%;

    color: #672243;

    font-family: Arial;

    font-size: 11px;
}



/* =========================================
   FOOTER BOTTOM
========================================= */

.footer-bottom {
    padding:
        14px
        0;

    border-top:
        1px solid
        #e5d6d1;

    background: #f8efeb;
}


.footer-bottom-inner {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;
}


.footer-bottom p,
.footer-bottom a {
    color: #8a726c;

    font-size: 9px;
}


.footer-bottom div {
    display: flex;

    gap: 15px;
}



/* =========================================
   RESPONSIVE 1100
========================================= */

@media (max-width: 1100px) {

    .nav {
        gap: 15px;
    }


    .nav a {
        font-size: 11px;
    }


    .hero-content {
        max-width: 500px;
    }


    .hero-content h1 {
        font-size: 48px;
    }


    .hero-content h1 span {
        font-size: 50px;
    }


    .product-grid {
        grid-template-columns:
            repeat(3, 1fr);
    }


    .footer-grid {
        grid-template-columns:
            repeat(3, 1fr);
    }

}



/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {


    .hero {
        min-height: 560px;
    }


    .hero-side {
        width: 50%;

        opacity: .48;
    }


    .hero-left {
        clip-path: none;
    }


    .hero-right {
        clip-path: none;
    }


    .hero-content {
        max-width: 520px;
    }


    .collection-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .designer-grid {
        grid-template-columns: 1fr;
    }


    .designer-image {
        height: 500px;
    }


    .designer-content {
        padding:
            50px
            40px;
    }


    .custom-inner {
        grid-template-columns: 1fr;

        gap: 45px;
    }


    .instagram-grid {
        grid-template-columns:
            repeat(3, 1fr);
    }

}



/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .container {
        width: calc(100% - 30px);
    }


    .hero {
        min-height: 590px;
    }


    .hero-side {
        width: 100%;
    }


    .hero-left {
        display: none;
    }


    .hero-right {
        opacity: .25;
    }


    .hero-content {
        padding:
            60px
            18px;
    }


    .hero-content h1 {
        font-size: 38px;
    }


    .hero-content h1 span {
        font-size: 42px;
    }


    .hero-content p {
        font-size: 16px;
    }


    .hero-buttons {
        flex-direction: column;
    }


    .hero-buttons .button {
        width: 210px;
    }


    .section-padding {
        padding:
            45px
            0;
    }


    .section-heading h2 {
        font-size: 25px;
    }


    .collection-grid {
        grid-template-columns: 1fr;
    }


    .collection-image {
        height: 330px;
    }


    .product-grid {
        grid-template-columns:
            repeat(2, 1fr);

        gap:
            25px
            12px;
    }


    .product-image {
        height: 200px;
    }


    .designer-image {
        height: 360px;
    }


    .designer-content {
        padding:
            40px
            22px;
    }


    .designer-content h2 {
        font-size: 44px;
    }


    .custom-features {
        grid-template-columns: 1fr;

        gap: 30px;
    }


    .instagram-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .instagram-grid img {
        height: 190px;
    }


    .footer-grid {
        grid-template-columns: 1fr;

        padding:
            45px
            0;
    }


    .footer-bottom-inner {
        flex-direction: column;

        text-align: center;
    }

}



/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 420px) {


    .hero-content h1 {
        font-size: 33px;
    }


    .hero-content h1 span {
        font-size: 38px;
    }


    .product-grid {
        grid-template-columns: 1fr;
    }


    .product-image {
        height: 300px;
    }


    .instagram-grid img {
        height: 155px;
    }

}