/* ==================================================
                KAARU COLLECTION
                STYLE.CSS
==================================================*/



/* ==================================================
                    IMPORT
==================================================*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@500;600;700&display=swap');



/* ==================================================
                    RESET
==================================================*/

*{

    margin:0;

    padding:0;

    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    background:#FDFBF7;

    color:#4A3B32;

    font-family:"Inter",sans-serif;

    line-height:1.7;

    overflow-x:hidden;

}

img{

    display:block;

    width:100%;

    height:auto;

}

a{

    text-decoration:none;

    color:inherit;

}

button{

    border:none;

    outline:none;

    cursor:pointer;

    background:none;

    font:inherit;

}

ul{

    list-style:none;

}
/* ==================================================
                ROOT VARIABLES
==================================================*/

:root{

    --bg:#FDFBF7;

    --white:#ffffff;

    --primary:#4A3B32;

    --secondary:#8C7A6B;

    --soft:#F7F2EC;

    --border:#ECE4DA;

    --shadow-sm:

        0 8px 25px rgba(0,0,0,.04);

    --shadow-md:

        0 18px 45px rgba(0,0,0,.08);

    --shadow-lg:

        0 30px 70px rgba(0,0,0,.12);

    --radius:26px;

    --transition:.35s ease;

}
/* ==================================================
                TYPOGRAPHY
==================================================*/

h1,

h2,

h3,

.logo{

    font-family:

    "Playfair Display",

    serif;

    font-weight:600;

}

h1{

    font-size:clamp(48px,6vw,82px);

    line-height:1.1;

}

h2{

    font-size:clamp(38px,4vw,56px);

}

h3{

    font-size:28px;

}

p{

    color:var(--secondary);

    font-size:16px;

}

.section-label{

    display:inline-block;

    letter-spacing:.35em;

    text-transform:uppercase;

    font-size:12px;

    font-weight:600;

    color:var(--secondary);

    margin-bottom:24px;

}
/* ==================================================
                CONTAINER
==================================================*/

.container{

    width:min(92%,1280px);

    margin:auto;

}
/* ==================================================
                SECTION
==================================================*/

section{

    padding:110px 0;

}
/* ==================================================
                BUTTON
==================================================*/

.btn-primary{

    background:var(--primary);

    color:#fff;

    padding:16px 34px;

    border-radius:999px;

    transition:var(--transition);

}

.btn-primary:hover{

    transform:translateY(-3px);

    box-shadow:var(--shadow-md);

}

.btn-secondary{

    border:1px solid var(--border);

    padding:16px 34px;

    border-radius:999px;

    transition:var(--transition);

}

.btn-secondary:hover{

    background:var(--soft);

}
/* ==================================================
                ICON BUTTON
==================================================*/

.icon-btn{

    width:52px;

    height:52px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#fff;

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

    position:relative;

}

.icon-btn:hover{

    transform:translateY(-3px);

}

#cartCount{

    position:absolute;

    top:-6px;

    right:-4px;

    width:22px;

    height:22px;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:11px;

    font-weight:600;

}
/* ==================================================
                REVEAL
==================================================*/

.fade-up{

    opacity:0;

    transform:translateY(40px);

    transition:

    opacity .8s ease,

    transform .8s ease;

}

.fade-up.show{

    opacity:1;

    transform:translateY(0);

}
/* ==================================================
                    HEADER
==================================================*/

.header{

    position:fixed;

    top:24px;

    left:0;

    width:100%;

    z-index:1000;

    transition:all .35s ease;

}

.header.scrolled{

    top:14px;

}



/* =====================================================
                    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;

}



/* ==================================================
                COLLECTION HERO
==================================================*/

.collection-hero{

    padding-top:180px;

    padding-bottom:80px;

}

.hero-card{

    background:var(--white);

    border-radius:42px;

    padding:90px;

    box-shadow:var(--shadow-sm);

    overflow:hidden;

    position:relative;

}

.hero-card::before{

    content:"";

    position:absolute;

    top:-120px;

    right:-120px;

    width:320px;

    height:320px;

    border-radius:50%;

    background:linear-gradient(

        135deg,

        rgba(74,59,50,.04),

        transparent

    );

}

