/* premium.css - High-End Dark Cinematic Theme */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Outfit:wght@300;400;500;600&display=swap');

:root {
    --premium-bg: #050505;
    --premium-gold: #A79FE2; /* Originally gold, now soft purple */
    --premium-gold-dim: rgba(167, 159, 226, 0.4);
    --premium-text: #F0F0F0;
    --premium-text-muted: #A0A0A0;
}

body.premium-theme {
    background-color: var(--premium-bg) !important;
    background-image: none !important;
    color: var(--premium-text) !important;
    font-family: 'Outfit', sans-serif !important;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body.premium-theme::before, 
body.premium-theme::after {
    display: none !important;
}

/* Base Overrides */
.premium-theme .page-shell {
    display: none; /* Hide original if it exists */
}

/* Noise overlay for cinematic feel */
.premium-noise {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.8" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)" opacity="0.04"/%3E%3C/svg%3E');
    pointer-events: none;
    z-index: 9999;
}

/* Header & Nav */
.premium-header {
    position: fixed !important;
    top: 0; left: 0; right: 0;
    padding: 1.5rem 4rem !important;
    background: linear-gradient(to bottom, rgba(5,5,5,0.95), transparent) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000 !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: none !important;
}

.premium-brand {
    font-family: 'Cinzel', serif !important;
    font-size: 2.2rem !important;
    font-weight: 600 !important;
    color: var(--premium-text) !important;
    letter-spacing: 0.15em !important;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.premium-header .nav-link {
    font-family: 'Outfit', sans-serif !important;
    text-transform: uppercase !important;
    letter-spacing: 0.15em !important;
    font-size: 0.8rem !important;
    color: var(--premium-text) !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease !important;
}

.premium-header .nav-link:hover,
.premium-header .nav-link.is-active {
    color: var(--premium-gold) !important;
}

.premium-header .mobile-nav-toggle {
    border-color: rgba(255,255,255,0.1) !important;
    font-family: 'Outfit', sans-serif !important;
}

/* Hero Section */
.premium-hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.premium-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.premium-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    filter: brightness(0.65) contrast(1.1);
    transform: scale(1.05);
    animation: premiumSlowZoom 25s infinite alternate ease-in-out;
}

@keyframes premiumSlowZoom {
    0% { transform: scale(1.02); }
    100% { transform: scale(1.12); }
}

.premium-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(5,5,5,0.85) 100%),
                linear-gradient(to bottom, rgba(5,5,5,0.4) 0%, transparent 40%, rgba(5,5,5,0.95) 100%);
}

.premium-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 2rem;
    margin-top: 4rem;
}

.premium-subtitle {
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    font-size: 0.85rem;
    color: var(--premium-gold);
    display: block;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: premiumFadeUp 1s ease 0.5s forwards;
}

.premium-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(3.5rem, 8vw, 6.5rem);
    font-weight: 500;
    line-height: 1.1;
    margin: 0 0 2rem 0;
    text-shadow: 0 15px 40px rgba(0,0,0,0.8);
    opacity: 0;
    animation: premiumFadeUp 1s ease 0.8s forwards;
}

.premium-desc {
    font-size: 1.2rem;
    color: var(--premium-text-muted);
    margin: 0 auto 3.5rem auto;
    font-weight: 300;
    max-width: 600px;
    line-height: 1.6;
    opacity: 0;
    animation: premiumFadeUp 1s ease 1.1s forwards;
}

.premium-btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    border: 1px solid var(--premium-gold-dim);
    color: var(--premium-gold);
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.85rem;
    transition: all 0.4s ease;
    background: rgba(5,5,5,0.3);
    backdrop-filter: blur(5px);
    opacity: 0;
    animation: premiumFadeUp 1s ease 1.4s forwards;
}

.premium-btn:hover {
    background: var(--premium-gold);
    color: #000;
    border-color: var(--premium-gold);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

@keyframes premiumFadeUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

.premium-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: var(--premium-text-muted);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    opacity: 0;
    animation: premiumFade 2s ease 2s forwards;
}

@keyframes premiumFade {
    to { opacity: 1; }
}

.premium-scroll-line {
    width: 1px;
    height: 70px;
    background: linear-gradient(to bottom, var(--premium-gold), transparent);
    animation: premiumScrollLine 2.5s infinite cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: top;
}

@keyframes premiumScrollLine {
    0% { transform: scaleY(0); opacity: 0; }
    50% { transform: scaleY(1); opacity: 1; }
    100% { transform: scaleY(1) translateY(20px); opacity: 0; }
}

