/* === Base Styles === */
body {
    font-family: 'Noto Sans SC', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f2f5;
    color: #333;
    line-height: 1.5;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
/* === Container === */
.op-container {
    width: 100%;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
/* === Header === */
.op-header {
    background-color: #34495e;
    color: white;
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #2c3e50;
}
.op-header h1 {
    margin: 0;
    font-size: 1.5em;
    font-weight: 600;
}
.header-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

/* 调整header中的日期和餐段选择器 */
.op-header .date-meal-selector {
    display: flex;
    gap: 15px;
    align-items: center;
}

.op-header .date-picker {
    padding: 6px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.op-header .meal-tabs {
    display: flex;
    gap: 5px;
}

.op-header .meal-tab {
    padding: 6px 12px;
    border: 1px solid #ddd;
    background: white;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
}

.op-header .meal-tab.active {
    background: #007bff;
    color: white;
    border-color: #007bff;
}
.nav-btn {
    text-decoration: none;
    background-color: #5bc0de;
    color: white;
    padding: 6px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-right: 10px;
}
.nav-btn:hover {
    background-color: #46b8da;
    transform: translateY(-2px);
}
.simulate-btn {
    background-color: #6c757d;
    color: #fff;
    border: none;
    padding: 6px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
}
.simulate-btn:hover {
    background-color: #5a6268;
    transform: translateY(-2px);
}

body.modal-open {
    overflow: hidden;
}
.save-btn {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 6px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
}
.save-btn:hover {
    background-color: #218838;
    transform: translateY(-2px);
}

/* === Main Content === */
.op-main-content {
    display: flex;
    gap: 5px;
    padding: 5px 10px 10px;
    overflow: hidden;
    align-items: flex-start;
    min-height: calc(100vh - 100px);
    flex-grow: 1;
}

/* === Menu Content Container === */
.menu-content-container {
    flex: 2;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    padding: 15px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 110px);
}

.menu-content-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #3498db;
}

.menu-content-header h3 {
    margin: 0;
    color: #2c3e50;
    font-size: 1.3em;
    font-weight: 600;
}

.menu-actions {
    display: flex;
    gap: 10px;
}

.combo-configuration {
    flex-grow: 1;
    overflow-y: auto;
}

.combo-cards-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.combo-card {
    background-color: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.combo-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid #ddd;
}

.combo-card-header h4 {
    margin: 0;
    color: #2c3e50;
    font-size: 1.1em;
    font-weight: 600;
}

.shelf-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9em;
    color: #666;
}

.combo-composition {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.composition-category h5 {
    margin: 0 0 8px 0;
    color: #3498db;
    font-size: 1em;
    font-weight: 600;
}

.slots-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 8px;
}

.slot {
    background-color: #ffffff;
    border: 2px dashed #bdc3c7;
    border-radius: 6px;
    padding: 8px;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.slot:hover {
    border-color: #3498db;
    background-color: #f8f9fa;
}

.slot-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.slot-image {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 4px;
}

.slot-name {
    font-size: 0.8em;
    text-align: center;
    color: #333;
}

.remove-btn {
    background: #e74c3c;
    color: white;
    border: none;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    cursor: pointer;
    font-size: 0.8em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.empty-slot {
    color: #7f8c8d;
    font-size: 0.8em;
    text-align: center;
}

.no-combo-message {
    text-align: center;
    color: #7f8c8d;
    font-style: italic;
    padding: 40px 20px;
}
/* === Left Panel === */
.left-panel {
    flex: 1;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    padding: 10px;
    display: flex;
    flex-direction: column;
    max-height: calc(100vh - 140px);
    overflow: hidden;
}

.left-panel .section-title {
    margin: 0 0 10px 0;
    color: #2c3e50;
    font-size: 1.1em;
    font-weight: 600;
    padding-bottom: 5px;
    border-bottom: 2px solid #3498db;
}

.selected-date-meal {
    margin-bottom: 20px;
}

.date-display, .meal-display {
    padding: 10px;
    background-color: #f8f9fa;
    border-radius: 6px;
    margin-bottom: 8px;
    font-size: 1.2em;
    font-weight: 500;
    text-align: center;
}

.date-display {
    color: #3498db;
}

.meal-display {
    color: #e74c3c;
}

.selected-combo {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.combo-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #3498db;
}

.combo-title {
    margin: 0;
    color: #2c3e50;
    font-size: 1.3em;
    font-weight: 600;
    text-align: left;
}

.combo-header .combo-save-btn {
    margin-left: auto;
    white-space: nowrap;
}

.daily-menu-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.daily-menu-list {
    flex: 1;
}

/* 仿真模态框 */
.simulate-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease;
    z-index: 998;
}

.simulate-modal-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.simulate-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.96);
    width: 420px;
    max-width: 95vw;
    height: 820px;
    max-height: 95vh;
    background: #f8f9fa;
    border-radius: 28px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 999;
    border: 12px solid #111;
}