.hero-content{

    position:relative;

    z-index:2;

    max-width:760px;

}

.hero-content h1{

    margin-bottom:28px;

    color:var(--primary);

}

.hero-content p{

    max-width:620px;

    font-size:18px;

    line-height:1.9;

}



/* ==================================================
                SECTION HEADING
==================================================*/

.section-heading{

    text-align:center;

    margin-bottom:70px;

}

.section-heading span{

    display:inline-block;

    letter-spacing:.35em;

    text-transform:uppercase;

    color:var(--secondary);

    font-size:12px;

    font-weight:600;

    margin-bottom:16px;

}

.section-heading h2{

    margin-bottom:18px;

}

.section-heading p{

    max-width:650px;

    margin:auto;

}



/* ==================================================
                PRODUCT GRID
==================================================*/

.products{

    display:grid;

    grid-template-columns:

        repeat(4,1fr);

    gap:34px;

}



/* ==================================================
                PRODUCT CARD
==================================================*/

.product-card{

    background:var(--white);

    border-radius:34px;

    overflow:hidden;

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

    position:relative;

}

.product-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-lg);

}



/* ==================================================
                BADGE
==================================================*/

.badge{

    position:absolute;

    top:22px;

    left:22px;

    z-index:10;

    background:#fff;

    color:var(--primary);

    border-radius:999px;

    padding:10px 18px;

    font-size:11px;

    letter-spacing:.15em;

    font-weight:700;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

}



/* ==================================================
                PRODUCT IMAGE
==================================================*/

.product-image{

    aspect-ratio:4/5;

    overflow:hidden;

    background:#F6F2ED;

}

.product-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:transform .7s ease;

}

.product-card:hover .product-image img{

    transform:scale(1.08);

}



/* ==================================================
                PRODUCT CONTENT
==================================================*/

.product-content{

    padding:28px;

}

.category{

    display:block;

    font-size:11px;

    letter-spacing:.3em;

    color:var(--secondary);

    text-transform:uppercase;

    margin-bottom:12px;

}

.product-content h3{

    font-size:30px;

    margin-bottom:14px;

    color:var(--primary);

}

.price{

    font-size:22px;

    font-weight:700;

    color:var(--primary);

    margin-bottom:28px;

}



/* ==================================================
                ADD TO CART
==================================================*/

.add-cart{

    width:100%;

    border-radius:999px;

    padding:16px;

    background:var(--primary);

    color:#fff;

    font-weight:600;

    transition:all .35s ease;

    transform:translateY(25px);

    opacity:0;

}

.product-card:hover .add-cart{

    transform:translateY(0);

    opacity:1;

}

.add-cart:hover{

    background:#2E241E;

}



/* ==================================================
                FEATURE SECTION
==================================================*/

.features-section{

    padding-top:120px;

}

.feature-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.feature-card{

    background:#fff;

    border-radius:30px;

    padding:42px;

    text-align:center;

    box-shadow:var(--shadow-sm);

    transition:.35s;

}

.feature-card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-md);

}

.feature-icon{

    width:74px;

    height:74px;

    margin:auto;

    margin-bottom:24px;

    border-radius:50%;

    background:var(--soft);

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:26px;

    color:var(--primary);

}

.feature-card h3{

    margin-bottom:16px;

}
/* ==================================================
                NEWSLETTER
==================================================*/

.newsletter{

    padding-top:120px;

}

.newsletter-card{

    background:#fff;

    border-radius:42px;

    padding:80px;

    text-align:center;

    box-shadow:var(--shadow-sm);

}

.newsletter-card span{

    display:inline-block;

    letter-spacing:.35em;

    text-transform:uppercase;

    color:var(--secondary);

    font-size:12px;

    font-weight:600;

    margin-bottom:18px;

}

.newsletter-card h2{

    margin-bottom:20px;

}

.newsletter-card p{

    max-width:620px;

    margin:0 auto 42px;

}

.newsletter-form{

    display:flex;

    justify-content:center;

    gap:16px;

    flex-wrap:wrap;

}

