/* =====================================================
                    RESET
===================================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#FDFBF7;
    color:#4A3B32;
    font-family:'Inter',sans-serif;
    overflow-x:hidden;
}

img{
    display:block;
    width:100%;
}

a{
    text-decoration:none;
    color:inherit;
}

button{
    cursor:pointer;
    border:none;
    outline:none;
    background:none;
    font-family:inherit;
}

input{
    outline:none;
    font-family:inherit;
}

section{
    position:relative;
}


/* =====================================================
                    ROOT
===================================================== */

:root{

    --cream:#FDFBF7;
    --beige:#F6F2EC;
    --sand:#ECE4DC;

    --dark:#4A3B32;
    --taupe:#8C7A6B;

    --radius:34px;

    --shadow-sm:
        0 8px 25px rgba(0,0,0,.05);

    --shadow-md:
        0 15px 35px rgba(0,0,0,.08);

    --shadow-lg:
        0 25px 60px rgba(0,0,0,.12);

}


/* =====================================================
                TYPOGRAPHY
===================================================== */

h1,h2,h3,h4{

    font-family:"Playfair Display",serif;
    font-weight:600;
    color:var(--dark);

}

p{

    color:#766B61;

}

::selection{

    background:#4A3B32;
    color:white;

}


/* =====================================================
                CONTAINER
===================================================== */

.container-custom{

    width:min(1280px,92%);
    margin:auto;

}


/* =====================================================
                LOADER
===================================================== */

#loader{

    position:fixed;
    inset:0;

    background:#FDFBF7;

    z-index:99999;

    display:flex;
    justify-content:center;
    align-items:center;

    transition:.8s;

}

.loader-content{

    text-align:center;

}

.loader-content .loader-logo{
    display:block;

    width:170px;
    max-width:80vw;
    height:auto;

    margin:0 auto;
}

.loader-content p{

    margin-top:8px;

    font-size:12px;

    letter-spacing:8px;

    text-transform:uppercase;

}

.loader-line{

    width:240px;
    height:3px;

    margin-top:45px;

    background:#ECE4DC;

    border-radius:100px;

    overflow:hidden;

}

.loader-line span{

    display:block;

    width:0%;

    height:100%;

    background:#4A3B32;

}


/* =====================================================
                PROGRESS BAR
===================================================== */

#progressBar{

    position:fixed;

    top:0;
    left:0;

    width:0%;

    height:4px;

    background:#4A3B32;

    z-index:9999;

}


/* =====================================================
                SCROLLBAR
===================================================== */

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#F3EEE8;

}

::-webkit-scrollbar-thumb{

    background:#C6B7A7;

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:#8C7A6B;

}


/* =====================================================
                    FLOATING NAVBAR
===================================================== */

:root{
    --kaaru-ivory: #FDFBF7;
    --kaaru-brown: #4A3B32;
    --kaaru-taupe: #8C7A6B;
    --kaaru-line: rgba(74, 59, 50, 0.10);
}

body{
    padding-top: 132px;
}

.site-header{
    position: fixed;
    z-index: 1000;
    top: 20px;
    left: 0;
    width: 100%;
    pointer-events: none;
}

.kaaru-navbar{
    width: min(1500px, calc(100% - 40px));
    min-height: 90px;
    margin: auto;
    padding: 14px 20px 14px 38px;

    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;

    background: rgba(253, 251, 247, 0.90);
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: 999px;
    box-shadow: 0 10px 30px rgba(74, 59, 50, 0.10);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    pointer-events: auto;
}

.navbar-logo{
    display: inline-flex;
    align-items: center;
    justify-self: start;
}

.navbar-logo img{
    display: block;
    width: auto;
    height: 49px;
    max-width: 185px;
    object-fit: contain;
    object-position: left center;
}

.navbar-links{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(24px, 3vw, 52px);
}

.nav-link{
    position: relative;
    color: var(--kaaru-brown);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.25s ease;
}

.nav-link::after{
    position: absolute;
    bottom: -8px;
    left: 50%;
    width: 0;
    height: 1px;
    content: "";
    background: var(--kaaru-taupe);
    transform: translateX(-50%);
    transition: width 0.25s ease;
}

