/* 全局样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 导航栏 */
.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #e63946;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #e63946;
}

/* 按钮样式 */
.btn-primary {
    background: #e63946;
    color: white !important;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #d62839;
}

.btn-large {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    margin-top: 1rem;
}

/* 搜索横幅 */
.hero {
    background: linear-gradient(135deg, #e63946 0%, #d62839 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.search-box {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
    background: white;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.search-box input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    font-size: 1rem;
    outline: none;
}

.search-box button {
    padding: 1rem 2rem;
    background: #e63946;
    color: white;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}

.search-box button:hover {
    background: #d62839;
}

/* 筛选器 */
.filters {
    background: white;
    padding: 1.5rem 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.filters .container {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-group label {
    font-weight: 600;
    color: #555;
}

.filter-group select {
    padding: 0.5rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    outline: none;
    transition: border-color 0.3s;
}

.filter-group select:focus {
    border-color: #e63946;
}

/* 餐厅列表 */
.restaurants {
    padding: 3rem 0;
}

.restaurants h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #333;
}

.restaurant-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* 餐厅卡片 - First Table风格列表布局 */
.restaurant-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    min-height: 160px;
}

.restaurant-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

/* 左侧：餐厅信息区域 */
.restaurant-left {
    display: flex;
    flex: 0 0 400px;
    padding: 16px;
    gap: 16px;
    border-right: 1px solid #f0f0f0;
}

/* 餐厅图片 */
.card-image-wrapper {
    position: relative;
    width: 160px;
    height: 130px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 8px;
}

.restaurant-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.restaurant-card:hover .restaurant-image {
    transform: scale(1.05);
}

/* 餐厅信息 */
.restaurant-info-section {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.3;
}

.restaurant-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 8px;
}

.meta-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #666;
}

.meta-icon {
    color: #999;
}

/* 评分 */
.card-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
}

.rating-score {
    background: #ff8533;
    color: white;
    padding: 2px 6px;
    border-radius: 3px;
    font-weight: bold;
    font-size: 0.8rem;
}

.rating-stars {
    font-size: 0.7rem;
    color: #ff8533;
}

/* 右侧：优惠券列表区域 */
.restaurant-offers {
    flex: 1;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: #fafafa;
}

/* 单个优惠券卡片 */
.offer-card {
    background: white;
    border-radius: 8px;
    padding: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #e8e8e8;
    transition: all 0.3s;
}

.offer-card:hover {
    border-color: #ff8533;
    box-shadow: 0 2px 8px rgba(255, 133, 51, 0.15);
}

/* 优惠券左侧信息 */
.offer-info {
    flex: 1;
}

.offer-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
}

.offer-time {
    font-size: 0.8rem;
    color: #999;
    margin-bottom: 8px;
}

/* 价格区域 */
.offer-prices {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 6px;
}

.offer-current-price {
    color: #ff5722;
    font-size: 1.3rem;
    font-weight: bold;
}

.offer-original-price {
    color: #999;
    font-size: 0.9rem;
    text-decoration: line-through;
}

.offer-discount-tag {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: bold;
}