.simulate-modal.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.simulate-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    background: #111;
    color: #fff;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

.simulate-modal-header h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
}

.simulate-modal-close {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.4rem;
    cursor: pointer;
    line-height: 1;
}

.simulate-modal-body {
    flex: 1;
    background: #000;
    padding: 0;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    overflow: hidden;
}

.simulate-modal-body iframe {
    width: 100%;
    height: 100%;
    border: none;
    background: #fff;
}

/* 套餐类型选择器样式 */
.meal-type-container {
    margin-top: 15px;
    margin-bottom: 10px;
}

.meal-type-tabs {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.meal-type-tab {
    padding: 8px 16px;
    background-color: #f8f9fa;
    border: 2px solid #bdc3c7;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #2c3e50;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    min-height: 36px;
    white-space: nowrap;
    font-weight: 500;
}

.meal-type-tab:hover {
    background-color: #e9ecef;
    border-color: #95a5a6;
    transform: translateY(-1px);
}

.meal-type-tab.active {
    background-color: #3498db;
    border-color: #3498db;
    color: white;
    font-weight: 600;
}

.meal-type-tab.active:hover {
    background-color: #2980b9;
    border-color: #2980b9;
}

/* 套餐标签选择器样式 */
.combo-tags-container {
    margin-top: 10px;
    margin-bottom: 20px;
}

.combo-tags-title {
    font-size: 0.8rem;
    color: #7f8c8d;
    font-weight: bold;
    margin-bottom: 8px;
}

.combo-tags-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 6px;
    align-items: center;
}

.combo-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 2px 6px;
    background-color: #f8f9fa;
    border: 1px solid #bdc3c7;
    border-radius: 8px;
    font-size: 0.7rem;
    color: #2c3e50;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    min-height: 24px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.combo-tag:hover {
    background-color: #e9ecef;
    border-color: #95a5a6;
    transform: translateY(-1px);
}

.combo-tag.active {
    background-color: #3498db;
    border-color: #3498db;
    color: white;
    font-weight: 600;
}

.combo-tag.active:hover {
    background-color: #2980b9;
    border-color: #2980b9;
}

/* 已定义套餐的绿色边框样式 */
.combo-tag.defined {
    border-color: #28a745;
    border-width: 2px;
}

.combo-tag.defined:hover {
    border-color: #218838;
}

.combo-tag.defined.active {
    border-color: #28a745;
    background-color: #28a745;
}

.combo-tag.defined.active:hover {
    border-color: #218838;
    background-color: #218838;
}

/* 当天存在的套餐样式 - 更明显的绿色边框 */
.combo-tag.daily-combo {
    border-color: #28a745;
    border-width: 3px;
    box-shadow: 0 0 0 2px rgba(40, 167, 69, 0.3);
    font-weight: 600;
    position: relative;
}

.combo-tag.daily-combo:hover {
    border-color: #218838;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.4);
    transform: translateY(-2px);
}

.combo-tag.daily-combo.active {
    border-color: #28a745;
    background-color: #28a745;
    color: white;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.5);
}

.combo-tag.daily-combo.active:hover {
    border-color: #218838;
    background-color: #218838;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.6);
}

