/* ========================================
   Global Styles & Variables
   ======================================== */
:root {
    --color-primary: #f59e0b;
    --color-accent: #16a34a;
    --color-dark: #222222;
    --color-white: #ffffff;
    --color-light-gray: #f8f9fa;
    --color-soft-gray: #eef1f4;
    --color-medium-gray: #6c757d;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    color: var(--color-dark);
    line-height: 1.6;
    background: var(--color-white);
    overflow-x: hidden;
}

a {
    color: inherit;
}

a:hover {
    color: var(--color-primary);
}

/* ========================================
   Buttons & Utilities
   ======================================== */
.btn-primary {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #d97706;
    border-color: #d97706;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(245, 158, 11, 0.35);
}

.btn-outline-primary {
    border-color: var(--color-primary);
    color: var(--color-primary);
    font-weight: 500;
}

.btn-outline-primary:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
}

.text-primary {
    color: var(--color-primary) !important;
}

.bg-primary {
    background-color: var(--color-primary) !important;
}

.section-eyebrow {
    font-size: 0.85rem;
    letter-spacing: 0.16em;
    color: var(--color-primary);
}

/* ========================================
   Header & Navigation
   ======================================== */
.header-fixed {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--color-white);
    box-shadow: 0 2px 8px rgba(34, 34, 34, 0.05);
}

.navbar {
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 1.5rem;
    color: var(--color-dark);
}

.nav-link {
    color: var(--color-dark);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-primary);
}

/* ========================================
   Hero Section (Landing / Why Choose)
   ======================================== */
.hero-section {
    padding: 120px 0 80px;
    background: radial-gradient(circle at 0% 0%, rgba(245, 158, 11, 0.06), transparent 55%),
                radial-gradient(circle at 100% 10%, rgba(22, 163, 74, 0.04), transparent 50%),
                linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.hero-section h1 {
    color: var(--color-dark);
    margin-bottom: 1.5rem;
}

.hero-section .lead {
    color: var(--color-medium-gray);
    font-size: 1.25rem;
}

.hero-visual {
    background: var(--color-white);
    border-radius: 16px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
    padding: 16px;
}

.hero-visual img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* ========================================
   Benefits
   ======================================== */
.benefits-section {
    padding: 80px 0;
}

.benefit-card {
    background: var(--color-white);
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    box-shadow: 0 6px 18px rgba(34, 34, 34, 0.06);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 32px rgba(34, 34, 34, 0.12);
}

.icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary) 0%, #d97706 65%),
                linear-gradient(135deg, var(--color-accent) 0%, var(--color-primary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--color-white);
}

/* ========================================
   Ingredients Cards
   ======================================== */
.ingredients-section {
    padding: 80px 0;
}

.ingredient-card {
    height: 100%;
    transition: transform 0.3s ease;
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(34, 34, 34, 0.05);
    background: var(--color-white);
    padding: 1.5rem;
}

.ingredient-card:hover {
    transform: translateY(-5px);
}

.ingredient-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1rem;
}

/* ========================================
   Testimonials
   ======================================== */
.testimonials-section {
    padding: 80px 0;
}

.testimonial-card {
    background: var(--color-white);
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(34, 34, 34, 0.08);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 26px rgba(34, 34, 34, 0.12);
}

.testimonial-card .avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--color-primary);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.stars i {
    font-size: 1rem;
    color: #fbbf24;
}

/* ========================================
   Reasons / Why Choose cards
   ======================================== */
.reasons-section {
    padding: 80px 0;
}