/* 立省标签 */
.offer-save-tag {
    background: linear-gradient(135deg, #fff1f0 0%, #ffe9e6 100%);
    color: #ff5722;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 12px;
    display: inline-block;
    border: 1px solid #ffccc7;
}

/* 抢购按钮 */
.offer-buy-btn {
    background: linear-gradient(135deg, #ff8533 0%, #ff6b1a 100%);
    color: white;
    padding: 8px 24px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(255, 133, 51, 0.3);
}

.offer-buy-btn:hover {
    background: linear-gradient(135deg, #ff6b1a 0%, #ee5500 100%);
    box-shadow: 0 4px 12px rgba(255, 133, 51, 0.4);
    transform: translateY(-1px);
}

/* 折扣标签（左上角） */
.discount-tag {
    position: absolute;
    top: 8px;
    left: 8px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.85rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* 响应式 - 移动端 */
@media (max-width: 768px) {
    .restaurant-card {
        flex-direction: column;
    }
    
    .restaurant-left {
        flex: none;
        border-right: none;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .card-image-wrapper {
        width: 120px;
        height: 100px;
    }
    
    .restaurant-offers {
        padding: 12px;
    }
    
    .offer-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .offer-buy-btn {
        width: 100%;
    }
}

/* 旧样式保留用于向后兼容 */
.discount-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #e63946;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 1.1rem;
}

.restaurant-info {
    padding: 1.5rem;
}

.restaurant-name {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #333;
}

.restaurant-cuisine {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.restaurant-location {
    color: #999;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.restaurant-description {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.restaurant-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
}

.original-fee {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9rem;
}

.discounted-fee {
    color: #e63946;
    font-weight: bold;
    font-size: 1.2rem;
}

.book-btn {
    background: #e63946;
    color: white;
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}

.book-btn:hover {
    background: #d62839;
}

/* 如何使用 */
.how-it-works {
    background: white;
    padding: 4rem 0;
}

.how-it-works h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #e63946;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.step p {
    color: #666;
}

/* 页脚 */
footer {
    background: #333;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.footer-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 1rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
}

/* 弹窗样式 */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    overflow-y: auto;
}

.modal-content {
    background-color: white;
    margin: 50px auto;
    padding: 2rem;
    border-radius: 12px;
    max-width: 500px;
    position: relative;
    animation: slideDown 0.3s;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 2rem;
    font-weight: bold;
    color: #999;
    cursor: pointer;
    transition: color 0.3s;
}

.close:hover {
    color: #333;
}

.modal-content h2 {
    margin-bottom: 1rem;
    color: #333;
}

#modalRestaurantDetails {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #e63946;
}

.booking-summary {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.booking-summary h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #333;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    color: #666;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 2px solid #ddd;
    font-weight: bold;
    font-size: 1.2rem;
    color: #333;
}

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

/* 响应式设计 */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .search-box {
        flex-direction: column;
        border-radius: 12px;
    }
    
    .search-box button {
        border-radius: 0 0 12px 12px;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .filters .container {
        flex-direction: column;
    }
    
    .restaurant-grid {
        grid-template-columns: 1fr;
    }
}

/* 确认页面样式 */
.confirmation-page {
    padding: 3rem 0;
    background: #f8f9fa;
    min-height: 100vh;
}

.confirmation-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #28a745;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 1.5rem;
}

.success-title {
    font-size: 2rem;
    color: #333;
    margin-bottom: 1rem;
}

.success-message {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.confirmation-code {
    background: linear-gradient(135deg, #e63946 0%, #d62839 100%);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.confirmation-code h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.confirmation-code .code {
    background: white;
    color: #e63946;
    font-size: 2.5rem;
    font-weight: bold;
    padding: 1rem;
    border-radius: 8px;
    letter-spacing: 0.3rem;
    font-family: 'Courier New', monospace;
}

.booking-details {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    text-align: left;
}

.booking-details h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #333;
    font-size: 1.3rem;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-row.total {
    border-top: 2px solid #ddd;
    padding-top: 1rem;
    margin-top: 0.5rem;
    font-weight: bold;
}

.detail-row .label {
    color: #666;
}

.detail-row .value {
    color: #333;
    font-weight: 500;
}

.detail-row .value.highlight {
    color: #e63946;
    font-weight: bold;
}

.detail-row .value.price {
    color: #e63946;
    font-size: 1.3rem;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn-screenshot {
    background: #17a2b8;
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-screenshot:hover {
    background: #138496;
}

.instructions {
    background: #fff3cd;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: left;
    border-left: 4px solid #ffc107;
}

.instructions p {
    margin: 0.5rem 0;
    color: #856404;
}

.instructions strong {
    color: #856404;
}

@media (max-width: 768px) {
    .confirmation-container {
        padding: 2rem 1.5rem;
    }
    
    .confirmation-code .code {
        font-size: 1.8rem;
        letter-spacing: 0.2rem;
    }
    
    .success-title {
        font-size: 1.5rem;
    }
}

/* 餐厅详情页面样式 */
.restaurant-detail-page {
    padding: 2rem 0;
    background: #f8f9fa;
    min-height: 100vh;
}

.detail-header {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 1rem 20px;
}

.back-btn {
    background: white;
    border: 2px solid #e0e0e0;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    color: #333;
    transition: all 0.3s;
}

.back-btn:hover {
    border-color: #e63946;
    color: #e63946;
}

.detail-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 2rem;
}

.detail-left {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.detail-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.detail-info {
    padding: 2rem;
}

.detail-info h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
}

.detail-cuisine, .detail-location {
    color: #666;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.detail-description {
    color: #666;
    line-height: 1.8;
    margin: 1.5rem 0;
}

/* 使用要求样式 */
.usage-requirements {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.usage-requirements p {
    color: #856404;
    margin: 0;
    line-height: 1.6;
}

/* 餐厅图片画廊 - 横向滑动 */
.restaurant-gallery-slider {
    margin: 1rem 0;
    width: 100%;
    overflow: hidden;
}

.gallery-slider-container {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 0.5rem 0;
    /* 隐藏滚动条但保持滚动功能 */
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

.gallery-slider-container::-webkit-scrollbar {
    display: none;  /* Chrome, Safari and Opera */
}

.gallery-slide {
    flex: 0 0 250px;
    height: 250px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s;
}

.gallery-slide:hover {
    transform: scale(1.05);
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .gallery-slide {
        flex: 0 0 200px;
        height: 200px;
    }
}


/* 图片模态框 */
.image-modal {
    display: flex;
    position: fixed;
    z-index: 9999;
    padding: 50px 20px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
    align-items: center;
    justify-content: center;
}

.image-modal-content {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    margin: auto;
    display: block;
    animation: zoom 0.3s;
}

@keyframes zoom {
    from {transform: scale(0.7)}
    to {transform: scale(1)}
}

.image-modal-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.image-modal-close:hover,
.image-modal-close:focus {
    color: #bbb;
}

@media (max-width: 768px) {
    .image-modal-content {
        max-width: 95%;
    }
    
    .image-modal-close {
        top: 10px;
        right: 20px;
        font-size: 30px;
    }
}

.detail-offer {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.detail-offer h3 {
    margin-bottom: 0.5rem;
    color: #856404;
}

.highlight-offer {
    color: #e63946;
    font-weight: bold;
    font-size: 1.2rem;
}

.detail-right {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.booking-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.booking-card h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.booking-subtitle {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* 日期选择网格 */
.dates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.date-option {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 0.8rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.date-option:hover {
    border-color: #e63946;
    transform: translateY(-2px);
}

.date-option.selected {
    border-color: #e63946;
    background: #fee;
}

.date-day {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0.3rem;
}

.date-number {
    font-weight: bold;
    color: #333;
    margin-bottom: 0.3rem;
}

.date-discount {
    font-size: 0.75rem;
    color: #e63946;
    font-weight: 600;
}

/* 时间段选择网格 */
.times-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.time-option {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 0.8rem;
    text-align: center;
    cursor: pointer;
    font-weight: 600;
    color: #333;
    transition: all 0.3s;
}

.time-option:hover {
    border-color: #e63946;
    background: #fee;
}

.time-option.selected {
    border-color: #e63946;
    background: #e63946;
    color: white;
}

/* 响应式设计 - 详情页 */
@media (max-width: 968px) {
    .detail-container {
        grid-template-columns: 1fr;
    }
    
    .detail-right {
        position: static;
    }
    
    .detail-image {
        height: 300px;
    }
    
    .dates-grid {
        grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    }
    
    .times-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .detail-info h1 {
        font-size: 1.5rem;
    }
    
    .dates-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* 日期已售罄样式 */
.date-option.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background-color: #f5f5f5;
}

.date-option.disabled:hover {
    border-color: #e0e0e0;
    transform: none;
}

.date-sold-out {
    font-size: 0.75rem;
    color: #d32f2f;
    font-weight: 600;
    background-color: #ffebee;
    padding: 2px 6px;
    border-radius: 3px;
}