:root {
    --primary-color: #ffd700;
    /* Yellow */
    --primary-hover: #e6c200;
    --secondary-color: #000000;
    /* Black */
    --accent-color: #333333;
    --bg-light: #f9f9f9;
    --bg-dark: #121212;
    --text-color: #1a1a1a;
    --text-light: #ffffff;
    --success-color: #28a745;
    --yellow-text: #000000;
    --border-radius: 12px;
    --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    margin: 0;
    padding: 0;
    background-color: #ffffff;
}

h1,
h2,
h3,
h4 {
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header */
.header {
    background-color: #ffffff;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    letter-spacing: -0.5px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--yellow-text);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: #ffffff;
}

.btn-secondary:hover {
    background-color: #333;
    transform: translateY(-2px);
}

.compact {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.large {
    font-size: 1.2rem;
    padding: 15px 40px;
    width: 100%;
    max-width: 400px;
}

/* Hero Section */
.hero {
    padding: 60px 0;
    background: radial-gradient(circle at top right, #fffdf0 0%, #ffffff 100%);
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: flex-start;
    /* Changed from center to align text top */
}

.hero-header {
    grid-column: 1 / -1;
    text-align: center;
    margin-bottom: 30px;
}

.hero-header h1 {
    font-size: 3.5rem;
    /* Increased size for impact */
    margin-bottom: 10px;
    color: var(--secondary-color);
    line-height: 1.1;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 0.95rem;
    font-weight: 500;
}

.badge {
    display: inline-block;
    background-color: var(--secondary-color);
    color: #fff;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.hero-description {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 25px;
}

.hero-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.hero-benefits li {
    margin-bottom: 10px;
    font-weight: 500;
}

.hero-image {
    position: relative;
    text-align: center;
}

.product-shot {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.15));
    transform: scale(1.15);
    /* Increased size as requested */
    transform-origin: center;
}

.trust-badge {
    background: white;
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    margin-top: 20px;
}

.shipping-note {
    font-size: 0.9rem;
    color: #666;
    margin-top: 10px;
    text-align: center;
}

/* Info Section */
.light-bg {
    background-color: var(--bg-light);
    padding: 80px 0;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.info-block p {
    margin-bottom: 20px;
    color: #444;
}

.specs-box {
    background: white;
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-top: 20px;
}

.specs-box ul {
    list-style: none;
    padding: 0;
}

.specs-box li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.specs-box li:last-child {
    border-bottom: none;
}

/* Steps */
.steps {
    margin-top: 30px;
}

.step {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.step-num {
    background: var(--primary-color);
    color: var(--yellow-text);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    margin: 0 0 5px 0;
}

.step-content p {
    margin: 0;
    font-size: 0.95rem;
}

/* Features Dark */
.dark-bg {
    background-color: var(--bg-dark);
    color: white;
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: var(--border-radius);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* Ingredients */
.ingredients-section {
    padding: 80px 0;
}

.ingredients-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 40px 0;
    text-align: left;
}

.benefits-list li {
    background: #fff;
    border: 1px solid #eee;
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefits-list li::before {
    content: "✓";
    color: var(--success-color);
    font-weight: bold;
}

.badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.badge-pill {
    background: #f0f0f0;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Reviews */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.review-card {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #ddd;
    /* fallback */
    background-size: cover;
    background-position: center;
}

.generic-avatar-m {
    background-color: #b0c4de;
}

.generic-avatar-w {
    background-color: #dda0dd;
}


.reviewer-info h4 {
    margin: 0;
    font-size: 1rem;
}

.quote {
    font-style: italic;
    color: #555;
}

/* Pricing */
.pricing-section {
    padding: 80px 0;
    background-color: #fff;
}

.subheader {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 50px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    align-items: center;
}

.package-card {
    border: 1px solid #e1e4e8;
    border-radius: var(--border-radius);
    padding: 50px 30px 90px;
    /* Added bottom padding for button spacing */
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.package-card.popular {
    border: 3px solid var(--primary-color);
    background: #fff;
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.package-image {
    max-width: 140px;
    height: auto;
    margin: 10px auto 20px;
    display: block;
}

.popular-ribbon {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--yellow-text);
    padding: 5px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    white-space: nowrap;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 20px 0;
    color: var(--secondary-color);
}

.savings {
    color: var(--success-color);
    font-weight: 600;
    margin-bottom: 20px;
}

.package-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    text-align: left;
    width: 100%;
}

.package-features li {
    padding: 10px 0;
    border-bottom: 1px solid #f9f9f9;
}

.package-features li:last-child {
    border-bottom: none;
}

.full-width {
    width: 80% !important;
    /* Force width to sit nicely */
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

/* FAQ */
.faq-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.faq-item h4 {
    margin-bottom: 10px;
}

.faq-item p {
    font-size: 0.95rem;
    color: #555;
    margin: 0;
}

/* Footer */
.footer {
    background-color: var(--secondary-color);
    color: #aaa;
    padding: 50px 0;
    text-align: center;
}

.footer-links {
    margin-bottom: 30px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.disclaimer-text {
    font-size: 0.75rem;
    margin-top: 30px;
    color: #666;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.text-center {
    text-align: center;
}

@media (max-width: 768px) {
    .container {
        width: 95%;
        max-width: 100%;
    }

    .hero-content,
    .grid-2 {
        grid-template-columns: 1fr;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .header .container {
        flex-direction: column;
        gap: 15px;
    }

    .package-card.popular {
        transform: scale(1);
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}