.gambar{
    display: block;
    max-width: 100%;
    height: auto; 
    object-fit: cover;
    width: 100%; 
    border-radius: 0rem; 
    margin-top: 0rem; 
    margin-bottom: 0rem; 
    box-shadow: 0 0px 0px rgba(0,0,0,0.1);
}

body {
    font-family: 'Rubik', sans-serif;
    padding: 1rem;
    line-height: 1.6;
    background-color: #fff;
    margin: 0;
    text-align: center;
}

.container {
    background-color: white;
    padding: 3rem;
    border-radius: 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: auto;
    animation: fadeIn 1s ease-in-out;
}

.logo {
    max-width: 280px;
    margin-bottom: 1.5rem;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.badge {
    background: transparent;
    padding: 0.2rem;
}

.badge img {
    width: 130px;
    height: auto;
}

.badge.bpom p,
.badge.halal p {
    margin-top: 0.3rem;
    font-size: 0.85rem;
    font-weight: bold;
    color: #d63384;
}

h1 {
    font-family: 'Rubik', sans-serif;
    font-size: 2.2rem;
    color: #d63384;
    margin-bottom: 0.5rem;
}

.moto {
    font-size: 1.2rem;
    font-style: italic;
    color: #b35b7a;
    margin-bottom: 2rem;
}

p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

a.whatsapp-link,
.cta-button,
.floating-wa {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(90deg, #00e676, #00c853);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.05rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    animation: pulse 2s infinite;
}

a.whatsapp-link:hover,
.cta-button:hover,
.floating-wa:hover {
    transform: scale(1.07);
}

.floating-wa {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 0.8rem 1.2rem;
    z-index: 1000;
    background: linear-gradient(90deg, #00e676, #00c853);
    color: white;
    border-radius: 50px;
    font-weight: bold;
    display: none;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.floating-wa.show {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.floating-wa img {
    width: 24px;
}

.floating-wa span {
    color: white;
    font-weight: bold;
    margin-left: 0.5rem;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.toast {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(-20px);
    background-color: #d63384;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.95rem;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease, transform 0.5s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

@media (max-width: 480px) {
    html, body {
        margin: 0;
        padding: 0;
        width: 100%;
        overflow-x: hidden;
    }
    .container {
        border-radius: 0;
        box-shadow: none;
        padding: 0;
        max-width: 100vw;
        width: 100vw;
    }
    .logo {
        max-width: 180px;
    }
    h1 {
        font-size: 1.8rem;
    }
    .moto {
        font-size: 1rem;
    }
    p {
        font-size: 1rem;
    }
    .badge img {
        width: 70px;
    }
    .badges {
        gap: 0.4rem;
        justify-content: space-around;
    }
    a.whatsapp-link,
    .cta-button,
    .floating-wa {
        padding: 0.8rem 1rem;
        font-size: 0.95rem;
    }
} 

.carousel {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin-top: 2rem;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel img {
    width: 100%;
    flex-shrink: 0;
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.3);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    border-radius: 0.3rem;
}

.carousel-button.prev {
    left: 10px;
}

.carousel-button.next {
    right: 10px;
}

.carousel-button:hover {
    background: rgba(0,0,0,0.5);
}