
.chalkboard {
    background: #1c1c1c;
    color: #f5f5f5;
    padding: 30px;
    border-radius: 12px;
    font-family: 'Patrick Hand';

    display: grid;                      /* 💥 KEY */
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.chalk-title {
    font-size: 1.5rem;
    border-bottom: 2px dashed #aaa;
    margin-bottom: 10px;
    padding-bottom: 5px;
    text-align: center;   /* optional: more menu-like */
}
.chalk-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dotted rgba(255,255,255,0.2);
    cursor: pointer;
    transition: all 0.2s ease;
}

.chalk-item:hover {
    background: rgba(255,255,255,0.05);
    transform: scale(1.01);
}

.chalk-price {
    font-weight: bold;
    color: #d4ffea;
}

.chalk-section {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    border-right: 1px dashed rgba(255,255,255,0.2);
    padding-right: 15px;
}

.chalk-section:last-child {
    border-right: none;
}

.chalk-subtle {
    font-size: 0.85rem;
    opacity: 0.7;
}
