﻿/* Global reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
        sans-serif;
    color: #111827;
    background: #ffffff;
    padding-top: 72px;
}

/* TEST: Remove this after confirming CSS loads */


/* Top navigation */
.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    background: white;
    border-bottom: 1px solid rgba(229, 231, 235, 0.9);
    z-index: 100;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 32px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    line-height: 1.1;
}

.logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-mark {
    font-weight: 800;
    font-size: 20px;
    letter-spacing: 0.08em;
    color: #8B1538;
    /* maroon brand color */
}

.logo-subtitle {
    font-size: 10px;
    color: #6b7280;
}

.nav-links {
    display: flex;
    gap: 20px;
    font-size: 14px;
}

.nav-links a {
    text-decoration: none;
    color: #4b5563;
    padding-bottom: 8px;
    border-bottom: 3px solid transparent;
    transition: all 0.2s ease;
}

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

.nav-links a.active {
    color: #8B1538;
    border-bottom: 3px solid #8B1538;
    font-weight: 600;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 2px;
    transition: all 0.2s ease;
}

.search-wrapper:hover,
.search-wrapper:focus-within {
    border-color: #e5e7eb;
    box-shadow: none;
}

.search-input {
    padding: 12px 16px 12px 40px;
    border-radius: 6px;
    border: none;
    font-size: 16px;
    min-width: 300px;
    background: transparent;
    color: #111827;
    outline: none;
}

.search-input::placeholder {
    color: #6b7280;
}

.search-icon {
    position: absolute;
    left: 14px;
    font-size: 16px;
    color: #6b7280;
}

.icon-button {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 8px;
    border-radius: 999px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 18px;
    position: relative;
    color: #374151;
}

.icon-button i {
    color: #374151;
}

.language-selector {
    position: relative;
    display: inline-flex;
    align-items: center;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    cursor: pointer;
    font-size: 16px;
    padding: 10px 16px;
    gap: 10px;
    color: #111827;
    transition: all 0.2s ease;
}

.language-selector:hover {
    border-color: #e5e7eb;
    box-shadow: none;
}

.language-selector i {
    position: static;
    color: #111827;
    font-size: 16px;
}

.language-select {
    border: none;
    background: transparent;
    font-size: 16px;
    cursor: pointer;
    color: #111827;
    width: auto;
    margin: 0;
    padding: 0;
    appearance: none;
    font-weight: 500;
    outline: none;
}

/* Custom arrow for language selector to match "English v" style */
.language-selector::after {
    content: '\f078';
    /* FontAwesome chevron-down */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 12px;
    color: #6b7280;
    margin-left: 4px;
    pointer-events: none;
}

.language-select:focus {
    outline: none;
}

.language-select option:hover {
    background-color: #f3f4f6;
    color: #111827;
}

/* Buttons */
.btn {
    border-radius: 6px;
    font-size: 16px;
    padding: 12px 24px;
    cursor: pointer;
    border: none;
    font-weight: 600;
    transition: all 0.2s;
    text-decoration: none;
}

.btn-outline {
    background: white;
    border: 1px solid #8B1538;
    color: #8B1538;
    text-decoration: none;
}

.btn-outline:hover {
    background: white;
    text-decoration: none;
}

.btn-primary {
    background: #D4A520;
    color: #111827;
    text-decoration: none;
}

.btn-primary:hover {
    background: #D4A520;
    text-decoration: none;
}

.btn-hero {
    background: #D4A520;
    color: #111827;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 700;
}

.btn-hero:hover {
    background: #D4A520;
}

/* Hero section */
.hero {
    position: relative;
    height: 70vh;
    min-height: 560px;
    width: 100%;
    background-image: url("images/pexels-jamies-x-co-4242550.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    color: white;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.75),
            rgba(0, 0, 0, 0.15));
    z-index: 1;
}

.hero {
    height: 70vh;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 64px 72px 64px;
    max-width: 520px;
}

.hero-title {
    font-size: 48px;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 16px;
    min-height: 110px;
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 24px;
    min-height: 50px;
}

/* Hero dots and arrows */
.hero-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    background: transparent;
}

.dot.active {
    width: 20px;
    background: #ffffff;
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: none;
    background: rgba(17, 24, 39, 0.7);
    color: white;
    cursor: pointer;
    z-index: 2;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-arrow.left {
    left: 16px;
}

.hero-arrow.right {
    right: 16px;
}

/* Responsive tweaks */
@media (max-width: 960px) {
    .nav-links {
        display: none;
    }

    .search-input {
        min-width: 180px;
    }

    .hero-content {
        padding: 56px 24px;
    }

    .hero-title {
        font-size: 34px;
    }


}

/* ================= SECTION B: Featured Exhibitions ================= */
.featured-section {
    padding: 56px 64px 72px;
    background: radial-gradient(circle at top left, #f9fafb, #f3f4f6);
}

/* Top feature pills row */
.featured-top-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.feature-pill {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding: 32px;
    border-radius: 12px;
    background: white;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111827;
    font-size: 22px;
    margin-bottom: 8px;
}

.feature-image {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
    margin-bottom: 12px;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-image i {
    color: #9ca3af;
    font-size: 24px;
}

.feature-icon.pink {
    background: #fef2f2;
}

.feature-icon.yellow {
    background: #fefce8;
}

.feature-icon.navy {
    background: #eff6ff;
}

.feature-icon i {
    color: #8B1538;
}

.feature-text h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #0f172a;
}

.feature-text p {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
}

/* Featured header */
.featured-header {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    margin-bottom: 40px;
    gap: 16px;
}

.featured-title-link {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s;
    grid-column: 2;
    justify-self: center;
}

.featured-title-link:hover {
    opacity: 1;
}

.featured-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 0;
    color: #8B1538;
}

.featured-view-btn {
    justify-self: start;
}

.featured-subtitle {
    grid-column: 2;
    justify-self: center;
}

/* Featured Exhibitions subheader: centered layout */
.featured-subheader {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 40px;
    gap: 8px;
}

.featured-visit-btn {
    margin-top: 16px;
}

/* Restore native dropdown arrow for language selector */
.language-selector::after {
    content: none;
}

.language-select {
    appearance: auto;
    padding-right: 0;
}

.featured-subtitle {
    font-size: 18px;
    color: #6b7280;
}

.featured-view-btn {
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
}

.featured-view-btn .arrow {
    margin-left: 8px;
    transition: transform 0.2s;
}

.featured-view-btn:hover .arrow {
    transform: translateX(4px);
}

.featured-subheader h3 {
    font-size: 32px;
    font-weight: 600;
    color: #8B1538;
    margin: 0;
}

.featured-subheader p {
    font-size: 16px;
    color: #6b7280;
    margin: 0;
    max-width: 600px;
}

/* Featured grid */
.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.featured-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.featured-card-image {
    height: 220px;
    background-size: cover;
    background-position: center;
}

.featured-card-info {
    padding: 20px;
    background: white;
}

.featured-card-info h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #8B1538;
}

.featured-card-info p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
}

.featured-card-footer {
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.featured-card-dates {
    font-size: 12px;
    color: #6b7280;
}

.featured-card-visit {
    text-decoration: none;
    color: #0f172a;
    font-weight: 600;
}

.featured-card-visit i {
    margin-left: 6px;
}

.featured-card-visit {
    transition: color 0.2s ease;
}

.featured-card-visit i {
    transition: transform 0.2s ease;
}

.featured-card-visit:hover {
    color: #8B1538;
}

.featured-card-visit:hover i {
    transform: translateX(4px);
}

.featured-card-visit:active,
.featured-card-visit:focus {
    color: #1d4ed8;
    outline: none;
}

.featured-card.highlight h3 {
    color: #8B1538;
}

.featured-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.15);
}

/* Responsive */
@media (max-width: 1024px) {
    .featured-section {
        padding: 40px 24px 56px;
    }

    .featured-top-strip {
        grid-template-columns: 1fr;
    }

    .featured-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .featured-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .featured-grid {
        grid-template-columns: 1fr;
    }
}

/* About Section */
.about-section {
    padding: 56px 64px;
    background: #f9fafb;
    text-align: center;
}

.about-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #8B1538;
    margin-bottom: 16px;
}

.about-section>p {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.about-grid article {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
    text-align: center;
}

.about-grid article:hover {
    transform: translateY(-4px);
}

.about-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111827;
    font-size: 22px;
    margin: 0 auto 12px;
}

.about-image {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
    margin: 0 auto 16px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.about-image i {
    color: #9ca3af;
    font-size: 24px;
}

.about-icon.pink {
    background: #fef2f2;
}

.about-icon.yellow {
    background: #fefce8;
}

.about-icon.navy {
    background: #eff6ff;
}

.about-icon i {
    color: #8B1538;
    font-size: 22px;
}

.about-grid article h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.about-grid article p {
    color: #6b7280;
    line-height: 1.6;
    font-size: 16px;
}

/* Responsive for About */
@media (max-width: 1024px) {
    .about-section {
        padding: 40px 24px;
    }

    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
}

/* Why Choose KICC Section */
.why-section {
    padding: 56px 64px;
    background: #f3f4f6;
}

.why-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
    padding: 32px 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.why-card header {
    text-align: center;
    margin-bottom: 16px;
}

.why-card h2 {
    font-size: 28px;
    font-weight: 800;
    color: #0f172a;
}

.why-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 40px;
    list-style: none;
    margin: 24px 0 24px;
    padding: 0;
}

.why-list li {
    position: relative;
    color: #0f172a;
    font-size: 16px;
    padding-left: 28px;
}

.why-list li::before {
    content: '\f058';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #8B1538;
    position: absolute;
    left: 0;
    top: 0;
}

.why-learn {
    display: inline-block;
    margin: 8px auto 0;
}

@media (max-width: 768px) {
    .why-list {
        grid-template-columns: 1fr;
        gap: 12px 0;
    }
}

/* Events Section */
.events-section {
    padding: 56px 64px;
    background: #f9fafb;
}

.events-section header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 24px;
}

.events-section h2 {
    font-size: 36px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0;
}

.events-section header p {
    font-size: 16px;
    color: #6b7280;
    margin-left: 24px;
}

/* Vertical Events Grid */
.events-vertical-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.event-vertical-card {
    display: flex;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-vertical-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.event-image-placeholder {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #800000 0%, #a00000 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.event-image-placeholder i {
    font-size: 48px;
    color: white;
}

.event-content {
    flex: 1;
    padding: 24px;
    position: relative;
}

.event-date-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #D4A520;
    color: #111827;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

.event-title {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 12px 0;
    padding-right: 80px;
}

.event-description {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.event-details {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 20px;
}

.event-details span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #6b7280;
}

.event-details i {
    color: #8B1538;
    font-size: 12px;
}

.event-btn {
    padding: 8px 16px;
    font-size: 14px;
}

/* Original Events Grid (kept for compatibility) */
.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.event-card {
    background: white;
    padding: 20px 24px 24px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.25s;
}

.event-card:hover {
    transform: translateY(-4px);
}

.event-head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 10px;
}