.nav-link:hover,
.nav-link.active{
    color: var(--kaaru-taupe);
}

.nav-link:hover::after,
.nav-link.active::after{
    width: 18px;
}

.navbar-actions{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

.nav-icon-button,
.menu-toggle{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    padding: 0;
    color: var(--kaaru-brown);
    background: rgba(255, 255, 255, 0.62);
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.nav-icon-button:hover,
.menu-toggle:hover{
    color: var(--kaaru-ivory);
    background: var(--kaaru-brown);
    transform: translateY(-2px);
}

.nav-icon-button svg{
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.cart-button{
    position: relative;
}

.cart-badge{
    position: absolute;
    top: -7px;
    right: -3px;

    display: grid;
    place-items: center;
    min-width: 23px;
    height: 23px;
    padding: 0 5px;

    color: var(--kaaru-ivory);
    background: var(--kaaru-brown);
    border: 2px solid var(--kaaru-ivory);
    border-radius: 50%;

    font-size: 10px;
    font-weight: 600;
    line-height: 1;
}

.menu-toggle{
    display: none;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span{
    width: 19px;
    height: 1.5px;
    background: currentColor;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

/* =====================================================
                    MOBILE DRAWER
===================================================== */

.drawer-overlay{
    position: fixed;
    z-index: 1100;
    inset: 0;

    visibility: hidden;
    background: rgba(45, 34, 29, 0.28);
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-drawer{
    position: fixed;
    z-index: 1200;
    top: 0;
    right: 0;

    display: flex;
    flex-direction: column;
    width: min(86vw, 370px);
    height: 100dvh;
    padding: 28px;

    color: var(--kaaru-brown);
    background: var(--kaaru-ivory);
    box-shadow: -14px 0 35px rgba(74, 59, 50, 0.14);

    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(.2, .8, .2, 1);
}

.drawer-top{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--kaaru-line);
}

.drawer-logo{
    width: auto;
    height: 37px;
    max-width: 145px;
    object-fit: contain;
    object-position: left center;
}

.drawer-close{
    position: relative;
    width: 42px;
    height: 42px;
    padding: 0;
    color: var(--kaaru-brown);
    background: transparent;
    border: 1px solid var(--kaaru-line);
    border-radius: 50%;
    cursor: pointer;
}

.drawer-close span{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 17px;
    height: 1.5px;
    background: currentColor;
}

.drawer-close span:first-child{
    transform: translate(-50%, -50%) rotate(45deg);
}

.drawer-close span:last-child{
    transform: translate(-50%, -50%) rotate(-45deg);
}

.drawer-links{
    display: flex;
    flex-direction: column;
    padding: 28px 0;
}

.drawer-links a{
    padding: 16px 0;
    color: var(--kaaru-brown);
    border-bottom: 1px solid var(--kaaru-line);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 25px;
    text-decoration: none;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.drawer-links a:hover,
.drawer-links a.active{
    color: var(--kaaru-taupe);
    padding-left: 8px;
}

.drawer-bottom{
    display: grid;
    gap: 14px;
    margin-top: auto;
}

.drawer-bottom a{
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--kaaru-brown);
    font-size: 14px;
    text-decoration: none;
}

.drawer-bottom span{
    display: grid;
    place-items: center;
    min-width: 22px;
    height: 22px;
    color: var(--kaaru-ivory);
    background: var(--kaaru-brown);
    border-radius: 50%;
    font-size: 10px;
}

body.menu-open{
    overflow: hidden;
}

body.menu-open .drawer-overlay{
    visibility: visible;
    opacity: 1;
}

body.menu-open .mobile-drawer{
    transform: translateX(0);
}

/* =====================================================
                    RESPONSIVE
===================================================== */

@media (max-width: 850px){

    body{
        padding-top: 106px;
    }

    .site-header{
        top: 14px;
    }

    .kaaru-navbar{
        width: min(100% - 28px, 700px);
        min-height: 76px;
        padding: 10px 12px 10px 24px;
        grid-template-columns: 1fr auto;
    }

    .navbar-logo img{
        height: 40px;
        max-width: 150px;
    }

    .navbar-links{
        display: none;
    }

    .menu-toggle{
        display: inline-flex;
    }

    .nav-icon-button{
        width: 46px;
        height: 46px;
    }
}

@media (max-width: 480px){

    .navbar-actions{
        gap: 8px;
    }

    .navbar-logo img{
        height: 34px;
        max-width: 125px;
    }

    .nav-icon-button{
        width: 43px;
        height: 43px;
    }

    .nav-icon-button svg{
        width: 20px;
        height: 20px;
    }

    .menu-toggle{
        width: 43px;
        height: 43px;
    }
}
/* =====================================================
                ACTIVE NAVIGATION
===================================================== */

.nav-link{
    position:relative;
}

.nav-link.active{
    color:#8C7A6B;
}


/* Elegant underline */

.nav-link.active::after{

    content:"";

    position:absolute;

    left:50%;

    bottom:-8px;

    width:18px;

    height:1px;

    background:#8C7A6B;

    transform:translateX(-50%);

    transition:width .3s ease;

}


/* =====================================================
                SOCIAL BUTTON
===================================================== */

.social-btn{

    width:46px;
    height:46px;

    border-radius:50%;

    background:white;

    display:flex;
    justify-content:center;
    align-items:center;

    box-shadow:var(--shadow-sm);

    transition:.3s;

}

.social-btn:hover{

    background:#4A3B32;

    color:white;

    transform:translateY(-4px);

}


/* =====================================================
                GLOBAL ANIMATION
===================================================== */

.fade-up{

    opacity:0;

    transform:translateY(50px);

    transition:1s;

}

.fade-up.show{

    opacity:1;

    transform:translateY(0);

}
/* =====================================================
                    HERO SECTION
===================================================== */

.hero-section{
    position:relative;
}

.hero-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:12px 22px;
    border-radius:999px;
    background:#fff;
    box-shadow:var(--shadow-sm);
    letter-spacing:.25em;
    text-transform:uppercase;
    font-size:12px;
    color:var(--taupe);
}

.hero-title{

    font-size:72px;
    line-height:1.1;
    font-family:"Playfair Display",serif;
    color:var(--dark);

}

.hero-text{

    font-size:18px;
    line-height:2;
    max-width:560px;
    margin-top:30px;

}

.hero-image{

    border-radius:60px;
    overflow:hidden;
    box-shadow:var(--shadow-lg);

}

.hero-image img{

    width:100%;
    height:650px;
    object-fit:cover;
    transition:.8s;

}

.hero-image:hover img{

    transform:scale(1.05);

}


/* =====================================================
                BUTTON
===================================================== */

.btn-primary{

    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:12px;

    padding:16px 34px;

    background:var(--dark);

    color:white;

    border-radius:999px;

    transition:.35s;

    font-weight:600;

}

.btn-primary:hover{

    transform:translateY(-4px);

    box-shadow:var(--shadow-md);

}

.btn-outline{

    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:12px;

    padding:16px 34px;

    border:1px solid var(--dark);

    border-radius:999px;

    transition:.35s;

}

.btn-outline:hover{

    background:var(--dark);

    color:white;

}


/* =====================================================
            FLOATING PRODUCT CARD
===================================================== */

.floating-card{

    position:absolute;

    bottom:35px;
    left:35px;

    width:280px;

    background:white;

    border-radius:28px;

    padding:28px;

    box-shadow:var(--shadow-lg);

}

.floating-card h4{

    margin-top:12px;

    font-size:30px;

}

.floating-card p{

    margin-top:15px;

    line-height:1.8;

}


/* =====================================================
                PRODUCT GRID
===================================================== */

.product-card{

    background:white;

    border-radius:34px;

    padding:18px;

    transition:.4s;

    box-shadow:var(--shadow-sm);
    max-width:320px;
    margin:auto;
}

.product-card:hover{

    transform:translateY(-12px);

    box-shadow:var(--shadow-lg);

}

.product-image{
    width:100%;
    aspect-ratio:4 / 6;
    overflow:hidden;
    border-radius:30px;
}

.product-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.product-card:hover .product-image{

    transform:scale(1.08);

}


/* =====================================================
                ADD TO CART
===================================================== */

.add-cart-btn{

    padding:12px 22px;

    border-radius:999px;

    background:var(--dark);

    color:white;

    font-size:14px;

    transition:.35s;

}

.add-cart-btn:hover{

    background:#2d221b;

    transform:translateY(-3px);

}


/* =====================================================
                FEATURE CARD
===================================================== */

.feature-card{

    background:white;

    border-radius:34px;

    padding:45px;

    transition:.35s;

    box-shadow:var(--shadow-sm);

}

.feature-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-lg);

}

.feature-icon{

    width:72px;
    height:72px;

    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    background:#F6F2EC;

    font-size:28px;

    color:var(--dark);

}


/* =====================================================
                PALETTE CARD
===================================================== */

.palette-card{

    text-align:center;

    transition:.35s;

}

.palette-card:hover{

    transform:translateY(-8px);

}

.palette-card h4{

    margin-top:18px;

    font-size:18px;

}


/* =====================================================
                VALUE CARD
===================================================== */

.value-card{

    background:white;

    border-radius:30px;

    padding:40px;

    text-align:center;

    box-shadow:var(--shadow-sm);

    transition:.35s;

}

.value-card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-md);

}

