@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&family=Playfair+Display:wght@400;600;700&display=swap');

:root {
    --coffee-dark: #65450e;
    --coffee-mid: #341c10;
    --coffee-light: #ffffff;
    --coffee-pale: #fff3ce;
    --text-dark: #ffffff;
    --text-mid: #333333;
}

* { box-sizing: border-box; }

body {
    font-family: 'Montserrat', sans-serif;
    color: #341c10;
    background-color: #ffffff;
    overflow-x: hidden;
}

.layout_padding { padding: 70px 0; }
.layout_padding2 { padding: 75px 0; }
.layout_padding2-top { padding-top: 75px; }
.layout_padding2-bottom { padding-bottom: 75px; }
.layout_padding-top { padding-top: 90px; }
.layout_padding-bottom { padding-bottom: 90px; }

h1, h2 { font-family: 'Playfair Display', serif; }

.heading_container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.heading_container h2 {
    position: relative;
    margin-bottom: 0;
    font-size: 3.5rem;
    font-weight: bold;
}

.heading_container h2::after {
    content: "";
    display: block;
    width: 70px;
    height: 5px;
    background: var(--coffee-mid);
    margin: 10px auto 10px;
}

.heading_container h2 span { color: var(--coffee-mid); }
.heading_container p { margin-top: 10px; margin-bottom: 0; }

.heading_container.heading_center {
    align-items: center;
    text-align: center;
}

a, a:hover, a:focus { text-decoration: none; }
a:hover, a:focus { color: initial; }

.btn, .btn:focus {
    outline: none !important;
    box-shadow: none;
}