.event-date-tile {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: #fef2f2;
    border: 1px solid #8B1538;
    color: #8B1538;
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 16px;
}

.event-title {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    text-decoration: none;
}

.event-title:hover {
    color: #8B1538;
}

.event-datetime {
    font-size: 14px;
    color: #6b7280;
}

.event-location {
    color: #6b7280;
    margin-bottom: 8px;
}

.event-price {
    margin-bottom: 8px;
}

.event-price strong {
    color: #8B1538;
    font-weight: 700;
}

.event-card .btn {
    align-self: flex-end;
    width: fit-content;
}

/* CTA Section */
.cta-section {
    padding: 56px 64px;
    background: #8B1538;
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.cta-buttons .btn {
    padding: 12px 24px;
}

/* Responsive */
@media (max-width: 1024px) {

    .why-section,
    .events-section,
    .cta-section {
        padding: 40px 24px;
    }

    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .events-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Pricing Section */
.pricing-section {
    padding: 56px 64px;
    background: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #8B1538;
    margin-bottom: 8px;
}

.pricing-section>p {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pricing-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    transition: transform 0.3s, border-color 0.3s;
}

.pricing-card:hover {
    transform: translateY(-4px);
    border-color: #8B1538;
}

.pricing-card.popular {
    border-color: #8B1538;
    position: relative;
    background: linear-gradient(135deg, #8B1538, #6B1028);
    color: white;
}

.pricing-card.popular h3 {
    color: white;
}

.pricing-card.popular .pricing-sub {
    color: rgba(255, 255, 255, 0.8);
}

.pricing-card.popular .pricing-price {
    color: #fbbf24;
}

.pricing-card.popular .pricing-price span {
    color: white;
}

.pricing-card.popular .pricing-price small {
    color: rgba(255, 255, 255, 0.8);
}

.pricing-card.popular .pricing-icon {
    background: rgba(255, 255, 255, 0.2);
    color: #fbbf24;
}

.pricing-card.popular ul li {
    color: rgba(255, 255, 255, 0.9);
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.pricing-card.popular .btn {
    background: #fbbf24;
    color: #111827;
    border-color: #fbbf24;
}

.pricing-card.popular .btn:hover {
    background: #f59e0b;
    border-color: #f59e0b;
}

.pricing-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
}

.pricing-card>p {
    color: #6b7280;
    margin-bottom: 16px;
}

.pricing-card .popular-tag {
    background: #8B1538;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 16px;
}

.pricing-card strong {
    font-size: 28px;
    font-weight: 700;
    color: #8B1538;
}

.pricing-card ul,
.pricing-list {
    list-style: none;
    padding: 0;
    margin: 24px 0;
    text-align: left;
}

.pricing-card li,
.pricing-list li {
    padding: 8px 0;
    border-bottom: 1px solid #f3f4f6;
    color: #4b5563;
    font-size: 14px;
}

.pricing-card li:last-child,
.pricing-list li:last-child {
    border-bottom: none;
}

/* Pricing carousel enhancements */
.pricing-carousel {
    margin-top: 24px;
    overflow: hidden;
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 32px;
    padding-right: 32px;
}

.pricing-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid #e5e7eb;
    color: #374151;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.2s ease;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.pricing-nav:hover {
    background: white;
    border-color: #dc2626;
    color: #dc2626;
    transform: translateY(-50%) scale(1.05);
}

.pricing-nav:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: translateY(-50%);
}

.pricing-nav:disabled:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: #e5e7eb;
    color: #374151;
}

.pricing-nav-prev {
    left: -8px;
}

.pricing-nav-next {
    right: -8px;
}

.pricing-track {
    display: flex;
    gap: 24px;
    will-change: transform;
    transform: translateX(0);
    transition: transform 0.3s ease;
    width: max-content;
    padding: 0 12px;
}

.pricing-card {
    flex: 0 0 280px;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
    padding: 22px 18px;
    box-sizing: border-box;
    border-radius: 12px;
    background: white;
}

/* .pricing-group no longer required for JS-driven slider */

/* remove marquee keyframes; using transform with JS */

.pricing-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    color: #8B1538;
    font-size: 22px;
}

.pricing-sub {
    color: #6b7280;
}

.pricing-price {
    text-align: center;
    font-weight: 800;
    font-size: 24px;
    color: #8B1538;
    margin-bottom: 12px;
}

.pricing-price span {
    color: #374151;
    font-weight: 700;
    margin-right: 4px;
}

.pricing-price small {
    color: #6b7280;
    font-weight: 600;
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 16px;
    background: #8B1538;
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 10px;
    border-radius: 999px;
}

/* Responsive for Pricing */
@media (max-width: 1024px) {
    .pricing-section {
        padding: 40px 24px;
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer */
.footer {
    background: #111827;
    color: white;
    padding: 56px 64px 24px;
    margin-top: 56px;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 32px;
}

.footer-brand h1 {
    font-size: 28px;
    font-weight: 800;
    color: #8B1538;
    margin-bottom: 8px;
}

.footer-brand p {
    color: #d1d5db;
    margin-bottom: 16px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}

.social-links a {
    color: #d1d5db;
    font-size: 20px;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #6b7280;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.footer-column h3 {
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin-bottom: 16px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column li {
    margin-bottom: 8px;
}

.footer-column a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #6b7280;
}

.footer-newsletter h3 {
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
}

.footer-newsletter p {
    color: #d1d5db;
    margin-bottom: 16px;
}

.newsletter-form {
    display: flex;
    gap: 8px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    border: 1px solid #374151;
    border-radius: 6px;
    background: #1f2937;
    color: white;
}

.newsletter-form input::placeholder {
    color: #9ca3af;
}

.newsletter-form button {
    padding: 12px 16px;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    color: #9ca3af;
    font-size: 14px;
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer {
        padding: 40px 24px 24px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-links {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }
}

/* Exhibitions Page */
.exhibitions-hero {
    padding: 56px 64px;
    background: #f9fafb;
    text-align: center;
}

.exhibitions-hero h1 {
    font-size: 36px;
    font-weight: 700;
    color: #8B1538;
    margin-bottom: 16px;
}

.exhibitions-hero p {
    font-size: 18px;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.exhibitions-grid {
    padding: 56px 64px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.exhibition-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.exhibition-card:hover {
    transform: translateY(-4px);
}

.exhibition-image {
    height: 250px;
    background-size: cover;
    background-position: center;
}

.exhibition-info {
    padding: 24px;
}

.exhibition-info h3 {
    font-size: 20px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 12px;
}

.exhibition-info p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 16px;
}

/* Responsive for Exhibitions */
@media (max-width: 1024px) {

    .exhibitions-hero,
    .exhibitions-grid {
        padding: 40px 24px;
    }

    .exhibitions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .exhibitions-grid {
        grid-template-columns: 1fr;
    }
}

/* Support Page */
.support-hero {
    margin: 0 -64px 24px;
    padding: 48px 64px;
    background: linear-gradient(135deg, #800000 0%, #a00000 100%);
    color: white;
    text-align: center;
}

.support-hero h1 {
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
}

.support-hero p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
}

.support-grid {
    padding: 56px 64px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.support-card {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s;
}

.support-card:hover {
    transform: translateY(-4px);
}

.support-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 12px;
}

.support-card p {
    color: #6b7280;
    margin-bottom: 16px;
}

.support-card button {
    background: #8B1538;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.support-card button:hover {
    background: #600000;
}

.contact-form {
    max-width: 600px;
    margin: 4rem auto;
    padding: 2rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 2rem;
}

.contact-form div {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 16px;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form button {
    width: 100%;
    background: #8B1538;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-form button:hover {
    background: #600000;
}

.support-hours {
    text-align: center;
    margin-top: 4rem;
    padding: 2rem;
    background: #f9fafb;
    border-radius: 12px;
}

.support-hours h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.support-hours p {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

.support-hours ul {
    list-style: none;
    padding: 0;
    font-size: 1rem;
    color: #374151;
}

.support-hours li {
    margin-bottom: 0.5rem;
}

/* About Page */
.about-page-hero {
    margin: 0 -64px 24px;
    padding: 48px 64px;
    background: linear-gradient(135deg, #800000 0%, #a00000 100%);
    color: white;
    text-align: center;
}

.about-page-hero h1 {
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
}

.about-page-hero p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
}

.about-content {
    padding: 56px 64px;
}

.about-text {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.about-text h2 {
    font-size: 28px;
    color: #8B1538;
    margin-bottom: 16px;
}

.about-text p {
    font-size: 18px;
    color: #6b7280;
    line-height: 1.6;
}

/* Marketplace Page */
.marketplace-hero {
    padding: 56px 64px;
    background: #f9fafb;
    text-align: center;
}

.marketplace-hero h1 {
    font-size: 36px;
    font-weight: 700;
    color: #8B1538;
    margin-bottom: 16px;
}

.marketplace-hero p {
    font-size: 18px;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.marketplace-grid {
    padding: 56px 64px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.marketplace-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
    cursor: pointer;
}

.marketplace-item:hover {
    transform: translateY(-4px);
}

/* New styles for marketplace product grid */
.marketplace-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
}

.marketplace-header {
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
    padding: 48px 2rem;
    background: linear-gradient(135deg, #800000 0%, #a00000 100%);
    color: white;
    text-align: center;
}

.marketplace-header h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
}

.marketplace-header p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
}

.search-filters {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.search-filters form {
    position: relative;
}

.search-filters .market-search-form input {
    width: 460px;
    padding: 14px 44px 14px 36px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    font-size: 15px;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
}

.search-filters .ve-select {
    padding: 12px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    font-size: 14px;
    background: white;
    cursor: pointer;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.product-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    padding: 0;
    cursor: pointer;
}

.product-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
}

.product-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.product-content {
    padding: 14px 16px 16px;
}

.product-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
}

.product-meta {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 8px;
}

.product-price strong {
    color: #8B1538;
    font-weight: 700;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    padding-top: 10px;
    border-top: 1px solid #e5e7eb;
}


.item-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.item-info {
    padding: 20px;
    text-align: center;
}

.item-info h3 {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
}

.item-info p {
    font-size: 16px;
    color: #8B1538;
    font-weight: 600;
    margin-bottom: 12px;
}

/* Events Page */
.events-page-hero {
    padding: 56px 64px;
    background: #f9fafb;
    text-align: center;
}

.events-page-hero h1 {
    font-size: 36px;
    font-weight: 700;
    color: #8B1538;
    margin-bottom: 16px;
}

.events-page-hero p {
    font-size: 18px;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.events-list {
    padding: 56px 64px;
}

.event-item {
    display: flex;
    gap: 24px;
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 24px;
}

.event-date {
    background: #8B1538;
    color: white;
    padding: 16px;
    border-radius: 8px;
    text-align: center;
    font-size: 14px;
    min-width: 80px;
}

.event-details h3 {
    font-size: 20px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
}

.event-details p {
    color: #6b7280;
    margin-bottom: 4px;
}

.event-details p strong {
    color: #8B1538;
    font-weight: 600;
}

/* ================= EXHIBITIONS PAGE STYLES ================= */

/* Exhibitions Hero Section */
.exhibitions-hero {
    margin-top: 72px;
    padding: 60px 64px;
    background: linear-gradient(135deg, #800000 0%, #a00000 100%);
    color: white;
    text-align: center;
}

.exhibitions-hero h1 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 12px;
}

.exhibitions-hero p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

/* Exhibitions Grid Section */
.exhibitions-grid {
    padding: 60px 64px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
    background: #f9fafb;
}

.exhibition-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.exhibition-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.15);
}

.exhibition-image {
    width: 100%;
    height: 240px;
    background-size: cover;
    background-position: center;
}

.exhibition-info {
    padding: 24px;
}

.exhibition-info h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #111827;
}

.exhibition-info p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 16px;
}

/* Virtual Exhibitions Section */
.virtual-exhibitions {
    padding: 0 64px 60px;
    background: white;
}

.virtual-exhibitions-hero {
    margin: 0 -64px 24px;
    padding: 48px 64px;
    background: linear-gradient(135deg, #800000 0%, #a00000 100%);
    color: white;
}

.virtual-exhibitions-hero h1 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 8px;
    color: #ffffff;
}

.virtual-exhibitions-hero p {
    font-size: 16px;
    color: #f3f4f6;
}

/* Virtual Exhibitions Search & Filter */
.virtual-exhibitions-controls {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.virtual-exhibitions-controls .ve-search-form {
    position: relative;
    flex: 1;
    min-width: 420px;
}

.virtual-exhibitions-controls .ve-search-form input {
    width: 100%;
    padding: 14px 44px 14px 36px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    font-size: 15px;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
}

.ve-search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #6b7280;
}

.ve-filter-btn {
    padding: 12px 14px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #ffffff;
}

.virtual-exhibitions-controls .ve-select {
    padding: 12px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: white;
    font-size: 14px;
    cursor: pointer;
}

/* Virtual Exhibitions Gallery */
.virtual-exhibitions-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.virtual-exhibitions-gallery article {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
    transition: transform 0.3s ease;
}

.virtual-exhibitions-gallery article:hover {
    transform: scale(1.05);
}

.virtual-exhibitions-gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

/* Exhibition cards */
.ve-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.08);
    overflow: hidden;
}

