/* Digital Signage Screen CSS */
/* Based on uploaded cafeteria menu board images - dark theme with fire accents */

:root {
    /* Color Scheme - Dark Cafeteria Theme */
    --bg-primary: #1a1a1a;
    --bg-secondary: #2d2d2d;
    --bg-tertiary: #3a3a3a;
    --bg-wood: linear-gradient(180deg, #2c2416 0%, #1a1610 100%);
    
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-muted: #888888;
    
    --accent-primary: #e94560;
    --accent-secondary: #ff6b35;
    --accent-gold: #ffd700;
    --accent-green: #4ade80;
    
    --price-color: #ffffff;
    --category-color: #e94560;
    --special-bg: #e94560;
    
    /* Typography - viewport responsive (can be overridden by theme inline styles) */
    --font-primary: 'Segoe UI', 'Arial', sans-serif;
    --font-display: 'Georgia', serif;
    --font-size-base: clamp(0.9rem, 1.2vw, 1.4rem);
    --font-size-sm: clamp(0.8rem, 1vw, 1.2rem);
    --font-size-lg: clamp(1.1rem, 1.5vw, 1.8rem);
    --font-size-xl: clamp(1.3rem, 1.8vw, 2.2rem);
    --font-size-xxl: clamp(1.6rem, 2.2vw, 2.8rem);
    
    /* Spacing - viewport responsive */
    --spacing-xs: clamp(4px, 0.5vw, 10px);
    --spacing-sm: clamp(8px, 1vw, 18px);
    --spacing-md: clamp(12px, 1.5vw, 28px);
    --spacing-lg: clamp(16px, 2vw, 36px);
    --spacing-xl: clamp(24px, 3vw, 52px);
    
    /* Screen dimensions optimized for 1920x1080 */
    --header-height: clamp(70px, 10vh, 120px);
    --footer-height: clamp(55px, 7vh, 90px);
}

/* Light theme override */
.theme-light {
    --bg-primary: #f5f5f5;
    --bg-secondary: #ffffff;
    --bg-tertiary: #e0e0e0;
    --text-primary: #1a1a1a;
    --text-secondary: #444444;
    --text-muted: #666666;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-family: var(--font-primary);
    background: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    overflow: hidden;
    cursor: none;
}

/* Hide cursor on all elements */
*, *::before, *::after {
    cursor: none !important;
}

/* Screen Container */
.screen-container {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--bg-wood);
    background-image: 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect fill="%231a1a1a" width="100" height="100"/><rect fill="%23222" x="0" y="0" width="100" height="2" opacity="0.3"/></svg>'),
        linear-gradient(180deg, #1a1610 0%, #0d0a08 100%);
}

/* Header */
.screen-header {
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--spacing-xl);
    background: linear-gradient(180deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 100%);
    border-bottom: 4px solid var(--accent-primary);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.logo-icon {
    font-size: var(--font-size-xxl);
}

.logo-image {
    height: clamp(40px, 7vh, 80px);
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: var(--font-size-xxl);
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--text-primary);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.header-center .tagline {
    font-size: var(--font-size-xl);
    color: var(--accent-gold);
    letter-spacing: 3px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.header-right {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--text-primary);
}

/* Weather Widget */
.weather-widget {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.weather-icon {
    font-size: var(--font-size-xxl);
}

.weather-temp {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--text-primary);
}

.weather-city {
    font-size: var(--font-size-base);
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Main Content */
.screen-main {
    flex: 1;
    display: flex;
    padding: var(--spacing-md);
    gap: var(--spacing-md);
    overflow: hidden;
}

/* Menu Section */
.menu-section {
    flex: 2;
    overflow: hidden;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: var(--spacing-md);
    height: 100%;
    overflow: hidden;
    padding: var(--spacing-sm);
    align-content: start;
}

/* Hide scrollbar but keep functionality */
.menu-grid::-webkit-scrollbar {
    width: 6px;
}

.menu-grid::-webkit-scrollbar-track {
    background: transparent;
}

.menu-grid::-webkit-scrollbar-thumb {
    background: var(--accent-primary);
    border-radius: 3px;
}

/* Menu Category */
.menu-category {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 100%);
    border-radius: 12px;
    padding: var(--spacing-md);
    border-left: 4px solid var(--accent-primary);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
}

.category-title {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--category-color);
    margin-bottom: var(--spacing-sm);
    padding-bottom: var(--spacing-xs);
    border-bottom: 2px solid rgba(233, 69, 96, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    flex-shrink: 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Menu Items */
.menu-items {
    list-style: none;
    overflow: hidden;
    flex: 1;
}

.menu-item {
    display: flex;
    align-items: baseline;
    padding: clamp(4px, 0.5vh, 8px) 0;
    font-size: var(--font-size-base);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.2s;
}

.menu-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.menu-item:last-child {
    border-bottom: none;
}

.item-name {
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
    min-width: 0;
}

.item-dots {
    display: none;
    margin: 0 var(--spacing-xs);
}

.item-price {
    color: var(--accent-gold);
    font-weight: 700;
    font-size: var(--font-size-base);
    white-space: nowrap;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Special & Featured Items */
.item-special {
    background: linear-gradient(90deg, rgba(233, 69, 96, 0.2) 0%, transparent 100%);
    padding-left: var(--spacing-xs);
    margin-left: calc(-1 * var(--spacing-xs));
    border-radius: 4px;
}

.item-special .item-name::before {
    content: '🔥 ';
}

.item-featured .item-name::after {
    content: ' ⭐';
}

/* Promo Section (renamed from ads to avoid blockers) */
.promo-section {
    flex: 1 1 400px;
    min-width: 300px;
    max-width: 600px;
    min-height: 300px;
    height: auto;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* When promo section is the only content */
.screen-main > .promo-section:only-child {
    flex: 1;
    max-width: 100%;
    min-width: 100%;
}

.promo-container {
    width: 100%;
    height: 100%;
    min-height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.promo-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.promo-slide.active {
    opacity: 1;
    z-index: 1;
}

.promo-content {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.promo-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: var(--bg-tertiary);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.promo-image-tag {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.promo-placeholder {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
}

.promo-placeholder-icon {
    font-size: 5rem;
    opacity: 0.3;
}

/* Video Embed */
.promo-video {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000;
    z-index: 1;
}

.video-embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    z-index: 2;
    object-fit: cover;
}

.mp4-video {
    object-fit: cover;
    background: #000;
}


.promo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--spacing-lg);
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
}

.promo-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: var(--spacing-xs);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.promo-text {
    font-size: 1.2rem;
    color: var(--text-primary);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

.promo-indicators {
    position: absolute;
    bottom: var(--spacing-sm);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: var(--spacing-xs);
    z-index: 10;
}

.promo-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: background 0.3s;
}

.promo-indicator.active {
    background: var(--accent-primary);
}

/* Orders Section */
.orders-section {
    flex: 1;
    min-width: 350px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 12px;
    padding: var(--spacing-md);
    display: flex;
    flex-direction: column;
}

.orders-title {
    font-size: 1.8rem;
    text-align: center;
    color: var(--accent-gold);
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.orders-grid {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    overflow: hidden;
}

.orders-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.column-title {
    font-size: 1.3rem;
    padding: var(--spacing-sm);
    border-radius: 8px;
    text-align: center;
    margin-bottom: var(--spacing-sm);
}

.ready-title {
    background: var(--accent-green);
    color: #000;
    animation: pulse-green 2s infinite;
}

.preparing-title {
    background: var(--accent-secondary);
    color: #000;
}

@keyframes pulse-green {
    0%, 100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7); }
    50% { box-shadow: 0 0 20px 10px rgba(74, 222, 128, 0.3); }
}

.order-numbers {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    align-content: flex-start;
    overflow-y: auto;
    padding: var(--spacing-xs);
}

.order-number {
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: 8px;
    text-align: center;
    min-width: 100px;
}

.order-ready {
    background: var(--accent-green);
    color: #000;
    font-weight: 700;
    animation: glow-green 1.5s infinite alternate;
}

@keyframes glow-green {
    from { box-shadow: 0 0 5px var(--accent-green); }
    to { box-shadow: 0 0 20px var(--accent-green); }
}

.order-preparing {
    background: var(--accent-secondary);
    color: #000;
    font-weight: 600;
}

.order-num {
    display: block;
    font-size: 1.4rem;
}

.order-name {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Special Banner */
.special-banner {
    height: var(--footer-height);
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary), var(--accent-primary));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.banner-content {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    animation: scroll-banner 20s linear infinite;
    white-space: nowrap;
}

.banner-icon {
    font-size: 1.5rem;
}

.banner-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@keyframes scroll-banner {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* RSS News Ticker */
.rss-ticker {
    height: var(--footer-height);
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    box-shadow: 0 -4px 25px rgba(0, 0, 0, 0.6);
    background: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.9) 100%);
    border-top: 3px solid var(--accent-primary);
}

.ticker-label {
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-gold) 100%);
    padding: 0 var(--spacing-lg);
    height: 100%;
    display: flex;
    align-items: center;
    font-size: var(--font-size-lg);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-right: none;
    white-space: nowrap;
    box-shadow: 4px 0 15px rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.ticker-label::before {
    content: '📰';
    margin-right: var(--spacing-sm);
    font-size: var(--font-size-xl);
}

.ticker-wrapper {
    flex: 1;
    overflow: hidden;
    height: 100%;
    display: flex;
    align-items: center;
}

.ticker-content {
    display: flex;
    align-items: center;
    white-space: nowrap;
    animation: ticker-scroll 30s linear infinite;
    padding-left: 20px;
}

.ticker-text {
    display: inline-flex;
    align-items: center;
    font-size: var(--font-size-xl);
    font-weight: 600;
    letter-spacing: 0.5px;
    padding-right: 100px;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    padding: 0 var(--spacing-lg);
    font-size: var(--font-size-xl);
    font-weight: 500;
}

.ticker-item::before {
    content: '●';
    margin-right: var(--spacing-sm);
    font-size: var(--font-size-sm);
    opacity: 0.6;
}

.ticker-source {
    background: rgba(0, 0, 0, 0.3);
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: 700;
    margin-right: var(--spacing-sm);
    text-transform: uppercase;
    font-size: var(--font-size-sm);
    letter-spacing: 1px;
}

.ticker-headline {
    font-size: var(--font-size-xl);
    font-weight: 500;
}

@keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Theme Decorations */
.theme-decorations {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1000;
    overflow: hidden;
}

.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-icon {
    position: absolute;
    font-size: 2rem;
    opacity: 0.6;
    animation: float-down 15s linear infinite;
}

.floating-icon:nth-child(1) { left: 5%; animation-delay: 0s; font-size: 1.5rem; }
.floating-icon:nth-child(2) { left: 15%; animation-delay: 2s; font-size: 2.5rem; }
.floating-icon:nth-child(3) { left: 25%; animation-delay: 4s; font-size: 1.8rem; }
.floating-icon:nth-child(4) { left: 35%; animation-delay: 1s; font-size: 2rem; }
.floating-icon:nth-child(5) { left: 50%; animation-delay: 3s; font-size: 2.2rem; }
.floating-icon:nth-child(6) { left: 65%; animation-delay: 5s; font-size: 1.6rem; }
.floating-icon:nth-child(7) { left: 75%; animation-delay: 2.5s; font-size: 2.8rem; }
.floating-icon:nth-child(8) { left: 85%; animation-delay: 4.5s; font-size: 1.4rem; }
.floating-icon:nth-child(9) { left: 95%; animation-delay: 1.5s; font-size: 2rem; }

@keyframes float-down {
    0% {
        transform: translateY(-100px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(110vh) rotate(360deg);
        opacity: 0;
    }
}

/* Christmas Theme Specific */
.theme-christmas .floating-icon {
    animation: snowfall 12s linear infinite;
}

@keyframes snowfall {
    0% {
        transform: translateY(-50px) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% { opacity: 0.8; }
    90% { opacity: 0.8; }
    100% {
        transform: translateY(110vh) translateX(50px) rotate(360deg);
        opacity: 0;
    }
}

/* Halloween Theme Specific */
.theme-halloween .floating-icon {
    animation: spooky-float 10s ease-in-out infinite;
}

@keyframes spooky-float {
    0%, 100% {
        transform: translateY(-50px) scale(1);
        opacity: 0;
    }
    10% { opacity: 0.7; }
    50% {
        transform: translateY(50vh) scale(1.2);
        opacity: 0.9;
    }
    90% { opacity: 0.7; }
}

/* Valentine Theme Specific */
.theme-valentines .floating-icon {
    animation: heart-float 8s ease-in-out infinite;
}

@keyframes heart-float {
    0% {
        transform: translateY(110vh) scale(0.5);
        opacity: 0;
    }
    50% {
        transform: translateY(50vh) scale(1);
        opacity: 0.8;
    }
    100% {
        transform: translateY(-50px) scale(0.5);
        opacity: 0;
    }
}

/* Responsive adjustments for different screen sizes */
@media (max-width: 1600px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .category-title {
        font-size: 1.4rem;
    }
    
    .menu-item {
        font-size: 1.1rem;
    }
    
    .item-price {
        font-size: 1.2rem;
    }
}

@media (max-width: 1200px) {
    .screen-main {
        flex-direction: column;
    }
    
    .ads-section {
        max-width: 100%;
        min-width: auto;
        max-height: 300px;
    }
    
    .orders-section {
        min-width: auto;
    }
}

/* Full screen mode styles */
.screen-container:fullscreen {
    width: 100vw;
    height: 100vh;
}

/* Print styles - hide for printing */
@media print {
    .screen-container {
        display: none;
    }
}

/* ============================================
   CITY SKYLINE THEME
   ============================================ */
.theme-city-skyline .screen-container {
    position: relative;
    overflow: hidden;
    display: block;
    background: linear-gradient(180deg, 
        #6b4a8a 0%, 
        #8b6aaa 25%,
        #a88bc4 45%,
        #c4a8d8 65%,
        #e8d4ec 85%,
        #f5e8f0 100%
    );
}

.theme-city-skyline .screen-container::before {
    display: none;
}

/* Skyline positioned at bottom half of screen, directly above ticker */
.theme-city-skyline .skyline-container {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    bottom: var(--footer-height);
    overflow: hidden;
    z-index: 2;
    pointer-events: none;
}

.theme-city-skyline .skyline-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.theme-city-skyline .skyline-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center center;
    opacity: 0;
    animation: skyline-fade 24s ease-in-out infinite;
}

.theme-city-skyline .skyline-image:nth-child(1) { animation-delay: 0s; }
.theme-city-skyline .skyline-image:nth-child(2) { animation-delay: 8s; }
.theme-city-skyline .skyline-image:nth-child(3) { animation-delay: 16s; }
.theme-city-skyline .skyline-image:nth-child(4) { animation-delay: 0s; }
.theme-city-skyline .skyline-image:nth-child(5) { animation-delay: 8s; }
.theme-city-skyline .skyline-image:nth-child(6) { animation-delay: 16s; }

@keyframes skyline-fade {
    0%, 25% { opacity: 0; }
    33%, 58% { opacity: 1; }
    66%, 100% { opacity: 0; }
}

/* Sky Overlay - Time (left) and Weather (right) in gradient area */
.theme-city-skyline .sky-overlay {
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    height: calc(50% - var(--header-height));
    z-index: 3;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: var(--spacing-lg) var(--spacing-xl);
    pointer-events: none;
}

.sky-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.sky-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.sky-time {
    font-size: clamp(5rem, 12vw, 10rem);
    font-weight: 300;
    color: #ffffff;
    line-height: 1;
    letter-spacing: 2px;
    text-shadow: 2px 4px 15px rgba(0, 0, 0, 0.3);
}

.sky-city {
    font-size: clamp(1.5rem, 3vw, 3rem);
    font-weight: 500;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-top: var(--spacing-xs);
    text-shadow: 1px 2px 8px rgba(0, 0, 0, 0.3);
}

.sky-weather {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
}

.sky-temp {
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 300;
    color: #ffffff;
    line-height: 1;
    text-shadow: 2px 4px 15px rgba(0, 0, 0, 0.3);
}

.sky-weather-icon {
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 1;
    filter: drop-shadow(2px 4px 8px rgba(0, 0, 0, 0.3));
}

.theme-city-skyline .screen-header {
    background: transparent !important;
    border-bottom: none !important;
    box-shadow: none !important;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
}

/* Hide main content for skyline theme - only show skyline and overlay */
.theme-city-skyline .screen-main {
    display: none !important;
}

.theme-city-skyline .menu-section {
    display: none !important;
}

.theme-city-skyline .promo-section {
    display: none !important;
}

.theme-city-skyline .rss-ticker {
    position: absolute !important;
    bottom: 0 !important;
    top: auto !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 20;
    background: linear-gradient(180deg, rgba(30,30,30,0.95) 0%, rgba(20,20,20,0.98) 100%) !important;
    border-top: 3px solid var(--accent-primary) !important;
}

.theme-city-skyline .ticker-label {
    background: var(--accent-primary) !important;
    color: #ffffff !important;
}

.theme-city-skyline .ticker-text,
.theme-city-skyline .ticker-item,
.theme-city-skyline .ticker-headline {
    color: #ffffff !important;
}

/* ============================================
   WEATHER FORECAST THEME - 7 Day Forecast
   ============================================ */

/* Default daytime sunny background */
.theme-weather-forecast .screen-container {
    background: linear-gradient(180deg, 
        #1e5799 0%, 
        #2989d8 30%, 
        #7db9e8 60%,
        #a8d4f0 100%
    );
    position: relative;
    overflow: hidden;
    transition: background 1s ease;
}

/* Morning background (6am - 12pm) - warm sunrise colors */
.theme-weather-forecast.weather-morning .screen-container {
    background: linear-gradient(180deg, 
        #ff9a56 0%, 
        #ffbe76 20%,
        #87ceeb 50%,
        #a8d4f0 100%
    );
}

/* Afternoon background (12pm - 6pm) - bright blue sky */
.theme-weather-forecast.weather-afternoon .screen-container {
    background: linear-gradient(180deg, 
        #1e5799 0%, 
        #2989d8 30%, 
        #7db9e8 60%,
        #a8d4f0 100%
    );
}

/* Evening background (6pm - 9pm) - sunset colors */
.theme-weather-forecast.weather-evening .screen-container {
    background: linear-gradient(180deg, 
        #2c3e50 0%, 
        #e74c3c 20%,
        #f39c12 40%,
        #f5d0a9 70%,
        #dfe6e9 100%
    );
}

/* Night background (9pm - 6am) - dark blue with stars */
.theme-weather-forecast.weather-night .screen-container {
    background: linear-gradient(180deg, 
        #0c1445 0%, 
        #1a237e 30%,
        #283593 60%,
        #3949ab 100%
    );
}

/* Rainy weather overlay */
.theme-weather-forecast.weather-rainy .screen-container {
    background: linear-gradient(180deg, 
        #4a5568 0%, 
        #718096 30%,
        #a0aec0 60%,
        #cbd5e0 100%
    );
}

/* Rainy night */
.theme-weather-forecast.weather-night.weather-rainy .screen-container {
    background: linear-gradient(180deg, 
        #1a202c 0%, 
        #2d3748 30%,
        #4a5568 60%,
        #718096 100%
    );
}

/* Cloudy weather */
.theme-weather-forecast.weather-cloudy .screen-container {
    background: linear-gradient(180deg, 
        #636e72 0%, 
        #b2bec3 40%,
        #dfe6e9 100%
    );
}

/* Snowy weather */
.theme-weather-forecast.weather-snowy .screen-container {
    background: linear-gradient(180deg, 
        #a8c0d6 0%, 
        #d5e5f2 40%,
        #f0f5f9 100%
    );
}

/* Sky background with sun effect - visible during day */
.theme-weather-forecast .screen-container::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255,255,255,0.95) 0%, rgba(255,220,100,0.6) 20%, rgba(255,200,50,0.3) 40%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    transition: opacity 1s ease;
}

