/**
 * Kaisergarten - Buffet Experience Section
 * Creative, modern redesign matching Chinese restaurant theme
 */

/* Main Section */
.buffet-experience-section {
    position: relative;
    padding: 3rem 0; /* Mobile first: reduced from 6rem */
    background: linear-gradient(180deg, 
        #0a0a0a 0%, 
        #1a1010 30%, 
        #2a1515 70%, 
        #1a1010 100%
    );
    overflow: hidden;
    color: var(--text-light);
}

/* Tablet: increase padding */
@media (min-width: 768px) {
    .buffet-experience-section {
        padding: 4.5rem 0;
    }
}

/* Desktop: full padding */
@media (min-width: 1024px) {
    .buffet-experience-section {
        padding: 6rem 0;
    }
}

/* Animated Background */
.buffet-experience-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(196, 30, 58, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(250, 183, 0, 0.08) 0%, transparent 50%);
    animation: bgPulse 8s ease-in-out infinite;
}

@keyframes bgPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Floating Asian Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.float-element {
    position: absolute;
    opacity: 0.15;
    animation: float 20s ease-in-out infinite;
}

.float-element.cherry-blossom {
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, #fab700 30%, transparent 70%);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(250, 183, 0, 0.3);
}

.float-element.cherry-blossom::before,
.float-element.cherry-blossom::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    background: rgba(250, 183, 0, 0.4);
    border-radius: 50%;
}

.float-element.cherry-blossom::before {
    top: -10px;
    left: 15px;
}

.float-element.cherry-blossom::after {
    top: 15px;
    left: -10px;
}

.float-element.lantern {
    width: 40px;
    height: 50px;
    background: linear-gradient(to bottom, #c41e3a, #8a1529);
    border-radius: 20px 20px 0 0;
    box-shadow: 0 0 15px rgba(196, 30, 58, 0.5);
}

.float-element.bamboo {
    width: 8px;
    height: 80px;
    background: repeating-linear-gradient(
        to bottom,
        #4a5d4a 0px,
        #4a5d4a 15px,
        #3a4d3a 15px,
        #3a4d3a 18px
    );
    border-radius: 4px;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    33% {
        transform: translateY(-20px) rotate(5deg);
    }
    66% {
        transform: translateY(10px) rotate(-5deg);
    }
}

/* Section Header */
.buffet-experience-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.chinese-accent-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.chinese-char {
    font-size: 3rem;
    font-weight: bold;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(250, 183, 0, 0.3);
    animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.3); }
}

.divider-line {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
}

.section-title-large {
    font-size: 3rem;
    font-weight: 800;
    margin: 1rem 0;
    background: linear-gradient(135deg, #ffffff, #fab700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

/* Quality Badge Modern */
.quality-badge-modern {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, 
        rgba(76, 175, 80, 0.2), 
        rgba(76, 175, 80, 0.1)
    );
    backdrop-filter: blur(10px);
    border: 2px solid rgba(76, 175, 80, 0.4);
    border-radius: 50px;
    padding: 1rem 2rem;
    box-shadow: 0 8px 32px rgba(76, 175, 80, 0.2);
}

.badge-icon-wrapper {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
}

.badge-content {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.badge-content strong {
    font-size: 1rem;
    color: #4CAF50;
    font-weight: 700;
}

.badge-content span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Menu Categories Showcase */
.menu-categories-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.category-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(250, 183, 0, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.category-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(250, 183, 0, 0.5);
    box-shadow: 0 20px 60px rgba(250, 183, 0, 0.3);
}

.category-card:hover::before {
    opacity: 1;
}

.category-card.featured {
    border-color: rgba(250, 183, 0, 0.6);
    background: linear-gradient(135deg, 
        rgba(196, 30, 58, 0.1), 
        rgba(250, 183, 0, 0.05)
    );
}

.category-card.featured::after {
    content: '⭐ Beliebt';
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 30px rgba(196, 30, 58, 0.4);
    transition: transform 0.4s ease;
}

.category-card:hover .category-icon {
    transform: rotate(360deg) scale(1.1);
}

.category-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
    font-weight: 700;
}

.category-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.category-badge {
    display: inline-block;
    background: rgba(250, 183, 0, 0.2);
    color: var(--secondary-color);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(250, 183, 0, 0.3);
}

/* Pricing Showcase Wrapper */
.pricing-showcase-wrapper {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1), 
        rgba(255, 255, 255, 0.05)
    );
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    padding: 3rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.pricing-showcase-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(250, 183, 0, 0.2);
}

.showcase-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 8px 25px rgba(196, 30, 58, 0.4);
}

.pricing-showcase-header h3 {
    font-size: 1.8rem;
    margin: 0;
    color: var(--text-light);
}

