.info-section { background: var(--bg); }

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.info-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.info-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.info-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-card-icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke-width: 1.5;
}

.info-card-icon.amber {
    background: rgba(166, 124, 61, 0.1);
}

.info-card-icon.amber svg { stroke: var(--primary); }

.info-card-icon.green {
    background: rgba(62, 107, 72, 0.1);
}

.info-card-icon.green svg { stroke: var(--secondary); }

.info-card-header h3 { font-size: 1.25rem; }

/* Hours table */
.hours-table { display: flex; flex-direction: column; gap: 2px; }

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: var(--transition);
}

.hours-row:nth-child(odd) { background: var(--bg); }

.hours-row:hover { background: var(--bg-warm); }

.hours-day { font-weight: 600; color: var(--dark); }

.hours-time { color: var(--text-light); font-weight: 500; }

.hours-row.closed .hours-day { color: var(--text-muted); }

.hours-row.closed .hours-time {
    color: #c0392b;
    font-weight: 600;
}

/* Info card footnote */
.info-card-footnote {
    margin-top: 20px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Market items */
.market-item {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}

.market-item:last-of-type { border-bottom: none; }

.market-day {
    flex-shrink: 0;
    padding: 6px 16px;
    background: rgba(62, 107, 72, 0.1);
    color: var(--secondary);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 50px;
    height: fit-content;
}

.market-details h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.market-details p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Order note */
.info-order-note {
    margin-top: 24px;
    font-size: 0.9rem;
    color: var(--text-light);
    padding: 16px;
    background: var(--bg-warm);
    border-radius: 8px;
    line-height: 1.6;
}

.info-order-note a {
    color: var(--primary);
    font-weight: 600;
}

.info-order-note a:hover { text-decoration: underline; }
