/* ============================================
   COUCHES RECORDS - EVENTS PAGE STYLES
   ============================================ */

/* Page Header */
.page-header {
    padding: 10rem 2rem 4rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.page-title {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.page-title .highlight {
    color: var(--yellow);
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.section-hint {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
    margin-bottom: 2rem;
    font-style: italic;
}

/* Section Labels */
.section-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--crimson);
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 900;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.section-title .highlight {
    color: var(--yellow);
}

.section-intro {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 600px;
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Upcoming Section */
.upcoming-section {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Hero Event Card */
.event-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
}

.event-hero:hover {
    border-color: var(--yellow);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.event-image {
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--bg-tertiary);
}

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

.event-image .placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    opacity: 0.3;
}

.event-info {
    padding: 3rem 3rem 3rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.event-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.event-date-display {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.event-name {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.event-price {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.event-venue {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.event-details {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.countdown {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.countdown-item {
    text-align: center;
}

.countdown-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--yellow);
    line-height: 1;
}

.countdown-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.hero-tickets-btn {
    background: var(--crimson);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    align-self: flex-start;
}

.hero-tickets-btn:hover {
    background: var(--crimson-dark);
    transform: translateY(-2px);
}

/* No Upcoming Event State */
.no-upcoming {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
}

.no-upcoming-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.no-upcoming h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.no-upcoming p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.no-upcoming-notify-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--yellow);
    color: #0A0A0A;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s;
}

.no-upcoming-notify-btn:hover {
    background: #e6c200;
    transform: translateY(-2px);
}

/* Upcoming Events Grid (smaller cards) */
.upcoming-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.25rem;
    padding: 0 2rem;
    max-width: 1400px;
    margin: 2rem auto 0;
}

.upcoming-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.upcoming-card:hover {
    border-color: var(--yellow);
    transform: translateY(-4px);
}

.upcoming-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.upcoming-card-info {
    flex: 1;
}

.upcoming-card-date {
    font-size: 0.8rem;
    color: var(--yellow);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.upcoming-card-title {
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.3;
}

.upcoming-card-venue {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.upcoming-card-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--yellow);
    color: #0A0A0A;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    text-align: center;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s;
    align-self: flex-start;
}

.upcoming-card-btn:hover {
    background: #e6c200;
    transform: translateY(-2px);
}

/* Past Events Section */
.past-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Past Events Grid - 4 across desktop, 3 tablet, 2 mobile */
.past-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.past-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
}

.past-card:hover {
    border-color: var(--text-muted);
    transform: translateY(-4px);
}

.past-image {
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--bg-tertiary);
}

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

.past-image .placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    opacity: 0.3;
}

.past-info {
    padding: 1rem;
}

.past-date {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.past-name {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.past-venue {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Load More */
.infinite-scroll-sentinel {
    height: 1px;
    margin-top: 2rem;
}

/* Event Modal */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--overlay-bg);
    backdrop-filter: blur(8px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal-overlay.active {
    display: flex;
}

.event-modal {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    max-width: 480px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0,0,0,0.5);
    border: none;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.25rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.modal-close:hover {
    background: var(--crimson);
}

.modal-flyer {
    width: 100%;
    background: var(--bg-tertiary);
    overflow: hidden;
    min-height: 200px;
}

.modal-flyer img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.modal-flyer .placeholder {
    width: 100%;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    opacity: 0.3;
}

/* Video embed (replaces flyer) */
.modal-video-embed {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: #000;
}

.modal-video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.modal-body {
    padding: 1.5rem 2rem 2rem;
    text-align: center;
}

.modal-label {
    font-size: 0.7rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.modal-details {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1.25rem;
}

.modal-detail {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.modal-countdown {
    background: var(--bg-tertiary);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.modal-countdown .countdown-item {
    text-align: center;
}

.modal-countdown .countdown-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--yellow);
}

.modal-countdown .countdown-label {
    font-size: 0.6rem;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* Notify Button */
.modal-notify-btn {
    display: block;
    width: 100%;
    padding: 14px 24px;
    background: var(--yellow);
    color: #0A0A0A;
    font-family: 'Outfit', sans-serif;
    font-weight: bold;
    font-size: 14px;
    text-align: center;
    text-decoration: none;
    border-radius: 40px;
    transition: all 0.3s;
    margin-bottom: 1.5rem;
}

.modal-notify-btn:hover {
    background: #e6c200;
    transform: translateY(-2px);
}

/* First Time Expandable */
.first-time-section {
    margin-top: 1.25rem;
}

.first-time-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: transparent;
    border: 1px dashed var(--border-color);
    border-radius: 12px;
    color: var(--text-secondary);
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.first-time-toggle:hover {
    border-color: var(--yellow);
    color: var(--yellow);
}

.first-time-text {
    font-size: 0.75rem;
    letter-spacing: 0.05em;
}

.first-time-toggle:hover .first-time-icon {
    transform: scale(1.1);
}

.first-time-icon {
    font-size: 1rem;
    transition: transform 0.3s;
}

.first-time-arrow {
    font-size: 1.1rem;
    font-weight: 300;
    transition: transform 0.3s;
}

.first-time-section.expanded .first-time-arrow {
    transform: rotate(90deg);
}

.first-time-section.expanded .first-time-toggle {
    border-style: solid;
    border-color: var(--border-color);
    border-bottom: none;
    border-radius: 12px 12px 0 0;
    background: var(--bg-tertiary);
    color: var(--yellow);
}

.first-time-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.first-time-section.expanded .first-time-content {
    max-height: 300px;
}

.first-time-tips {
    padding: 1rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-top: none;
    border-radius: 0 0 12px 12px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
}

.first-time-tip {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.4;
    text-align: left;
}

.tip-icon {
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* Past Event Modal Buttons */
.modal-buttons {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.modal-btn {
    flex: 1;
    padding: 0.875rem 1rem;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
    /* Default state: dark grey */
    background: var(--bg-tertiary);
    color: var(--text-secondary);
}

.modal-btn:hover:not(.disabled) {
    background: var(--border-color);
    color: var(--text-primary);
}

/* Active/Selected state: yellow */
.modal-btn.active {
    background: var(--yellow);
    color: #0A0A0A;
}

.modal-btn.active:hover {
    background: #e6c200;
}

/* Disabled state: lighter grey, faded */
.modal-btn.disabled {
    background: var(--bg-secondary);
    color: var(--text-muted);
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* Artist Tags */
.modal-artists {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    justify-content: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.artist-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.3rem 0.6rem;
    background: var(--bg-tertiary);
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.2s;
}

.artist-tag.has-link:hover {
    color: var(--yellow);
    background: var(--bg-secondary);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .past-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .event-hero {
        grid-template-columns: 1fr;
    }
    
    .event-info {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .past-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .event-name {
        font-size: 1.5rem;
    }
    
    .countdown {
        gap: 1rem;
    }
    
    .countdown-number {
        font-size: 1.5rem;
    }
    
    .upcoming-grid {
        padding: 0 1rem;
        grid-template-columns: 1fr;
    }
    
    .modal-buttons {
        flex-direction: column;
    }
}

/* Modal Info Lists (What to Expect, Venue) */
#shopifyProductComponent { margin-bottom: 1.5rem; }
.modal-upcoming-shows { background: var(--bg-tertiary); border-radius: 12px; padding: 1.25rem; margin-bottom: 1.5rem; text-align: left; }
.modal-upcoming-shows h4 { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.75rem; color: var(--accent); text-align: center; }
.upcoming-show-item { padding: 0.5rem 0; border-bottom: 1px solid var(--border-color); font-size: 0.85rem; display: flex; justify-content: space-between; }
.upcoming-show-item:last-child { border-bottom: none; }
.upcoming-show-title { color: var(--text-primary); flex-shrink: 0; }
.upcoming-show-date { color: var(--text-secondary); text-align: right; padding-left: 1.5rem; }
/* Flowing text block (What to Expect) */
.event-info-text { font-size: 0.85rem; color: var(--text-primary); line-height: 1.6; }
/* Event note styling */
.modal-upcoming-shows.event-note { padding: 1.5rem; }
.modal-upcoming-shows.event-note .upcoming-show-item { justify-content: center; padding: 0; }
.modal-upcoming-shows.event-note .upcoming-show-title { color: var(--text-secondary); font-style: italic; line-height: 1.5; flex-shrink: 1; white-space: normal; text-align: center; }

/* ============================================
   EVENT PHOTOS GALLERY MODAL
   ============================================ */
.event-gallery-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    overflow-y: auto;
}

.event-gallery-modal.active {
    opacity: 1;
    visibility: visible;
}

.event-gallery-modal-header {
    position: sticky;
    top: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
    border-bottom: 1px solid #333;
}

.event-gallery-modal-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #FFFFFF;
}

.event-gallery-modal-close {
    background: none;
    border: none;
    color: #888;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: color 0.3s;
}

.event-gallery-modal-close:hover {
    color: var(--yellow);
}

.event-gallery-modal-content {
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Event Gallery Masonry Grid */
.event-gallery-masonry {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 12px;
    grid-auto-flow: dense;
}

.event-gallery-masonry-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
}

.event-gallery-masonry-item.size-large {
    grid-column: span 2;
    grid-row: span 2;
}

.event-gallery-masonry-item.size-tall {
    grid-row: span 2;
}

.event-gallery-masonry-item.size-wide {
    grid-column: span 2;
}

.event-gallery-masonry-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.event-gallery-masonry-item:hover img {
    transform: scale(1.05);
}

/* Event Photo Credits */
.event-gallery-masonry-item .photo-credit {
    position: absolute;
    bottom: 0.5rem;
    right: 0.5rem;
    padding: 0.25rem 0.5rem;
    background: rgba(0,0,0,0.25);
    color: rgba(255,255,255,0.9);
    font-size: 0.6rem;
    border-radius: 4px;
    opacity: 0;
    transition: opacity 0.3s ease, color 0.2s ease;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    text-decoration: none;
}

.event-gallery-masonry-item:hover .photo-credit {
    opacity: 1;
}

a.photo-credit:hover {
    color: var(--yellow);
}

/* ============================================
   EVENT PHOTO LIGHTBOX
   ============================================ */
.event-lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.event-lightbox-modal.active {
    opacity: 1;
    visibility: visible;
}

.event-lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    display: block;
}

.event-lightbox-close {
    position: absolute;
    top: -2.5rem;
    right: 0;
    background: none;
    border: none;
    color: #888;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: color 0.3s;
}

.event-lightbox-close:hover {
    color: var(--yellow);
}

.event-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(0,0,0,0.6);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-lightbox-nav:hover {
    background: var(--yellow);
    color: #0A0A0A;
}

.event-lightbox-nav.prev {
    left: -4rem;
}

.event-lightbox-nav.next {
    right: -4rem;
}

.event-lightbox-counter {
    position: absolute;
    bottom: -2rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.6);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: white;
}

.event-lightbox-credit {
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    padding: 0.25rem 0.6rem;
    background: rgba(0,0,0,0.25);
    color: rgba(255,255,255,0.9);
    font-size: 0.7rem;
    border-radius: 4px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.event-lightbox-credit a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    transition: color 0.2s ease;
}

.event-lightbox-credit a:hover {
    color: var(--yellow);
}

/* ============================================
   EVENT GALLERY RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .event-gallery-masonry {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .event-gallery-masonry {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 150px;
    }
    
    .event-gallery-modal-content {
        padding: 1rem;
    }
    
    .event-gallery-modal-header {
        padding: 1rem 1.5rem;
    }
    
    .event-lightbox-nav.prev {
        left: 0.5rem;
    }
    
    .event-lightbox-nav.next {
        right: 0.5rem;
    }
    
    .event-lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
}

@media (max-width: 500px) {
    .event-gallery-masonry {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 120px;
    }
    
    .event-gallery-masonry-item.size-large {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .event-gallery-masonry-item.size-tall {
        grid-row: span 1;
    }
}

/* Shopify Cart Checkout Note */
.shopify-buy__cart-bottom::after {
    content: "🔒 Powered by Shopify. Close tab to return.";
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    text-align: center;
    margin-top: 10px;
    font-family: 'Outfit', sans-serif;
}

/* Video Section */
.video-section {
    border-top: 1px solid var(--border-color);
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    aspect-ratio: 16/9;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-tertiary);
    margin: 0 auto;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}
