@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

:root {
    --primary-purple: #A855F7;
    --dark-purple: #7E22CE;
    --light-purple: #F3E8FF;
    --bg-gray: #F3F4F6;
    --text-dark: #1F2937;
    --text-muted: #6B7280;
    --green-cta: #22C55E;
    --card-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

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

body {
    background-color: var(--bg-gray);
    color: var(--text-dark);
    display: flex;
    justify-content: center;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 480px;
    background-color: white;
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 24px;
    box-shadow: 0 0 40px rgba(0,0,0,0.05);
}

/* Header & Progress */
header {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.back-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 20px;
}

.progress-container {
    flex-grow: 1;
    height: 8px;
    background-color: var(--light-purple);
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background-color: var(--primary-purple);
    width: 0%;
    transition: width 0.3s ease;
}

/* Steps */
.step {
    display: none;
    flex-direction: column;
    padding-top: 20px;
    height: 100%;
}

.step.active {
    display: flex;
}

h1 {
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.3;
}

.highlight {
    color: var(--primary-purple);
}

.description {
    font-size: 14px;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 25px;
}

/* Option Cards */
.options-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.option-card {
    padding: 15px 20px;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 12px;
}

.option-card:hover {
    border-color: var(--primary-purple);
    background-color: var(--light-purple);
}

.option-card.selected {
    border-color: var(--primary-purple);
    background-color: var(--light-purple);
    box-shadow: 0 0 0 2px var(--primary-purple);
}

.option-emoji {
    font-size: 20px;
}

.option-text {
    font-size: 15px;
    font-weight: 500;
}

/* Buttons */
.footer-btn-container {
    margin-top: auto;
    padding: 20px 0;
}

.btn-primary {
    width: 100%;
    padding: 15px;
    background-color: var(--primary-purple);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-primary:hover {
    background-color: var(--dark-purple);
}

.btn-green {
    background-color: var(--green-cta);
}

.btn-green:hover {
    background-color: #16a34a;
}

/* Landing Page Specific */
.landing-image-container {
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
}

.landing-image-container img {
    width: 100%;
    display: block;
}

.badge {
    display: inline-block;
    background-color: var(--green-cta);
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 14px;
}

/* Loading Simulation */
.loading-screen {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100vh;
}

.loading-circle {
    width: 50px;
    height: 50px;
    border: 5px solid var(--light-purple);
    border-top: 5px solid var(--primary-purple);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Final Page Layout V2 */
.last-batch-header {
    background-color: var(--primary-purple);
    color: white;
    padding: 10px;
    border-radius: 12px 12px 0 0;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
}

.price-card-v2 {
    background: #FFFFFF;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-radius: 0 0 12px 12px;
    padding: 20px;
    margin-bottom: 30px;
}

.price-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    text-align: left;
}

.price-title {
    font-size: 18px;
    font-weight: 800;
    color: #111827;
    line-height: 1.2;
}

.price-vals {
    text-align: right;
}

.old-p { font-size: 11px; text-decoration: line-through; color: #6B7280; display: block; }
.new-p { font-size: 22px; font-weight: 800; color: #166534; display: block; margin-top: -5px; }
.cash-p { font-size: 11px; color: #374151; }

.silvia-bio {
    text-align: center;
    margin-bottom: 40px;
    padding: 20px;
    background-color: #F9FAFB;
    border-radius: 15px;
}

.silvia-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 4px solid var(--primary-purple);
    object-fit: cover;
}

.opportunity-tag {
    background-color: #FEE2E2;
    color: #DC2626;
    padding: 10px;
    border-radius: 8px;
    font-weight: 600;
    margin: 20px 0;
    font-size: 14px;
}

/* Carousel Styles */
.carousel-container-v2 {
    text-align: center;
    margin-bottom: 50px;
}

.carousel-wrapper {
    overflow: hidden;
    width: 100%;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-track img {
    flex: 0 0 100%;
    width: 100%;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
}

.dot {
    width: 8px;
    height: 8px;
    background: #E5E7EB;
    border-radius: 50%;
    cursor: pointer;
}

.dot.active {
    background: var(--primary-purple);
}

.guarantee-section-v2 {
    margin-bottom: 40px;
}

.guarantee-box-v2 {
    background-color: #F3F4F6;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}