.ve-card-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.ve-card-content {
    padding: 14px 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ve-card-title {
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
    margin: 6px 0 8px;
}

.ve-card-desc {
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 0;
}

.ve-card-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    color: #6b7280;
    font-size: 13px;
    margin-bottom: 12px;
}

.ve-card-footer {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    align-items: center;
}

.ve-card-views {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.2;
}

.ve-card-button {
    display: inline-block;
    width: 100%;
    text-align: center;
}

/* ================= EVENTS PAGE STYLES ================= */

/* Events Hero Section */
.events-page-hero {
    margin: 0 -64px 24px;
    padding: 48px 64px;
    background: linear-gradient(135deg, #800000 0%, #a00000 100%);
    color: white;
    text-align: center;
}

.events-page-hero h1 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #ffffff;
}

.events-page-hero p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

/* Events List Section */
.events-list {
    padding: 60px 64px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    background: #f9fafb;
}

.event-item {
    display: flex;
    gap: 24px;
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-item:hover {
    transform: translateX(4px);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
}

.event-date {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-width: 100px;
    padding: 16px;
    background: linear-gradient(135deg, #800000 0%, #a00000 100%);
    color: white;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
}

.event-date strong {
    font-size: 28px;
    display: block;
    margin-bottom: 8px;
}

.event-date br {
    content: '';
}

.event-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.event-details h3 {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
}

.event-details p {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 8px;
}

.event-details p:last-of-type {
    color: #8B1538;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 12px;
}

/* Events Section Heading */
section>header {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 0 0 0;
}

section>header h1 {
    font-size: 36px;
    font-weight: 800;
    color: #8B1538;
    margin-bottom: 12px;
}

section>header p {
    font-size: 16px;
    color: #6b7280;
}

/* Events Search */
.events-section-search {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.events-section-search form {
    width: 100%;
    max-width: 700px;
    position: relative;
}

.events-section-search input {
    width: 100%;
    padding: 14px 44px 14px 36px;
    border: 2px solid #b91c1c;
    border-radius: 10px;
    font-size: 15px;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
}

/* Events Grid for Multiple Items */
.events-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 24px;
}

.event-card {
    display: flex;
    gap: 24px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
    transition: transform 0.3s ease;
}

.event-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.15);
}

.event-card-image {
    min-width: 200px;
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.event-price {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #8B1538;
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
}

.event-card-content {
    flex: 1;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.event-card-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
}

.event-card-content p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 12px;
}

.event-card-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 12px;
}

.event-card-info li {
    font-size: 14px;
    color: #6b7280;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.event-icon {
    color: #8B1538;
}

.event-card-content a {
    align-self: flex-start;
    color: #8B1538;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.event-card-content a:hover {
    color: #a00000;
}

/* Event card actions */
.event-actions {
    display: flex;
    gap: 12px;
}

/* Load More Button */
.load-more-btn {
    display: block;
    margin: 40px auto;
}

/* Responsive for new pages */
@media (max-width: 1024px) {

    .support-hero,
    .support-grid,
    .about-page-hero,
    .about-content,
    .marketplace-hero,
    .marketplace-grid,
    .events-page-hero,
    .events-list,
    .exhibitions-hero,
    .exhibitions-grid {
        padding: 40px 24px;
    }

    .support-grid,
    .marketplace-grid,
    .exhibitions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .virtual-exhibitions-gallery {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .event-item {
        flex-direction: column;
        text-align: center;
    }

    .event-card {
        flex-direction: column;
    }

    .event-card-image {
        min-width: 100%;
        height: 200px;
    }
}

@media (max-width: 768px) {

    .support-grid,
    .marketplace-grid,
    .exhibitions-grid {
        grid-template-columns: 1fr;
    }

    .virtual-exhibitions-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .exhibitions-hero h1,
    .events-page-hero h1 {
        font-size: 28px;
    }

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

    .event-card {
        flex-direction: column;
    }

    .event-card-image {
        min-width: 100%;
        height: 180px;
    }

    .virtual-exhibitions-controls {
        flex-direction: column;
    }

    .virtual-exhibitions-controls form,
    .virtual-exhibitions-controls select {
        width: 100%;
    }
}

/* Shopping Cart Styles */
.container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.container h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 40px;
    text-align: left;
}

.cart-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
}

/* Cart Items */
.cart-items {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.cart-item {
    display: grid;
    grid-template-columns: 100px 1fr auto auto;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

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

.cart-item img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
}

.cart-item-info h3 {
    margin: 0 0 8px 0;
    font-size: 1.2rem;
}

.cart-item-info p {
    margin: 4px 0;
    color: #666;
    font-size: 0.95rem;
}

.cart-item-price {
    font-size: 1.3rem;
    font-weight: bold;
    color: #1a1a1a;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.quantity-controls button {
    width: 32px;
    height: 32px;
    border: 1px solid #8B1538;
    background: white;
    color: #8B1538;
    font-size: 1.2rem;
    border-radius: 6px;
    cursor: pointer;
}

.quantity-controls span {
    font-size: 1.1rem;
    min-width: 30px;
    text-align: center;
}

.quantity-controls .remove-btn {
    margin-left: 12px;
}

/* Cart Summary */
.cart-summary {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    height: fit-content;
}

.cart-summary h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 1rem;
}

.summary-item.total {
    font-weight: bold;
    font-size: 1.2rem;
    border-top: 1px solid #eee;
    padding-top: 12px;
    margin-top: 12px;
}

.checkout-btn {
    width: 100%;
    background: #8B1538;
    color: white;
    border: none;
    padding: 16px;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    margin-top: 20px;
}

.checkout-btn:hover {
    background: #600000;
}

.cart-empty {
    text-align: center;
    padding: 4rem 2rem;
}

.art-hero {
    margin-top: 0;
    background: linear-gradient(135deg, #800000 0%, #8b0000 100%);
    color: white;
    padding: 80px 64px;
}

.art-hero-inner {
    max-width: 920px;
}

.status-pill {
    display: inline-block;
    background: #fde68a;
    color: #111827;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    margin-bottom: 12px;
}

.art-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 16px;
}

.art-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 720px;
    margin-bottom: 16px;
}

.art-meta {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

.art-meta i {
    margin-right: 6px;
}

.art-actions {
    display: flex;
    gap: 12px;
}

.art-btn {
    background: white;
    color: #8B1538;
    border: none;
    border-radius: 8px;
    padding: 12px 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.art-btn-outline {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.9);
}

.art-room {
    background: radial-gradient(circle at top, #0b1220, #0f172a);
    color: white;
    padding: 40px 64px 64px;
}

.art-room-tip {
    color: #cbd5e1;
    font-size: 14px;
    margin-bottom: 12px;
}

.art-room-frame {
    position: relative;
    border-radius: 14px;
    padding: 24px 24px 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.15));
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.25);
}

.art-room-label {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 14px;
    backdrop-filter: blur(4px);
}

.art-room-expand {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 8px;
    padding: 8px 10px;
    cursor: pointer;
}

.art-room-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.art-room-title {
    font-size: 20px;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.08);
    color: white;
    padding: 8px 14px;
    border-radius: 999px;
    display: inline-block;
}

.art-room-upload {
    font-size: 14px;
}

.art-room-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    padding: 24px 12px 12px;
}

.art-room-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

.art-room-media img,
.art-room-media video {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.art-room-media.video {
    position: relative;
}

.play-overlay {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    pointer-events: none;
}

.art-room-item.center {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.art-room-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 10px 12px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.55) 60%, rgba(0, 0, 0, 0.75) 100%);
}

.art-type {
    display: inline-block;
    font-size: 11px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 4px 8px;
    border-radius: 6px;
    margin-bottom: 6px;
}

.art-caption {
    font-size: 14px;
    font-weight: 600;
}

.art-room-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    padding: 16px 0 8px;
}

.circle-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.pill-btn {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 14px;
}

.pill-count {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #cbd5e1;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 14px;
}

@media (max-width: 1024px) {
    .art-room {
        padding: 32px 24px 48px;
    }

    .art-room-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .art-room-grid {
        grid-template-columns: 1fr;
    }

    .art-room-media img,
    .art-room-media video {
        height: 200px;
    }
}

.cart-empty h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cart-empty p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cart-empty a {
    color: #8B1538;
    text-decoration: none;
    font-weight: 600;
}

.cart-empty a:hover {
    text-decoration: underline;
}

.auth-page {
    background: #f3f4f6;
}

.auth-container {
    max-width: 520px;
    margin: 40px auto 80px;
    padding: 0 16px;
}

.auth-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
    padding: 24px 24px 28px;
}

.auth-logo h1 {
    color: #8B1538;
    font-size: 28px;
    margin: 0 0 4px 0;
}

.auth-logo p {
    color: #6b7280;
    margin: 0 0 12px 0;
}