/* Categories Section */
.premium-categories {
    padding: 8rem 4rem;
    background: var(--premium-bg);
    position: relative;
    z-index: 10;
}

.premium-section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.premium-section-header h2 {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    font-weight: 500;
    color: var(--premium-text);
    margin: 0 0 1rem 0;
}

.premium-section-header p {
    color: var(--premium-gold);
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin: 0;
}

.premium-category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1600px;
    margin: 0 auto;
}


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

.premium-card {
    position: relative;
    height: 550px;
    overflow: hidden;
    text-decoration: none;
    display: block;
    background: #0A0A0A;
}

.premium-card-bg {
    position: absolute;
    inset: 0;
    transition: transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.premium-card:hover .premium-card-bg {
    transform: scale(1.08);
}

.premium-card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6) grayscale(0.2);
    transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.premium-card:hover .premium-card-bg img {
    filter: brightness(0.85) grayscale(0);
}

.premium-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--premium-text-muted);
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    background: #111;
}

.premium-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5,5,5,0.95) 0%, rgba(5,5,5,0.4) 40%, transparent 100%);
    transition: opacity 0.5s ease;
}

.premium-card:hover .premium-card-overlay {
    opacity: 0.8;
}

.premium-card-content {
    position: absolute;
    inset: 0;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    z-index: 2;
}

.premium-badge {
    align-self: flex-start;
    background: transparent;
    border: 1px solid var(--premium-gold-dim);
    color: var(--premium-gold);
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.premium-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--premium-text);
    margin: 0 0 1rem 0;
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.premium-card p {
    color: var(--premium-text-muted);
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 300;
    margin: 0 0 2.5rem 0;
    opacity: 0.7;
    transform: translateY(10px);
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

.premium-card:hover p {
    opacity: 1;
    transform: translateY(0);
}

.premium-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--premium-gold);
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.8rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    transition: border-color 0.5s ease;
}

.premium-card:hover .premium-card-footer {
    border-color: var(--premium-gold-dim);
}

.premium-card-footer svg {
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.premium-card:hover .premium-card-footer svg {
    transform: translateX(10px);
}

/* Editorial Strip */
.premium-editorial {
    padding: 4rem 0 8rem 0;
    background: var(--premium-bg);
    overflow: hidden;
}

.premium-marquee {
    display: flex;
    overflow: hidden;
    user-select: none;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.premium-marquee-track {
    display: flex;
    gap: 2rem;
    padding: 0 1rem;
    animation: premiumScroll 150s linear infinite;
}

.premium-marquee:hover .premium-marquee-track {
    animation-play-state: paused;
}

.premium-marquee-item {
    min-width: 450px;
    height: 550px;
    flex-shrink: 0;
    display: block;
    overflow: hidden;
}

.premium-marquee-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.8) brightness(0.7);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    transform: scale(1.02);
}

.premium-marquee-item:hover img {
    filter: grayscale(0) brightness(1);
    transform: scale(1.08);
}

@keyframes premiumScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 1rem)); }
}

/* Modals */
.premium-adult-card {
    background: #080808 !important;
    border: 1px solid var(--premium-gold-dim) !important;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8) !important;
}

.premium-adult-card h2 {
    font-family: 'Cinzel', serif !important;
    color: var(--premium-gold) !important;
    font-size: 2rem !important;
}

.premium-btn-solid {
    background: var(--premium-gold) !important;
    color: #000 !important;
    font-family: 'Outfit', sans-serif !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    font-weight: 600 !important;
    border: none !important;
}

/* Responsive Main */
@media (max-width: 1024px) {
    .premium-header {
        padding: 1.5rem 2rem !important;
    }
    .premium-categories {
        padding: 6rem 2rem;
    }
}

@media (max-width: 768px) {
    .premium-header {
        padding: 1rem 1.5rem !important;
    }
    .premium-brand {
        font-size: 1.5rem !important;
    }
    .premium-hero-content {
        padding: 1rem;
    }
    .premium-title {
        font-size: 3rem;
    }
    .premium-desc {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    .premium-section-header h2 {
        font-size: 2.5rem;
    }
    .premium-card {
        height: 450px;
    }
    .premium-marquee-item {
        min-width: 300px;
        height: 400px;
    }
}

/* Gallery Overrides */
.premium-gallery-main {
    position: relative;
    z-index: 2;
}

.premium-adult-gate {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(circle at center, rgba(5,5,5,0.9), var(--premium-bg));
}

.premium-adult-gate-content {
    max-width: 600px;
    padding: 3rem;
    border: 1px solid var(--premium-gold-dim);
    background: rgba(10,10,10,0.8);
    backdrop-filter: blur(10px);
}

.premium-btn-outline {
    display: inline-block;
    padding: 1.2rem 3rem;
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--premium-text);
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.85rem;
    transition: all 0.4s ease;
    background: transparent;
}