.reason-card {
    background: var(--color-white);
    border-radius: 20px;
    box-shadow: 0 6px 18px rgba(34, 34, 34, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reason-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 30px rgba(34, 34, 34, 0.12);
}

.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: rgba(245, 158, 11, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
}

/* ========================================
   FAQ
   ======================================== */
.faq-section {
    padding: 80px 0 90px;
}

.faq-item {
    background: var(--color-white);
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(34, 34, 34, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 30px rgba(34, 34, 34, 0.12);
}

.faq-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(245, 158, 11, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 1.4rem;
}

/* ========================================
   Pricing
   ======================================== */
.pricing-section {
    padding: 80px 0;
}

.pricing-card {
    background: var(--color-white);
    border: 2px solid #e9ecef;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 6px 18px rgba(34, 34, 34, 0.06);
}

.pricing-card:hover {
    border-color: var(--color-primary);
    box-shadow: 0 18px 36px rgba(245, 158, 11, 0.2);
    transform: translateY(-10px);
}

.pricing-card.popular {
    border-color: var(--color-primary);
    box-shadow: 0 16px 34px rgba(245, 158, 11, 0.26);
}

.badge-popular {
    position: absolute;
    top: 22px;
    right: -36px;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 6px 42px;
    transform: rotate(45deg);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.price-tag {
    margin: 1rem 0;
}

.price-tag .price {
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--color-primary);
}

.price-tag .period {
    color: var(--color-medium-gray);
    font-size: 1rem;
}

.savings {
    display: inline-block;
    background: #d4edda;
    color: #155724;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 8px;
}

/* ========================================
   CTA
   ======================================== */
.cta-section {
    padding: 90px 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, #d97706 100%);
}

.cta-section p {
    color: rgba(255, 255, 255, 0.85);
}

/* ========================================
   Footer
   ======================================== */
.footer {
    padding: 70px 0 40px;
    background: #101417;
}

.footer h5,
.footer h6 {
    color: var(--color-white);
}

.footer .text-white-50,
.footer .text-white-50 a {
    color: rgba(255, 255, 255, 0.65) !important;
}

.footer .text-white-50 a:hover {
    color: var(--color-primary) !important;
}

/* ========================================
   Product Page
   ======================================== */
.product-hero {
    padding: 120px 0 80px;
}

.product-features {
    margin-top: 2rem;
}

.product-description {
    padding: 80px 0;
}

.list-spaced li {
    margin-bottom: 1rem;
}

.info-box {
    background: var(--color-white);
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(34, 34, 34, 0.08);
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.detailed-ingredients {
    padding: 80px 0;
}

.ingredient-detail {
    background: var(--color-soft-gray);
    border-radius: 16px;
    height: 100%;
}

.ingredient-icon {
    font-size: 2rem;
}

.nutrition-facts {
    padding: 80px 0;
}

.nutrition-label {
    background: var(--color-white);
    border: 2px solid var(--color-dark);
    border-radius: 10px;
    overflow: hidden;
}

.nutrition-header {
    background: var(--color-dark);
    color: var(--color-white);
    padding: 1.5rem;
}

.nutrition-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.nutrition-footer {
    padding: 1rem 1.5rem;
    background: var(--color-light-gray);
}

.full-ingredients-section {
    padding: 120px 0 160px;
    background: var(--color-white);
}

.full-ingredients-section .card {
    margin-bottom: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(34, 34, 34, 0.08);
}

/* ========================================
   Order Page
   ======================================== */
.order-section {
    padding: 120px 0 80px;
}

.order-form-card,
.order-summary-card {
    background: var(--color-white);
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(34, 34, 34, 0.08);
}

.trust-badges .badge {
    font-weight: 600;
}

.package-selection .package-option {
    border: 2px solid #e9ecef;
    border-radius: 16px;
    padding: 1rem;
    transition: all 0.3s ease;
}

.package-selection .package-option:has(input:checked) {
    border-color: var(--color-primary);
    background: rgba(245, 158, 11, 0.06);
}

.order-summary-card .summary-details span {
    font-weight: 500;
}

.guarantee-box {
    border-radius: 16px;
    background: rgba(22, 163, 74, 0.08);
}

.features-list small {
    color: var(--color-medium-gray);
}

/* ========================================
   Contact Page
   ======================================== */
.contact-hero {
    padding: 120px 0 70px;
}

.contact-section {
    padding: 70px 0 90px;
}

.contact-info-card,
.contact-form-card {
    background: var(--color-white);
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(34, 34, 34, 0.08);
}

.contact-item {
    border-bottom: 1px solid rgba(34, 34, 34, 0.06);
    padding-bottom: 1rem;
}

.contact-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(245, 158, 11, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 1.25rem;
}

/* ========================================
   Legal / Static Pages
   ======================================== */
.policy-hero,
.terms-hero {
    padding: 120px 0 70px;
    background: var(--color-light-gray);
}

.policy-section,
.terms-section {
    padding: 80px 0;
}

.policy-card,
.terms-card {
    background: var(--color-white);
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(34, 34, 34, 0.05);
}

/* ========================================
   Thank You Page
   ======================================== */
.thank-you-hero {
    padding: 120px 0 80px;
    background: var(--color-light-gray);
}

.order-details-card {
    background: var(--color-white);
    border-radius: 20px;
    box-shadow: 0 10px 26px rgba(34, 34, 34, 0.08);
}

.support-info {
    background: var(--color-white);
    border-radius: 18px;
    box-shadow: 0 8px 22px rgba(34, 34, 34, 0.08);
    padding: 2rem;
}

/* ========================================
   Responsive Adjustments
   ======================================== */
@media (max-width: 991px) {
    .hero-section {
        padding: 100px 0 60px;
    }

    .product-hero {
        padding: 100px 0 60px;
    }

    .order-section {
        padding: 100px 0 60px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 90px 0 50px;
    }

    .btn-primary,
    .btn-outline-primary {
        width: 100%;
    }

    .badge-popular {
        display: none;
    }
}