/* Morning sun - orange glow */
.theme-weather-forecast.weather-morning .screen-container::before {
    background: radial-gradient(circle, rgba(255,200,100,0.95) 0%, rgba(255,150,50,0.6) 30%, transparent 70%);
    top: 20%;
    left: -30px;
}

/* Evening sun - red/orange glow on right side */
.theme-weather-forecast.weather-evening .screen-container::before {
    background: radial-gradient(circle, rgba(255,150,50,0.9) 0%, rgba(255,100,50,0.5) 30%, transparent 70%);
    top: 30%;
    left: auto;
    right: -50px;
}

/* Night - moon glow */
.theme-weather-forecast.weather-night .screen-container::before {
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, rgba(200,200,255,0.15) 40%, transparent 70%);
    width: 150px;
    height: 150px;
    top: 30px;
    left: auto;
    right: 100px;
}

/* Hide sun during rainy/cloudy weather */
.theme-weather-forecast.weather-rainy .screen-container::before,
.theme-weather-forecast.weather-cloudy .screen-container::before {
    opacity: 0.2;
}

/* Clouds at bottom */
.theme-weather-forecast .screen-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.9" d="M0,224L48,213.3C96,203,192,181,288,181.3C384,181,480,203,576,218.7C672,235,768,245,864,234.7C960,224,1056,192,1152,181.3C1248,171,1344,181,1392,186.7L1440,192L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom center;
    background-size: cover;
    z-index: 1;
    pointer-events: none;
    transition: opacity 1s ease;
}