.pricing-showcase-header p {
    margin: 0.3rem 0 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

/* Dynamic Pricing Modern Overrides */
.dynamic-buffet-pricing-modern {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
}

.dynamic-buffet-pricing-modern .pricing-widget-header {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.dynamic-buffet-pricing-modern .current-time-info {
    background: linear-gradient(135deg, var(--primary-color), #8a1529);
    box-shadow: 0 6px 20px rgba(196, 30, 58, 0.4);
}

.dynamic-buffet-pricing-modern .package-option {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

.dynamic-buffet-pricing-modern .package-option:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--secondary-color);
}

.dynamic-buffet-pricing-modern .package-option.active {
    background: linear-gradient(135deg, 
        rgba(196, 30, 58, 0.15), 
        rgba(250, 183, 0, 0.1)
    );
    border-color: var(--secondary-color);
}

.dynamic-buffet-pricing-modern .pricing-card {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

.dynamic-buffet-pricing-modern .pricing-card:hover {
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 15px 40px rgba(250, 183, 0, 0.2);
}

/* Buffet Highlights Grid */
.buffet-highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.highlight-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(250, 183, 0, 0.3);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(250, 183, 0, 0.1), 
        transparent
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
    box-shadow: 0 15px 40px rgba(250, 183, 0, 0.3);
}

.highlight-card:hover::before {
    opacity: 1;
}

.highlight-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--secondary-color), #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.highlight-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 500;
}

/* CTA Section */
.buffet-cta-section {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, 
        rgba(196, 30, 58, 0.2), 
        rgba(250, 183, 0, 0.1)
    );
    backdrop-filter: blur(10px);
    border: 2px solid rgba(250, 183, 0, 0.3);
    border-radius: 30px;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.buffet-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(250, 183, 0, 0.1) 0%, transparent 70%);
    animation: rotate 15s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.cta-content {
    position: relative;
    z-index: 1;
    margin-bottom: 2rem;
}

