.page-shell {
    padding-top: 5.5rem;
}



.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 2.8rem;
    padding: 2.6rem 2.4rem;
    margin-top: 2rem;
    align-items: center;
}

.hero-text {
    max-width: 40rem;
}

.eyebrow {
    font-size: var(--font-xs);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin: 0 0 0.6rem;
}

.hero h1 {
    margin: 0 0 0.9rem;
    font-size: clamp(2.1rem, 3vw + 1rem, 3rem);
    letter-spacing: var(--tracking-tight);
}

.hero-subtitle {
    margin: 0 0 0.9rem;
    color: var(--text-soft);
    font-size: 1.02rem;
}

.hero-text p {
    margin-top: 0;
    margin-bottom: 0.75rem;
    color: var(--text-soft);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.4rem;
    margin-bottom: 0.7rem;
}


.hero-media {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    padding: 1rem;
    border-radius: var(--radius-lg);
    background: var(--neutral-50);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.16);
    border: 1px solid rgba(209, 213, 219, 0.65);
}

.hero-image img {
    border-radius: calc(var(--radius-lg) - 6px);
}



.section {
    margin-top: 3rem;
}

.section-header {
    margin-bottom: 1.7rem;
}

.section-header h2 {
    margin: 0 0 0.4rem;
    font-size: 1.7rem;
}

.section-header p {
    margin: 0;
    color: var(--text-muted);
}



.info-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.info-card {
    position: relative;
    padding: 1.6rem 1.5rem;
    border-radius: var(--radius-lg);
    background: #ffffff;
    border: 1px solid rgba(209, 213, 219, 0.9);
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.10);
    transition:
        transform 0.15s ease,
        box-shadow 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease;
}


.info-card::before {
    content: "";
    position: absolute;
    inset-inline: 1.5rem;
    top: 0.9rem;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--brand-green), var(--brand-teal));
    opacity: 0.4;
}

.info-card h3 {
    margin: 0.8rem 0 0.5rem; 
    font-size: 1.05rem;
}

.info-card p {
    margin: 0;
    color: var(--text-soft);
    font-size: 0.96rem;
}

.info-card:hover {
    transform: translateY(-1px);
    background: var(--neutral-50);
    border-color: rgba(148, 163, 184, 0.9);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.14);
}



#products .info-card details {
    margin-top: 0.4rem;
}

#products .info-card summary {
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--brand-emerald);
    list-style: none;
}

#products .info-card summary::marker {
    color: var(--brand-emerald);
}

#products .info-card details p {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    line-height: 1.4;
}



.plan-form {
    margin-top: 0.8rem;
    padding: 1.8rem 1.7rem 2rem;
}


.plan-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
    font-size: 0.96rem;
    background: #ffffff;
    border-radius: var(--radius-md);
    overflow: hidden; 
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.plan-table th,
.plan-table td {
    padding: 0.6rem 0.75rem;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.plan-table th {
    font-weight: 600;
    color: var(--neutral-700);
    background: #f9fafb;
}

.plan-table tr:last-child td {
    border-bottom: none;
}

.plan-table tbody tr:nth-child(even) {
    background-color: #f9fafb;
}


.day-select {
    width: 100%;
    padding: 0.55rem 0.75rem;
    border-radius: var(--radius-md);
    border: 1px solid #d1d5db;
    font-size: 0.95rem;
    font-family: inherit;
    background: #ffffff;
    color: var(--text-main);
}

.day-select:focus {
    outline: 2px solid var(--brand-green-strong);
    outline-offset: 1px;
    border-color: var(--brand-green-strong);
}



.plan-summary {
    margin-top: 1.2rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.plan-summary h3 {
    margin: 0 0 0.5rem;
    font-size: 1.05rem;
}

.plan-summary ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-soft);
}

.plan-summary li + li {
    margin-top: 0.25rem;
}



@media (max-width: 900px) {
    .hero {
        grid-template-columns: minmax(0, 1fr);
        padding: 2.2rem 2rem;
        gap: 2.1rem;
    }

    .hero-media {
        order: -1; 
    }

    .info-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .plan-form {
        padding-inline: 1.3rem;
    }
}

@media (max-width: 720px) {
    .hero {
        padding: 1.9rem 1.5rem;
        margin-top: 1.4rem;
    }

    .hero h1 {
        font-size: 1.9rem;
    }

    .hero-image {
        padding: 0.8rem;
    }

    .info-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .plan-form {
        padding-inline: 1.1rem;
    }
}