.hero_area {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.sub_page .hero_area {
    min-height: auto;
    box-shadow: 0 0 5px 0 rgba(0,0,0,0.25);
}

.header_section { padding: 15px 0; }

.navbar-brand span {
    font-family: 'Playfair Display', serif;
    font-weight: bold;
    font-size: 32px;
    color: var(--coffee-dark);
}

.navbar-brand .brand-name {
    color: var(--coffee-dark);
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
}

.navbar-brand .brand-sub {
    font-size: 11px;
    color: var(--coffee-mid);
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    margin-top: -4px;
}

.custom_nav-container { padding: 0; }
.custom_nav-container .navbar-nav { margin-left: auto; }

.custom_nav-container .navbar-nav .nav-item .nav-link {
    padding: 5px 20px;
    color: #131313;
    text-align: center;
    text-transform: uppercase;
    border-radius: 5px;
    transition: all 0.3s;
    font-weight: 700;
}

.custom_nav-container .navbar-nav .nav-item .nav-link svg {
    width: 17px;
    height: auto;
    fill: #000000;
    margin-bottom: 2px;
}

.custom_nav-container .navbar-nav .nav-item:hover .nav-link,
.custom_nav-container .navbar-nav .nav-item.active .nav-link { color: var(--coffee-mid); }

.custom_nav-container .navbar-nav .nav-item:hover .nav-link svg,
.custom_nav-container .navbar-nav .nav-item.active .nav-link svg { fill: var(--coffee-mid); }

.custom_nav-container .nav_search-btn {
    width: 35px;
    height: 35px;
    padding: 0;
    border: none;
    color: #000000;
}

.custom_nav-container .nav_search-btn:hover { color: var(--coffee-mid); }

.custom_nav-container .navbar-toggler {
    outline: none;
    padding: 0;
    width: 37px;
    height: 42px;
    transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span {
    display: block;
    width: 35px;
    height: 4px;
    background-color: var(--coffee-dark);
    margin: 7px 1px;
    transition: all 0.3s;
    position: relative;
    border-radius: 2px;
}

.navbar-toggler[aria-expanded="true"] { background-color: #000000; }

.slider_section {
    display: flex;
    flex: 1;
    align-items: center;
    padding: 45px 0 70px;
    position: relative;
}

.slider_bg_box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slider_bg_box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider_section #customCarousel1 { width: 100%; }

.slider_section .detail-box h1 {
    font-size: 3.5rem;
    color: #fdd28d;
    margin-bottom: 20px;
}

.slider_section .detail-box h1 span { color: var(--coffee-light); }

.slider_section .detail-box p {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 30px;
    line-height: 1.7;
}

.btn1 {
    display: inline-block;
    padding: 12px 40px;
    background-color: var(--coffee-mid);
    border: 2px solid var(--coffee-mid);
    color: #fffdfd;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s;
    border-radius: 3px;
}

.btn1:hover {
    background-color: transparent;
    color: var(--coffee-light);
    border-color: var(--coffee-light);
}

.slider_section .carousel-indicators {
    position: relative;
    margin-top: 40px;
    justify-content: flex-start;
}

.slider_section .carousel-indicators li {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.5);
    border: none;
    margin: 0 5px;
}

.slider_section .carousel-indicators li.active { background-color: var(--coffee-light); }

/* === WHY SECTION FIXED === */
.why_section { background: #fdf6ec; }

.why_section .box {
    text-align: center;
    padding: 30px 20px;
}

.why_section .box .img-box {
    width: 110px;
    height: 110px;
    margin: 0 auto 20px;
    background-color: var(--coffee-pale) !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why_section .box .img-box i {
    font-size: 46px;
    color: var(--coffee-dark);
}

.why_section .box .detail-box h5 {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 10px;
}

.why_section .box .detail-box p {
    font-size: 14px;
    color: #65450e;
    margin: 0;
}

.arrival_section { background-color: #f7edd7; }

.arrival_section .box {
    position: absolute left;
    padding: 70px 0;
    overflow: hidden;
}

.arrival_section .arrival_bg_box {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 55%;
    overflow: hidden;
}

.arrival_section .arrival_bg_box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.arrival_section .heading_container { color: var(--coffee-dark); }

.arrival_section .heading_container h2 { color: var(--coffee-dark); }

.arrival_section a {
    display: inline-block;
    padding: 12px 40px;
    background-color: var(--coffee-dark);
    border: 2px solid var(--coffee-dark);
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s;
    border-radius: 3px;
}

.arrival_section a:hover {
    background-color: transparent;
    color: var(--coffee-dark);
}

.kategori_section {
    padding: 60px 0;
    background: #fff;
}

.kategori_section .kat-card {
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 30px 15px;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
    display: block;
    color: #000000;
}

.kategori_section .kat-card:hover {
    border-color: var(--coffee-mid);
    background: var(--coffee-pale);
    color: var(--coffee-dark);
}

.kategori_section .kat-card .kat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: var(--coffee-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--coffee-dark);
}

.kategori_section .kat-card h6 {
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.product_section .heading_container { margin-bottom: 30px; }

.product_section .box {
    margin-bottom: 30px;
    background-color: #f7f8f9;
    position: relative;
    overflow: hidden;
}

.product_section .box .img-box {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 260px;
    overflow: hidden;
    background: #f0f0f0;
}

.product_section .box .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s;
}

.product_section .box .detail-box {
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product_section .box .detail-box h5 {
    font-size: 15px;
    font-weight: 600;
    margin: 0;
    flex: 1;
    padding-right: 10px;
}

.product_section .box .detail-box h6 {
    font-size: 15px;
    font-weight: 700;
    margin: 0;
    color: #65450e;
    white-space: nowrap;
}

.product_section .box:hover img { transform: scale(1.05); }

.product_section .box:hover .option_container { opacity: 1; }

.product_section .option_container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s;
    background-color: rgba(45,106,79,0.15);
}

.product_section .options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product_section .options a {
    display: inline-block;
    padding: 10px 25px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    border-radius: 3px;
    transition: all 0.3s;
    min-width: 140px;
}
.product_section .options .option1 {
    background-color: var(--coffee-light);
    border: 2px solid var(--coffee-light);
    color:var(--coffee-dark) ;
}

.product_section .options .option1:hover {
    background-color: #ffffff ;
    color:var(--coffee-dark);
}

.product_section .options .option2 {
    background-color: var(--coffee-dark);
    border: 2px solid var(--coffee-dark);
    color: #ffffff;
}

.product_section .options .option2:hover {
    background-color:var(--coffee-dark) ;
    color: #ffffff;
}

.product_section .btn-box {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.product_section .btn-box a {
    display: inline-block;
    padding: 12px 45px;
    background-color: var(--coffee-mid);
    border: 2px solid var(--coffee-mid);
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 3px;
    transition: all 0.3s;
}

.product_section .btn-box a:hover {
    background-color: transparent;
    color: var(--coffee-mid);
}

.badge-jenis {
    display: inline-block;
    padding: 3px 10px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-arabika { background: #ffffff; color: #000000; }
.badge-robusta { background: #ffffff; color: #000000; }
.badge-luwak { background: #ffffff; color: #000000; }
.badge-blend { background: #f5f5f5; color: #000000; border: 1px solid #ddd; }

.subscribe_section { padding: 50px 0; }

.subscribe_section .box { background-color: var(--coffee-pale); padding: 50px 0; }

.subscribe_section .subscribe_form .heading_container { color: var(--coffee-dark); }

.subscribe_section .subscribe_form form {
    display: flex;
    max-width: 500px;
    margin: 20px auto 0;
}

.subscribe_section .subscribe_form form input {
    border-radius: 0;
    border: 1px solid #ccc;
    padding: 12px 20px;
    font-size: 14px;
    flex: 1;
    margin: 0;
}

.subscribe_section .subscribe_form form button {
    padding: 12px 30px;
    background: var(--coffee-dark);
    color: #fff;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.subscribe_section .subscribe_form form button:hover { background: var(--coffee-mid); }

.client_section .box {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 30px 0;
}

.client_section .img_container .img-box {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--coffee-light);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--coffee-pale);
}

.client_section .img_container .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client_section .quote-icon {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--coffee-pale);
}

.client_section .quote-icon i {
    font-size: 36px;
    color: var(--coffee-mid);
}

.client_section .detail-box h5 { font-weight: 700; font-size: 18px; margin-bottom: 5px; }
.client_section .detail-box h6 { color: #65450e; font-size: 14px; margin-bottom: 10px; }
.client_section .detail-box p { font-size: 14px; color: #65450e; line-height: 1.7; }

.carousel_btn_box {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.carousel_btn_box a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--coffee-mid);
    color: var(--coffee-mid);
    border-radius: 50%;
    font-size: 18px;
    transition: all 0.3s;
}

.carousel_btn_box a:hover { background: var(--coffee-mid); color: #fff; }

footer {
    background: #1a1a1a;
    padding: 70px 0 50px;
    color: #ccc;
}

.logo_footer { margin-bottom: 25px; }

.logo_footer .brand-name { color: var(--coffee-light); font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; }
.logo_footer .brand-sub { color: #999; font-size: 11px; letter-spacing: 3px; text-transform: uppercase; }

.information_f p { margin-bottom: 10px; line-height: 1.6; font-size: 14px; color: #999; }

.widget_menu h3 {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: #ffffff;
}

.widget_menu ul { list-style: none; padding: 0; margin: 0; }

.widget_menu ul li { float: left; width: 100%; }

.widget_menu ul li a {
    font-size: 14px;
    color: #999;
    margin-bottom: 0;
    float: left;
    width: 100%;
    margin-top: 8px;
    transition: color 0.3s;
}

.widget_menu ul li a:hover { color: var(--coffee-light); }

.form_sub { position: relative; }

.form_sub .field { display: flex; }

.form_sub .field input[type="email"] {
    padding: 12px 15px;
    border: 1px solid #444;
    font-size: 14px;
    width: 100%;
    height: 46px;
    background: #2a2a2a;
    color: #fff;
    border-radius: 0;
    box-shadow: none;
}

.form_sub .field input[type="submit"] {
    position: relative;
    background: var(--coffee-mid);
    color: #fff;
    border: none;
    font-size: 13px;
    height: 46px;
    font-weight: 600;
    padding: 0 15px;
    white-space: nowrap;
    cursor: pointer;
    transition: background 0.3s;
}

.form_sub .field input[type="submit"]:hover { background: var(--coffee-dark); }

.cpy_ {
    background: #111;
    text-align: center;
    padding: 18px 0;
}

.cpy_ p { margin: 0; color: #888; font-size: 14px; }
.cpy_ p a { color: var(--coffee-light); }

li.nav-item ul {
    background: #fff;
    border: solid #000 2px;
    border-radius: 0;
    padding: 10px 20px;
    margin-left: 10px;
    margin-top: 10px;
    box-shadow: 4px 4px 0px 0 #000;
    width: 190px;
}

li.nav-item ul li { float: left; width: 100%; margin: 6px 0; }

li.nav-item ul li a { color: #212529; font-size: 16px; font-weight: 500; transition: ease all 0.5s; }

li.nav-item ul li a:hover, li.nav-item ul li a:focus { color: var(--coffee-mid); }

.inner_page_head {
    background: var(--coffee-dark);
    text-align: center;
    color: #fff;
    padding: 50px 0 40px;
}

.inner_page_head h3 { font-size: 42px; font-weight: 800; font-family: 'Playfair Display', serif; }

form input {
    background: #fff;
    border: solid #ccc 1px;
    padding: 13px 15px;
    width: 100%;
    font-size: 14px;
    margin-bottom: 18px;
    line-height: normal;
}

form textarea {
    background: #fff;
    border: solid #ccc 1px;
    padding: 13px 15px;
    width: 100%;
    min-height: 130px;
    font-size: 14px;
    margin-bottom: 18px;
    line-height: normal;
}

form input[type="submit"] {
    border: none;
    padding: 13px 45px;
    width: auto;
    font-size: 15px;
    margin: 0 auto;
    display: flex;
    background: var(--coffee-dark);
    color: #fff;
    font-weight: 600;
    transition: ease all 0.2s;
    cursor: pointer;
}

form input[type="submit"]:hover { background: var(--coffee-mid); }

.shop_filter_section { background: #f8faf9; padding: 20px 0 0; }

.filter-btn {
    display: inline-block;
    padding: 8px 20px;
    border: 2px solid #ddd;
    color: #555;
    font-size: 13px;
    font-weight: 600;
    border-radius: 30px;
    margin: 5px;
    cursor: pointer;
    transition: all 0.3s;
    background: #fff;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--coffee-dark);
    border-color: var(--coffee-dark);
    color: #fff;
}

.search-box { position: relative; }

.search-box input {
    padding: 12px 45px 12px 15px;
    border: 1px solid #ddd;
    width: 100%;
    font-size: 14px;
    margin: 0;
    border-radius: 3px;
}

.search-box button {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    padding: 0 15px;
    background: var(--coffee-mid);
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 0 3px 3px 0;
}

.detail-produk .main-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 4px;
}

.detail-produk .harga-detail {
    font-size: 32px;
    font-weight: 700;
    color: var(--coffee-dark);
    margin: 10px 0 15px;
}

.detail-produk .stok-info {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.stok-ada { background: #d8f3dc; color: var(--coffee-dark); }
.stok-habis { background: #ffebee; color: #c62828; }

.btn-beli {
    display: inline-block;
    padding: 14px 40px;
    background: var(--coffee-dark);
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--coffee-dark);
    border-radius: 3px;
    transition: all 0.3s;
    cursor: pointer;
    font-size: 14px;
    width: 100%;
    text-align: center;
}

.btn-beli:hover {
    background: transparent;
    color: var(--coffee-dark);
}

.checkout-box {
    background: #f8faf9;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 25px;
}

.checkout-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #e8e8e8;
    font-size: 14px;
}

.checkout-total {
    display: flex;
    justify-content: space-between;
    padding: 15px 0 0;
    font-weight: 700;
    font-size: 18px;
    color: var(--coffee-dark);
}

.alert-kopi {
    padding: 12px 18px;
    border-radius: 4px;
    font-size: 14px;
    margin-bottom: 20px;
}

.alert-success-kopi { background: #f3edd8; color: var(--coffee-dark); border: 1px solid var(--coffee-light); }
.alert-error-kopi { background: #ffebee; color: #c62828; border: 1px solid #ffcdd2; }

.tentang_section { padding: 70px 0; }

.tentang_section .about-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 4px;
}

.kontak_section { padding: 70px 0; }

.kontak_info {
    background: var(--coffee-pale);
    padding: 30px;
    border-radius: 4px;
    height: 100%;
}

.kontak_info h5 { font-weight: 700; color: var(--coffee-dark); margin-bottom: 20px; }

.kontak_info p { font-size: 14px; color: #555; margin-bottom: 12px; }

.kontak_info i { color: var(--coffee-mid); width: 20px; margin-right: 8px; }

.auth-section { min-height: 100vh; display: flex; align-items: center; padding: 80px 0; background: #f8faf9; }

.auth-box {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 40px;
    max-width: 450px;
    margin: 0 auto;
}

.auth-box h3 {
    font-family: 'Playfair Display', serif;
    color: var(--coffee-dark);
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
}

.auth-box .auth-link { text-align: center; margin-top: 20px; font-size: 14px; }
.auth-box .auth-link a { color: var(--coffee-mid); font-weight: 600; }

.form-label { font-size: 13px; font-weight: 600; color: #555; margin-bottom: 5px; }

.form-control {
    border: 1px solid #ddd;
    border-radius: 3px;
    padding: 10px 14px;
    font-size: 14px;
    width: 100%;
    margin-bottom: 18px;
    box-shadow: none;
    transition: border-color 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--coffee-mid);
    box-shadow: 0 0 0 3px rgba(64,145,108,0.1);
}

.btn-kopi {
    display: block;
    width: 100%;
    padding: 13px;
    background: var(--coffee-dark);
    color: #fff;
    border: none;
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 3px;
    cursor: pointer;
    transition: background 0.3s;
    text-align: center;
}

.btn-kopi:hover { background: var(--coffee-mid); color: #fff; }

.product_section .box .badge-jenis { position: absolute; top: 12px; left: 12px; }

.arrival_section .img-box img {
    width: 100%;
    max-width: 450px;
    display: block;
    margin: auto;
}

.product_section .option_container {
    z-index: 10;
}