.warna1 {
    background-color: #FFCDC9;
}

.warna2 {
    background-color: #ec7b96;
}

.warna3 {
    background-color: #997950;
}

.warna4 {
    background-color: #795C32;
}

.banner {
    min-height: 80vh;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('foto/Background.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.tentang-kami {
    max-width: 600px;
    margin: 40px auto;
    padding: 20px;
    background: linear-gradient(180deg, #f8b8c4, #f3c6cc);
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.tentang-kami h2 {
    font-size: 24px;
    margin-bottom: 30px;
    color: #ffffff;
    letter-spacing: 3px;
}

.tentang-kami p {
    font-size: 16px;
    line-height: 1.8;
    color: #333333;
    text-align: justify;
}

.content-subscribe {
    background-color: rgba(0,0,0,0.7);
}

.banner-produk {
    height: 35vh;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('../Foto/Background.jpg');
    background-position: 50% 20%;
}

.kategori-wrapper {
    background: #fff0f6; 
    padding: 25px;
    border-radius: 20px;
    border: 2px solid #ffb3d9;
}

.kategori-title {
    font-weight: bold;
    color: #141414;
}

.kategori-item {
    text-decoration: none;
}

.kategori-box {
    background: #ffe6f2;
    border-radius: 15px;
    transition: 0.3s;
    border: 1px solid #ffb3d9;
}

.kategori-box h5 {
    color: #b30059;
    font-weight: 600;
    margin: 0;
}

.kategori-item:hover .kategori-box {
    background: #ffb3d9;
    transform: translateY(-5px);
    box-shadow: 0px 8px 18px rgba(0,0,0,0.15);
}

.produk-section {
    padding: 30px;
}

.produk-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #6b4b6d;
    margin-bottom: 25px;
}

.produk-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    width: 90%;
    margin: 0 auto;
}

.card-produk {
    background: #fff;
    border-radius: 18px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform .25s ease, box-shadow .25s ease;
}

.card-produk:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.18);
}

.card-produk img {
    width: 160px;
    height: 160px;
    border-radius: 12px;
    object-fit: cover;
    margin-bottom: 10px;
}

.card-title {
    font-size: 18px;
    font-weight: 600;
}

.card-text {
    max-width: 450px;
    margin: 0 auto;
    text-align: justify;
    line-height: 1.7;      
    font-size: 15px;
    color: #444;
}

.price {
    color: #6b4b6d;
    font-weight: 700;
    margin-bottom: 10px;
}

.btn-detail {
    background: #e8a6c8;
    padding: 8px 14px;
    border-radius: 10px;
    color: white;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
}

.btn-detail:hover {
    background: #d889b5;
}

.detail-text {
    text-align: justify;
    line-height: 1.7;
    font-size: 15px;
    color: #444;
    margin-bottom: 20px;
}

.product-desc {
    max-width: 100px;
    margin: 0 auto;
    text-align: left;
    font-size: 14px;
    line-height: 1.7;
    color: #444;
}

.desc-text {
    margin-bottom: 12px;
}

.desc-list {
    padding-left: 18px;
    margin-bottom: 12px;
}

.desc-list li {
    margin-bottom: 6px;
}