/* 当天不存在的套餐样式 - 灰边框 */
.combo-tag.no-daily-combo {
    border-color: #bdc3c7;
    border-width: 2px;
    color: #95a5a6;
    background-color: #f8f9fa;
}

.combo-tag.no-daily-combo:hover {
    border-color: #95a5a6;
    background-color: #e9ecef;
}

.combo-tag.no-daily-combo.active {
    border-color: #bdc3c7;
    background-color: #bdc3c7;
    color: white;
}

.combo-tag.no-daily-combo.active:hover {
    border-color: #95a5a6;
    background-color: #95a5a6;
}

/* 当天套餐的角标指示器 */
.combo-tag.daily-combo::after {
    content: '✓';
    position: absolute;
    top: -6px;
    right: -6px;
    background: #28a745;
    color: white;
    border-radius: 50%;
    width: 14px;
    height: 14px;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    font-weight: bold;
}

/* 左侧菜单数据样式 */
.daily-menu-container {
    margin-top: 20px;
    border-top: 2px solid #ecf0f1;
    padding-top: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.daily-menu-title {
    margin: 0 0 15px 0;
    color: #2c3e50;
    font-size: 1.1em;
    font-weight: 600;
    text-align: center;
}

.daily-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex: 1;
    overflow-y: auto;
    padding-right: 6px;
    min-height: 0;
}

.daily-menu-category-section {
    margin-bottom: 24px;
}

.daily-menu-category-title {
    font-size: 1.1em;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 12px 0;
    padding-bottom: 8px;
    border-bottom: 2px solid #ecf0f1;
}

.daily-menu-category-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 12px;
    align-items: start;
}

.daily-menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    text-align: center;
    justify-content: space-between;
}

.daily-menu-item:hover {
    background-color: #e9ecef;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.daily-menu-item-image {
    width: 80px;
    height: 80px;
    border-radius: 6px;
    object-fit: cover;
    margin-bottom: 2px;
    background-color: #dee2e6;
}

.daily-menu-item-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.daily-menu-item-name {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0;
    font-size: 0.9em;
    line-height: 1.1;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* 移除菜品ID显示 */

.daily-menu-empty {
    text-align: center;
    color: #6c757d;
    font-style: italic;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.combo-select:hover {
    border-color: #95a5a6;
}

.combo-select:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
}

.combo-info {
    background-color: #f8f9fa;
    border-radius: 6px;
    padding: 12px;
}

.combo-name {
    font-size: 1.1em;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    text-align: center;
}

.combo-detail {
    font-size: 0.9em;
    color: #7f8c8d;
    text-align: center;
}

/* === Library Panel === */
.library-panel {
    flex: 1;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    padding: 10px;
    display: flex;
    flex-direction: column;
    max-height: calc(100vh - 140px);
}

.library-title {
    margin: 0 0 15px 0;
    color: #2c3e50;
    font-size: 1.3em;
    font-weight: 600;
    text-align: left;
    padding-bottom: 8px;
    border-bottom: 2px solid #3498db;
}

.date-meal-selector {
    display: flex;
    align-items: center;
    gap: 15px;
}

.date-picker {
    padding: 6px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.9em;
    background-color: white;
    cursor: pointer;
}

.meal-tabs {
    display: flex;
    gap: 5px;
}

.meal-tab {
    padding: 6px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: white;
    color: #555;
    cursor: pointer;
    font-size: 0.9em;
    transition: all 0.2s ease;
}

.meal-tab:hover {
    border-color: #28a745;
    color: #28a745;
}

.meal-tab.active {
    background-color: #28a745;
    color: white;
    border-color: #28a745;
    font-weight: 500;
}
/* === Combo Card === */
.combo-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    align-items: start; /* Align items to top */
    align-content: start; /* Align grid content to top */
    min-height: auto; /* Auto height */
}
.combo-config-card {
    background-color: #fcfcfc;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    height: auto; /* Self-adaptive height */
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}
.combo-config-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}
.combo-image {
    width: 100%;
    max-height: 180px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
    margin-bottom: 6px;
}
.combo-info {
    text-align: center;
    padding: 0 8px;
    margin-bottom: 6px;
}
.combo-info h3 {
    margin: 0 0 3px;
    font-size: 1.0em;
    font-weight: 600;
}
.combo-info .description {
    font-size: 0.75em;
    color: #7f8c8d;
    margin-bottom: 5px;
    max-height: 3.0em;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.combo-info .price {
    font-size: 1.0em;
    font-weight: bold;
    color: #e67e22;
}
/* === Dish List === */
.dish-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex: 1;
    overflow-y: auto;
    padding-right: 6px;
}

