*{margin:0;padding:0;box-sizing:border-box;}

body{
    font-family:'Inter',sans-serif;
    background:#f4faf5;
    color:#1f2937;
    line-height:1.6;
}

/* HERO */
.hero{
    padding:4rem 1.5rem 3rem;
    text-align:center;
    background:linear-gradient(180deg,#e8f5e9 0%,#f4faf5 100%);
}

.hero h1{
    font-size:1.8rem;
    font-weight:700;
    color:#1b5e20;
    margin-bottom:1rem;
}

.hero p{
    font-size:0.95rem;
    color:#4b5563;
    margin-bottom:1.5rem;
}

/* PROMO */
.promo-container {
    margin-top: 15px;
}
.promo-input {
    padding: 8px 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-family: inherit;
}
.promo-btn {
    padding: 8px 16px;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    margin-left: 5px;
}
#promoMessage {
    font-size: 12px;
    margin-top: 8px;
}

/* SOCIAL ICONS */
.hero-social {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: 25px;
}

.hero-social img {
    width: 20px;
    height: 20px;
    opacity: 0.7;
    transition: 0.2s ease;
}

.hero-social img:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* CONTAINER */
.container{
    max-width:480px;
    margin:0 auto;
    padding:0 1rem 3rem;
}

.section-title{
    text-align:center;
    margin:2rem 0 1.5rem;
    font-weight:700;
    font-size:1rem;
    color:#1b5e20;
}

/* PRICE DESAIN */
.price-original {
    text-decoration: line-through;
    color: #9ca3af;
    font-size: 0.75rem;
    margin-right: 5px;
    font-weight: 400;
}
.discount-label {
    background-color: #ff8a00;
    color: white;
    font-size: 0.7rem;
    padding: 2px 4px;
    border-radius: 3px;
    margin-left: 5px;
    font-weight: 600;
}
.price-discounted {
    color: #ee4d2d;
    font-weight: 700;
}

/* GRID */
.grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:1rem;
}

.card{
    background:white;
    border-radius:14px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,0.05);
    display:flex;
    flex-direction:column;
}

.card img{
    width:100%;
    height:150px;
    object-fit:cover;
}

.card-content{
    padding:0.9rem;
    text-align:left;
    display:flex;
    flex-direction:column;
    flex-grow:1;
}

.card h3{
    font-size:0.85rem;
    margin-bottom:0.3rem;
}

.price{
    color:#4CAF50;
    font-weight:700;
    margin-bottom:0;
    font-size:0.85rem;
    margin-top:auto;
}

.btn{
    display:inline-block;
    background:#4CAF50;
    color:white;
    padding:0.4rem 0.8rem;
    border-radius:6px;
    font-size:0.7rem;
    text-decoration:none;
    border: none;
    outline: none;
}

/* FLOAT WA */
.floating-wa{
    position:fixed;
    bottom:20px;
    right:20px;
    background:#25D366;
    color:white;
    padding:0.8rem 1rem;
    border-radius:50px;
    font-size:0.75rem;
    font-weight:600;
    text-decoration:none;
    box-shadow:0 8px 20px rgba(0,0,0,0.2);
}
.review-wrapper {
    overflow: hidden;
    margin: 30px 0 10px;
}

.review-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scrollLeft 20s linear infinite;
}

.review-item {
    min-width: 220px;
    background: #ffffff;
    padding: 15px 18px;
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.05);
    text-align: left;
}

.stars {
    color: #2e7d32;
    font-size: 16px;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 6px;
}

.review-item p {
    font-size: 13px;
    color: #444;
    line-height: 1.4;
}

.stars {
    color: #FFC107; /* kuning emas */
    font-size: 16px;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 6px;
}

.reviewer {
    font-size: 12px;
    color: #2e7d32;
    font-weight: 600;
    margin-top: 8px;
}

.footer {
    background: #f5f7f6;
    padding: 40px 20px 20px;
    margin-top: 60px;
    border-top: 1px solid #e0e0e0;
}

.footer-brand p {
    font-size: 13px;
    color: #666;
    margin-bottom: 20px;
}

.footer-bottom {
    text-align: center;
    font-size: 12px;
    color: #888;
    border-top: 1px solid #e5e5e5;
    padding-top: 15px;
    padding-bottom: 15px;
}

/* MODAL */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    justify-content: center;
    align-items: center;
    padding: 1rem;
    z-index: 999;
}

.modal-content {
    background: white;
    width: 100%;
    max-width: 400px;
    border-radius: 16px;
    padding: 1.5rem;
    position: relative;
    animation: fadeIn 0.2s ease;
}

.modal-content img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.modal-content h3 {
    margin-bottom: 0.5rem;
}

.modal-content p {
    font-size: 0.85rem;
    color: #555;
    margin-bottom: 1rem;
}

.close-modal {
    position: absolute;
    top: 12px;
    right: 15px;
    font-size: 18px;
    cursor: pointer;
    font-weight: bold;
}

.promo-banner {
  background-color: #ff9950;
  color: #ffffff;
  text-align: center;
  padding: 10px 40px 10px 20px;
  font-size: 14px;
  position: relative;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: 'Inter', sans-serif;
}
.close-banner {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 20px;
  font-weight: bold;
}

.modal-form-group { margin-bottom: 15px; text-align: left; }
.modal-form-group input, .modal-form-group textarea { width: 100%; padding: 10px; margin-top: 5px; border: 1px solid #ccc; border-radius: 6px; box-sizing: border-box; font-family: 'Inter', sans-serif; }
.payment-options { display: flex; flex-direction: column; gap: 12px; margin: 20px 0; }
.payment-option { display: flex; align-items: center; gap: 15px; padding: 12px; border: 1px solid #e0e0e0; border-radius: 8px; cursor: pointer; transition: 0.2s; }
.payment-option input { cursor: pointer; }
.payment-option img { max-height: 24px; object-fit: contain; }
.payment-option span { font-weight: 500; font-size: 14px; }
#btnPesanSekarang { display: inline-block; width: 50%; text-align: center; cursor: pointer; border: none; }

@keyframes fadeIn {
    from {opacity:0; transform:scale(0.95);}
    to {opacity:1; transform:scale(1);}
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}