/* Darker clouds at night */
.theme-weather-forecast.weather-night .screen-container::after {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23374151" fill-opacity="0.7" d="M0,224L48,213.3C96,203,192,181,288,181.3C384,181,480,203,576,218.7C672,235,768,245,864,234.7C960,224,1056,192,1152,181.3C1248,171,1344,181,1392,186.7L1440,192L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom center;
    background-size: cover;
}

/* Gray clouds for rainy weather */
.theme-weather-forecast.weather-rainy .screen-container::after {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23a0aec0" fill-opacity="0.95" d="M0,224L48,213.3C96,203,192,181,288,181.3C384,181,480,203,576,218.7C672,235,768,245,864,234.7C960,224,1056,192,1152,181.3C1248,171,1344,181,1392,186.7L1440,192L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom center;
    background-size: cover;
}

/* Hide default elements */
.theme-weather-forecast .screen-header,
.theme-weather-forecast .screen-main,
.theme-weather-forecast .menu-section,
.theme-weather-forecast .promo-section,
.theme-weather-forecast .orders-section {
    display: none !important;
}

/* Weather Forecast Container */
.weather-forecast-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 40px;
    z-index: 10;
}

/* Title Banner */
.weather-title-banner {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    padding: 25px 80px;
    border-radius: 50px;
    margin-bottom: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.weather-title-text {
    color: #ffffff;
    font-size: clamp(32px, 5vw, 64px);
    font-weight: 700;
    font-style: italic;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    white-space: nowrap;
}

#forecast-city {
    text-transform: capitalize;
}

