/* Landing Page Variables */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,300;400;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
    --lp-color-olive: #4F6F52;
    --lp-color-cream: #FAF9F6;
    --lp-color-dark: #1A2B1D;
    --lp-color-gold: #D4AF37;
    --lp-color-text: #333333;
    --lp-font-primary: 'Inter', sans-serif;
    --lp-font-heading: 'Fraunces', serif;
    /* Matches Recoleta vibe */
}

/* Base Styles */
.lp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    font-family: var(--lp-font-primary);
    color: var(--lp-color-text);
}

.lp-section {
    padding: 60px 0;
}

h1,
h2,
h3,
h4 {
    font-family: var(--lp-font-heading);
    color: var(--lp-color-dark);
}

/* ================= Hero Section ================= */
.lp-hero-section {
    background-color: var(--lp-color-cream);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding-top: 40px;
}

.lp-hero-image-col {
    flex: 1 1 500px;
    text-align: center;
    position: relative;
    padding: 20px;
}

.lp-hero-image-col img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.lp-badges-overlay {
    position: absolute;
    top: 30px;
    left: 30px;
    display: flex;
    gap: 10px;
}

.lp-badge-overlay {
    background: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: bold;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.lp-hero-content-col {
    flex: 1 1 400px;
    padding: 20px 40px;
}

.lp-product-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.lp-social-proof {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: #666;
}

.lp-product-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.lp-product-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    background: white;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #eee;
}

/* Purchase Options Form */
.lp-purchase-options {
    margin-bottom: 2rem;
}

.lp-option-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: all 0.2s;
    background: white;
}

.lp-option-radio {
    margin-right: 10px;
    accent-color: var(--lp-color-olive);
}

.lp-option-label:hover {
    border-color: var(--lp-color-olive);
}

.lp-option-label.lp-best-value {
    border: 2px solid var(--lp-color-olive);
    background: #fdfdfd;
    position: relative;
}

.lp-best-value-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #C4A484;
    color: white;
    font-size: 0.7em;
    padding: 2px 8px;
    border-radius: 10px;
    text-transform: uppercase;
}

.lp-cta-button {
    display: block;
    width: 100%;
    background-color: var(--lp-color-olive);
    color: white;
    text-align: center;
    padding: 18px;
    font-size: 1.1em;
    font-weight: bold;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.2s;
}

.lp-cta-button:hover {
    background-color: #3d5840;
}

/* ================= Ingredients Section ================= */
.lp-ingredients-section {
    background: white;
    text-align: center;
}

.lp-ingredients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.lp-ingredient-card {
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.lp-ingredient-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

/* ================= Science Section ================= */
.lp-science-section {
    background-color: #111;
    color: white;
    padding: 80px 0;
}

.lp-science-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.lp-science-text {
    flex: 1 1 500px;
    padding: 20px;
}

.lp-science-text h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.lp-step-list {
    margin-top: 30px;
}

.lp-step-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.lp-step-number {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--lp-color-gold);
    flex-shrink: 0;
}

/* ================= Wall of Love Section ================= */
.lp-reviews-section {
    background: var(--lp-color-cream);
}

.lp-reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.lp-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.lp-review-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.lp-reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.lp-reviewer-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}