.premium-btn-outline:hover {
    border-color: var(--premium-text);
    background: rgba(255,255,255,0.05);
}

.premium-adult-gate-form {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.premium-gallery-hero {
    height: 60vh;
    min-height: 450px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.premium-gallery-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.premium-gallery-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4) contrast(1.1);
    animation: premiumSlowZoom 30s infinite alternate ease-in-out;
}

.premium-desc-small {
    font-size: 1rem;
    color: var(--premium-text-muted);
    margin: 0 auto;
    font-weight: 300;
    max-width: 800px;
    line-height: 1.6;
    opacity: 0;
    animation: premiumFadeUp 1s ease 1.3s forwards;
}

/* Category Navigation Chips */
.premium-gallery-nav, .premium-gallery-tags {
    background: var(--premium-bg);
    padding: 3rem 2rem 0 2rem;
    text-align: center;
    position: relative;
    z-index: 10;
}

.premium-gallery-tags {
    padding-top: 1.5rem;
    padding-bottom: 2rem;
}

.premium-chip-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.premium-chip {
    display: inline-block;
    padding: 0.8rem 2rem;
    border: 1px solid var(--premium-gold-dim);
    color: var(--premium-text-muted);
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    background: transparent;
}

.premium-chip-small {
    padding: 0.5rem 1.5rem;
    font-size: 0.75rem;
    border-color: rgba(255,255,255,0.1);
}

.premium-chip:hover, .premium-chip.is-active {
    background: rgba(212, 175, 55, 0.1);
    color: var(--premium-gold);
    border-color: var(--premium-gold);
}

/* Gallery Masonry Overrides */
.premium-theme .gallery.masonry {
    background: var(--premium-bg) !important;
    padding: 2rem 4rem;
    max-width: 1800px;
    margin: 0 auto;
}

.premium-theme .gallery .card {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    overflow: hidden;
    position: relative;
}

.premium-theme .gallery .card::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255,255,255,0.05);
    pointer-events: none;
}

.premium-theme .gallery .card img {
    border-radius: 0 !important;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.8s ease !important;
    filter: brightness(0.8) grayscale(0.2);
}

.premium-theme .gallery .card:hover img {
    transform: scale(1.05) !important;
    filter: brightness(1.1) grayscale(0);
}

.premium-theme .empty-panel {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    text-align: center;
    padding: 5rem 2rem;
    font-family: 'Outfit', sans-serif;
}

/* Lightbox Premium Enhancements */
.premium-theme .lightbox {
    background: rgba(3,3,5,0.98) !important;
    backdrop-filter: blur(15px);
}

.premium-theme .lightbox-close,
.premium-theme .lightbox-fullscreen,
.premium-theme .lightbox-nav {
    color: var(--premium-gold) !important;
    background: rgba(0,0,0,0.5) !important;
    border: 1px solid var(--premium-gold-dim) !important;
    transition: all 0.3s ease !important;
}

.premium-theme .lightbox-close:hover,
.premium-theme .lightbox-fullscreen:hover,
.premium-theme .lightbox-nav:hover {
    background: var(--premium-gold) !important;
    color: #000 !important;
}

.premium-theme .lightbox-counter {
    font-family: 'Outfit', sans-serif !important;
    letter-spacing: 0.1em;
    color: var(--premium-text-muted) !important;
}

/* CTA Block */
.premium-gallery-cta {
    padding: 8rem 2rem;
    background: #020202;
    text-align: center;
    position: relative;
    z-index: 10;
}

.premium-cta-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem;
    border: 1px solid var(--premium-gold-dim);
    background: rgba(10,10,10,0.5);
}

.premium-cta-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

/* Target Adult Modal directly */
.premium-theme .adult-modal-card {
    background: #080808 !important;
    border: 1px solid var(--premium-gold-dim) !important;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8) !important;
}