/* Forecast Cards Container */
.forecast-cards {
    display: flex;
    gap: clamp(15px, 2.5vw, 30px);
    justify-content: center;
    align-items: stretch;
    flex-wrap: nowrap;
    width: 100%;
    max-width: 95vw;
    padding: 0 20px;
}

/* Individual Forecast Card */
.forecast-card {
    background: linear-gradient(180deg, rgba(74,158,218,0.9) 0%, rgba(59,130,196,0.95) 100%);
    border-radius: 25px;
    padding: clamp(20px, 3vw, 40px) clamp(15px, 2vw, 30px);
    flex: 1;
    min-width: clamp(100px, 12vw, 180px);
    max-width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(10px, 1.5vw, 20px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.forecast-card:hover {
    transform: translateY(-5px);
}

.forecast-card.loading {
    opacity: 0.5;
}

/* Day name */
.forecast-day {
    color: #ffffff;
    font-size: clamp(20px, 2.5vw, 36px);
    font-weight: 600;
    text-transform: lowercase;
}

/* Weather icon */
.forecast-icon {
    font-size: clamp(50px, 8vw, 100px);
    line-height: 1;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.2));
}

/* High temperature */
.forecast-temp-high {
    color: #ffffff;
    font-size: clamp(40px, 6vw, 80px);
    font-weight: 700;
    line-height: 1;
}

.forecast-temp-high .temp-unit {
    font-size: 0.5em;
    vertical-align: super;
}

/* Low temperature */
.forecast-temp-low {
    color: rgba(255,255,255,0.7);
    font-size: clamp(22px, 3vw, 40px);
    font-weight: 500;
}

.forecast-temp-low .temp-unit-small {
    font-size: 0.6em;
    vertical-align: super;
}

/* Ticker styling for weather theme */
.theme-weather-forecast .rss-ticker {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 20;
    background: linear-gradient(180deg, rgba(30,100,180,0.95) 0%, rgba(20,60,120,0.98) 100%) !important;
}

/* ============================================
   HD MENU THEME - Professional Menu Board
   ============================================ */

.theme-hd-menu .screen-container {
    background: #1e1e1e;
    display: flex;
    flex-direction: column;
}

/* Hide default header for HD Menu */
.theme-hd-menu .screen-header {
    display: none !important;
}

/* Main content area */
.theme-hd-menu .screen-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
}

/* Menu section takes full space */
.theme-hd-menu .menu-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 10px;
    gap: 0;
    overflow: hidden;
}

/* Categories grid - multi-column layout */
.theme-hd-menu .categories-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    flex: 1;
    overflow: hidden;
    align-content: start;
}

