
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Segoe UI',Tahoma,Geneva,Verdana,sans-serif;
    background:#fff8f8;
    color:#5b4b4b;
    line-height:1.6;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
    color:inherit;
}

ul{
    list-style:none;
}

button{
    cursor:pointer;
    border:none;
}


/*==================================================
  CONTAINER
==================================================*/

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}


/*==================================================
  HEADER
==================================================*/

header{
    width:100%;
    background:#ffffff;
    position:sticky;
    top:0;
    z-index:999;
    box-shadow:0 2px 10px rgba(0,0,0,.06);
}


/*==================================================
  NAVBAR
==================================================*/

.navbar{
    height:80px;

    display:flex;
    align-items:center;
    justify-content:space-between;
}


/*========== Logo ==========*/

.logo{
    display:flex;
    align-items:center;
    gap:12px;
}

.logo img{
    width:52px;
}

.logo h2{
    font-size:22px;
    color:#dd6c8e;
    line-height:1;
}

.logo span{
    font-size:13px;
    color:#777;
}


/*========== Menu ==========*/

nav ul{
    display:flex;
    align-items:center;
    gap:35px;
}

nav ul li a{
    font-size:15px;
    font-weight:600;
    color:#555;
    transition:.3s;
}

nav ul li a:hover,
nav ul li a.active{

    color:#e86b92;

}


/*========== Navbar Icon ==========*/

.nav-icon{

    display:flex;
    align-items:center;
    gap:18px;

}

.nav-icon img{

    width:22px;
    transition:.3s;

}

.nav-icon img:hover{

    transform:scale(1.12);

}


/*==================================================
  HERO VIDEO
==================================================*/

.hero{

    width:100%;
    padding:0;

}

.hero video{

    width:100%;
    height:540px;
    object-fit:cover;
    display:block;

}


/*==================================================
  BUTTON
==================================================*/

.btn{

    display:inline-block;

    padding:12px 28px;

    background:#e86b92;

    color:#fff;

    border-radius:30px;

    transition:.3s;

    font-weight:600;

}

.btn:hover{

    background:#cf5278;

}

.btn-all{

    display:inline-block;

    margin-top:35px;

    color:#fff;

    background:#e86b92;

    padding:12px 28px;

    border-radius:30px;

    transition:.3s;

}

.btn-all:hover{

    background:#cf5278;

}

/* =========================
   HERO
========================= */

.hero{
    width:100%;
    margin:0;
    padding:0;
}

.hero video,
.hero img{
    width:100%;
    height:550px;
    object-fit:cover;
    display:block;
}

/* =========================
   SECTION
========================= */

section{
    padding:60px 8%;
}

.section-title,
.best-seller h2,
.about-home h2,
.location h2{
    text-align:center;
    color:#d96b88;
    font-size:32px;
    margin-bottom:10px;
}

.best-seller>p,
.about-home h4,
.location p{
    text-align:center;
    color:#777;
    margin-bottom:40px;
}

/* =========================
   PRODUCT
========================= */

.product-list{
    display:flex;
    justify-content:center;
    align-items:stretch;
    gap:25px;
    flex-wrap:wrap;
}

.card{
    width:250px;
    background:#fff;
    border-radius:18px;
    padding:18px;
    text-align:center;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition:.3s;
}

.card:hover{
    transform:translateY(-8px);
}

.card img{
    width:100%;
    height:180px;
    object-fit:cover;
    border-radius:12px;
    margin-bottom:15px;
}

.card h3{
    font-size:17px;
    color:#d96b88;
    margin-bottom:8px;
}

.card h4{
    color:#444;
    font-size:20px;
    margin-bottom:15px;
}

/* =========================
   QTY
========================= */

.qty{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:12px;
    margin-bottom:18px;
}

.qty button{
    width:32px;
    height:32px;
    border:none;
    border-radius:50%;
    background:#ffdce5;
    cursor:pointer;
    font-size:18px;
    transition:.3s;
}

