/* Weekly Menu Public Styles */

.cwm-menu-container {
    --cwm-font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    
    font-family: var(--cwm-font-sans);
    color: var(--cwm-text);
    background-color: var(--cwm-page-bg);
    padding: 60px 20px;
    border-radius: var(--cwm-radius);
    max-width: 1200px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Header */
.cwm-header {
    text-align: center;
    margin-bottom: 50px;
}

.cwm-week-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--cwm-accent);
    color: #fff;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.cwm-main-title {
    font-size: 42px;
    color: var(--cwm-heading);
    margin: 0 0 15px 0;
    font-weight: 800;
    letter-spacing: -1px;
}

.cwm-top-notice {
    max-width: 600px;
    margin: 0 auto;
    font-size: 18px;
    color: #64748b;
    font-style: italic;
}

/* Grid Layout */
.cwm-grid {
    display: grid;
    gap: 24px;
    margin-bottom: 50px;
}

.cwm-days-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.cwm-specials-grid {
    grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
}

/* Card Styles */
.cwm-card {
    background: var(--cwm-card-bg);
    border: 1px solid var(--cwm-border);
    border-radius: var(--cwm-radius);
    padding: 30px;
    box-shadow: var(--cwm-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.cwm-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px -5px rgba(0,0,0,0.1);
}

.cwm-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.cwm-day-name {
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--cwm-accent);
}

.cwm-price-tag {
    background: var(--cwm-price-bg);
    padding: 6px 12px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    color: var(--cwm-heading);
    white-space: nowrap;
}

.cwm-price-tag small {
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
}

.cwm-dish-title {
    font-size: 22px;
    margin: 0 0 15px 0;
    color: var(--cwm-heading);
    font-weight: 700;
    line-height: 1.2;
}

.cwm-dish-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cwm-dish-items li {
    padding: 4px 0;
    color: #475569;
    font-size: 15px;
    position: relative;
    padding-left: 20px;
}

.cwm-dish-items li:before {
    content: "•";
    color: var(--cwm-accent);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Special Section Styles */
.cwm-special-card {
    /* border-left removed */
}

.cwm-special-title {
    font-size: 24px;
    margin: 0;
    font-weight: 800;
}

.cwm-special-subtitle {
    display: block;
    font-size: 13px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

/* Footer Section */
.cwm-footer {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid var(--cwm-border);
    text-align: center;
}

.cwm-footer-layout {
    display: flex;
    justify-content: center;
    gap: 100px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.cwm-res-title {
    font-size: 20px;
    margin: 0 0 10px 0;
    color: var(--cwm-heading);
}

.cwm-res-address {
    color: #64748b;
    margin-bottom: 10px;
}

.cwm-res-contact a {
    color: var(--cwm-accent);
    text-decoration: none;
    font-weight: 600;
    margin: 0 10px;
}

.cwm-res-contact a:hover {
    text-decoration: underline;
}

.cwm-sunday-text {
    background: #f1f5f9;
    padding: 30px 50px;
    border-radius: var(--cwm-radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cwm-sunday-text span {
    font-size: 32px;
    font-weight: 800;
    color: var(--cwm-heading);
    letter-spacing: -1px;
}

.cwm-footer-note {
    max-width: 800px;
    margin: 0 auto;
    font-size: 13px;
    color: #94a3b8;
    line-height: 1.4;
}

/* Theme variations */
.cwm-theme-minimal .cwm-card {
    border-radius: 4px;
    box-shadow: none;
    border-color: #eee;
}

.cwm-theme-minimal .cwm-price-tag {
    background: none;
    padding: 0;
    color: var(--cwm-accent);
}

/* Responsive */
@media (max-width: 768px) {
    .cwm-menu-container {
        padding: 40px 15px;
    }
    
    .cwm-main-title {
        font-size: 32px;
    }

    .cwm-days-grid, .cwm-specials-grid {
        grid-template-columns: 1fr;
    }

    .cwm-footer-layout {
        flex-direction: column;
        gap: 30px;
    }

    .cwm-sunday-text span {
        font-size: 24px;
    }
}