.value-card i{

    color:var(--dark);

}


/* =====================================================
            IMAGE HOVER EFFECT
===================================================== */

img{

    transition:.6s;

}

.rounded-\[30px\],
.rounded-\[35px\],
.rounded-\[40px\],
.rounded-\[60px\]{

    overflow:hidden;

}

.rounded-\[30px\]:hover img,
.rounded-\[35px\]:hover img,
.rounded-\[40px\]:hover img,
.rounded-\[60px\]:hover img{

    transform:scale(1.06);

}
/* =====================================================
                    PHILOSOPHY
===================================================== */

.quote-box{
    border-left:4px solid var(--dark);
    padding-left:24px;
    margin-top:40px;
}

.quote-box p{
    font-family:"Playfair Display",serif;
    font-size:24px;
    line-height:1.8;
    font-style:italic;
}


/* =====================================================
                INSTAGRAM GALLERY
===================================================== */

.instagram-grid img{
    transition:.6s;
    cursor:pointer;
}

.instagram-grid img:hover{
    transform:scale(1.05);
    box-shadow:var(--shadow-lg);
}








/* =====================================================
                SEARCH MODAL
===================================================== */

.search-modal{

    position:fixed;

    inset:0;

    display:flex;

    justify-content:center;

    align-items:flex-start;

    padding-top:120px;

    background:rgba(0,0,0,.35);

    backdrop-filter:blur(8px);

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:9999;

}