/* Individual category card */
.theme-hd-menu .menu-category {
    background: #2d2d2d;
    border-radius: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Category header with colorful backgrounds - matching reference image */
.theme-hd-menu .category-header {
    padding: 10px 12px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

/* Exact colors from reference image */
/* Column 1: Teal/Cyan */
.theme-hd-menu .menu-category:nth-child(5n+1) .category-header {
    background: #2dd4bf;
}
/* Column 2: Purple */
.theme-hd-menu .menu-category:nth-child(5n+2) .category-header {
    background: #a855f7;
}
/* Column 3: Pink/Magenta */
.theme-hd-menu .menu-category:nth-child(5n+3) .category-header {
    background: #ec4899;
}
/* Column 4: Light Blue/Cyan */
.theme-hd-menu .menu-category:nth-child(5n+4) .category-header {
    background: #67e8f9;
}
/* Column 5: Cream/Beige (for specials) */
.theme-hd-menu .menu-category:nth-child(5n+5) .category-header {
    background: #fef3c7;
}
.theme-hd-menu .menu-category:nth-child(5n+5) .category-name {
    color: #1f2937;
}

.theme-hd-menu .category-name {
    color: #ffffff;
    font-size: clamp(12px, 1.5vw, 18px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.theme-hd-menu .category-icon {
    display: none;
}

/* Menu items list */
.theme-hd-menu .menu-items {
    padding: 8px 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
    background: #2d2d2d;
}

/* Individual menu item */
.theme-hd-menu .menu-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 3px 0;
    border-bottom: none;
}

.theme-hd-menu .item-name {
    color: #ffffff;
    font-size: clamp(11px, 1.2vw, 14px);
    font-weight: 500;
    flex: 1;
}

.theme-hd-menu .item-description {
    display: block;
    color: #9ca3af;
    font-size: clamp(9px, 0.9vw, 11px);
    margin-top: 1px;
    font-style: italic;
}

.theme-hd-menu .item-price {
    color: #ffffff;
    font-size: clamp(11px, 1.2vw, 14px);
    font-weight: 600;
    margin-left: 10px;
    white-space: nowrap;
}

.theme-hd-menu .item-dots {
    display: none;
}

/* Special/Featured items - highlighted in gold */
.theme-hd-menu .item-special .item-name,
.theme-hd-menu .item-featured .item-name {
    color: #fbbf24;
}

/* Today's Special section - separate block with different styling */
.theme-hd-menu .promo-section {
    display: flex !important;
    padding: 10px;
    gap: 10px;
    background: #1e1e1e;
}

.theme-hd-menu .promo-item {
    flex: 1;
    background: #2d2d2d;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: stretch;
}

.theme-hd-menu .promo-image {
    width: 140px;
    min-height: 100px;
    object-fit: cover;
}

.theme-hd-menu .promo-content {
    padding: 12px 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.theme-hd-menu .promo-label {
    display: inline-block;
    background: #f97316;
    color: #ffffff;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 3px 8px;
    border-radius: 3px;
    margin-bottom: 6px;
    width: fit-content;
}

.theme-hd-menu .promo-title {
    color: #ffffff;
    font-size: clamp(14px, 1.6vw, 20px);
    font-weight: 700;
    text-transform: uppercase;
}

.theme-hd-menu .promo-description {
    color: #9ca3af;
    font-size: 11px;
    margin-top: 4px;
}

/* Happy Hour / Special Offer box - Yellow background */
.theme-hd-menu .hd-special-offer {
    background: #fbbf24;
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    border-radius: 8px;
}

.theme-hd-menu .hd-special-offer-title {
    color: #1f2937;
    font-size: clamp(16px, 2vw, 24px);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.1;
    text-align: center;
}

.theme-hd-menu .hd-special-offer-subtitle {
    color: #374151;
    font-size: clamp(12px, 1.4vw, 16px);
    font-weight: 700;
    margin-top: 5px;
}

/* Featured items section at bottom */
.theme-hd-menu .hd-featured-section {
    display: flex;
    gap: 10px;
    padding: 10px;
    background: #1e1e1e;
}

.theme-hd-menu .hd-featured-item {
    flex: 1;
    background: #2d2d2d;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
}

.theme-hd-menu .hd-featured-image {
    width: 120px;
    height: 90px;
    object-fit: cover;
}

.theme-hd-menu .hd-featured-content {
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.theme-hd-menu .hd-featured-label {
    color: #2dd4bf;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.theme-hd-menu .hd-featured-title {
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    margin-top: 3px;
}

/* Ticker styling */
.theme-hd-menu .rss-ticker {
    background: #111111 !important;
    border-top: 2px solid #2dd4bf;
}

.theme-hd-menu .ticker-label {
    background: #2dd4bf !important;
    color: #1f2937 !important;
}

/* Special category styling - cream/beige background with dark text */
.theme-hd-menu .menu-category.category-special .category-header {
    background: #fef3c7;
}
.theme-hd-menu .menu-category.category-special .category-name {
    color: #1f2937;
}

/* Responsive adjustments for HD displays */
@media (min-width: 1920px) {
    .theme-hd-menu .categories-grid {
        grid-template-columns: repeat(5, 1fr);
    }
    
    .theme-hd-menu .category-name {
        font-size: 16px;
    }
    
    .theme-hd-menu .item-name,
    .theme-hd-menu .item-price {
        font-size: 13px;
    }
}

@media (max-width: 1400px) {
    .theme-hd-menu .categories-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1100px) {
    .theme-hd-menu .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 2560px) {
    .theme-hd-menu .categories-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

/* HD Menu Bottom Section - Featured Items with Images */
.theme-hd-menu .hd-menu-bottom-section {
    display: flex;
    gap: 10px;
    padding: 10px;
    background: #1e1e1e;
    flex-shrink: 0;
}

.theme-hd-menu .hd-featured-card {
    flex: 1;
    background: #2d2d2d;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    min-height: 100px;
}

.theme-hd-menu .hd-featured-card img {
    width: 130px;
    height: 100%;
    min-height: 100px;
    object-fit: cover;
}

.theme-hd-menu .hd-featured-card-content {
    padding: 12px 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.theme-hd-menu .hd-featured-card-label {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
    width: fit-content;
}

/* Different label colors */
.theme-hd-menu .hd-featured-card:nth-child(1) .hd-featured-card-label {
    background: #2dd4bf;
    color: #1f2937;
}
.theme-hd-menu .hd-featured-card:nth-child(2) .hd-featured-card-label {
    background: #a855f7;
    color: #ffffff;
}
.theme-hd-menu .hd-featured-card:nth-child(3) .hd-featured-card-label {
    background: #ec4899;
    color: #ffffff;
}

.theme-hd-menu .hd-featured-card-title {
    color: #ffffff;
    font-size: clamp(14px, 1.5vw, 18px);
    font-weight: 700;
    text-transform: uppercase;
}

.theme-hd-menu .hd-featured-card-desc {
    color: #9ca3af;
    font-size: 11px;
    margin-top: 4px;
    line-height: 1.3;
}

/* Happy Hour Special Offer Box */
.theme-hd-menu .hd-happy-hour {
    background: #fbbf24;
    min-width: 180px;
    max-width: 220px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px;
    text-align: center;
}

.theme-hd-menu .hd-happy-hour-title {
    color: #1f2937;
    font-size: clamp(18px, 2.2vw, 28px);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1;
}

.theme-hd-menu .hd-happy-hour-subtitle {
    color: #1f2937;
    font-size: clamp(14px, 1.6vw, 20px);
    font-weight: 800;
    margin-top: 5px;
}

.theme-hd-menu .hd-happy-hour-details {
    color: #374151;
    font-size: clamp(11px, 1.2vw, 14px);
    font-weight: 600;
    margin-top: 8px;
}

/* ============================================
   FEATURED ITEMS CORNER - Top Left Position
   ============================================ */

.featured-items-corner {
    position: fixed;
    top: 10px;
    left: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    z-index: 100;
    max-width: 350px;
}

.featured-corner-card {
    background: #2d2d2d;
    border-radius: 8px;
    padding: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.featured-corner-image {
    width: 60px;
    height: 60px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}

.featured-corner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-corner-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.featured-corner-label {
    background: #2dd4bf;
    color: #1f2937;
    font-size: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 2px 6px;
    border-radius: 3px;
    width: fit-content;
}

.featured-corner-name {
    color: #ffffff;
    font-size: clamp(12px, 1.4vw, 16px);
    font-weight: 700;
    text-transform: uppercase;
}

.featured-corner-price {
    display: none;
}

/* Responsive */
@media (min-width: 1920px) {
    .featured-corner-card {
        padding: 10px;
    }
    
    .featured-corner-image {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 768px) {
    .featured-items-corner {
        top: 8px;
        left: 8px;
        max-width: 280px;
    }
    
    .featured-corner-image {
        width: 50px;
        height: 50px;
    }
}

/* ============================================
   MENU ADS-MENU THEME - Split Layout
   Ads on left, Menu on right
   ============================================ */

.theme-menu-ads-menu .screen-container {
    background: #1a1a1a;
    display: flex;
    flex-direction: column;
}

.theme-menu-ads-menu .screen-header {
    display: none !important;
}

.theme-menu-ads-menu .screen-main {
    flex: 1;
    display: flex;
    flex-direction: row;
    padding: 0;
    overflow: hidden;
}

/* Left side - Ads/Promo area */
.theme-menu-ads-menu .promo-section {
    width: 35%;
    min-width: 300px;
    max-width: 450px;
    display: flex !important;
    flex-direction: column;
    background: #1a1a1a;
    padding: 0;
    order: -1;
    overflow: hidden;
}

.theme-menu-ads-menu .promo-container {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.theme-menu-ads-menu .promo-slide {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.theme-menu-ads-menu .promo-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.theme-menu-ads-menu .promo-image-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.theme-menu-ads-menu .promo-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Right side - Menu area */
.theme-menu-ads-menu .menu-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 10px;
    overflow: hidden;
    background: #1a1a1a;
}

.theme-menu-ads-menu .menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    flex: 1;
    overflow: auto;
    align-content: start;
}

.theme-menu-ads-menu .menu-category {
    background: #2a2a2a;
    border-radius: 0;
    border-left: none;
    overflow: hidden;
    padding: 0;
}

.theme-menu-ads-menu .category-title {
    background: linear-gradient(180deg, #cc0000 0%, #990000 100%);
    color: #ffffff;
    font-size: clamp(12px, 1.4vw, 18px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 12px;
    margin: 0;
    border-bottom: none;
    text-align: center;
    font-style: normal;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.theme-menu-ads-menu .category-name {
    color: #ffffff;
}

.theme-menu-ads-menu .menu-items {
    padding: 8px 10px;
    background: #2a2a2a;
}

.theme-menu-ads-menu .menu-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 4px 0;
    border-bottom: none;
    font-size: clamp(10px, 1.1vw, 14px);
}

.theme-menu-ads-menu .item-name {
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
    flex: 1;
}

.theme-menu-ads-menu .item-description {
    display: block;
    color: #888888;
    font-size: clamp(8px, 0.9vw, 11px);
    font-style: italic;
    text-transform: none;
}

.theme-menu-ads-menu .item-dots {
    display: none;
}

.theme-menu-ads-menu .item-price {
    color: #ffffff;
    font-weight: 700;
    font-size: clamp(11px, 1.2vw, 15px);
    margin-left: 10px;
}

/* Special/Featured items */
.theme-menu-ads-menu .item-special .item-name,
.theme-menu-ads-menu .item-featured .item-name {
    color: #ffd700;
}

/* Featured items section - hide in this theme */
.theme-menu-ads-menu .featured-items-section {
    display: none;
}

/* Ticker */
.theme-menu-ads-menu .rss-ticker {
    background: #000000 !important;
    border-top: 2px solid #cc0000;
}

.theme-menu-ads-menu .ticker-label {
    background: #cc0000 !important;
}

/* Special offer box styling */
.theme-menu-ads-menu .ads-special-offer {
    background: #cc0000;
    padding: 15px;
    margin: 10px;
    border-radius: 8px;
    text-align: center;
}

.theme-menu-ads-menu .ads-special-offer-title {
    color: #ffd700;
    font-size: clamp(14px, 1.8vw, 22px);
    font-weight: 800;
    text-transform: uppercase;
}

.theme-menu-ads-menu .ads-special-offer-text {
    color: #ffffff;
    font-size: clamp(11px, 1.3vw, 16px);
    margin-top: 5px;
}

/* Responsive */
@media (min-width: 1920px) {
    .theme-menu-ads-menu .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .theme-menu-ads-menu .promo-section {
        width: 35%;
        max-width: 500px;
    }
}

@media (max-width: 1200px) {
    .theme-menu-ads-menu .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .theme-menu-ads-menu .promo-section {
        width: 30%;
        min-width: 250px;
    }
}

/* ============================================
   SINGLES SHOWCASE - Diagonal Colorful Stripes
   Full-screen product showcase matching reference
   ============================================ */

.singles-showcase {
    display: flex;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
}

.single-stripe {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
    position: relative;
    overflow: visible;
}

/* Diagonal background using pseudo-element with skew */
.single-stripe::before {
    content: '';
    position: absolute;
    top: 0;
    left: -15%;
    width: 130%;
    height: 100%;
    background-color: var(--stripe-color);
    transform: skewX(-8deg);
    transform-origin: top left;
    z-index: 0;
}

.single-stripe:first-child::before {
    left: 0;
    width: 115%;
}

.single-stripe:last-child::before {
    left: -15%;
    width: 150%;
    transform: skewX(-8deg);
    right: 0;
}

/* Background text watermark effect */
.single-stripe::after {
    content: attr(data-name);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-90deg);
    font-size: 6vw;
    font-weight: 900;
    color: rgba(0,0,0,0.06);
    text-transform: uppercase;
    white-space: nowrap;
    pointer-events: none;
    z-index: 1;
    letter-spacing: 5px;
}

.single-content {
    z-index: 2;
    padding: 30px 25px 10px 25px;
    position: relative;
}

.single-name {
    font-family: 'Impact', 'Arial Black', 'Helvetica Neue', sans-serif;
    font-size: clamp(1.6rem, 3.2vw, 3.2rem);
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    line-height: 1.0;
    margin: 0 0 8px 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.4);
    word-wrap: break-word;
    letter-spacing: -1px;
}

.single-price {
    font-family: 'Impact', 'Arial Black', 'Helvetica Neue', sans-serif;
    font-size: clamp(1.4rem, 2.8vw, 2.8rem);
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
    letter-spacing: -0.5px;
}

.single-description-box {
    position: absolute;
    bottom: 55%;
    left: 20px;
    right: 25px;
    z-index: 2;
    padding-right: 10px;
}

.single-description {
    font-family: 'Arial', sans-serif;
    font-size: clamp(1.50rem, 1.2vw, 1.20rem);
    color: rgba(255,255,255,0.85);
    line-height: 1.5;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.single-image {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 45%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    z-index: 3;
}

.single-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 15px 40px rgba(0,0,0,0.5));
}

/* Responsive adjustments for singles */
@media (max-width: 1400px) {
    .single-stripe {
        padding: 25px 20px;
    }
    
    .single-name {
        font-size: clamp(1.4rem, 3vw, 2.8rem);
    }
    
    .single-price {
        font-size: clamp(1.2rem, 2.2vw, 2.2rem);
    }
    
    .single-description-box {
        bottom: 48%;
    }
}

@media (max-width: 1000px) {
    .single-stripe {
        padding: 20px 15px;
        clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
        margin-right: -3%;
    }
    
    .single-name {
        font-size: clamp(1rem, 2.5vw, 2rem);
    }
    
    .single-price {
        font-size: clamp(0.9rem, 2vw, 1.6rem);
    }
    
    .single-description-box {
        display: none;
    }
    
    .single-image {
        height: 50%;
        bottom: 8%;
    }
}

/* ============================================
   STORE CLOSED - Blackout Screen
   Full-screen overlay when store is closed
   ============================================ */

.blackout-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #000000;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hide everything else when blackout is active */
body.store-closed * {
    animation: none !important;
    transition: none !important;
}

body.store-closed > *:not(.blackout-screen) {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

body.store-closed .blackout-screen {
    display: flex !important;
}

body.store-closed .blackout-screen,
body.store-closed .blackout-screen * {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

body.store-closed .blackout-content {
    display: block !important;
}

.blackout-content {
    text-align: center;
    color: #333333;
}

.blackout-icon {
    font-size: 5rem;
    margin-bottom: 20px;
    opacity: 0.3;
}

.blackout-title {
    font-size: 2rem;
    font-weight: 300;
    color: #222222;
    margin: 0;
    opacity: 0.2;
}

.blackout-time {
    font-size: 1.2rem;
    color: #333333;
    margin-top: 15px;
    opacity: 0.15;
}

body.store-closed .screen-container {
    display: none;
}

body.store-closed .promo-indicators,
body.store-closed .loading-bar,
body.store-closed .progress-bar,
body.store-closed .rss-ticker {
    display: none !important;
}

/* Always hide loading bar and promo indicators */
.promo-indicators,
.promo-indicator,
.rotation-indicator,
.rotation-progress,
.loading-bar,
.progress-bar,
.promo-section .promo-indicators,
.promo-section .promo-indicator {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

/* ============================================
   THEME: Weather 3D
   5-day forecast with 3D-style icons
   Exact match to reference image
   ============================================ */

.theme-weather-3d .screen-container {
    background: linear-gradient(180deg, 
        #7CB9D8 0%, 
        #9DCBE5 20%, 
        #B5DAF0 40%, 
        #C8E4F5 60%, 
        #D8EDF8 80%, 
        #E5F3FB 100%);
    position: relative;
    overflow: hidden;
}

/* Hide default elements */
.theme-weather-3d .screen-header,
.theme-weather-3d .screen-main,
.theme-weather-3d .menu-section,
.theme-weather-3d .promo-section,
.theme-weather-3d .orders-section,
.theme-weather-3d .rss-ticker {
    display: none !important;
}

/* Weather 3D Container */
.weather-3d-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 40px;
    z-index: 10;
}

/* 5-Day Forecast Grid */
.weather-3d-forecast {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    max-width: 1600px;
    gap: 10px;
    padding-top: 20px;
}

/* Individual Day Card */
.weather-3d-day {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    max-width: 280px;
}

/* Day Name - Dark gray/charcoal color like image */
.weather-3d-day-name {
    font-size: clamp(1.4rem, 2.8vw, 2.2rem);
    font-weight: 700;
    color: #4A5568;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px rgba(255,255,255,0.8);
}

/* Weather Icon Container */
.weather-3d-icon-container {
    position: relative;
    width: clamp(100px, 15vw, 180px);
    height: clamp(100px, 15vw, 180px);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

/* 3D Sun - Exact match to reference image orange/yellow gradient */
.weather-3d-sun {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 35% 35%, 
        #FFE55C 0%, 
        #FFCC00 25%, 
        #FFB300 50%, 
        #FF9500 75%, 
        #E67300 100%);
    border-radius: 50%;
    box-shadow: 
        0 0 40px rgba(255, 180, 0, 0.6),
        0 0 80px rgba(255, 140, 0, 0.3),
        inset -10px -10px 25px rgba(230, 100, 0, 0.5),
        inset 8px 8px 15px rgba(255, 240, 150, 0.7);
}

@keyframes sun-glow {
    0%, 100% { box-shadow: 0 0 40px rgba(255, 180, 0, 0.6), 0 0 80px rgba(255, 140, 0, 0.3), inset -10px -10px 25px rgba(230, 100, 0, 0.5), inset 8px 8px 15px rgba(255, 240, 150, 0.7); }
    50% { box-shadow: 0 0 50px rgba(255, 180, 0, 0.7), 0 0 100px rgba(255, 140, 0, 0.4), inset -10px -10px 25px rgba(230, 100, 0, 0.5), inset 8px 8px 15px rgba(255, 240, 150, 0.7); }
}

/* 3D Cloud - Fluffy white/gray like reference image */
.weather-3d-cloud {
    position: relative;
    width: 100%;
    height: 60%;
}

.weather-3d-cloud::before,
.weather-3d-cloud::after,
.weather-3d-cloud .cloud-part {
    content: '';
    position: absolute;
    background: linear-gradient(180deg, #ffffff 0%, #f5f5f5 40%, #e0e0e0 70%, #c8c8c8 100%);
    border-radius: 50%;
    box-shadow: 
        inset -8px -8px 20px rgba(150,150,150,0.3),
        inset 8px 8px 20px rgba(255,255,255,0.9),
        0 8px 20px rgba(0,0,0,0.15);
}

.weather-3d-cloud::before {
    width: 65%;
    height: 85%;
    left: 18%;
    top: 15%;
}

.weather-3d-cloud::after {
    width: 50%;
    height: 65%;
    left: 0%;
    top: 35%;
}

.weather-3d-cloud .cloud-part {
    width: 50%;
    height: 65%;
    right: 0%;
    top: 35%;
}

/* Cloud with Sun */
.weather-3d-partly-cloudy {
    position: relative;
    width: 100%;
    height: 100%;
}

.weather-3d-partly-cloudy .weather-3d-sun {
    width: 70%;
    height: 70%;
    position: absolute;
    top: 0;
    right: 0;
}

.weather-3d-partly-cloudy .weather-3d-cloud {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80%;
    height: 50%;
    z-index: 2;
}

/* Rain drops - like reference image (Today) */
.weather-3d-rain {
    position: relative;
    width: 100%;
    height: 100%;
}

.weather-3d-rain .weather-3d-cloud {
    position: absolute;
    top: 0;
    left: 5%;
    width: 90%;
    height: 55%;
}

.weather-3d-raindrops {
    position: absolute;
    bottom: 5%;
    left: 10%;
    right: 10%;
    height: 45%;
    overflow: hidden;
}

.weather-3d-raindrop {
    position: absolute;
    width: 3px;
    height: 15px;
    background: linear-gradient(180deg, transparent 0%, #7CBAD9 40%, #5A9FC7 100%);
    border-radius: 0 0 50% 50%;
    animation: rain-fall 0.8s linear infinite;
}

.weather-3d-raindrop:nth-child(1) { left: 15%; animation-delay: 0s; }
.weather-3d-raindrop:nth-child(2) { left: 35%; animation-delay: 0.15s; }
.weather-3d-raindrop:nth-child(3) { left: 55%; animation-delay: 0.3s; }
.weather-3d-raindrop:nth-child(4) { left: 75%; animation-delay: 0.45s; }

@keyframes rain-fall {
    0% { transform: translateY(-15px); opacity: 0; }
    15% { opacity: 0.8; }
    100% { transform: translateY(50px); opacity: 0; }
}

/* Snow - like reference image */
.weather-3d-snow {
    position: relative;
    width: 100%;
    height: 100%;
}

.weather-3d-snow .weather-3d-cloud {
    position: absolute;
    top: 0;
    left: 5%;
    width: 90%;
    height: 50%;
}

.weather-3d-snowflakes {
    position: absolute;
    bottom: 10%;
    left: 10%;
    right: 10%;
    height: 45%;
    overflow: hidden;
}

.weather-3d-snowflake {
    position: absolute;
    color: #b8d4e8;
    font-size: 1rem;
    text-shadow: 0 0 3px rgba(255,255,255,0.6);
    animation: snow-fall 1.5s linear infinite;
}

.weather-3d-snowflake:nth-child(1) { left: 10%; animation-delay: 0s; }
.weather-3d-snowflake:nth-child(2) { left: 30%; animation-delay: 0.4s; }
.weather-3d-snowflake:nth-child(3) { left: 50%; animation-delay: 0.8s; }
.weather-3d-snowflake:nth-child(4) { left: 70%; animation-delay: 1.2s; }

@keyframes snow-fall {
    0% { transform: translateY(-8px) rotate(0deg); opacity: 0; }
    15% { opacity: 0.7; }
    100% { transform: translateY(40px) rotate(180deg); opacity: 0; }
}

/* Snow pile - like in reference image (Monday) */
.weather-3d-snow-pile {
    position: relative;
    width: 100%;
    height: 100%;
}

.weather-3d-snow-pile .pile {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 50%;
    background: linear-gradient(180deg, #ffffff 0%, #f8f8f8 30%, #e8e8e8 60%, #d8d8d8 100%);
    border-radius: 40% 40% 0 0;
    box-shadow: 
        inset 0 15px 30px rgba(255,255,255,0.9),
        0 -3px 10px rgba(0,0,0,0.08);
}

.weather-3d-snow-pile .snowflake-decor {
    position: absolute;
    color: #a8c8d8;
    font-size: 2.5rem;
    top: 5%;
    right: 15%;
    opacity: 0.7;
}

/* Temperature Display - Exact match to image */
.weather-3d-temps {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 20px;
    margin-bottom: 12px;
}

.weather-3d-temp-high {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    color: #5A6A7A;
    text-shadow: 1px 1px 2px rgba(255,255,255,0.8);
}

.weather-3d-temp-high sup {
    font-size: 0.4em;
    vertical-align: super;
    font-weight: 400;
}

.weather-3d-temp-low {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: #8899AA;
    text-shadow: 1px 1px 2px rgba(255,255,255,0.8);
}

.weather-3d-temp-low sup {
    font-size: 0.4em;
    vertical-align: super;
    font-weight: 400;
}

/* Condition Label - Blue gradient like image */
.weather-3d-condition {
    background: linear-gradient(180deg, #4A9FD4 0%, #2E7AB8 100%);
    color: #ffffff;
    padding: 10px 15px;
    border-radius: 4px;
    font-size: clamp(0.65rem, 1.1vw, 0.9rem);
    font-weight: 500;
    text-transform: lowercase;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    text-align: center;
    min-width: 100px;
    line-height: 1.3;
}

/* Orange/Warning condition - like windchill advisory in image */
.weather-3d-condition.warning {
    background: linear-gradient(180deg, #E8A04C 0%, #D4852A 100%);
}

/* Red/Alert condition */
.weather-3d-condition.alert {
    background: linear-gradient(180deg, #E85A5A 0%, #C43C3C 100%);
}

/* Small rainbow arc between days - like in the image */
.weather-3d-day:nth-child(3) .weather-3d-icon-container::after,
.weather-3d-day:nth-child(4) .weather-3d-icon-container::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 30px;
    border-radius: 60px 60px 0 0;
    background: linear-gradient(180deg, 
        rgba(255,0,0,0.3) 0%, 
        rgba(255,127,0,0.3) 20%, 
        rgba(255,255,0,0.3) 40%, 
        rgba(0,255,0,0.3) 60%, 
        rgba(0,0,255,0.3) 80%,
        transparent 100%);
    z-index: -1;
}

/* Ground - not needed, remove */
.weather-3d-ground {
    display: none;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .weather-3d-forecast {
        gap: 15px;
        padding: 20px;
    }
    
    .weather-3d-day {
        max-width: 200px;
    }
}

@media (max-width: 900px) {
    .weather-3d-forecast {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .weather-3d-day {
        width: 45%;
        max-width: 180px;
    }
}

@media (max-width: 600px) {
    .weather-3d-day {
        width: 100%;
        max-width: 250px;
    }
    
    .weather-3d-forecast {
        flex-direction: column;
        align-items: center;
    }
}

/* ============================================
   PHOTO ALBUM THEME
   Polaroid-style photo gallery with zoom animations
   ============================================ */

.theme-photo-album {
    overflow: hidden;
}

.theme-photo-album .screen-header,
.theme-photo-album .screen-main,
.theme-photo-album .rss-ticker {
    display: none !important;
}

.photo-album-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Vintage wood texture background (default) */
.photo-album-container.bg-wood {
    background: linear-gradient(135deg, #5d8aa8 0%, #4a7a98 50%, #3d6a88 100%);
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="wood" patternUnits="userSpaceOnUse" width="100" height="100"><rect fill="%235d8aa8" width="100" height="100"/><path d="M0 50 Q25 45 50 50 T100 50" stroke="%234a7a98" stroke-width="2" fill="none" opacity="0.3"/><path d="M0 30 Q25 25 50 30 T100 30" stroke="%233d6a88" stroke-width="1" fill="none" opacity="0.2"/><path d="M0 70 Q25 75 50 70 T100 70" stroke="%236d9ab8" stroke-width="1" fill="none" opacity="0.2"/></pattern></defs><rect fill="url(%23wood)" width="100" height="100"/></svg>');
}

/* Scattered polaroid photos container */
.photo-album-photos {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    perspective: 1500px;
}

/* Individual polaroid photo */
.polaroid-photo {
    position: absolute;
    background: #fff;
    padding: 15px 15px 50px 15px;
    box-shadow: 
        0 4px 8px rgba(0,0,0,0.3),
        0 8px 25px rgba(0,0,0,0.2),
        inset 0 0 0 1px rgba(255,255,255,0.5);
    transition: all 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center center;
    cursor: pointer;
    z-index: 1;
}

/* Vintage paper texture effect */
.polaroid-photo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(255,255,255,0.1) 0%,
        transparent 50%,
        rgba(0,0,0,0.05) 100%
    );
    pointer-events: none;
}

/* Photo image inside polaroid */
.polaroid-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: sepia(10%) contrast(105%) brightness(98%);
}

/* Photo caption area (bottom white space) */
.polaroid-photo .photo-caption {
    position: absolute;
    bottom: 10px;
    left: 15px;
    right: 15px;
    text-align: center;
    font-family: 'Caveat', 'Comic Sans MS', cursive;
    font-size: 30px;
    color: #333;
    opacity: 0.7;
}

/* Scattered positions for photos */
.polaroid-photo.pos-1 {
    top: 5%;
    left: 5%;
    transform: rotate(-8deg);
    width: 280px;
    height: 320px;
}

.polaroid-photo.pos-2 {
    top: 8%;
    right: 15%;
    transform: rotate(5deg);
    width: 260px;
    height: 300px;
}

.polaroid-photo.pos-3 {
    bottom: 15%;
    left: 20%;
    transform: rotate(-3deg);
    width: 300px;
    height: 340px;
}

.polaroid-photo.pos-4 {
    bottom: 10%;
    right: 10%;
    transform: rotate(7deg);
    width: 270px;
    height: 310px;
}

.polaroid-photo.pos-5 {
    top: 35%;
    left: 35%;
    transform: rotate(-2deg);
    width: 290px;
    height: 330px;
}

.polaroid-photo.pos-6 {
    top: 18%;
    left: 15%;
    transform: rotate(-9deg);
    width: 290px;
    height: 330px;
}

.polaroid-photo.pos-7 {
    top: 15%;
    left: 54%;
    transform: rotate(-5deg);
    width: 290px;
    height: 330px;
}

.polaroid-photo.pos-8 {
    top: 29%;
    left: 40%;
    transform: rotate(-7deg);
    width: 290px;
    height: 330px;
}

.polaroid-photo.pos-9 {
    top: 25%;
    left: 29%;
    transform: rotate(-3deg);
    width: 290px;
    height: 330px;
}

.polaroid-photo.pos-10 {
    top: 12%;
    left: 15%;
    transform: rotate(-4deg);
    width: 290px;
    height: 330px;
}

/* Active/zoomed photo */
.polaroid-photo.zoomed {
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) rotate(0deg) scale(1) !important;
    width: 70vw !important;
    height: 80vh !important;
    max-width: 1200px;
    max-height: 800px;
    z-index: 100 !important;
    padding: 20px 20px 60px 20px;
    box-shadow: 
        0 20px 60px rgba(0,0,0,0.5),
        0 0 100px rgba(0,0,0,0.3);
}

.polaroid-photo.zoomed img {
    filter: none;
}

/* Zoom animation keyframes */
@keyframes photoZoomIn {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) rotate(0deg) scale(0.3);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) rotate(0deg) scale(1);
    }
}

@keyframes photoZoomOut {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) rotate(0deg) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) rotate(0deg) scale(0.3);
    }
}

.polaroid-photo.zoom-in {
    animation: photoZoomIn 1.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.polaroid-photo.zoom-out {
    animation: photoZoomOut 1.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Decorative camera icon */
.photo-album-camera {
    position: fixed;
    top: 20px;
    right: 30px;
    font-size: 60px;
    opacity: 0.8;
    filter: drop-shadow(2px 4px 6px rgba(0,0,0,0.4));
    z-index: 50;
    transform: rotate(15deg);
}

/* Photo counter */
.photo-album-counter {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 18px;
    font-family: 'Segoe UI', sans-serif;
    z-index: 50;
    backdrop-filter: blur(5px);
}

/* Overlay for zoomed photo - disabled */
.photo-album-overlay {
    display: none;
}
