:root {
    --bg-color: #f9fafb;
    --text-main: #111827;
    --text-muted: #4b5563;
    --cta-color: #ff4500;
    --cta-hover: #e03e00;
    --white: #ffffff;
    --border-color: #e5e7eb;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Tajawal', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.5;
}

.container {
    max-width: 800px; /* Thinner container for better mobile/DTC feel */
    margin: 0 auto;
    padding: 0 15px;
}

/* Announcement Bar */
.announcement-bar {
    background-color: #000000;
    color: var(--white);
    text-align: center;
    padding: 10px;
    font-size: 14px;
    font-weight: 700;
}

/* Hero Section */
.hero-section {
    background-color: var(--white);
    padding: 30px 0;
    border-bottom: 1px solid var(--border-color);
}

.hero-container {
    display: flex;
    flex-direction: column;
}

.hero-image {
    width: 100%;
    margin-bottom: 20px;
}

.product-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.hero-content {
    text-align: center;
}

.headline {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--text-main);
    line-height: 1.4;
}

.sub-headline {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.price-tag {
    margin-bottom: 20px;
}

.old-price {
    text-decoration: line-through;
    color: #9ca3af;
    font-size: 18px;
    margin-left: 10px;
}

.new-price {
    color: #b91c1c;
    font-size: 28px;
    font-weight: 800;
}

.cta-button {
    display: block;
    width: 100%;
    background-color: var(--cta-color);
    color: var(--white);
    text-align: center;
    padding: 15px;
    font-size: 18px;
    font-weight: 800;
    text-decoration: none;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    margin-bottom: 10px;
}

.cta-button:hover {
    background-color: var(--cta-hover);
}

/* Benefits Section */
.benefits-section {
    padding: 40px 0;
    background-color: var(--white);
    margin-top: 10px;
}

.section-title {
    text-align: center;
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 25px;
}

.benefits-list {
    list-style: none;
    max-width: 600px;
    margin: 0 auto;
}

.benefits-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 16px;
    color: var(--text-main);
}

.benefits-list li:last-child {
    border-bottom: none;
}

.check-icon {
    color: #16a34a;
    font-weight: bold;
    margin-left: 8px;
}

.highlight {
    background-color: #fefce8;
    padding: 12px;
    border-radius: 4px;
    border: 1px solid #fef08a !important;
    margin-top: 10px;
}

/* Trust Section */
.trust-section {
    padding: 30px 0;
    background-color: var(--bg-color);
}

.features-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.feature {
    text-align: center;
    background: var(--white);
    padding: 15px;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    flex: 1;
    max-width: 200px;
}

.feature-icon {
    font-size: 24px;
    margin-bottom: 5px;
}

.feature-text {
    font-size: 14px;
    font-weight: 700;
}

.review-box {
    background-color: var(--white);
    padding: 20px;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.stars {
    color: #fbbf24;
    font-size: 20px;
    margin-bottom: 10px;
}

.review-text {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
}

.reviewer {
    color: var(--text-muted);
    font-size: 14px;
}

/* Form Section */
.form-section {
    padding: 40px 0;
    background-color: var(--white);
}

.form-container {
    max-width: 500px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 30px 20px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.form-title {
    text-align: center;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #ff7f50;
}

/* Bundle Options */
.bundle-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.bundle-option {
    display: flex;
    align-items: center;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 15px;
    cursor: pointer;
    background: var(--white);
    position: relative;
    transition: all 0.2s;
}

.bundle-option:has(input:checked) {
    border-color: #ff7f50;
    background: #fff8f5;
}

.bundle-option input[type="radio"] {
    margin-left: 15px;
    width: 20px;
    height: 20px;
    accent-color: #ff7f50;
}

.bundle-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
}

.bundle-info {
    display: flex;
    flex-direction: column;
}

.bundle-title {
    font-weight: 800;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-main);
}

.badge {
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 12px;
    color: white;
}

.badge-dark {
    background: #333;
}

.badge-orange {
    background: #ff7f50;
}

.bundle-desc {
    font-size: 12px;
    color: var(--text-muted);
}

.bundle-price {
    font-weight: 800;
    font-size: 18px;
    color: var(--text-main);
}

.bundle-price-group {
    text-align: left;
}

.old-bundle-price {
    text-decoration: line-through;
    color: #9ca3af;
    font-size: 12px;
    display: block;
}

.bundle-option.recommended {
    border-color: #ff7f50;
}

.recommended-badge {
    position: absolute;
    top: -12px;
    left: 20px;
    background: #ff7f50;
    color: white;
    font-size: 12px;
    padding: 2px 10px;
    border-radius: 12px;
    font-weight: bold;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 700;
    font-size: 14px;
    color: #ff7f50;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    background-color: #fff5f0;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    box-shadow: 0 0 0 2px #ffb396;
}

.form-group textarea {
    height: 100px;
    resize: vertical;
}

.submit-btn.orange-btn {
    width: 100%;
    background-color: #ff7f50;
    color: var(--white);
    padding: 15px;
    font-size: 18px;
    font-weight: 800;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: background-color 0.2s;
}

.submit-btn.orange-btn:hover {
    background-color: #e66a3d;
}



/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background-color: #111827;
    color: #9ca3af;
    font-size: 14px;
}

@media (min-width: 768px) {
    .hero-container {
        flex-direction: row-reverse;
        align-items: center;
        gap: 40px;
    }
    
    .hero-image {
        flex: 1;
        margin-bottom: 0;
    }
    
    .hero-content {
        flex: 1;
        text-align: right;
    }
    
    .cta-button {
        display: inline-block;
    }
}