.search-modal.active{

    opacity:1;

    visibility:visible;

}

.search-box{

    width:min(700px,92%);

    background:white;

    border-radius:25px;

    padding:25px;

    box-shadow:var(--shadow-lg);

}

.search-box input{

    width:100%;

    border:none;

    font-size:18px;

}

/* ==================================================
                CART OVERLAY
==================================================*/

.cart-overlay{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.45);

    backdrop-filter:blur(4px);

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:1998;

}

.cart-overlay.active{

    opacity:1;

    visibility:visible;

}
/* ==================================================
                CART DRAWER
==================================================*/

.cart-drawer{

    position:fixed;

    top:0;

    right:-100%;

    width:460px;

    max-width:100%;

    height:100vh;

    background:#fff;

    display:flex;

    flex-direction:column;

    transition:.45s cubic-bezier(.22,.61,.36,1);

    box-shadow:-15px 0 50px rgba(0,0,0,.08);

    z-index:1999;

}

.cart-drawer.active{

    right:0;

}



/* ==================================================
                CART HEADER
==================================================*/

.cart-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:28px 30px;

    border-bottom:1px solid var(--border);

    background:#fff;

}

.cart-header h2{

    font-size:30px;

    margin-bottom:6px;

}

.cart-header p{

    font-size:14px;

    color:var(--secondary);

}



/* ==================================================
                CLOSE BUTTON
==================================================*/

.cart-close{

    width:48px;

    height:48px;

    border-radius:50%;

    background:var(--soft);

    display:flex;

    justify-content:center;

    align-items:center;

    transition:.3s;

}