.newsletter-form input{

    width:420px;

    max-width:100%;

    height:60px;

    border:1px solid var(--border);

    border-radius:999px;

    padding:0 24px;

    font-size:15px;

    background:#FAF8F5;

}

.newsletter-form input:focus{

    outline:none;

    border-color:var(--primary);

}

.newsletter-form button{

    padding:0 34px;

    border-radius:999px;

    background:var(--primary);

    color:#fff;

    font-weight:600;

    transition:var(--transition);

}

.newsletter-form button:hover{

    transform:translateY(-2px);

}







/* ==================================================
                BACK TO TOP
==================================================*/

#backToTop{

    position:fixed;

    right:26px;

    bottom:26px;

    width:54px;

    height:54px;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    box-shadow:var(--shadow-md);

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:500;

}

#backToTop.show{

    opacity:1;

    visibility:visible;

}







/* ==================================================
                RESPONSIVE
==================================================*/

@media(max-width:1100px){

.products{

    grid-template-columns:repeat(2,1fr);

}

.feature-grid{

    grid-template-columns:1fr;

}

.footer-grid{

    grid-template-columns:1fr 1fr;

}

.hero-card{

    padding:70px;

}

}



@media(max-width:768px){

.header{

    top:16px;

}

.desktop-nav{

    display:none;

}

.mobile-only{

    display:flex;

}

.navbar{

    border-radius:24px;

    padding:14px 18px;

}

.logo{

    font-size:24px;

}

.collection-hero{

    padding-top:140px;

}

.hero-card{

    padding:42px 30px;

    border-radius:30px;

}

.hero-content h1{

    font-size:44px;

}

.products{

    grid-template-columns:1fr;

    gap:26px;

}

.product-content{

    padding:24px;

}

.product-content h3{

    font-size:24px;

}

.add-cart{

    opacity:1;

    transform:none;

}

.newsletter-card{

    padding:42px 26px;

}

.newsletter-form{

    flex-direction:column;

}

.newsletter-form input,

.newsletter-form button{

    width:100%;

    height:58px;

}

.footer-grid{

    grid-template-columns:1fr;

    gap:36px;

}

.cart-drawer{

    width:100%;

}

}



@media(max-width:480px){

section{

    padding:80px 0;

}

.container{

    width:92%;

}

.hero-content h1{

    font-size:36px;

}

.section-heading h2{

    font-size:34px;

}

.product-card{

    border-radius:24px;

}

.badge{

    left:16px;

    top:16px;

}

.feature-card{

    padding:32px 24px;

}

#backToTop{

    width:48px;

    height:48px;

    right:18px;

    bottom: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 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);

}
/* ==================================================
            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;

}

/* ==================================================
            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;

}
/* ==================================================
                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;

}
/* ==================================================
                CART ITEMS
==================================================*/

.cart-items{

    flex:1;

    overflow-y:auto;

    padding:28px;

    display:flex;

    flex-direction:column;

}
/* ==================================================
                TOAST
==================================================*/

.toast{

    position:fixed;

    left:50%;

    bottom:30px;

    transform:translateX(-50%) translateY(40px);

    background:#4A3B32;

    color:#fff;

    padding:16px 24px;

    border-radius:999px;

    display:flex;

    align-items:center;

    gap:12px;

    opacity:0;

    visibility:hidden;

    transition:.35s ease;

    z-index:3000;

    box-shadow:var(--shadow-lg);

}

.toast.show{

    opacity:1;

    visibility:visible;

    transform:translateX(-50%) translateY(0);

}



/* ==================================================
                RIPPLE
==================================================*/

.btn-primary,

.add-cart{

    position:relative;

    overflow:hidden;

}

.ripple{

    position:absolute;

    width:12px;

    height:12px;

    border-radius:50%;

    background:rgba(255,255,255,.45);

    transform:translate(-50%,-50%) scale(0);

    animation:ripple .6s linear;

}

@keyframes ripple{

    to{

        transform:translate(-50%,-50%) scale(24);

        opacity:0;

    }

}
/* =====================================================
                    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;

    }

}