.premium-theme .adult-modal-card h2 {
    font-family: 'Cinzel', serif !important;
    color: var(--premium-gold) !important;
    font-size: 2rem !important;
    margin-bottom: 1rem;
}

.premium-theme .adult-modal-card p {
    color: var(--premium-text-muted) !important;
    font-family: 'Outfit', sans-serif !important;
}

.premium-theme .adult-modal-card .cta {
    background: var(--premium-gold) !important;
    color: #000 !important;
    font-family: 'Outfit', sans-serif !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    font-weight: 600 !important;
    border: none !important;
}

.premium-theme .adult-modal-card .btn-muted {
    border: 1px solid rgba(255,255,255,0.2) !important;
    color: var(--premium-text) !important;
    background: transparent !important;
    font-family: 'Outfit', sans-serif !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
}

/* Responsive Gallery */
@media (max-width: 768px) {
    .premium-gallery-hero {
        min-height: 400px;
    }
    .premium-theme .gallery.masonry {
        padding: 1rem;
    }
    .premium-cta-card {
        padding: 2rem 1rem;
    }
}

}

/* Pricing Page Overrides */
.premium-prices-main {
    position: relative;
    z-index: 2;
    background: var(--premium-bg);
}

.premium-pricing-section {
    padding: 6rem 2rem 10rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.premium-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    align-items: stretch;
}

.premium-price-card {
    display: block;
    text-decoration: none;
    color: var(--premium-text);
    background: rgba(10,10,10,0.5);
    border: 1px solid rgba(255,255,255,0.05);
    position: relative;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    overflow: hidden;
}

.premium-price-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.1), transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.premium-price-card:hover {
    transform: translateY(-10px);
    border-color: var(--premium-gold-dim);
    box-shadow: 0 20px 40px rgba(0,0,0,0.8);
    background: rgba(15,15,15,0.8);
}

.premium-price-card:hover::before {
    opacity: 1;
}

.premium-price-card-inner {
    padding: 4rem 3rem;
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.premium-price-card-featured {
    border-color: var(--premium-gold-dim);
    transform: scale(1.05);
    z-index: 5;
    background: rgba(15,15,15,0.8);
}

.premium-price-card-featured::before {
    opacity: 1;
    background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.15), transparent 70%);
}

.premium-price-card-featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.premium-featured-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--premium-gold);
    color: #000;
    padding: 0.5rem 2rem;
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.7rem;
    font-weight: 600;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

.premium-price-card h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    color: var(--premium-gold);
    margin: 0 0 1rem 0;
    text-align: center;
}

.premium-price-amount {
    text-align: center;
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.premium-price-amount small {
    display: block;
    font-size: 0.9rem;
    color: var(--premium-text-muted);
    margin-top: 0.5rem;
    letter-spacing: 0.1em;
}

.premium-price-suffix {
    display: block;
    font-size: 1rem;
    color: var(--premium-gold-dim);
    margin-top: 0.5rem;
}

.premium-price-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    flex-grow: 1;
}

.premium-price-list li {
    font-family: 'Outfit', sans-serif;
    color: var(--premium-text-muted);
    font-size: 1.05rem;
    padding: 0.8rem 0;
    display: flex;
    align-items: center;
}

.premium-price-list li::before {
    content: '✦';
    color: var(--premium-gold);
    margin-right: 1rem;
    font-size: 0.8rem;
}

.premium-price-extra {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.3);
    text-align: center;
    margin-bottom: 2rem;
    font-style: italic;
}

.premium-price-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--premium-gold);
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.premium-price-card:hover .premium-price-cta {
    transform: translateX(10px);
}

}

/* Contact Page Overrides */
.premium-contact-main {
    position: relative;
    z-index: 2;
    background: var(--premium-bg);
}

.premium-alert {
    position: fixed;
    top: 6rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2000;
    padding: 1rem 3rem;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 1px solid;
    background: rgba(10,10,10,0.9);
    backdrop-filter: blur(10px);
    animation: premiumFadeDown 0.5s ease forwards;
}

@keyframes premiumFadeDown {
    0% { opacity: 0; transform: translate(-50%, -20px); }
    100% { opacity: 1; transform: translate(-50%, 0); }
}

.premium-alert-success {
    border-color: var(--premium-gold);
    color: var(--premium-gold);
}

.premium-alert-error {
    border-color: #ff4a4a;
    color: #ff4a4a;
}