.auth-title {
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
    margin: 8px 0;
    text-align: center;
}

.auth-subtitle {
    text-align: center;
    color: #6b7280;
    margin-bottom: 16px;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.auth-form label {
    font-weight: 600;
    color: #374151;
}

.auth-form input[type="email"],
.auth-form input[type="password"],
.auth-form input[type="text"] {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 12px;
    outline: none;
    background: #f9fafb;
}

.auth-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}

.auth-link {
    color: #b91c1c;
    text-decoration: none;
    font-weight: 600;
}

.auth-link:hover {
    text-decoration: underline;
}

.auth-check {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}

.btn.full {
    width: 100%;
}

.auth-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #6b7280;
    margin: 12px 0;
}

.oauth-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 2px solid #800000;
    border-radius: 10px;
    padding: 10px 12px;
    color: #8B1538;
    text-decoration: none;
    font-weight: 700;
}

.auth-foot {
    text-align: center;
    margin-top: 12px;
    color: #374151;
}

.exhibition-info-section {
    background: #f9fafb;
    padding: 40px 64px 64px;
}

.exhibition-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.exhibition-card {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}

.exhibition-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.exhibition-card p {
    font-size: 16px;
    color: #374151;
    line-height: 1.6;
}

.detail-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px dashed #e5e7eb;
}

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

.detail-label {
    color: #6b7280;
    font-size: 14px;
}

.detail-value {
    color: #0f172a;
    font-weight: 600;
    font-size: 14px;
}

.detail-link {
    color: #1d4ed8;
}

@media (max-width: 1024px) {
    .exhibition-info-section {
        padding: 32px 24px 48px;
    }

    .exhibition-info-grid {
        grid-template-columns: 1fr;
    }
}

/* Responsive adjustments for grids */
@media (max-width: 1024px) {

    .product-grid,
    .marketplace-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {

    .product-grid,
    .marketplace-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {

    .product-grid,
    .marketplace-grid {
        grid-template-columns: 1fr;
    }
}

/* Updated Cart Styles */

/* Empty Cart State */
.cart-empty-state {
    background: white;
    border-radius: 8px;
    padding: 64px 24px;
    text-align: center;
    border: 1px solid #e5e7eb;
    margin-top: 32px;
}

.cart-empty-text {
    color: #6b7280;
    font-size: 16px;
    margin-bottom: 24px;
}

.btn-outline-red {
    background: white;
    border: 1px solid #8B1538;
    color: #8B1538;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s;
}

.btn-outline-red:hover {
    background: #fff5f5;
}

/* Filled Cart Layout */
.cart-layout-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
    margin-top: 24px;
    align-items: start;
}

/* Cart Item Card */
.cart-item-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 24px;
    display: flex;
    gap: 24px;
    position: relative;
    margin-bottom: 16px;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
    background: #f9fafb;
}

.cart-item-details {
    flex: 1;
}

.cart-item-title {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 4px;
}

.cart-item-subtitle {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 8px;
}

.cart-item-price {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
}

.cart-item-remove {
    position: absolute;
    top: 24px;
    right: 24px;
    color: #6b7280;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    padding: 4px;
}

.cart-item-remove:hover {
    color: #ef4444;
}

.cart-item-controls {
    position: absolute;
    bottom: 24px;
    right: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.qty-btn {
    width: 32px;
    height: 32px;
    border: 1px solid #8B1538;
    color: #8B1538;
    background: white;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
}

.qty-btn:hover {
    background: #fff5f5;
}

.qty-display {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    min-width: 20px;
    text-align: center;
}

/* Order Summary Card */
.order-summary-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 24px;
}

.summary-header {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 24px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
    font-size: 14px;
    color: #4b5563;
}

.summary-row.total {
    border-top: 1px solid #e5e7eb;
    padding-top: 16px;
    margin-top: 16px;
    font-size: 18px;
    font-weight: 700;
    color: #111827;
}

.checkout-btn-yellow {
    width: 100%;
    background: #D4A520;
    color: #111827;
    border: none;
    border-radius: 6px;
    padding: 12px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.checkout-btn-yellow:hover {
    background: #f59e0b;
}

.continue-shopping-btn {
    width: 100%;
    background: white;
    color: #8B1538;
    border: 1px solid #8B1538;
    border-radius: 6px;
    padding: 12px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    display: block;
}

.continue-shopping-btn:hover {
    background: #fff5f5;
}

/* Coupon Card */
.coupon-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 24px;
    margin-top: 24px;
}

.coupon-header {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
}

.coupon-input-group {
    display: flex;
    gap: 8px;
}

.coupon-input {
    flex: 1;
    padding: 10px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    background: #f9fafb;
    font-size: 14px;
}

.coupon-btn {
    padding: 10px 20px;
    background: white;
    border: 1px solid #8B1538;
    color: #8B1538;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
}

.coupon-btn:hover {
    background: #fff5f5;
}

@media (max-width: 768px) {
    .cart-layout-grid {
        grid-template-columns: 1fr;
    }
}

/* Cart Page Specific Styles */
.cart-page {
    background-color: #f9fafb;
    min-height: 100vh;
}

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

.cart-page h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #111827;
    /* Darker blue-black */
    margin-bottom: 24px;
}

.cart-empty-state {
    background: white;
    border-radius: 8px;
    padding: 100px 24px;
    /* More padding for height */
    text-align: center;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    margin-top: 20px;
}

.cart-empty-text {
    color: #6b7280;
    font-size: 16px;
    margin-bottom: 32px;
}

/* Ensure button outline matches screenshot exactly */
.btn-outline-red {
    background: white;
    border: 1px solid #8B1538;
    color: #8B1538;
    padding: 12px 32px;
    border-radius: 4px;
    /* Slightly sharper corners */
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s;
}

.btn-outline-red:hover {
    background: #fff5f5;
}

/* Cart Count Badge */
.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ef4444;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
}

/* ================= MOBILE RESPONSIVENESS ================= */

/* Mobile Navigation */
@media (max-width: 768px) {
    .top-nav {
        padding: 0 16px;
        height: 60px;
    }

    .nav-left {
        gap: 16px;
    }

    .logo-mark {
        font-size: 18px;
    }

    .logo-subtitle {
        font-size: 9px;
    }

    .nav-links {
        display: none;
    }

    .nav-right {
        gap: 12px;
    }

    .search-wrapper {
        display: none;
    }

    .language-selector {
        padding: 8px 12px;
        font-size: 14px;
    }

    .btn {
        padding: 8px 12px;
        font-size: 14px;
    }

    .btn-outline,
    .btn-primary {
        display: none;
    }
}