.cta-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.btn-gold {
    background: linear-gradient(135deg, var(--secondary-color), #ffd700);
    color: #1a1a1a;
    font-weight: 700;
    border: none;
    box-shadow: 0 8px 25px rgba(250, 183, 0, 0.4);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(250, 183, 0, 0.6);
    background: linear-gradient(135deg, #ffd700, var(--secondary-color));
}

.btn-outline-light {
    background: transparent;
    color: var(--text-light);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--text-light);
    transform: translateY(-3px);
}

/* Mobile Responsive - Optimized for mobile-first with focus on pricing */
@media (max-width: 768px) {
    .buffet-experience-section {
        padding: 3rem 0;
    }
    
    /* Hide quality badge and menu category cards on mobile */
    .quality-badge-modern,
    .menu-categories-showcase {
        display: none !important;
    }
    
    /* Minimize header for mobile */
    .buffet-experience-header {
        margin-bottom: 2rem;
    }
    
    .chinese-accent-top {
        gap: 0.5rem;
        margin-bottom: 1rem;
    }
    
    .chinese-char {
        font-size: 1.5rem;
    }
    
    .divider-line {
        width: 40px;
    }
    
    .section-title-large {
        font-size: 1.6rem;
        margin: 0.5rem 0;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    /* Compact quality badge */
    .quality-badge-modern {
        padding: 0.75rem 1.25rem;
        gap: 0.75rem;
    }
    
    .badge-icon-wrapper {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .badge-content strong {
        font-size: 0.85rem;
    }
    
    .badge-content span {
        font-size: 0.75rem;
    }
    
    /* Simplify categories to 2 columns on mobile - less scrolling */
    .menu-categories-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    /* Make category cards more compact */
    .category-card {
        padding: 1rem;
    }
    
    .category-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin-bottom: 0.75rem;
    }
    
    .category-card h3 {
        font-size: 0.9rem;
        margin-bottom: 0.25rem;
    }
    
    .category-card p {
        font-size: 0.75rem;
        margin-bottom: 0.5rem;
    }
    
    .category-badge {
        padding: 0.25rem 0.6rem;
        font-size: 0.7rem;
    }
    
    .category-card.featured::after {
        font-size: 0.65rem;
        padding: 0.2rem 0.5rem;
        top: 10px;
        right: 10px;
    }
    
    /* PRIORITIZE PRICING SECTION - Most important for mobile users */
    .pricing-showcase-wrapper {
        padding: 1.25rem;
        border-radius: 15px;
        margin-bottom: 2rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        border: none;
        position: relative;
    }
    
    .pricing-showcase-header {
        gap: 0.75rem;
        margin-bottom: 1rem;
        padding-bottom: 1rem;
    }
    
    .showcase-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .pricing-showcase-header h3 {
        font-size: 1.3rem;
    }
    
    .pricing-showcase-header p {
        font-size: 0.85rem;
    }
    
    /* Minimize highlights grid - less important than pricing */
    .buffet-highlights-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        margin-bottom: 2rem;
    }
    
    .highlight-card {
        padding: 1rem;
    }
    
    .highlight-number {
        font-size: 2.5rem;
    }
    
    /* Compact CTA section */
    .buffet-cta-section {
        padding: 1.5rem 1rem;
    }
    
    .cta-content {
        margin-bottom: 1.25rem;
    }
    
    .cta-content h3 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
    
    .cta-content p {
        font-size: 0.9rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .cta-buttons .btn {
        width: 100%;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .floating-elements {
        opacity: 0.3; /* Reduce even more for less distraction */
    }
    
    /* Weekly Overview Mobile - Compact */
    .dynamic-buffet-pricing-modern .weekly-overview {
        padding: 1rem;
        margin-top: 1.5rem !important;
    }
    
    .dynamic-buffet-pricing-modern .weekly-overview-title {
        font-size: 1.1rem;
        margin-bottom: 1rem !important;
    }
    
    .dynamic-buffet-pricing-modern .weekly-overview-header {
        padding-bottom: 1rem !important;
        margin-bottom: 1rem !important;
    }
    
    /* Table Layout */
    .dynamic-buffet-pricing-modern .price-table {
        width: 100%;
        border-radius: 12px;
        overflow: hidden;
        border: 1px solid rgba(250, 183, 0, 0.2);
    }
    
    .dynamic-buffet-pricing-modern .price-table-header {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr;
        background: linear-gradient(135deg, rgba(196, 30, 58, 0.2), rgba(250, 183, 0, 0.2));
        padding: 0.75rem;
        font-weight: 700;
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.95);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        border-bottom: 2px solid rgba(250, 183, 0, 0.3);
    }
    
    .dynamic-buffet-pricing-modern .price-table-row {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr;
        padding: 0.75rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.2s ease;
    }
    
    .dynamic-buffet-pricing-modern .price-table-row:hover {
        background: rgba(255, 255, 255, 0.05);
    }
    
    .dynamic-buffet-pricing-modern .price-table-row.today {
        background: rgba(250, 183, 0, 0.15);
        border-left: 3px solid var(--accent-color);
    }
    
    .dynamic-buffet-pricing-modern .price-table-row:last-child {
        border-bottom: none;
    }
    
    .dynamic-buffet-pricing-modern .table-cell {
        display: flex;
        align-items: center;
        color: rgba(255, 255, 255, 0.9);
        font-size: 0.95rem;
    }
    
    .dynamic-buffet-pricing-modern .day-cell {
        font-weight: 600;
        gap: 0.5rem;
    }
    
    .dynamic-buffet-pricing-modern .price-cell {
        justify-content: center;
        font-weight: 700;
        color: var(--accent-color);
        font-size: 1rem;
    }
    
    .dynamic-buffet-pricing-modern .today-badge {
        color: var(--accent-color);
        font-size: 0.8rem;
        animation: pulse 2s ease-in-out infinite;
    }
    
    .dynamic-buffet-pricing-modern .day-range-name {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    /* Remove old grid styles - now using table */
}

@media (max-width: 480px) {
    /* Ultra compact for small screens - pricing focus */
    .buffet-experience-section {
        padding: 2rem 0;
    }
    
    .section-title-large {
        font-size: 1.4rem;
    }
    
    .section-subtitle {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    /* Hide less important decorative elements on very small screens */
    .chinese-accent-top {
        display: none;
    }
    
    /* Simplify quality badge - just show icon and main text */
    .quality-badge-modern {
        padding: 0.6rem 1rem;
    }
    
    .badge-content span {
        display: none; /* Hide subtitle on very small screens */
    }
    
    /* Category showcase - keep 2 columns but more compact */
    .menu-categories-showcase {
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }
    
    .category-card {
        padding: 0.75rem;
    }
    
    .category-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .category-card h3 {
        font-size: 0.8rem;
    }
    
    .category-card p {
        display: none; /* Hide descriptions on tiny screens */
    }
    
    /* Highlights grid stays 2 columns, more compact */
    .buffet-highlights-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }
    
    .highlight-card {
        padding: 0.75rem;
    }
    
    .highlight-number {
        font-size: 1.8rem;
    }
    
    .highlight-label {
        font-size: 0.8rem;
    }
    
    /* Ultra compact weekly overview table for small screens */
    .dynamic-buffet-pricing-modern .weekly-overview {
        padding: 0.75rem;
        margin-top: 1rem !important;
    }
    
    .dynamic-buffet-pricing-modern .weekly-overview-title {
        font-size: 1rem;
        margin-bottom: 0.75rem !important;
    }
    
    .dynamic-buffet-pricing-modern .weekly-overview-header {
        padding-bottom: 0.75rem !important;
        margin-bottom: 0.75rem !important;
    }
    
    .dynamic-buffet-pricing-modern .price-table-header {
        padding: 0.6rem;
        font-size: 0.8rem;
    }
    
    .dynamic-buffet-pricing-modern .price-table-row {
        padding: 0.6rem;
    }
    
    .dynamic-buffet-pricing-modern .table-cell {
        font-size: 0.85rem;
    }
    
    .dynamic-buffet-pricing-modern .price-cell {
        font-size: 0.9rem;
    }
}

/* Weekly Overview Enhancements */
.dynamic-buffet-pricing-modern .weekly-overview {
    margin-top: 3rem !important;
    padding: 2rem !important;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.15), rgba(250, 183, 0, 0.1)) !important;
    border-radius: 20px !important;
    border: 1px solid rgba(250, 183, 0, 0.3) !important;
}

.dynamic-buffet-pricing-modern .weekly-overview-header {
    text-align: center !important;
    margin-bottom: 2rem !important;
    padding-bottom: 1.5rem !important;
    border-bottom: 2px solid rgba(250, 183, 0, 0.3) !important;
}

.dynamic-buffet-pricing-modern .weekly-overview-title {
    font-size: 1.4rem !important;
    font-weight: 700 !important;
    color: var(--text-light) !important;
    margin: 0 !important;
    background: linear-gradient(135deg, #fff, var(--secondary-color)) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.dynamic-buffet-pricing-modern .weekly-prices-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
    gap: 1.5rem !important;
}

.dynamic-buffet-pricing-modern .price-group-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05)) !important;
    border: 2px solid rgba(250, 183, 0, 0.35) !important;
    border-radius: 16px !important;
    padding: 2rem !important;
    text-align: center !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative !important;
    overflow: hidden !important;
}

