/* Sales Page Styles */
.sales-page {
    text-align: left;
    padding: 0 10px;
}

.sales-title {
    font-size: 24px;
    font-weight: 800;
    line-height: 1.3;
    color: #000;
    margin-bottom: 24px;
    text-align: left;
}

.sales-title .highlight {
    font-style: italic;
    /* Or adjust based on exact aesthetic */
}

.sales-text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.benefit-box {
    margin-bottom: 24px;
}

.benefit-title {
    font-size: 18px;
    font-weight: 800;
    color: #000;
    margin-bottom: 8px;
}

.benefit-text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.highlight-text {
    color: #C68E17;
    /* Or dominant color */
    font-weight: 700;
}

.cta-btn {
    background-color: #1FAF58;
    /* Green color from image */
    color: #fff;
    margin-top: 30px;
    box-shadow: 0 4px 0px #157a3e;
    /* Button depth */
}

.cta-btn:hover {
    background-color: #179b4b;
    transform: translateY(-2px);
    box-shadow: 0 6px 0px #157a3e;
    animation: none;
    /* Override pulse if needed, or keep it */
}

.cta-btn:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0px #157a3e;
}

/* Offer Page Styles */
.offer-page {
    text-align: center;
    padding-bottom: 40px;
}

.offer-header {
    margin-bottom: 20px;
}

.main-offer-title {
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
    color: #000;
    line-height: 1.2;
    margin-bottom: 8px;
}

.offer-subtitle {
    font-size: 12px;
    color: #555;
    font-style: italic;
}

.section-title {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 10px;
    text-transform: uppercase;
    color: #000;
}

/* Yellow Box */
.yellow-box {
    background-color: #FFF9C4;
    /* Light Yellow */
    border: 2px solid #FBC02D;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
    text-align: left;
}

.box-title {
    font-weight: 800;
    font-size: 16px;
    margin-bottom: 12px;
    display: block;
}

.check-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    margin-bottom: 8px;
    font-size: 14px;
    display: flex;
    align-items: flex-start;
    line-height: 1.4;
}

.check-list li strong {
    margin-right: 4px;
}

.check-list li::before {
    content: "✔️";
    margin-right: 8px;
    color: var(--primary-color);
    flex-shrink: 0;
}

/* Green Box */
.green-box {
    background-color: #E8F5E9;
    /* Light Green */
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
    text-align: left;
}

.green-box .check-list li::before {
    content: "👉";
    margin-right: 8px;
}

/* Price Section */
.price-section {
    margin: 30px 0;
}

.price-label {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    display: block;
}

.old-price {
    text-decoration: line-through;
    color: #e53935;
    font-size: 14px;
    margin-right: 8px;
}

.new-price {
    font-size: 36px;
    font-weight: 900;
    color: #2E7D32;
    /* Green */
}

.whatsapp-note {
    font-size: 10px;
    background: #FFEB3B;
    padding: 2px 6px;
    border-radius: 4px;
    display: inline-block;
    margin-top: 8px;
    font-weight: 700;
}

/* Red Button */
.red-btn {
    background-color: #D32F2f;
    color: white;
    font-weight: 700;
    padding: 20px;
    border-radius: 12px;
    width: 100%;
    border: none;
    font-size: 16px;
    text-transform: uppercase;
    box-shadow: 0 4px 0 #b71c1c;
    cursor: pointer;
    margin: 20px 0;
    animation: pulse 2s infinite;
}

.red-btn:hover {
    background-color: #c62828;
    transform: translateY(-2px);
    box-shadow: 0 6px 0 #b71c1c;
}

/* Bonus Section */
.bonus-section {
    background-color: #E0F2F1;
    border: 1px dashed #009688;
    border-radius: 12px;
    padding: 20px;
    text-align: left;
    margin-bottom: 30px;
}

.bonus-item {
    margin-bottom: 16px;
}

.bonus-title {
    font-weight: 800;
    color: #00796B;
    display: block;
    margin-bottom: 4px;
    font-size: 14px;
}

.bonus-desc {
    font-size: 13px;
    color: #555;
    line-height: 1.4;
}

/* Mini Product Card */
.mini-product-card {
    background: #fff;
    border: 1px solid #eee;
    padding: 15px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.mini-info h4 {
    font-size: 14px;
    font-weight: 700;
}

.mini-price {
    text-align: right;
}

.mini-price .old {
    font-size: 10px;
    text-decoration: line-through;
    display: block;
    color: #999;
}

.mini-price .new {
    font-size: 18px;
    font-weight: 800;
    color: #000;
}

/* Preview Image Placeholder */
.preview-container {
    background: #fff;
    padding: 5px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 30px;
}

.preview-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

/* Testimonials */
.testimonial-card {
    background: #FFFDE7;
    padding: 20px;
    border-radius: 12px;
    text-align: left;
    margin-bottom: 16px;
    border: 1px solid #FFF59D;
}

.stars {
    color: #FFC107;
    margin-bottom: 8px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 14px;
    font-style: italic;
    margin-bottom: 12px;
    line-height: 1.5;
}

.user-name {
    font-weight: 800;
    font-size: 14px;
    display: block;
}

.user-meta {
    font-size: 11px;
    color: #777;
    margin-bottom: 8px;
    display: block;
}

/* Footer Guarantee */
.guarantee-section {
    margin-top: 40px;
    margin-bottom: 40px;
    text-align: center;
}

.guarantee-title {
    font-weight: 900;
    text-transform: uppercase;
    font-size: 14px;
    display: block;
    margin-bottom: 8px;
}

.guarantee-text {
    font-size: 12px;
    color: #666;
    line-height: 1.5;
}