.premium-contact-section {
    padding: 4rem 2rem 8rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.premium-contact-intro {
    text-align: center;
    margin-bottom: 5rem;
}

.premium-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.premium-contact-info-col {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.premium-contact-card {
    background: rgba(10,10,10,0.5);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 3rem;
}

.premium-contact-card h2 {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    color: var(--premium-gold);
    margin: 0 0 1.5rem 0;
}

.premium-contact-detail {
    margin-bottom: 1.5rem;
}

.premium-contact-detail:last-child {
    margin-bottom: 0;
}

.premium-contact-label {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--premium-text-muted);
    margin-bottom: 0.3rem;
}

.premium-contact-value {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    color: var(--premium-text);
}

.premium-contact-text {
    font-family: 'Outfit', sans-serif;
    color: var(--premium-text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.premium-contact-cta-card {
    border-color: var(--premium-gold-dim);
    background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.05), transparent 70%);
}

.premium-contact-note {
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.3);
    text-align: center;
}

.premium-form-card {
    background: rgba(10,10,10,0.8);
    border: 1px solid var(--premium-gold-dim);
    position: relative;
    overflow: hidden;
}

.premium-form-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.03), transparent 70%);
    pointer-events: none;
}

.premium-prefill-badge {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--premium-gold-dim);
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    font-family: 'Outfit', sans-serif;
}

.premium-prefill-badge span {
    display: block;
    color: var(--premium-gold);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.premium-prefill-badge small {
    display: block;
    color: var(--premium-text-muted);
    font-size: 0.85rem;
}

.premium-form-hint {
    background: rgba(255,255,255,0.02);
    border-left: 2px solid var(--premium-gold);
    padding: 1.5rem;
    margin-bottom: 2.5rem;
}

.premium-input-group {
    margin-bottom: 2rem;
}

.premium-input-group label {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--premium-text-muted);
    margin-bottom: 0.8rem;
}

.premium-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    color: var(--premium-text);
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    border-radius: 0;
}

.premium-input:focus {
    outline: none;
    border-color: var(--premium-gold);
    background: rgba(255,255,255,0.02);
}

.premium-textarea {
    resize: vertical;
    min-height: 120px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 1rem;
}

.premium-textarea:focus {
    border-color: var(--premium-gold);
}

.premium-form-success {
    text-align: center;
    padding: 4rem 2rem;
}

.premium-form-success h3 {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: var(--premium-gold);
    margin-bottom: 1rem;
}

@media (max-width: 1024px) {
}

/* Admin Login Overrides */
body.premium-theme .page-shell.admin-page {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 0;
    padding-right: 0;
}

/* Admin Dashboard Layout */
.premium-admin-dashboard {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
    min-height: calc(100vh - 120px);
    max-width: 100%;
    margin: 0;
    padding: 120px 2rem 2rem 2rem;
}
.premium-admin-sidebar {
    background: var(--admin-bg-surface, rgba(15, 15, 15, 0.95));
    border: 1px solid var(--admin-border, rgba(255, 255, 255, 0.05));
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 2rem;
    height: fit-content;
    max-height: calc(100vh - 4rem);
    overflow-y: auto;
}
.admin-sidebar-header {
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 1.5rem;
}
.premium-sidebar-tab {
    display: block;
    width: 100%;
    text-align: left;
    padding: 0.8rem 1rem;
    background: transparent;
    border: none;
    color: var(--premium-text-muted);
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}
.premium-sidebar-tab:hover {
    background: rgba(255,255,255,0.05);
    color: var(--premium-text);
}
.premium-sidebar-tab.is-active,
.premium-sidebar-tab[aria-selected="true"] {
    background: rgba(212, 175, 55, 0.1);
    color: var(--premium-gold);
}
.premium-sidebar-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.3);
    margin-bottom: 0.5rem;
    padding-left: 0.5rem;
}
.premium-sidebar-subtab {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.6rem 0.5rem 0.6rem 1rem;
    background: transparent;
    border: none;
    color: var(--premium-text-muted);
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.2s ease;
    text-decoration: none;
    border-left: 2px solid transparent;
}
.premium-sidebar-subtab:hover {
    background: rgba(255,255,255,0.05);
    color: var(--premium-text);
}
.premium-sidebar-subtab.is-active,
.premium-sidebar-subtab[aria-selected="true"] {
    border-left-color: var(--premium-gold);
    color: var(--premium-gold);
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.05) 0%, transparent 100%);
}
.premium-admin-content-area {
    background: var(--admin-bg-surface, rgba(15, 15, 15, 0.95));
    border: 1px solid var(--admin-border, rgba(255, 255, 255, 0.05));
    border-radius: 16px;
    padding: 2rem;
    min-height: 80vh;
}
.premium-admin-panel-header {
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 1.5rem;
}