.dynamic-buffet-pricing-modern .price-group-card::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 4px !important;
    background: linear-gradient(90deg, var(--secondary-color), #ffd700, var(--primary-color)) !important;
    opacity: 0 !important;
    transition: opacity 0.4s ease !important;
}

.dynamic-buffet-pricing-modern .price-group-card:hover {
    transform: translateY(-8px) !important;
    border-color: var(--secondary-color) !important;
    box-shadow: 0 20px 50px rgba(250, 183, 0, 0.4) !important;
    background: linear-gradient(135deg, rgba(250, 183, 0, 0.2), rgba(196, 30, 58, 0.15)) !important;
}

.dynamic-buffet-pricing-modern .price-group-card:hover::before {
    opacity: 1 !important;
}

.dynamic-buffet-pricing-modern .price-group-card.has-today {
    border-color: var(--secondary-color) !important;
    border-width: 3px !important;
    background: linear-gradient(135deg, rgba(250, 183, 0, 0.25), rgba(250, 183, 0, 0.15)) !important;
    box-shadow: 0 12px 40px rgba(250, 183, 0, 0.4) !important;
}

.dynamic-buffet-pricing-modern .price-group-card.has-today::before {
    height: 8px !important;
    opacity: 1 !important;
}

.dynamic-buffet-pricing-modern .day-range-name {
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    color: var(--text-light) !important;
    margin-bottom: 1.5rem !important;
    letter-spacing: 0.5px !important;
}

.dynamic-buffet-pricing-modern .grouped-prices {
    display: flex !important;
    justify-content: space-around !important;
    gap: 2rem !important;
    margin-bottom: 1.5rem !important;
    padding: 1.5rem !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border-radius: 12px !important;
}

.dynamic-buffet-pricing-modern .time-price {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 0.5rem !important;
}

.dynamic-buffet-pricing-modern .time-label {
    font-size: 0.9rem !important;
    color: rgba(255, 255, 255, 0.7) !important;
    font-weight: 500 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}

.dynamic-buffet-pricing-modern .price-value {
    font-size: 1.8rem !important;
    font-weight: 800 !important;
    background: linear-gradient(135deg, var(--secondary-color), #ffd700) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.dynamic-buffet-pricing-modern .grouped-days-detail {
    font-size: 0.85rem !important;
    color: rgba(255, 255, 255, 0.7) !important;
    margin-top: 1rem !important;
    padding-top: 1rem !important;
    border-top: 1px solid rgba(250, 183, 0, 0.3) !important;
    line-height: 1.5 !important;
    font-weight: 500 !important;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .float-element,
    .chinese-char,
    .buffet-cta-section::before {
        animation: none;
    }
    
    .category-card:hover .category-icon {
        transform: scale(1.1);
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .category-card,
    .highlight-card,
    .pricing-showcase-wrapper {
        border-width: 3px;
    }
    
    .category-card:hover,
    .highlight-card:hover {
        border-width: 4px;
    }
    
    .dynamic-buffet-pricing-modern .price-group-card {
        border-width: 3px;
    }
}