/* Mobile Hero Section */
@media (max-width: 768px) {
    body {
        padding-top: 60px;
    }

    .hero {
        height: 50vh;
        min-height: 400px;
    }

    .hero-content {
        padding: 32px 16px;
        max-width: 100%;
    }

    .hero-title {
        font-size: 28px;
        line-height: 1.2;
        margin-bottom: 12px;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .btn-hero {
        padding: 12px 20px;
        font-size: 14px;
    }

    .hero-arrow {
        width: 32px;
        height: 32px;
        font-size: 18px;
    }

    .hero-arrow.left {
        left: 8px;
    }

    .hero-arrow.right {
        right: 8px;
    }
}

/* Mobile Featured Section */
@media (max-width: 768px) {
    .featured-section {
        padding: 32px 16px 48px;
    }

    .featured-title {
        font-size: 24px;
    }

    .featured-top-strip {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 32px;
    }

    .feature-pill {
        padding: 20px;
        text-align: left;
        flex-direction: row;
        gap: 16px;
    }

    .feature-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .feature-text h4 {
        font-size: 18px;
        margin-bottom: 4px;
    }

    .feature-text p {
        font-size: 14px;
    }

    .featured-subheader {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 16px;
    }

    .featured-subheader h3 {
        font-size: 24px;
        grid-column: 1;
    }

    .featured-subheader p {
        grid-column: 1;
    }

    .featured-visit-btn {
        grid-column: 1;
        justify-self: center;
        margin-top: 16px;
    }

    .featured-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .featured-card-image {
        height: 180px;
    }

    .featured-card-info {
        padding: 16px;
    }

    .featured-card-info h3 {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .featured-card-info p {
        font-size: 13px;
        margin-bottom: 12px;
    }
}

/* Mobile About Section */
@media (max-width: 768px) {
    .about-section {
        padding: 32px 16px;
    }

    .about-section h2 {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .about-section>p {
        font-size: 16px;
        margin-bottom: 32px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-grid article {
        padding: 24px;
    }

    .about-grid article h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .about-grid article p {
        font-size: 14px;
    }
}

/* Mobile Why Section */
@media (max-width: 768px) {
    .why-section {
        padding: 32px 16px;
    }

    .why-card {
        padding: 24px 20px;
    }

    .why-card h2 {
        font-size: 22px;
    }

    .why-list {
        grid-template-columns: 1fr;
        gap: 12px;
        margin: 20px 0;
    }

    .why-list li {
        font-size: 14px;
        padding-left: 24px;
    }
}

/* Mobile Pricing Section */
@media (max-width: 768px) {
    .pricing-section {
        padding: 32px 16px;
    }

    .pricing-section h2 {
        font-size: 24px;
    }

    .pricing-section>p {
        font-size: 16px;
        margin-bottom: 32px;
    }

    .pricing-carousel {
        padding-left: 16px;
        padding-right: 16px;
    }

    .pricing-nav {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .pricing-nav-prev {
        left: -4px;
    }

    .pricing-nav-next {
        right: -4px;
    }

    .pricing-track {
        gap: 16px;
        padding: 0 8px;
    }

    .pricing-card {
        flex: 0 0 260px;
        padding: 20px 16px;
    }

    .pricing-card h3 {
        font-size: 20px;
    }

    .pricing-price {
        font-size: 20px;
    }

    .pricing-list {
        margin: 16px 0;
    }

    .pricing-list li {
        padding: 6px 0;
        font-size: 14px;
    }
}

/* Mobile Events Section */
@media (max-width: 768px) {
    .events-section {
        padding: 32px 16px;
    }

    .events-section header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 16px;
    }

    .events-section h2 {
        font-size: 24px;
    }

    .events-section header p {
        margin-left: 0;
        font-size: 14px;
    }

    .events-vertical-grid {
        gap: 16px;
    }

    .event-vertical-card {
        flex-direction: column;
    }

    .event-image-placeholder {
        width: 100%;
        height: 150px;
    }

    .event-content {
        padding: 16px;
    }

    .event-date-badge {
        top: 12px;
        right: 12px;
    }

    .event-title {
        font-size: 18px;
        padding-right: 60px;
    }

    .event-details {
        flex-direction: column;
        gap: 8px;
    }

    .events-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .event-card {
        padding: 16px;
    }

    .event-head {
        gap: 12px;
    }

    .event-date-tile {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .event-title {
        font-size: 16px;
    }

    .event-datetime {
        font-size: 12px;
    }

    .event-location,
    .event-price {
        font-size: 13px;
    }
}

/* Mobile CTA Section */
@media (max-width: 768px) {
    .cta-section {
        padding: 32px 16px;
    }

    .cta-section h2 {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .cta-section p {
        font-size: 16px;
        margin-bottom: 24px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
}

/* Mobile Footer */
@media (max-width: 768px) {
    .footer {
        padding: 32px 16px 16px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-brand h1 {
        font-size: 24px;
    }

    .footer-brand p {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .footer-column h3 {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .footer-column li {
        margin-bottom: 6px;
    }

    .footer-column a {
        font-size: 14px;
    }

    .footer-newsletter h3 {
        font-size: 16px;
    }

    .footer-newsletter p {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 8px;
    }

    .newsletter-form input {
        padding: 10px;
        font-size: 14px;
    }

    .newsletter-form button {
        padding: 10px 16px;
        font-size: 14px;
    }

    .footer-bottom p {
        font-size: 12px;
    }
}

/* Mobile Marketplace */
@media (max-width: 768px) {
    .marketplace-section {
        padding: 0 16px 32px;
    }

    .marketplace-header {
        padding: 32px 16px;
    }

    .marketplace-header h1 {
        font-size: 28px;
    }

    .marketplace-header p {
        font-size: 14px;
    }

    .search-filters {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 32px;
    }

    .market-search-form input {
        width: 100%;
        padding: 12px 32px 12px 32px;
        font-size: 14px;
    }

    .ve-select {
        width: 100%;
        padding: 10px 12px;
        font-size: 14px;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .product-item img {
        height: 160px;
    }

    .product-content {
        padding: 12px;
    }

    .product-content h3 {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .product-meta {
        font-size: 12px;
        margin-bottom: 6px;
    }

    .product-footer {
        flex-direction: column;
        gap: 8px;
        align-items: stretch;
    }

    .product-price strong {
        font-size: 14px;
    }

    .btn.btn-primary {
        padding: 8px 12px;
        font-size: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 4px;
    }
}

/* Mobile Cart */
@media (max-width: 768px) {
    .container {
        margin: 20px auto;
        padding: 0 16px;
    }

    .container h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .cart-layout-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cart-item-card {
        padding: 16px;
        flex-direction: column;
        gap: 12px;
    }

    .cart-item-image {
        width: 60px;
        height: 60px;
        align-self: center;
    }

    .cart-item-details {
        text-align: center;
    }

    .cart-item-title {
        font-size: 14px;
    }

    .cart-item-subtitle {
        font-size: 12px;
    }

    .cart-item-price {
        font-size: 14px;
    }

    .cart-item-remove {
        position: static;
        align-self: center;
    }

    .cart-item-controls {
        position: static;
        justify-content: center;
    }

    .order-summary-card {
        padding: 16px;
    }

    .summary-header {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .summary-row {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .summary-row.total {
        font-size: 16px;
    }

    .checkout-btn-yellow {
        padding: 10px;
        font-size: 14px;
    }

    .continue-shopping-btn {
        padding: 10px;
        font-size: 14px;
    }

    .coupon-card {
        padding: 16px;
        margin-top: 16px;
    }

    .coupon-header {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .coupon-input-group {
        flex-direction: column;
        gap: 8px;
    }

    .coupon-input,
    .coupon-btn {
        padding: 8px;
        font-size: 14px;
    }
}

/* Mobile Auth Pages */
@media (max-width: 768px) {
    .auth-container {
        margin: 20px auto 40px;
        padding: 0 16px;
    }

    .auth-card {
        padding: 20px 16px 24px;
    }

    .auth-logo h1 {
        font-size: 24px;
    }

    .auth-title {
        font-size: 20px;
    }

    .auth-subtitle {
        font-size: 14px;
    }

    .auth-form input {
        padding: 10px;
        font-size: 14px;
    }

    .btn.full {
        padding: 10px;
        font-size: 14px;
    }

    .oauth-btn {
        padding: 8px 10px;
        font-size: 14px;
    }
}

/* Very Small Mobile (320px) */
@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 24px;
    }

    .featured-title {
        font-size: 20px;
    }

    .about-section h2 {
        font-size: 20px;
    }

    .pricing-section h2 {
        font-size: 20px;
    }

    .events-section h2 {
        font-size: 20px;
    }

    .cta-section h2 {
        font-size: 20px;
    }
}

/* Tablet Responsive (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Menu Styles */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 20px;
    color: #374151;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: white;
    z-index: 1000;
    transition: right 0.3s ease;
    padding: 20px;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e7eb;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #374151;
    cursor: pointer;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-menu-links a {
    text-decoration: none;
    color: #374151;
    font-size: 18px;
    font-weight: 500;
    padding: 12px 0;
    border-bottom: 1px solid #f3f4f6;
    transition: color 0.3s ease;
}

.mobile-menu-links a:hover {
    color: #8B1538;
}

.mobile-menu-actions {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-menu-actions .btn {
    width: 100%;
    text-align: center;
    padding: 12px;
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .mobile-menu-overlay.active {
        display: block;
    }
}

/* New Mobile Dropdown Menu */
.mobile-dropdown {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-dropdown.active {
    max-height: 400px;
}

.mobile-dropdown-content {
    padding: 20px;
}

.mobile-dropdown-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
}

.mobile-dropdown-links a {
    text-decoration: none;
    color: #374151;
    font-size: 16px;
    font-weight: 500;
    padding: 12px 0;
    border-bottom: 1px solid #f3f4f6;
    transition: color 0.3s ease;
}

.mobile-dropdown-links a:hover {
    color: #8B1538;
}

.mobile-cart-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #374151;
    font-size: 16px;
    font-weight: 500;
    padding: 12px 0;
    border-bottom: 1px solid #f3f4f6;
}

.mobile-cart-count {
    background: #ef4444;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-dropdown-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-top: 1px solid #e5e7eb;
    padding-top: 20px;
}

.mobile-dropdown-actions .btn {
    width: 100%;
    text-align: center;
    padding: 12px;
    text-decoration: none;
    display: block;
}

@media (max-width: 768px) {
    .nav-right {
        display: none;
    }

    .nav-left {
        justify-content: space-between;
        width: 100%;
    }

    body.menu-open {
        padding-top: calc(60px + var(--menu-height, 0px));
    }
}

/* Mobile Menu Action Button Styles */
.mobile-btn {
    background: transparent !important;
    border: 1px solid transparent !important;
    color: #374151 !important;
    font-weight: 500 !important;
    padding: 12px 0 !important;
    text-align: left !important;
    border-bottom: 1px solid #f3f4f6 !important;
    border-radius: 0 !important;
    transition: color 0.3s ease !important;
}

.mobile-btn:hover {
    color: #800000 !important;
    background: transparent !important;
}

.mobile-dropdown-actions {
    border-top: none !important;
    padding-top: 0 !important;
}

.mobile-cart-link:hover {
    color: #8B1538;
}

/* Authentication System Styles */
.user-menu {
    position: relative;
    display: inline-block;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    color: #374151;
    font-size: 14px;
    font-weight: 500;
}

.user-info:hover {
    border-color: #8B1538;
    box-shadow: 0 0 0 1px #800000;
}

.user-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    min-width: 320px;
    z-index: 1001;
    display: none;
    margin-top: 8px;
    overflow: hidden;
}

.user-dropdown.show {
    display: block !important;
}

/* Dropdown User Header */
.dropdown-user-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
}

.dropdown-user-avatar {
    flex-shrink: 0;
}

.dropdown-user-avatar img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.dropdown-avatar-initial {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
}

.dropdown-user-info {
    flex: 1;
    min-width: 0;
}

.dropdown-user-name {
    font-weight: 600;
    font-size: 15px;
    color: #111827;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dropdown-user-email {
    font-size: 13px;
    color: #6b7280;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Switch Button */
.dropdown-switch-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 12px 12px 8px 12px;
    padding: 10px 16px;
    background: #111827;
    color: white;
    border: 1px solid #111827;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
}

.dropdown-switch-btn:hover {
    background: #1f2937;
    border-color: #1f2937;
    transform: translateY(-1px);
}

/* Divider */
.dropdown-divider {
    height: 1px;
    background: #e5e7eb;
    margin: 8px 0;
}

/* Dropdown Items */
.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    color: #374151;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s;
    cursor: pointer;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
}

.dropdown-item i {
    width: 18px;
    font-size: 16px;
    color: #6b7280;
}

.dropdown-item:hover {
    background-color: #f3f4f6;
    color: #111827;
}

.dropdown-item:hover i {
    color: #111827;
}

.dropdown-item-danger {
    color: #dc2626;
}

.dropdown-item-danger i {
    color: #dc2626;
}

.dropdown-item-danger:hover {
    background-color: #fef2f2;
    color: #b91c1c;
}

.dropdown-item-danger:hover i {
    color: #b91c1c;
}

.error-message {
    background: #fef2f2;
    color: #dc2626;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #fecaca;
    font-size: 14px;
    margin-bottom: 16px;
}

.demo-accounts {
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: 8px;
    padding: 16px;
    margin-top: 16px;
    font-size: 12px;
    color: #0369a1;
}

.demo-accounts p {
    margin: 4px 0;
}

.logout-item {
    color: #dc2626 !important;
}

.logout-item:hover {
    background-color: #fef2f2 !important;
    color: #dc2626 !important;
}

/* Mobile User Menu */
.mobile-user-menu {
    width: 100%;
}

.mobile-user-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    color: #374151;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid #f3f4f6;
    cursor: pointer;
}

.mobile-user-dropdown {
    padding-left: 20px;
}

.mobile-dropdown-item {
    display: block;
    padding: 8px 0;
    color: #6b7280;
    text-decoration: none;
    font-size: 14px;
    border-bottom: 1px solid #f9fafb;
    cursor: pointer;
}

.mobile-dropdown-item:hover {
    color: #8B1538;
}

/* Dashboard Mobile Responsive */
@media (max-width: 768px) {
    .dashboard-stats {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px !important;
    }

    main {
        padding: 80px 16px !important;
    }
}

/* Events Section - Horizontal Layout */
.events-horizontal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.event-horizontal-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-horizontal-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.event-horizontal-card .event-image-placeholder {
    height: 180px;
    background: linear-gradient(135deg, #800000, #a00000);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 48px;
}

.event-horizontal-card .event-content {
    padding: 24px;
    position: relative;
}

.event-horizontal-card .event-date-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background: #8B1538;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.event-horizontal-card .event-title {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin: 16px 0 12px 0;
    line-height: 1.3;
}

.event-horizontal-card .event-description {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 16px;
}

.event-horizontal-card .event-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.event-horizontal-card .event-details span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #6b7280;
}

.event-horizontal-card .event-details i {
    width: 14px;
    color: #8B1538;
}

.event-horizontal-card .event-btn {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    font-weight: 600;
}

/* Mobile responsiveness for horizontal events */
@media (max-width: 768px) {
    .events-horizontal-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .event-horizontal-card .event-image-placeholder {
        height: 160px;
        font-size: 40px;
    }

    .event-horizontal-card .event-content {
        padding: 20px;
    }

    .event-horizontal-card .event-title {
        font-size: 16px;
    }
}

/* Events Section - Modern Card Layout */
.events-horizontal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
    background: #f5f5f5;
    padding: 32px;
    border-radius: 12px;
}

.event-horizontal-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.event-calendar-icon {
    width: 60px;
    height: 60px;
    background: #ec4899;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.calendar-day {
    color: white;
    font-size: 24px;
    font-weight: bold;
}

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

.event-title {
    font-size: 18px;
    font-weight: bold;
    color: #374151;
    margin-bottom: 8px;
    text-align: center;
}

.event-datetime {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 6px;
}

.event-venue {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 8px;
}

.event-price {
    font-size: 16px;
    font-weight: bold;
    color: #111827;
    margin-bottom: 16px;
}

.event-details-btn {
    background: #dc2626;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    align-self: flex-end;
    margin-left: auto;
}

.event-details-btn:hover {
    background: #b91c1c;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .events-horizontal-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }
}

/* Updated Events Section - Calendar Icon Layout */
.event-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.event-icon {
    color: #ec4899;
    font-size: 20px;
    margin-top: 2px;
}

.event-header-text {
    flex: 1;
}

.event-horizontal-card .event-title {
    font-size: 16px;
    font-weight: bold;
    color: #374151;
    margin: 0 0 4px 0;
    line-height: 1.3;
}

.event-horizontal-card .event-datetime {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

.event-horizontal-card .event-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.event-horizontal-card .event-venue {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

.event-horizontal-card .event-price {
    font-size: 16px;
    font-weight: bold;
    color: #111827;
    margin: 0 0 12px 0;
}

.event-horizontal-card .event-details-btn {
    align-self: flex-start;
}

/* Align date with title start and reduce card length */
.event-header-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.event-horizontal-card {
    max-width: 280px;
}

.event-horizontal-card .event-datetime {
    align-self: flex-start;
}

/* Restore width and reduce height */
.event-horizontal-card {
    max-width: none;
    padding: 16px 20px;
}

/* Keep event titles on one line */
.event-horizontal-card .event-title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Increase calendar icon height to span title and date */
.event-header {
    align-items: stretch;
}

.event-icon {
    align-self: stretch;
    display: flex;
    align-items: center;
}

/* Change calendar icon color to maroon */
.event-icon {
    color: #8B1538;
}

/* Make calendar icon span full card height */
.event-horizontal-card {
    display: flex;
    align-items: stretch;
}

.event-icon {
    align-self: stretch;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
}

.event-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* New layout with venues below calendar */
.event-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 80px;
}

.event-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.event-left .event-venue {
    font-size: 12px;
    color: #6b7280;
    margin-top: 8px;
}

/* Position venue at far left with spacing from date */
.event-horizontal-card .event-venue {
    margin-left: -52px;
    /* Align with calendar icon */
    margin-top: 8px;
    font-size: 14px;
    color: #6b7280;
}

/* Position price at far left and bottom of event cards */
.event-price-left {
    position: absolute;
    bottom: 16px;
    left: 20px;
    font-size: 16px;
    font-weight: bold;
    color: #111827;
    margin: 0;
}

.event-horizontal-card {
    position: relative;
}

/* Position Details button at same line as price but far right */
.event-horizontal-card .event-details-btn {
    position: absolute;
    bottom: 16px;
    right: 20px;
}

/* Events section header layout update */
.events-section header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 24px;
}

.events-section header h2 {
    margin-bottom: 8px;
}

.events-section header p {
    margin: 0 0 16px 0;
}

.events-section header .btn {
    align-self: flex-end;
    margin-top: -40px;
}

/* Move Details button lower */
.event-horizontal-card .event-details-btn {
    bottom: 12px !important;
}

/* Align Details button with price amounts */
.event-horizontal-card .event-details-btn {
    bottom: 16px !important;
}

/* Create bottom row for price and details alignment */
.event-bottom-row {
    position: absolute;
    bottom: 16px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.event-price-left {
    position: static !important;
    margin: 0 !important;
}

.event-horizontal-card .event-details-btn {
    position: static !important;
    bottom: auto !important;
    right: auto !important;
}

/* Mobile styling for long event titles */
@media (max-width: 768px) {
    .event-horizontal-card .event-title {
        white-space: normal !important;
        overflow: visible !important;
        text-overflow: clip !important;
        line-height: 1.3;
        font-size: 14px;
    }
}

/* Remove all hover effects from top navigation */
.search-wrapper:hover,
.search-wrapper:focus-within {
    border-color: #e5e7eb !important;
    box-shadow: none !important;
}

.language-selector:hover {
    border-color: #e5e7eb !important;
    box-shadow: none !important;
}

.user-info:hover {
    border-color: #e5e7eb !important;
    box-shadow: none !important;
}

.btn-outline:hover {
    background: white !important;
    color: #800000 !important;
}

.btn-primary:hover {
    background: #fbbf24 !important;
    color: #111827 !important;
}

.icon-button:hover {
    background: transparent !important;
    transform: none !important;
}

/* Complete removal of all top navigation hover effects */
* {
    transition: none !important;
}

.search-wrapper:hover,
.search-wrapper:focus-within,
.language-selector:hover,
.user-info:hover,
.btn:hover,
.btn-outline:hover,
.btn-primary:hover,
.icon-button:hover {
    transition: none !important;
    transform: none !important;
    border-color: inherit !important;
    box-shadow: none !important;
    background: inherit !important;
    color: inherit !important;
}

/* Remove hover effects only on desktop screens */
@media (min-width: 769px) {

    .search-wrapper:hover,
    .search-wrapper:focus-within {
        border-color: #e5e7eb !important;
        box-shadow: none !important;
    }

    .language-selector:hover {
        border-color: #e5e7eb !important;
        box-shadow: none !important;
    }

    .user-info:hover {
        border-color: #e5e7eb !important;
        box-shadow: none !important;
    }

    .btn-outline:hover {
        background: white !important;
        color: #800000 !important;
    }

    .btn-primary:hover {
        background: #fbbf24 !important;
        color: #111827 !important;
    }

    .icon-button:hover {
        background: transparent !important;
        transform: none !important;
    }
}

/* Remove hover effects from navigation links */
.nav-links a:hover {
    color: #4b5563 !important;
    text-decoration: none !important;
    border-bottom: 2px solid transparent !important;
    background: none !important;
}

/* ================= 3D EXHIBITION ROOM STYLES ================= */

.art-room {
    position: relative;
    overflow: hidden;
}

.gallery-3d-viewport {
    position: relative;
    min-height: 800px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    overflow: hidden;
    perspective: 1000px;
}

/* 3D Gallery Interior */
.gallery-interior {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    background:
        radial-gradient(ellipse at center, #ffffff 0%, #f1f5f9 50%, #e2e8f0 100%),
        linear-gradient(45deg, #f8fafc 0%, #e2e8f0 100%);
}

/* Gallery Floor */
.gallery-interior::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top,
            rgba(101, 67, 33, 0.9) 0%,
            rgba(139, 90, 43, 0.7) 30%,
            rgba(160, 120, 80, 0.4) 60%,
            transparent 100%);
    border-top: 1px solid rgba(139, 90, 43, 0.3);
}

/* Gallery Walls */
.gallery-interior::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 200px;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0.95) 0%,
            rgba(248, 250, 252, 0.98) 50%,
            rgba(255, 255, 255, 0.95) 100%);
    border: 1px solid rgba(203, 213, 225, 0.5);
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.05);
}

/* Wall Artworks */
.wall-artwork {
    position: absolute;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wall-artwork:hover {
    transform: scale(1.02);
    z-index: 10;
}

.wall-artwork:hover .artwork-frame {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 215, 0, 0.2);
}

/* Left Wall Paintings */
.left-wall-1 {
    left: 15%;
    top: 25%;
    width: 200px;
    height: 150px;
}

.left-wall-2 {
    left: 15%;
    top: 45%;
    width: 180px;
    height: 135px;
}

.left-wall-3 {
    left: 15%;
    top: 65%;
    width: 190px;
    height: 142px;
}

/* Center Sculpture */
.center-sculpture {
    position: absolute;
    left: 50%;
    top: 60%;
    transform: translateX(-50%);
    cursor: pointer;
    transition: all 0.3s ease;
}

.center-sculpture:hover {
    transform: translateX(-50%) scale(1.05);
}

.center-sculpture:hover .sculpture-pedestal {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 215, 0, 0.3);
}

/* Right Wall Salon Cluster */
.salon-cluster {
    position: absolute;
    right: 15%;
    top: 20%;
    width: 300px;
    height: 400px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(4, 1fr);
    gap: 15px;
}

.salon-artwork {
    cursor: pointer;
    transition: all 0.3s ease;
}

.salon-artwork:hover {
    transform: scale(1.05);
    z-index: 10;
}

.salon-artwork:hover .artwork-frame {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 15px rgba(255, 215, 0, 0.2);
}

/* Far Wall Digital Screen */
.far-wall-screen {
    position: absolute;
    right: 8%;
    top: 30%;
    width: 250px;
    height: 140px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.far-wall-screen:hover {
    transform: scale(1.02);
}

.far-wall-screen:hover .digital-screen {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 123, 255, 0.3);
}

/* Artwork Frames */
.artwork-frame {
    width: 100%;
    height: 100%;
    background: #ffffff;
    border: 8px solid #8b4513;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.artwork-frame.small {
    border-width: 6px;
}

/* Artwork Content */
.artwork-content {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Abstract Painting */
.abstract-painting {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #f9ca24, #f0932b);
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Portrait Painting */
.portrait-painting {
    background: linear-gradient(135deg, #2d3748 0%, #4a5568 50%, #718096 100%);
    position: relative;
}

.portrait-painting::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 30%;
    width: 40%;
    height: 60%;
    background: radial-gradient(circle, #f7fafc 0%, #e2e8f0 70%, #cbd5e1 100%);
    border-radius: 50% 45% 40% 50%;
}

/* Landscape Painting */
.landscape-painting {
    background: linear-gradient(to bottom, #87ceeb 0%, #228b22 30%, #daa520 60%, #8b4513 100%);
    position: relative;
}

.landscape-painting::before {
    content: '';
    position: absolute;
    bottom: 10%;
    left: 10%;
    right: 10%;
    height: 30%;
    background: linear-gradient(to top, #daa520 0%, #daa520 50%, transparent 50%);
}

/* Small Paintings */
.small-painting {
    background: linear-gradient(45deg, #ff9ff3, #f368e0, #a855f7, #6366f1);
    background-size: 200% 200%;
    animation: colorShift 6s ease infinite;
}

@keyframes colorShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* Sculpture */
.sculpture-pedestal {
    width: 120px;
    height: 180px;
    background: linear-gradient(145deg, #8b4513 0%, #a0522d 50%, #daa520 100%);
    border-radius: 8px 8px 4px 4px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.sculpture-content {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(145deg, #c0c0c0 0%, #a8a8a8 50%, #808080 100%);
    border-radius: 50% 40% 30% 50%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

/* Digital Screen */
.digital-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 4px solid #404040;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.screen-content {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #000428, #004e92);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.screen-content::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 10%;
    right: 10%;
    bottom: 10%;
    background: repeating-linear-gradient(90deg,
            rgba(255, 255, 255, 0.1) 0px,
            rgba(255, 255, 255, 0.1) 2px,
            transparent 2px,
            transparent 4px);
    animation: scanlines 2s linear infinite;
}

@keyframes scanlines {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(100%);
    }
}

.screen-play {
    color: #ffffff;
    font-size: 24px;
    z-index: 2;
    position: relative;
}

/* Artwork Plaques */
.artwork-plaque {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 500;
    white-space: nowrap;
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.wall-artwork:hover .artwork-plaque,
.center-sculpture:hover .artwork-plaque,
.far-wall-screen:hover .artwork-plaque {
    opacity: 1;
}

/* Spotlight Effects */
.spotlight {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 0, 0.3) 0%, rgba(255, 215, 0, 0.1) 50%, transparent 100%);
    pointer-events: none;
    animation: flicker 4s ease-in-out infinite alternate;
}

.spotlight-1 {
    top: 15%;
    left: 20%;
    width: 150px;
    height: 150px;
    animation-delay: 0s;
}

.spotlight-2 {
    top: 25%;
    right: 25%;
    width: 120px;
    height: 120px;
    animation-delay: 1s;
}

.spotlight-3 {
    top: 50%;
    left: 10%;
    width: 100px;
    height: 100px;
    animation-delay: 2s;
}

.spotlight-4 {
    top: 35%;
    right: 15%;
    width: 80px;
    height: 80px;
    animation-delay: 3s;
}

@keyframes flicker {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

/* Add subtle fog effect */
.gallery-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

/* Centered Exhibition Label */
.exhibition-label {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 999px;
    padding: 14px 28px;
    display: flex;
    align-items: center;
    gap: 12px;
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 20;
}

.label-text {
    color: white;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.5px;
}

.label-arrow {
    color: #cbd5e1;
    font-size: 14px;
}


/* Bottom Control Bar */
.control-bar {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 999px;
    padding: 14px 28px;
    display: flex;
    align-items: center;
    gap: 20px;
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.control-btn {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    min-width: 44px;
    min-height: 44px;
}

.control-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.05);
}

.auto-tour {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    color: white;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.auto-tour:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.02);
}

.auto-tour i {
    font-size: 12px;
}

.item-count {
    color: #cbd5e1;
    font-size: 14px;
    font-weight: 500;
    min-width: 60px;
    text-align: center;
}

/* Lovable Badge */
.lovable-badge {
    position: absolute;
    bottom: 40px;
    right: 40px;
    background: linear-gradient(135deg, #ec4899, #f97316, #3b82f6, #8b5cf6);
    color: white;
    border-radius: 999px;
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: gentlePulse 3s ease-in-out infinite;
}

@keyframes gentlePulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .gallery-3d-viewport {
        min-height: 700px;
    }

    .left-wall-1,
    .left-wall-2,
    .left-wall-3 {
        left: 10%;
        width: 160px;
        height: 120px;
    }

    .center-sculpture {
        width: 100px;
        height: 150px;
    }

    .salon-cluster {
        right: 10%;
        width: 250px;
        height: 350px;
    }

    .far-wall-screen {
        right: 5%;
        width: 200px;
        height: 112px;
    }
}

@media (max-width: 768px) {
    .gallery-3d-viewport {
        min-height: 600px;
    }

    .exhibition-label {
        top: 20px;
        padding: 10px 20px;
    }

    .label-text {
        font-size: 16px;
    }

    .left-wall-1,
    .left-wall-2,
    .left-wall-3 {
        left: 5%;
        width: 120px;
        height: 90px;
    }

    .left-wall-1 {
        top: 20%;
    }

    .left-wall-2 {
        top: 35%;
    }

    .left-wall-3 {
        top: 50%;
    }

    .center-sculpture {
        top: 70%;
        width: 80px;
        height: 120px;
    }

    .salon-cluster {
        right: 5%;
        top: 15%;
        width: 200px;
        height: 300px;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
    }

    .far-wall-screen {
        right: 5%;
        top: 20%;
        width: 150px;
        height: 84px;
    }

    .control-bar {
        bottom: 20px;
        padding: 12px 20px;
        gap: 16px;
    }

    .control-btn {
        min-width: 40px;
        min-height: 40px;
        font-size: 18px;
    }

    .auto-tour {
        padding: 8px 14px;
        font-size: 13px;
    }

    .item-count {
        font-size: 13px;
        min-width: 50px;
    }

    .lovable-badge {
        bottom: 20px;
        right: 20px;
        padding: 8px 14px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .gallery-3d-viewport {
        min-height: 500px;
    }

    .exhibition-label {
        top: 15px;
        padding: 8px 16px;
    }

    .label-text {
        font-size: 14px;
    }

    .left-wall-1,
    .left-wall-2,
    .left-wall-3 {
        width: 100px;
        height: 75px;
    }

    .center-sculpture {
        width: 60px;
        height: 90px;
    }

    .salon-cluster {
        width: 160px;
        height: 240px;
    }

    .far-wall-screen {
        width: 120px;
        height: 67px;
    }

    .control-bar {
        padding: 10px 16px;
        gap: 12px;
    }

    .lovable-badge {
        padding: 6px 12px;
        font-size: 11px;
    }
}

/* Fix mobile user dropdown to be horizontal pill buttons */
@media (max-width: 768px) {
    .mobile-dropdown-actions {
        display: flex !important;
        flex-direction: row !important;
        gap: 8px !important;
        border-top: 1px solid #e5e7eb !important;
        padding-top: 16px !important;
        flex-wrap: wrap !important;
    }

    .mobile-dropdown-actions .btn,
    .mobile-dropdown-actions .mobile-btn {
        width: auto !important;
        flex: 1 !important;
        min-width: 0 !important;
        padding: 8px 12px !important;
        font-size: 14px !important;
        border-radius: 20px !important;
        text-align: center !important;
    }
}

/* ================= NEW 3D EXHIBITION ROOM STYLES ================= */

/* Exhibition Header */
.exhibition-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 72px;
    background: #1e293b;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    z-index: 20;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-title {
    font-size: 24px;
    font-weight: bold;
    color: white;
}

.header-center {
    flex: 1;
    text-align: center;
}

.header-subtitle {
    font-size: 14px;
    color: #9ca3af;
}

.header-right {
    display: flex;
    align-items: center;
}

.upload-btn {
    background: #D4A520;
    color: #1e293b;
    border: none;
    border-radius: 999px;
    padding: 8px 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: background 0.3s;
}

.upload-btn:hover {
    background: #f59e0b;
}

/* Immersive Background */
.immersive-bg {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    min-height: 100vh;
    padding-top: 72px;
    position: relative;
    overflow: hidden;
}

.panorama-wall {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #ffffff 0%, #f1f5f9 50%, #e2e8f0 100%);
    opacity: 0.3;
}

.floating-artwork {
    position: absolute;
    width: 150px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.spotlight-beam {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 0, 0.3) 0%, rgba(255, 215, 0, 0.1) 50%, transparent 100%);
    pointer-events: none;
    animation: flicker 4s ease-in-out infinite alternate;
}

@keyframes flicker {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

.fog-effect {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.floor-reflection {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3) 0%, transparent 100%);
}

/* Exhibition Label */
.exhibition-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: black;
    border-radius: 999px;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-weight: 600;
    z-index: 10;
}

.label-arrow {
    font-size: 16px;
    color: #cbd5e1;
}

/* Floating Media Container */
.floating-media-container {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 40px;
    align-items: center;
}

.media-element {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.media-element:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.media-thumbnail {
    width: 120px;
    height: 80px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.media-element:hover .media-thumbnail {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.media-element.active .media-thumbnail {
    box-shadow: 0 0 30px rgba(128, 0, 0, 0.8), 0 0 40px rgba(255, 255, 255, 0.6);
    transform: scale(1.1);
}

.media-element.active {
    transform: scale(1.05);
}

.play-icon,
.cube-icon {
    font-size: 24px;
    color: #333;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    width: 100%;
    height: 100%;
}

.grid-item {
    background: #eee;
    border-radius: 2px;
}

.media-reflection {
    position: absolute;
    bottom: -20px;
    left: 0;
    right: 0;
    height: 20px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
    border-radius: 50%;
    transform: scaleY(0.5);
    opacity: 0.5;
}

.media-title {
    margin-top: 8px;
    font-size: 12px;
    color: white;
    text-align: center;
    max-width: 120px;
}

.media-id {
    font-size: 10px;
    color: #9ca3af;
    text-align: center;
}

.media-video,
.media-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.media-video {
    pointer-events: none;
}

/* Fullscreen Modal */
.fullscreen-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.fullscreen-video,
.fullscreen-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.close-btn {
    position: absolute;
    top: -40px;
    right: 0;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 30px;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 5px;
}

.close-btn:hover {
    background: rgba(0, 0, 0, 0.7);
}

/* Control Bar */
.control-bar {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    background: black;
    border-radius: 999px;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 10;
}

.control-btn {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.control-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.auto-tour {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    padding: 8px 16px;
    font-size: 14px;
    color: white;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.auto-tour:hover {
    background: rgba(255, 255, 255, 0.2);
}

.auto-tour.active {
    background: rgba(128, 0, 0, 0.8);
    color: white;
}

.item-count {
    color: #9ca3af;
    font-size: 14px;
}

/* AI Badge */
.ai-badge {
    position: absolute;
    bottom: 40px;
    right: 40px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #f9ca24);
    border-radius: 999px;
    padding: 8px 16px;
    font-size: 12px;
    color: white;
    font-weight: 600;
    z-index: 10;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .floating-media-container {
        gap: 30px;
    }

    .media-thumbnail {
        width: 100px;
        height: 70px;
    }

    .media-title {
        font-size: 11px;
    }
}

@media (max-width: 768px) {
    .exhibition-header {
        padding: 0 16px;
        height: 60px;
    }

    .header-title {
        font-size: 20px;
    }

    .header-subtitle {
        font-size: 12px;
    }

    .upload-btn {
        padding: 6px 12px;
        font-size: 14px;
    }

    .immersive-bg {
        padding-top: 60px;
    }

    .floating-media-container {
        bottom: 100px;
        gap: 20px;
    }

    .media-thumbnail {
        width: 80px;
        height: 60px;
    }

    .media-title {
        font-size: 10px;
    }

    .control-bar {
        bottom: 20px;
        padding: 10px 20px;
        gap: 16px;
    }

    .control-btn {
        font-size: 18px;
        padding: 6px;
    }

    .auto-tour {
        padding: 6px 12px;
        font-size: 13px;
    }

    .item-count {
        font-size: 13px;
    }

    .ai-badge {
        bottom: 20px;
        right: 20px;
        padding: 6px 12px;
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .floating-media-container {
        gap: 15px;
    }

    .media-thumbnail {
        width: 70px;
        height: 50px;
    }

    .control-bar {
        padding: 8px 16px;
        gap: 12px;
    }

    .ai-badge {
        padding: 4px 10px;
        font-size: 10px;
    }
}

/* 3D Exhibition Room Styles */
#threejs-container {
    width: 100%;
    height: 600px;
    position: relative;
    overflow: hidden;
}

.art-room-top-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: #1e293b;
    /* solid dark navy blue */
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-header-left {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.top-header-title {
    font-size: 18px;
    font-weight: bold;
    color: white;
}

.top-header-subtitle {
    font-size: 12px;
    color: #cbd5e1;
}

.top-header-right {
    display: flex;
    align-items: center;
}

.upload-btn {
    background: #D4A520;
    color: #1e293b;
    border: none;
    border-radius: 999px;
    padding: 8px 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s;
}

.upload-btn:hover {
    background: #f59e0b;
}

.art-room-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 999px;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-weight: 600;
    z-index: 10;
    backdrop-filter: blur(8px);
}

.art-room-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 999px;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    backdrop-filter: blur(8px);
    z-index: 10;
}

.circle-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s;
}

.circle-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.pill-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s;
}

.pill-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.pill-count {
    color: #cbd5e1;
    font-size: 14px;
    font-weight: 500;
}

.lovable-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(45deg, #ec4899, #f97316, #3b82f6, #8b5cf6);
    color: white;
    border-radius: 999px;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 600;
    z-index: 10;
    animation: gentlePulse 3s ease-in-out infinite;
}

@keyframes gentlePulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }
}

/* Responsive for 3D room */
@media (max-width: 768px) {
    #threejs-container {
        height: 500px;
    }

    .art-room-top-header {
        padding: 12px 16px;
    }

    .top-header-title {
        font-size: 16px;
    }

    .top-header-subtitle {
        font-size: 11px;
    }

    .upload-btn {
        padding: 6px 12px;
        font-size: 12px;
    }

    .art-room-label {
        padding: 10px 20px;
        font-size: 14px;
    }

    .art-room-controls {
        padding: 10px 20px;
        gap: 12px;
    }

    .circle-btn {
        width: 36px;
        height: 36px;
    }

    .pill-btn {
        padding: 6px 12px;
        font-size: 13px;
    }

    .pill-count {
        font-size: 13px;
    }

    .lovable-badge {
        padding: 6px 12px;
        font-size: 11px;
    }
}

/* Event Details Page Styles */
.event-hero {
    background: #8B1538;
    color: white;
    padding: 60px 20px;
    text-align: center;
    position: relative;
}

.event-hero-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #D4A520;
    color: #8B1538;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
}

.event-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin: 40px 0 20px 0;
    line-height: 1.1;
}

.event-hero-details {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.event-hero-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.event-hero-item i {
    font-size: 1.2rem;
    opacity: 0.9;
}

.event-hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.event-hero-buttons .btn {
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.event-main {
    background: #f9fafb;
    padding: 60px 0;
}

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

.event-content-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
}

.event-content-left {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.event-section {
    margin-bottom: 40px;
}

.event-section h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 20px;
    border-bottom: 2px solid #800000;
    padding-bottom: 10px;
}

.event-section p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 16px;
    font-size: 1rem;
}

.event-highlights-list {
    list-style: none;
    padding: 0;
}

.event-highlights-list li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e5e7eb;
}

.event-highlights-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.highlight-number {
    width: 40px;
    height: 40px;
    background: #d4a574;
    color: #8B1538;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.highlight-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
}

.highlight-content p {
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

.event-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.sidebar-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 20px;
}

.ticket-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: 20px;
}

.ticket-option.featured {
    border-color: #8B1538;
    background: #fef2f2;
}

.ticket-name {
    font-weight: 600;
    color: #111827;
}

.ticket-price {
    font-weight: 700;
    color: #8B1538;
    font-size: 1.1rem;
}

.ticket-info {
    margin-bottom: 24px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.info-item i {
    color: #6b7280;
    font-size: 1.1rem;
    width: 20px;
}

.info-label {
    display: block;
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 500;
}

.info-value {
    display: block;
    font-size: 0.95rem;
    color: #111827;
    font-weight: 600;
}

.full-width {
    width: 100%;
}

.payment-methods {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.payment-badge {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
}

.payment-badge.mpesa {
    background: #dcfce7;
    color: #166534;
}

.payment-badge.card {
    background: #dbeafe;
    color: #1e40af;
}

.payment-badge.paypal {
    background: #fef3c7;
    color: #92400e;
}

.share-buttons {
    display: flex;
    gap: 12px;
}

.share-btn {
    width: 44px;
    height: 44px;
    border: 2px solid #800000;
    border-radius: 8px;
    background: white;
    color: #8B1538;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1.1rem;
}

.share-btn:hover {
    background: #8B1538;
    color: white;
}

.share-btn.twitter:hover {
    background: #1da1f2;
    border-color: #1da1f2;
    color: white;
}

.share-btn.facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: white;
}

.share-btn.linkedin:hover {
    background: #0077b5;
    border-color: #0077b5;
    color: white;
}

/* Mobile responsiveness for event details */
@media (max-width: 768px) {
    .event-hero {
        padding: 40px 20px;
    }

    .event-hero-badge {
        position: static;
        display: inline-block;
        margin-bottom: 20px;
    }

    .event-hero-title {
        font-size: 2.2rem;
    }

    .event-hero-details {
        gap: 20px;
    }

    .event-hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .event-hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .event-content-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .event-content-left {
        padding: 24px;
    }

    .event-sidebar {
        position: static;
    }

    .event-highlights-list li {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .highlight-number {
        align-self: center;
    }
}

/* Payment Page Styles */
.payment-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.payment-header {
    text-align: center;
    margin-bottom: 40px;
}

.payment-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 10px;
}

.payment-header p {
    font-size: 1.1rem;
    color: #6b7280;
}

.payment-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.payment-summary {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.payment-summary h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #111827;
}

.plan-summary-card {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 20px;
}

.plan-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.plan-icon {
    width: 48px;
    height: 48px;
    background: #8B1538;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.plan-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.plan-info p {
    color: #6b7280;
    font-size: 0.9rem;
}

.plan-price {
    margin-bottom: 16px;
}

.price-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: #8B1538;
}

.price-period {
    color: #6b7280;
    font-size: 0.9rem;
}

.plan-features {
    list-style: none;
}

.plan-features li {
    padding: 4px 0;
    color: #374151;
    font-size: 0.9rem;
}

.plan-features li:before {
    content: "✓";
    color: #10b981;
    margin-right: 8px;
}

.payment-methods {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.payment-methods h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #111827;
}

.payment-option {
    margin-bottom: 16px;
}

.payment-option input[type="radio"] {
    display: none;
}

.payment-label {
    display: flex;
    align-items: center;
    padding: 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.payment-option input[type="radio"]:checked+.payment-label {
    border-color: #8B1538;
    background: #fef2f2;
}

.payment-icon {
    width: 40px;
    height: 40px;
    background: #f3f4f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    color: #6b7280;
}

.payment-option input[type="radio"]:checked+.payment-label .payment-icon {
    background: #8B1538;
    color: white;
}

.payment-details h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.payment-details p {
    color: #6b7280;
    font-size: 0.9rem;
}

.payment-forms {
    grid-column: 1 / -1;
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.payment-form {
    display: none;
}

.payment-form.active {
    display: block;
}

.payment-form h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #111827;
}

.form-group {
    margin-bottom: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 6px;
    color: #374151;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 1rem;
}

.form-group input:focus {
    outline: none;
    border-color: #8B1538;
    box-shadow: 0 0 0 3px rgba(128, 0, 0, 0.1);
}

.form-group input[readonly] {
    background: #f9fafb;
    cursor: not-allowed;
}

.bank-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.bank-info,
.transfer-instructions {
    padding: 20px;
    background: #f9fafb;
    border-radius: 8px;
}

.bank-info h4,
.transfer-instructions h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #111827;
}

.bank-info p {
    margin-bottom: 8px;
    color: #374151;
}

.transfer-instructions ol {
    padding-left: 20px;
}

.transfer-instructions li {
    margin-bottom: 8px;
    color: #374151;
}

/* Mobile responsiveness for payment page */
@media (max-width: 768px) {
    .payment-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .payment-header h1 {
        font-size: 2rem;
    }

    .bank-details {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ================= ADMIN PANEL MOBILE STYLES ================= */

/* Admin Navigation Styles */
#sidebarNav::-webkit-scrollbar {
    display: none;
}

.nav-item:hover {
    background: #f3f4f6 !important;
    color: #800000 !important;
}

.nav-item.active {
    background: #800000 !important;
    color: white !important;
}

.nav-item.active:hover {
    background: #991b1b !important;
    color: white !important;
}

/* Admin Mobile Responsive Styles */
@media (max-width: 768px) {
    /* Collapse sidebar to icons only */
    aside#sidebar {
        width: 60px !important;
    }

    .sidebar-nav {
        padding: 0 8px !important;
    }

    .nav-item {
        padding: 12px 8px !important;
        justify-content: center !important;
        gap: 0 !important;
    }

    .nav-text {
        display: none !important;
    }

    /* Hide scroll buttons text */
    #scrollUp,
    #scrollDown {
        padding: 6px !important;
    }

    /* Sign out button - icon only */
    aside#sidebar>div:last-child {
        padding: 12px 8px !important;
    }

    aside#sidebar form button {
        justify-content: center !important;
        padding: 12px 8px !important;
    }

    aside#sidebar form button span {
        display: none !important;
    }

    /* Main content area adjustments */
    .admin-main,
    main#mainContent {
        margin-left: 60px !important;
        padding: 16px !important;
    }

    /* Admin header adjustments */
    .admin-header {
        padding: 0 16px !important;
    }

    /* Admin top header - compact on mobile */
    .admin-top-header {
        padding: 12px 16px !important;
    }

    /* Hide image logo on mobile, show text logo */
    .admin-logo-img {
        display: none !important;
    }

    .admin-logo-text {
        display: block !important;
    }

    /* Hide login/register buttons in admin on mobile */
    .admin-top-header .nav-right .btn {
        display: none !important;
    }

    /* Stats grid - single column on mobile */
    .admin-stats-grid {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

    /* Charts row - single column on mobile */
    main#mainContent>div[style*="display: grid"][style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    /* Admin dashboard title */
    main#mainContent h1 {
        font-size: 24px !important;
    }

    /* Admin dashboard subtitle */
    main#mainContent>div:first-child>p {
        font-size: 14px !important;
    }

    /* Chart section titles */
    main#mainContent h3 {
        font-size: 16px !important;
    }

    /* Stat cards padding */
    main#mainContent div[style*="background: white; padding: 24px"] {
        padding: 16px !important;
    }

    /* Stat card numbers */
    main#mainContent p[style*="font-size: 32px"] {
        font-size: 24px !important;
    }
}