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

:root {
    --brand-main: #047857; /* Emerald 700 */
    --brand-accent: #d97706; /* Amber 600 */
    --ui-base-light: #f8fafc; /* Slate 50 */
    --ui-text-dark: #334155; /* Slate 700 */
    --gradient-primary: linear-gradient(135deg, #047857, #10b981);
    --gradient-accent: linear-gradient(135deg, #d97706, #f59e0b);
    
    --font-head: 'Montserrat', sans-serif;
    --font-text: 'Inter', sans-serif;
}

body {
    font-family: var(--font-text);
    color: var(--ui-text-dark);
    background-color: var(--ui-base-light);
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-head);
    color: var(--brand-main);
}

/* Custom DOM Classes to replace standard ones */
.optic-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.vision-intro-wrap {
    padding: 5rem 0;
    color: white;
}

.eye-health-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .eye-health-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.wellness-panel {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.wellness-panel:hover {
    transform: translateY(-5px);
}

.sight-steps-row {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.focus-bullet {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background-color: var(--brand-accent);
    color: white;
    font-weight: bold;
    margin-right: 0.75rem;
}

.action-trigger {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: var(--font-head);
    font-weight: 700;
    color: white !important;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
}

.action-trigger:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

.ocular-stat-block {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 1rem;
    border-bottom: 4px solid var(--brand-accent);
}

.ocular-stat-number {
    font-size: 3rem;
    font-family: var(--font-head);
    font-weight: 800;
    color: var(--brand-main);
}

/* Cookie Banner Styles */
#cookie-vision-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--ui-text-dark);
    color: white;
    padding: 1.5rem;
    z-index: 9999;
    box-shadow: 0 -4px 10px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    #cookie-vision-banner {
        flex-direction: row;
        justify-content: space-between;
    }
}

.cookie-btn-accept {
    background-color: var(--brand-accent);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: bold;
    cursor: pointer;
}

.cookie-btn-decline {
    background-color: #4B5563;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: bold;
    cursor: pointer;
}

/* Flex grow for pages to keep footer at bottom */
.content-expander {
    flex-grow: 1;
}

/* Custom list styling for reserve page */
.habit-list {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}
.habit-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}