.qty button:hover{
    background:#f6b8c8;
}

.qty span{
    font-weight:700;
    font-size:16px;
}

/* =========================
   BUTTON
========================= */

.btn,
.btn-primary,
.btn-all{
    display:inline-block;
    background:#e96d8e;
    color:#fff;
    border:none;
    border-radius:30px;
    padding:10px 22px;
    cursor:pointer;
    transition:.3s;
    font-weight:600;
}

.btn:hover,
.btn-primary:hover,
.btn-all:hover{
    background:#cf5476;
}

.btn-all{
    margin:45px auto 0;
    display:block;
    width:max-content;
}

/*======================================
  ABOUT HOME
======================================*/

.about-home{
    width:90%;
    max-width:1000px;
    margin:80px auto;
    text-align:center;
    background:#fff;
    border-radius:20px;
    padding:50px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.about-home h2{
    color:#d96b88;
    font-size:32px;
    margin-bottom:10px;
}

.about-home h4{
    color:#777;
    margin-bottom:25px;
    font-weight:500;
}

.about-home p{
    color:#666;
    line-height:1.8;
    margin-bottom:30px;
}

/*======================================
  HERO ABOUT
======================================*/

.hero-about{
    width:100%;
    background:#fdebef;
    padding:70px 0;
}

.hero-about .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:60px;
}

.hero-text{
    flex:1;
}

.hero-text h1{
    font-size:42px;
    color:#d96b88;
    margin-bottom:20px;
}

.hero-text p{
    color:#666;
    line-height:1.9;
}

.hero-image{
    flex:1;
    text-align:right;
}

.hero-image img{
    width:420px;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.1);
}

/*======================================
  CERITA KAMI
======================================*/

.about{
    width:90%;
    max-width:1000px;
    margin:70px auto;
}

.about h2{
    text-align:center;
    color:#d96b88;
    margin-bottom:30px;
    font-size:32px;
}

.about p{
    text-align:center;
    color:#666;
    line-height:1.9;
    margin-bottom:20px;
}

/*======================================
  VISI MISI
======================================*/

