.product-offer {
    font-family: Arial, sans-serif;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}
h1 {
    color: #2e7d32;
    font-size: 28px;
    margin-bottom: 20px;
}
h2 {
    color: #1b5e20;
    font-size: 22px;
    margin-top: 30px;
}
.buy-button {
    display: inline-block;
    background-color: #f57224;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    margin: 15px 0;
    transition: background-color 0.3s;
}
.buy-button:hover {
    background-color: #e65100;
}
table {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
}
table tr td {
    padding: 8px;
    border-bottom: 1px solid #ddd;
}
ul, ol {
    padding-left: 20px;
}
li {
    margin-bottom: 8px;
}
.cta-section, .final-cta {
    background-color: #f1f8e9;
    padding: 15px;
    border-radius: 5px;
    text-align: center;
    margin: 20px 0;
}
.product-video {
    margin: 20px 0;
    text-align: center;
}
.customer-testimonials {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin: 25px 0;
}
.testimonial {
    background-color: white;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.testimonial-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
}
.testimonial-rating {
    color: #ffc107;
}
.testimonial-content {
    font-size: 15px;
}
.benefits-section {
    background-color: #e8f5e9;
    padding: 20px;
    border-radius: 8px;
    margin: 25px 0;
}
.benefits-section ol {
    padding-left: 25px;
}
.benefits-section li {
    margin-bottom: 12px;
}

/* Gaya untuk Tab Harga Mini */
.price-tabs-section {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
    border: 1px solid #e0e0e0;
}

.price-tabs {
    display: flex;
    margin-bottom: 15px;
    border-bottom: 1px solid #ddd;
}

.tab-button {
    padding: 8px 15px;
    background-color: #f1f8e9;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    border-radius: 4px 4px 0 0;
    margin-right: 5px;
    transition: all 0.3s;
    flex: 1;
}

.tab-button.active {
    background-color: #4caf50;
    color: white;
}

.tab-button:hover:not(.active) {
    background-color: #e8f5e9;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.price-info {
    text-align: center;
    padding: 10px 0;
}

.price-display {
    margin: 10px 0;
}

.original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 14px;
    margin-right: 8px;
}

.discounted-price {
    color: #e53935;
    font-size: 18px;
    font-weight: bold;
}

.price-description {
    color: #666;
    margin-bottom: 15px;
    font-size: 13px;
}

.shopee-button {
    background-color: #f57224;
    padding: 8px 15px;
    font-size: 14px;
    color: white!important;
}

.shopee-button:hover {
    background-color: #e65100;
}

.tiktok-button {
    background-color: #000000;
    padding: 8px 15px;
    font-size: 14px;
}

.tiktok-button:hover {
    background-color: #333333;
}

.platform-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 10px;
}

.platform-buttons .buy-button {
    flex: 1;
    max-width: 150px;
    text-align: center;
}