/* Global Styles */
body.my-wc-order-page {
    font-family: Arial, sans-serif;
    background: #f7f7f7;
    color: #333;
    margin: 0;
    padding: 0;
}

/* 캘린더 화면 스타일 */
.order-calendar-step {
    max-width: 400px;
    margin: 30px auto;
    background: #fff;
    padding: 20px;
    border-radius: 4px;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
    text-align: center;
}

#order_date {
    width: 100%;
    padding: 12px;
    font-size: 18px;
    text-align: center;
    border: 2px solid #0073aa;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    cursor: pointer;
}

/* jQuery UI Datepicker 커스텀 디자인 */
.ui-datepicker {
    background: #fff;
    border: 1px solid #0073aa;
    padding: 10px;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
.ui-datepicker-header {
    background: #0073aa;
    color: #fff;
    border: none;
    border-radius: 4px 4px 0 0;
    padding: 10px;
}
.ui-datepicker-title {
    margin: 0;
    font-weight: bold;
}
.ui-datepicker-prev, .ui-datepicker-next {
    cursor: pointer;
}

/* 메뉴 선택 페이지 스타일 */
/* 메뉴 선택 컨테이너 원래 상태 (예: 기본적으로 960px) */
.menu-selection-step {
    max-width: 960px;  
    margin: 30px auto;
    background: #fff;
    padding: 20px;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
    border-radius: 4px;
    font-size: 16px;
    line-height: 1.4;
}

/* 메뉴 선택 페이지 - 이미지 스타일: 최대 1600px */
.menu-banner img {
    display: block;
    margin: 0 auto 20px auto;
    max-width: 1600px;
    width: 100%;
    height: auto;
}

/* 메뉴 그리드 스타일 */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

/* 메뉴 아이템 스타일 */
.menu-item {
    background: #f9f9f9;
    padding: 15px;
    text-align: center;
    border: 1px solid #eee;
    border-radius: 4px;
    transition: box-shadow 0.3s;
}
.menu-item:hover {
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.menu-item h3.menu-title {
    font-size: 18px;
    margin-bottom: 10px;
    color: #444;
}
.menu-item p.menu-price {
    font-size: 16px;
    margin-bottom: 15px;
    color: #555;
}

/* 수량 조절 스타일 */
.quantity-selector {
    display: flex;
    align-items: center;
    justify-content: center;
}
.quantity-selector button {
    width: 30px;
    height: 30px;
    background: #0073aa;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s;
}
.quantity-selector button:hover {
    background: #005880;
}
.quantity-selector input[type="number"] {
    width: 50px;
    text-align: center;
    margin: 0 5px;
    padding: 5px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

/* 네비게이션 버튼 */
.form-navigation {
    text-align: center;
    margin-top: 30px;
}
.next-button {
    background: #28a745;
    color: #fff;
    padding: 10px 20px;
    font-size: 18px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}
.next-button:hover {
    background: #1e7e34;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .order-calendar-step, .menu-selection-step {
        margin: 20px 10px;
        padding: 15px;
    }
    #order_date {
        font-size: 16px;
        padding: 8px;
    }
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .menu-item h3.menu-title {
        font-size: 16px;
    }
    .menu-item p.menu-price {
        font-size: 14px;
    }
    .quantity-selector button {
        width: 25px;
        height: 25px;
        font-size: 16px;
    }
    .quantity-selector input[type="number"] {
        width: 40px;
        padding: 4px;
        font-size: 14px;
    }
    .next-button {
        font-size: 16px;
        padding: 8px 16px;
    }
}