.visi-misi{
    width:90%;
    max-width:1100px;
    margin:70px auto;

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.card-visi,
.card-misi{

    background:#fff;

    border-radius:18px;

    padding:30px;

    box-shadow:0 8px 20px rgba(0,0,0,.08);

}

.card-visi h3,
.card-misi h3{

    color:#d96b88;

    margin-bottom:18px;

}

.card-visi p{

    color:#666;

    line-height:1.8;

}

.card-misi ul{

    padding-left:20px;

}

.card-misi li{

    margin-bottom:10px;

    color:#666;

}

/*======================================
  FILOSOFI
======================================*/

.filosofi{

    width:90%;

    max-width:1200px;

    margin:70px auto;

    text-align:center;

}

.filosofi h2{

    color:#d96b88;

    margin-bottom:35px;

    font-size:32px;

}

.filosofi-box{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:25px;

}

.fil-item{

    background:#fff;

    border-radius:18px;

    padding:30px;

    box-shadow:0 8px 20px rgba(0,0,0,.08);

    transition:.3s;

}

.fil-item:hover{

    transform:translateY(-6px);

}

.fil-item h4{

    color:#d96b88;

    margin-bottom:15px;

    font-size:22px;

}

.fil-item p{

    color:#666;

    line-height:1.8;

}

/*======================================
  CONTACT
======================================*/

.contact-section{

    width:90%;
    max-width:1200px;

    margin:80px auto;

    display:grid;
    grid-template-columns:1fr 1.2fr;
    gap:40px;

}

.contact-info{

    background:#fdebef;

    border-radius:20px;

    padding:40px;

}

.contact-info h1{

    color:#d96b88;

    font-size:38px;

    margin-bottom:15px;

}

.contact-info>p{

    color:#666;

    line-height:1.8;

    margin-bottom:30px;

}

.info-box{

    background:#fff;

    border-radius:15px;

    padding:18px 22px;

    margin-bottom:18px;

    box-shadow:0 5px 15px rgba(0,0,0,.08);

}

.info-box h3{

    color:#d96b88;

    margin-bottom:8px;

}

.info-box p{

    color:#666;

    font-size:15px;

}

/*======================================
  CONTACT FORM
======================================*/

.contact-form{

    background:#fff;

    border-radius:20px;

    padding:40px;

    box-shadow:0 8px 20px rgba(0,0,0,.08);

}

.contact-form h2{

    color:#d96b88;

    margin-bottom:25px;

}

.contact-form label{

    display:block;

    margin-bottom:8px;

    margin-top:18px;

    font-weight:600;

    color:#555;

}

.contact-form input,
.contact-form textarea{

    width:100%;

    padding:14px;

    border:1px solid #ddd;

    border-radius:10px;

    outline:none;

    font-size:15px;

}

.contact-form textarea{

    resize:none;

}

.contact-form input:focus,
.contact-form textarea:focus{

    border-color:#d96b88;

}

.contact-form button{

    margin-top:25px;

    width:100%;

}

/*======================================
  MAP
======================================*/

.location{

    width:90%;

    max-width:1200px;

    margin:70px auto;

    text-align:center;

}

.location h2{

    color:#d96b88;

    margin-bottom:25px;

}

.map-box{

    width:100%;

    height:420px;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 8px 20px rgba(0,0,0,.08);

}

.map-box iframe{

    width:100%;

    height:100%;

    border:none;

}

/*======================================
  FOOTER
======================================*/

footer{

    margin-top:70px;

    background:#f9dce5;

}

.footer{

    width:90%;

    max-width:1200px;

    margin:auto;

    padding:45px 0;

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1.3fr;

    gap:35px;

}

.footer-box img{

    width:65px;

    margin-bottom:15px;

}

.footer-box h3{

    color:#d96b88;

    margin-bottom:18px;

    font-size:18px;

}

.footer-box p,
.footer-box a{

    color:#666;

    display:block;

    margin-bottom:10px;

    font-size:14px;

    transition:.3s;

}

.footer-box a:hover{

    color:#d96b88;

}

.copyright{

    background:#efbfd0;

    text-align:center;

    padding:14px;

    color:#666;

    font-size:14px;

}

/*======================================
  ANIMATION
======================================*/

.card,
.card-visi,
.card-misi,
.fil-item,
.info-box{

    transition:.3s;

}

.card:hover,
.card-visi:hover,
.card-misi:hover,
.fil-item:hover,
.info-box:hover{

    transform:translateY(-6px);

}

/*======================================
  RESPONSIVE
======================================*/

@media(max-width:992px){

.navbar{

flex-direction:column;

height:auto;

padding:20px 0;

gap:20px;

}

nav ul{

flex-wrap:wrap;

justify-content:center;

gap:20px;

}

.hero-about .container{

flex-direction:column;

text-align:center;

}

.hero-image img{

width:100%;

max-width:400px;

margin:auto;

}

.product-list{

justify-content:center;

}

.filosofi-box{

grid-template-columns:1fr;

}

.visi-misi{

grid-template-columns:1fr;

}

.contact-section{

grid-template-columns:1fr;

}

.footer{

grid-template-columns:1fr 1fr;

}

}

@media(max-width:600px){

.footer{

grid-template-columns:1fr;

text-align:center;

}

.logo{

justify-content:center;

}

.nav-icon{

justify-content:center;

}

.hero video{

height:250px;

}

.hero-text h1{

font-size:30px;

}

.section-title h2,
.best-seller h2,
.about-home h2,
.about h2,
.filosofi h2,
.location h2{

font-size:26px;

}

.card{

width:100%;

max-width:300px;

}

}