.cart-close:hover{

    background:var(--primary);

    color:#fff;

}



/* ==================================================
                CART ITEMS
==================================================*/

.cart-items{

    flex:1;

    overflow-y:auto;

    padding:28px;

}



/* ==================================================
            CUSTOM SCROLLBAR
==================================================*/

.cart-items::-webkit-scrollbar{

    width:7px;

}

.cart-items::-webkit-scrollbar-track{

    background:transparent;

}

.cart-items::-webkit-scrollbar-thumb{

    background:#d6ccc2;

    border-radius:999px;

}

.cart-items::-webkit-scrollbar-thumb:hover{

    background:#bbaea2;

}



/* ==================================================
                CART FOOTER
==================================================*/

.cart-footer{

    border-top:1px solid var(--border);

    background:#fff;

    padding:28px;

}

.subtotal{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:24px;

}

.subtotal span{

    color:var(--secondary);

}

.subtotal strong{

    font-size:24px;

    color:var(--primary);

}

.cart-footer .btn-primary,

.cart-footer .btn-secondary{

    width:100%;

}

.cart-footer .btn-secondary{

    margin-bottom:14px;

}
/* ==================================================
                CART ITEM
==================================================*/

.cart-item{

    display:flex;

    gap:18px;

    background:#fff;

    border:1px solid var(--border);

    border-radius:24px;

    padding:18px;

    margin-bottom:18px;

    transition:.35s;

}

.cart-item:hover{

    transform:translateY(-4px);

    box-shadow:0 18px 40px rgba(0,0,0,.06);

}



/* ==================================================
                IMAGE
==================================================*/

.cart-item-image{

    width:95px;

    height:120px;

    border-radius:18px;

    overflow:hidden;

    flex-shrink:0;

}

.cart-item-image img{

    width:100%;

    height:100%;

    object-fit:cover;

}



/* ==================================================
                CONTENT
==================================================*/

.cart-item-content{

    flex:1;

    display:flex;

    flex-direction:column;

}

.cart-item-content h4{

    font-size:18px;

    margin-bottom:8px;

}

.cart-item-content p{

    font-size:14px;

    margin-bottom:6px;

}

.cart-price{

    font-size:18px;

    font-weight:700;

    color:var(--primary);

    margin-top:6px;

}



/* ==================================================
            QUANTITY
==================================================*/

.cart-qty{

    display:flex;

    align-items:center;

    gap:12px;

    margin-top:18px;

}

.cart-qty button{

    width:34px;

    height:34px;

    border-radius:50%;

    background:var(--soft);

    transition:.3s;

}

.cart-qty button:hover{

    background:var(--primary);

    color:#fff;

}

.cart-qty span{

    min-width:22px;

    text-align:center;

    font-weight:600;

}



/* ==================================================
            REMOVE BUTTON
==================================================*/

.remove-item{

    margin-top:14px;

    color:#b14a4a;

    font-size:14px;

    cursor:pointer;

    transition:.3s;

}

.remove-item:hover{

    color:#7d2323;

}



/* ==================================================
            EMPTY CART
==================================================*/

.empty-cart{

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    text-align:center;

    height:100%;

    padding:60px 20px;

}

.empty-cart i{

    font-size:64px;

    color:#d4c6bb;

    margin-bottom:24px;

}

.empty-cart h3{

    margin-bottom:12px;

}

.empty-cart p{

    max-width:260px;

}

/* =====================================================
                TOAST
===================================================== */

.toast{

    position:fixed;

    right:30px;

    bottom:30px;

    background:#4A3B32;

    color:white;

    padding:16px 24px;

    border-radius:16px;

    box-shadow:var(--shadow-lg);

    transform:translateY(120px);

    opacity:0;

    transition:.4s;

    z-index:99999;

}

.toast.show{

    opacity:1;

    transform:translateY(0);

}


/* =====================================================
                BACK TO TOP
===================================================== */

#backToTop{

    position:fixed;

    right:30px;

    bottom:35px;

    width:55px;

    height:55px;

    border-radius:50%;

    background:var(--dark);

    color:white;

    display:flex;

    justify-content:center;

    align-items:center;

    cursor:pointer;

    opacity:0;

    visibility:hidden;

    transition:.35s;

    box-shadow:var(--shadow-lg);

    z-index:999;

}