/* Base override for admin typography to match premium theme */
body.premium-theme .admin-page h2, 
body.premium-theme .admin-page h3, 
body.premium-theme .admin-page h4 {
    font-family: 'Cinzel', serif;
    color: var(--premium-gold);
    margin-bottom: 1rem;
}
body.premium-theme .admin-page {
    color: var(--premium-text);
}
body.premium-theme .admin-page p.lead {
    color: var(--premium-text-muted);
}
body.premium-theme .admin-view-block {
    background: transparent;
}
body.premium-theme .admin-maintenance-panel {
    background: transparent;
    border: none;
}
body.premium-theme .admin-maintenance-card {
    background: rgba(255,255,255,0.02);
    border-color: rgba(255,255,255,0.05);
    border-radius: 12px;
}
body.premium-theme .admin-file-meta {
    color: rgba(255,255,255,0.4);
}
body.premium-theme .admin-latest-image-row {
    background: rgba(255,255,255,0.02);
    border-color: rgba(255,255,255,0.05);
}

@media (max-width: 1024px) {
    .premium-admin-dashboard {
        grid-template-columns: 1fr;
        padding: 1rem;
    }
    .premium-admin-sidebar {
        position: relative;
        top: 0;
        max-height: none;
    }
}

/* ======================================================
   Mobile hamburger nav for premium-theme pages
   ====================================================== */
@media (max-width: 768px) {
    .premium-header {
        padding: 0.9rem 1.2rem !important;
        flex-wrap: wrap;
    }

    .premium-header .premium-brand {
        font-size: 1.35rem !important;
    }

    /* Show hamburger button */
    .premium-header .mobile-nav-toggle {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(255,255,255,0.15) !important;
        background: rgba(255,255,255,0.04) !important;
        color: var(--premium-text) !important;
        border-radius: 8px;
        padding: 0.45rem;
        cursor: pointer;
    }

    .premium-header .mobile-nav-toggle svg {
        width: 22px;
        height: 22px;
        display: block;
    }

    /* Hide the full nav panel by default */
    .premium-header .main-nav-panel {
        display: none !important;
        width: 100vw;
        margin-left: -1.2rem;
        margin-right: -1.2rem;
        background: rgba(12, 14, 22, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(255,255,255,0.08);
        padding: 1rem 1.2rem 1.4rem;
        flex-direction: column;
        gap: 0.3rem;
    }

    .premium-header .main-nav-panel.is-open {
        display: flex !important;
    }

    /* Stack nav links vertically */
    .premium-header .main-nav {
        width: 100%;
        order: 99;
    }

    .premium-header .main-nav-group {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.15rem !important;
        width: 100%;
    }

    .premium-header .main-nav-group-primary {
        display: flex !important;
        flex-direction: column !important;
    }

    .premium-header .nav-link {
        display: block !important;
        padding: 0.7rem 0.8rem !important;
        font-size: 0.85rem !important;
        border-radius: 8px;
        width: 100%;
        text-align: left !important;
    }

    .premium-header .nav-link:hover,
    .premium-header .nav-link:focus-visible {
        background: rgba(255,255,255,0.04) !important;
    }

    /* Hide desktop dropdown, show mobile categories section */
    .premium-header .main-nav-dropdown {
        display: none !important;
    }

    .premium-header .main-nav-group-mobile-categories-wrap {
        display: flex !important;
        flex-direction: column;
        gap: 0.3rem;
        margin-top: 0.4rem;
        padding: 0.7rem 0.8rem;
        border: 1px solid rgba(255,255,255,0.08);
        border-radius: 10px;
        background: rgba(255,255,255,0.02);
    }

    .premium-header .main-nav-group-mobile-categories-wrap .main-nav-group-label {
        display: block !important;
        margin: 0 0 0.2rem 0;
        font-family: 'Cinzel', serif;
        font-size: 0.75rem;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: var(--premium-gold);
        font-weight: 600;
    }

    .premium-header .main-nav-group-mobile-categories {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.1rem !important;
    }

    .premium-header .main-nav-group-mobile-categories .nav-link {
        padding: 0.55rem 0.6rem !important;
        font-size: 0.8rem !important;
        text-align: left !important;
        border-radius: 6px;
    }
}