.dish-category-section {
    margin-bottom: 24px;
}

.dish-category-title {
    font-size: 1.1em;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 12px 0;
    padding-bottom: 8px;
    border-bottom: 2px solid #ecf0f1;
}

.dish-category-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 12px;
    align-items: start;
}
/* 基础样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.dish-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    text-align: center;
    justify-content: space-between;
    position: relative;
    cursor: move;
}

/* 拖拽相关样式 */
.dish-card:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.daily-menu-category-section {
    transition: background-color 0.2s;
}

.daily-menu-category-section.drag-over {
    background-color: rgba(100, 149, 237, 0.1);
    border: 2px dashed #6495ED;
    border-radius: 8px;
    padding: 8px;
}
.dish-card:hover {
    background-color: #e9ecef;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.dish-card-image {
    width: 80px;
    height: 80px;
    border-radius: 6px;
    object-fit: cover;
    margin-bottom: 2px;
    background-color: #dee2e6;
}
.dish-card-name {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0;
    font-size: 0.9em;
    line-height: 1.1;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
/* === Additional Styles === */
.category-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 10px;
}
.category-tab {
    background-color: #ecf0f1;
    border: 1px solid #d0d3d4;
    border-radius: 18px;
    padding: 6px 12px;
    font-size: 0.85em;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #555;
}
.category-tab.active,
.category-tab:hover {
    background-color: #28a745;
    color: white;
    border-color: #28a745;
}
.search-bar {
    width: calc(100% - 16px);
    padding: 8px;
    margin-bottom: 12px;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    font-size: 0.9em;
}
.add-btn {
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    font-size: 1.1em;
    position: absolute;
    top: 8px;
    right: 8px;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 1;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.dish-card:hover .add-btn {
    display: flex;
}
.add-btn:hover {
    background-color: #218838;
    transform: scale(1.1);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
}
.slot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 8px;
    background-color: #ecf0f1;
    border: 1px solid #dcdcdc;
    border-radius: 4px;
    font-size: 0.8em;
    color: #34495e;
    cursor: pointer;
    transition: all 0.2s ease;
}
.slot:hover {
    background-color: #dbe4e6;
}
.slot.active-slot {
    border-color: #3498db;
    background-color: #eaf5fc;
}
.remove-btn {
    background-color: #e74c3c;
    color: white;
    border: none;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    font-size: 0.6em;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s;
}
.remove-btn:hover {
    background-color: #c0392b;
}
.combo-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    align-items: start; /* Align items to top */
}
.combo-config-card {
    background-color: #fcfcfc;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    height: auto; /* Self-adaptive height */
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}
.combo-config-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}
.combo-image {
    width: 100%;
    max-height: 180px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
    margin-bottom: 6px;
}
.combo-info {
    text-align: center;
    padding: 0 8px;
    margin-bottom: 6px;
}
.combo-info h3 {
    margin: 0 0 3px;
    font-size: 1.0em;
    font-weight: 600;
}
.combo-info .description {
    font-size: 0.75em;
    color: #7f8c8d;
    margin-bottom: 5px;
    max-height: 3.0em;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.combo-info .price {
    font-size: 1.0em;
    font-weight: bold;
    color: #e67e22;
}
.combo-composition-details {
    padding: 0 8px;
    width: 100%;
}
.option-group {
    margin-bottom: 10px;
}
.option-group h4 {
    margin: 0 0 5px;
    font-size: 0.9em;
}
.slots-container {
    display: flex;
    flex-direction: column;
    gap: 5px;
}