body {
        font-family: Arial, sans-serif;
        background: #fffbe7;
        margin: 0;
        padding: 0;
    }
    .specials-container {
        max-width: 900px;
        margin: 32px auto;
        padding: 0 2vw;
        display: flex;
        flex-wrap: wrap;
        gap: 24px;
        justify-content: center;
    }
    .special-card {
        background: #fff;
        border-radius: 14px;
        box-shadow: 0 2px 12px rgba(255,152,0,0.10);
        padding: 20px 16px 16px 16px;
        width: 290px;
        display: flex;
        flex-direction: column;
        align-items: center;
        transition: box-shadow 0.2s;
    }
    .special-card:hover {
        box-shadow: 0 4px 18px rgba(255,152,0,0.18);
    }
    .special-card img {
        width: 100px;
        height: 100px;
        object-fit: cover;
        border-radius: 10px;
        margin-bottom: 10px;
        box-shadow: 0 2px 8px rgba(255,152,0,0.08);
        display: block;
    }
    .special-card h3 {
        margin: 0 0 6px 0;
        font-size: 1.08em;
        color: #e65100;
        text-align: center;
    }
    .special-card p {
        font-size: 0.98em;
        color: #444;
        margin: 0 0 8px 0;
        text-align: center;
    }
    .special-card ul {
        padding-left: 18px;
        margin: 8px 0 8px 0;
        font-size: 0.97em;
        color: #333;
    }
    .special-card .special-price {
        font-size: 1.08em;
        font-weight: bold;
        color: #ff9800;
        margin: 8px 0 12px 0;
        text-align: center;
    }
    .special-card form button,
    .special-btn {
        background: #ff9800;
        color: #fff;
        padding: 10px 0;
        border-radius: 8px;
        font-weight: bold;
        border: none;
        cursor: pointer;
        font-size: 1em;
        width: 100%;
        transition: background 0.2s;
        margin-top: 8px;
        letter-spacing: 0.5px;
    }
    .special-card form button:hover,
    .special-btn:hover {
        background: #e65100;
    }
    @media (max-width: 700px) {
        .specials-container {
            flex-direction: column;
            gap: 14px;
            padding: 0 1vw;
        }
        .special-card {
            width: 98vw;
            max-width: 370px;
            margin: 0 auto;
            padding: 14px 6vw 14px 6vw;
        }
        .special-card img {
            width: 80px;
            height: 80px;
        }
        .special-card h3 {
            font-size: 1em;
        }
        .special-card .special-price {
            font-size: 1em;
        }
    }