#backToTop.show{

    opacity:1;

    visibility:visible;

}

#backToTop:hover{

    transform:translateY(-5px);

}


/* =====================================================
                RESPONSIVE
===================================================== */

@media(max-width:1024px){

.hero-title{

    font-size:58px;

}

.hero-image img{

    height:520px;

}

.floating-card{

    position:relative;

    left:0;

    bottom:0;

    width:100%;

    margin-top:20px;

}

.cart-drawer{

    width:100%;

}

}

@media(max-width:768px){

.hero-title{

    font-size:42px;

}

.hero-text{

    font-size:16px;

    line-height:1.9;

}

.product-image{

    height:330px;

}

.feature-card{

    padding:30px;

}

.value-card{

    padding:30px;

}

.quote-box p{

    font-size:20px;

}

}

@media(max-width:576px){

.hero-title{

    font-size:34px;

}

.btn-primary,
.btn-outline{

    width:100%;

}

.loader-content h1{

    font-size:42px;

}

.loader-line{

    width:180px;

}

}
/* =====================================================
                    FOOTER
===================================================== */

.footer{

    background:#ceccc9;

    color:#4A3B32;

    padding:90px 0 35px;

}


/* =====================================================
                FOOTER CONTAINER
===================================================== */

.footer-container{

    width:min(1200px,92%);

    margin:auto;

}


/* =====================================================
                    FOOTER GRID
===================================================== */

.footer-grid{

    display:grid;

    grid-template-columns:
    2fr 1fr 1fr 1fr;

    gap:60px;

}


/* =====================================================
                    BRAND
===================================================== */

.footer-brand h2{

    font-family:'Playfair Display',serif;

    font-size:52px;

    font-weight:700;

    letter-spacing:2px;

    margin-bottom:20px;

    color:#4A3B32;

}


/* =====================================================
                BRAND DESCRIPTION
===================================================== */

.footer-brand p{

    max-width:330px;

    color:#4A3B32;

    font-size:15px;

    line-height:1.8;

}


/* =====================================================
                    COLUMN
===================================================== */

.footer-column{

    display:flex;

    flex-direction:column;

    gap:14px;

}


/* =====================================================
                COLUMN HEADING
===================================================== */

.footer-column h3{

    font-family:'Playfair Display',serif;

    font-size:22px;

    color:#4A3B32;

    margin-bottom:15px;

}


/* =====================================================
                    LINKS
===================================================== */

.footer-column a{

    color:#4A3B32;

    text-decoration:none;

    font-size:15px;

    transition:.3s ease;

}


.footer-column a:hover{

    color:#4A3B32;

    transform:translateX(5px);

}


/* =====================================================
                    DIVIDER
===================================================== */

.footer-divider{

    width:100%;

    height:1px;

    background:#4A3B32;

    margin:60px 0 25px;

}


/* =====================================================
                    COPYRIGHT
===================================================== */

.footer-bottom{

    text-align:center;

}


.footer-bottom p{

    color:#4A3B32;

    font-size:14px;

}


/* =====================================================
                FOOTER BRAND ADJUSTMENT
===================================================== */

.footer-brand{

    padding-left:40px;

}


/* =====================================================
                    BRAND LOGO
===================================================== */

/*
    Jika menggunakan logo gambar,
    h2 sudah tidak digunakan.
*/

.footer-brand img{

    display:block;

    width:auto;

    height:32px;

    object-fit:contain;

    object-position:left;

    margin-bottom:20px;

}


/* =====================================================
                    RESPONSIVE
===================================================== */

@media(max-width:768px){

    .footer{

        padding:70px 0 30px;

    }


    .footer-grid{

        grid-template-columns:1fr 1fr;

        gap:40px 30px;

    }


    .footer-brand{

        padding-left:0;

        grid-column:1 / -1;

    }


    .footer-brand p{

        max-width:400px;

    }

}


@media(max-width:480px){

    .footer-grid{

        grid-template-columns:1fr;

        gap:35px;

    }


    .footer-brand{

        grid-column:auto;

    }


    .footer-brand img{

        height:28px;

    }

}