:root {
    --primary-red: #ff0000;
    --primary-green: #28a745;
    /* Standard success green, adjustable */
    --text-dark: #333;
    --text-light: #666;
    --bg-light: #f9f9f9;
    --font-main: 'Inter', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    background-color: #ffffff;
    color: var(--text-dark);
    line-height: 1.5;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}

.text-center {
    text-align: center;
}

/* Header */
.main-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 5px;
    color: #000;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--primary-red);
    font-weight: 700;
    margin-bottom: 20px;
}

/* Product Image */
.product-image-container {
    text-align: center;
    margin-bottom: 30px;
}

.product-img {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
}

/* Pricing Section */
.offer-section {
    margin-bottom: 40px;
    text-align: center;
}

.price-card {
    background: #fff;
    /* Box shadow to lift it slightly if needed, purely optional based on screenshot style, clean is better */
    padding: 10px;
}

.savings-badge {
    color: var(--primary-red);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.price-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 5px;
}

.old-price {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 1.2rem;
}

.new-price {
    color: #000;
    font-size: 2.5rem;
    font-weight: 800;
}

.price-label {
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.total-price-box {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding: 10px;
    border: 2px dashed #ccc;
    /* Optional styling to highlight structure */
    display: inline-block;
    border-radius: 8px;
    background-color: #f8f8f8;
}

.features-list {
    list-style: none;
    margin-bottom: 25px;
    font-size: 1rem;
    color: #444;
}

.features-list li {
    margin-bottom: 8px;
}

.features-list li:before {
    /* Optional checkmark */
    content: "✓";
    color: var(--primary-green);
    margin-right: 5px;
    font-weight: bold;
}

.cta-button {
    display: block;
    width: 100%;
    background-color: var(--primary-green);
    color: white;
    text-decoration: none;
    padding: 15px 0;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 5px;
    transition: background-color 0.3s;
    text-transform: uppercase;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    background-color: #218838;
}

/* Testimonials */
.testimonials-section {
    margin-top: 40px;
    border-top: 1px solid #eee;
    padding-top: 30px;
}

.testimonials-title {
    text-align: center;
    font-size: 1rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.divider {
    height: 2px;
    width: 50px;
    background-color: #eee;
    margin: 0 auto 30px auto;
}

.review-card {
    background-color: #fbfbfb;
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 8px;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    background-color: #ddd;
    border-radius: 50%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23999"><path d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"/></svg>');
    /* Simple SVG placeholder */
    background-size: cover;
}

.reviewer-name {
    font-weight: 700;
    color: var(--primary-green);
}

.verified-badge {
    font-size: 0.8rem;
    color: #888;
}

.star-rating {
    margin-bottom: 10px;
    color: #ffc107;
}

.review-headline {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
}

.review-text {
    font-style: italic;
    color: #555;
    font-size: 0.95rem;
}

.footer-simple {
    margin-top: 50px;
    padding-bottom: 20px;
    color: #999;
    font-size: 0.8rem;
}

.footer-nav {
    margin-bottom: 10px;
}

.footer-nav a {
    color: #999;
    text-decoration: none;
    margin: 0 5px;
    transition: color 0.2s;
}

.footer-nav a:hover {
    color: #666;
    text-decoration: underline;
}