/**
 * ZOVANTE Core Styles (Zero-Dependency)
 * High-Fidelity Luxury E-Commerce Foundation
 */

:root {
    /* Design Tokens */
    --font-playfair: 'Playfair Display', serif;
    --font-inter: 'Inter', sans-serif;

    --soft-ivory: #FAF8F3;
    --luxury-gold: #C7A14A;
    --gold-dark: #B8923D;
    --deep-black: #0A0A0A;
    --charcoal: #1E1E1E;
    --grey-muted: #8A8A8A;
    --red-luxury: #B02A37;
    --green-luxury: #1F8A5B;

    --background: var(--soft-ivory);
    --foreground: var(--charcoal);
    --primary: var(--luxury-gold);
    --primary-foreground: var(--soft-ivory);
    --border: rgba(30, 30, 30, 0.1);
    --radius: 0.75rem;

    --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Global Foundation */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border-color: var(--border);
}

html {
    scroll-behavior: smooth;
    background-color: var(--background);
}

body {
    background-color: var(--background);
    color: var(--foreground);
    font-family: var(--font-inter);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Selection */
::selection {
    background-color: var(--luxury-gold);
    color: #FFFFFF;
}

/* Navigation & Links */
a,
a:visited {
    text-decoration: none;
    color: unset;
}

/* Typography Hierarchy */
h1,
h2,
h3,
h4,
.font-playfair {
    font-family: var(--font-playfair);
}

.font-inter {
    font-family: var(--font-inter);
}

.uppercase {
    text-transform: uppercase;
}

.italic {
    font-style: italic;
}

.text-center {
    text-align: center;
}

.hidden {
    display: none !important;
}

.truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Letter Spacing */
.tracking-widest {
    letter-spacing: 0.1em;
}

.tracking-luxury {
    letter-spacing: 0.2em;
}

.tracking-repository {
    letter-spacing: 0.3em;
}

.tracking-tighter {
    letter-spacing: -0.05em;
}

.text-nowrap {
    white-space: nowrap;
}

/* Line Height */
.leading-relaxed {
    line-height: 1.625;
}

/* Text Sizes */
.text-micro {
    font-size: 8px;
}

.text-nano {
    font-size: 9px;
}

.text-caps {
    font-size: 10px;
}

.text-nav {
    font-size: 11px;
}

.text-detail {
    font-size: 12px;
}

.text-body-fine {
    font-size: 13px;
}

.text-xs {
    font-size: 0.75rem;
}

.text-sm {
    font-size: 0.875rem;
}

.text-base {
    font-size: 1rem;
}

.text-lg {
    font-size: 1.125rem;
}

.text-xl {
    font-size: 1.25rem;
}

.text-2xl {
    font-size: 1.5rem;
}

.text-3xl {
    font-size: 1.875rem;
}

.text-4xl {
    font-size: 2.25rem;
}

.text-5xl {
    font-size: 3rem;
}

.text-6xl {
    font-size: 3.75rem;
}

.text-7xl {
    font-size: 4.5rem;
}

.text-8xl {
    font-size: 6rem;
}

.text-9xl {
    font-size: 8rem;
}

/* Editorial Typography */
.font-editorial {
    font-family: var(--font-playfair);
    letter-spacing: -0.03em;
    line-height: 0.95;
}

.text-lg {
    font-size: 1.125rem;
}

.text-xl {
    font-size: 1.25rem;
}

.text-2xl {
    font-size: 1.5rem;
}

.text-3xl {
    font-size: 1.875rem;
}

.text-4xl {
    font-size: 2.25rem;
}

.text-5xl {
    font-size: 3rem;
}

.text-7xl {
    font-size: 4.5rem;
}

/* Font Weights */
.font-normal {
    font-weight: 400;
}

.font-medium {
    font-weight: 500;
}

.font-semibold {
    font-weight: 600;
}

.font-bold {
    font-weight: 700;
}

.font-black {
    font-weight: 900;
}

/* Colors - Backgrounds */
.bg-white {
    background-color: #FFFFFF;
}

.bg-ivory {
    background-color: var(--soft-ivory);
}

.bg-gray-100 {
    background-color: #F3F4F6;
}

.bg-gold-10 {
    background-color: rgba(199, 161, 74, 0.1);
}

.bg-gold {
    background-color: var(--luxury-gold);
}

.bg-gold-dark {
    background-color: var(--gold-dark);
}

.bg-charcoal {
    background-color: var(--charcoal);
}

.bg-navy {
    background-color: #001F3F !important;
}

.bg-red {
    background-color: var(--red-luxury);
}

.bg-gold-10 {
    background-color: rgba(199, 161, 74, 0.1);
}

.bg-white-80 {
    background-color: rgba(255, 255, 255, 0.8);
}

.bg-white-5 {
    background-color: rgba(255, 255, 255, 0.05);
}

/* Colors - Text */
.text-white {
    color: #FFFFFF;
}

.text-charcoal {
    color: var(--charcoal);
}

.text-gold {
    color: var(--luxury-gold);
}

.text-muted {
    color: var(--grey-muted);
}

.text-red {
    color: var(--red-luxury);
}

.text-green {
    color: var(--green-luxury);
}

.text-primary {
    color: var(--primary);
}

.text-white-90 {
    color: rgba(255, 255, 255, 0.9);
}

.text-white-80 {
    color: rgba(255, 255, 255, 0.8);
}

.text-white-60 {
    color: rgba(255, 255, 255, 0.6);
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.5);
}

.text-white-40 {
    color: rgba(255, 255, 255, 0.4);
}

.text-white-30 {
    color: rgba(255, 255, 255, 0.3);
}

/* Placeholder Colors */
.placeholder-text-white-20::placeholder {
    color: rgba(255, 255, 255, 0.2);
    opacity: 1;
}

/* Aspect Ratio Utilities */
.aspect-square {
    aspect-ratio: 1 / 1;
}

.aspect-video {
    aspect-ratio: 16 / 9;
}

.aspect-portrait {
    aspect-ratio: 3 / 4;
}

/* Focus Utilities */
.outline-none {
    outline: 2px solid transparent;
    outline-offset: 2px;
}

.focus-ring-1:focus {
    box-shadow: 0 0 0 1px var(--border-gold);
}

.focus-ring-gold:focus {
    --border-gold: var(--luxury-gold);
}

/* SVG Colors */
.fill-gold {
    fill: var(--luxury-gold);
}

/* Borders */
.border {
    border: 1px solid var(--border);
}

.border-2 {
    border: 2px solid var(--border);
}

.border-b {
    border-bottom: 1px solid var(--border);
}

.border-t {
    border-top: 1px solid var(--border);
}

.border-none {
    border: none;
}

.border-white {
    border-color: #FFFFFF;
}

.border-gold {
    border-color: var(--luxury-gold);
}

.border-charcoal-10 {
    border-color: rgba(30, 30, 30, 0.1);
}

.border-charcoal-5 {
    border-color: rgba(30, 30, 30, 0.05);
}

.border-white-10 {
    border-color: rgba(255, 255, 255, 0.1);
}

.border-white-5 {
    border-color: rgba(255, 255, 255, 0.05);
}

/* Layout & Flex */
.flex {
    display: flex;
}

.block {
    display: block;
}

.inline-block {
    display: inline-block;
}

.inline {
    display: inline;
}

.hidden {
    display: none;
}

.flex-col {
    flex-direction: column;
}

.flex-shrink-0 {
    flex-shrink: 0;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.gap-1 {
    gap: 0.25rem;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-3 {
    gap: 0.75rem;
}

.gap-4 {
    gap: 1rem;
}

.gap-5 {
    gap: 1.25rem;
}

.gap-6 {
    gap: 1.5rem;
}

.gap-8 {
    gap: 2rem;
}

.gap-10 {
    gap: 2.5rem;
}

.gap-12 {
    gap: 3rem;
}

.gap-16 {
    gap: 4rem;
}

.grid {
    display: grid;
}

.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (min-width: 768px) {
    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .md\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .md\:flex-row {
        flex-direction: row;
    }

    .md-justify-between {
        justify-content: space-between;
    }

    .md-items-center {
        align-items: center;
    }

    .md-gap-8 {
        gap: 2rem;
    }

    .md-text-left {
        text-align: left;
    }

    .md-flex {
        display: flex;
    }

    .md-block {
        display: block;
    }

    .md-inline {
        display: inline;
    }

    .md-hidden {
        display: none;
    }

    .md-py-8 {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .md-h-6 {
        height: 1.5rem;
    }

    .md-w-6 {
        width: 1.5rem;
    }

    .md-h-5 {
        height: 1.25rem;
    }

    .md-w-5 {
        width: 1.25rem;
    }

    .md-h-\[500px\] {
        height: 500px;
    }

    /* I'll change this to md-h-500 */
    .md-h-500 {
        height: 500px;
    }

    .md-text-4xl {
        font-size: 2.25rem;
    }

    .md-text-5xl {
        font-size: 3rem;
    }

    .md-text-7xl {
        font-size: 4.5rem;
    }

    .md-text-xl {
        font-size: 1.25rem;
    }

    .md-pb-12 {
        padding-bottom: 3rem;
    }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .lg-grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .lg-grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .lg-flex {
        display: flex;
    }

    .lg-flex-row {
        flex-direction: row;
    }

    .lg-w-64 {
        width: 16rem;
    }
}

.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.col-span-2 {
    grid-column: span 2 / span 2;
}

.row-span-2 {
    grid-row: span 2 / span 2;
}

/* Sizing & Spacing */
.w-full {
    width: 100%;
}

.h-full {
    height: 100%;
}

.w-64 {
    width: 16rem;
}

/* Position Utilities */
.sticky {
    position: sticky;
}

.top-24 {
    top: 6rem;
}

/* Space Between Utilities */
.space-y-3>*+* {
    margin-top: 0.75rem;
}

.h-2\.5 {
    height: 0.625rem;
}

.h-3 {
    height: 0.75rem;
}

.h-4 {
    height: 1rem;
}

.h-5 {
    height: 1.25rem;
}

.w-auto {
    width: auto;
}

.w-2\.5 {
    width: 0.625rem;
}

.w-3 {
    width: 0.75rem;
}

.w-4 {
    width: 1rem;
}

.w-5 {
    width: 1.25rem;
}

.h-6 {
    height: 1.5rem;
}

.w-6 {
    width: 1.5rem;
}

.h-8 {
    height: 2rem;
}

.w-8 {
    width: 2rem;
}

.h-10 {
    height: 2.5rem;
}

.w-10 {
    width: 2.5rem;
}

.h-hero {
    height: 85vh;
}

.h-72 {
    height: 18rem;
}

.h-96 {
    height: 24rem;
}

.h-hero {
    height: 85vh;
}

.h-screen {
    height: 100vh;
}

/* Animation Utilities */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes transitionBloom {
    0% {
        opacity: 0;
        backdrop-filter: blur(0px);
    }

    30% {
        opacity: 1;
        backdrop-filter: blur(10px);
    }

    70% {
        opacity: 1;
        backdrop-filter: blur(15px);
    }

    100% {
        opacity: 0;
        backdrop-filter: blur(0px);
    }
}

#aura-sentient-orb[data-celebration="navigation-bloom"]::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle at center, rgba(199, 161, 74, 0.1) 0%, rgba(10, 10, 10, 0.8) 100%);
    z-index: 9999;
    pointer-events: none;
    animation: transitionBloom 3s ease-in-out forwards;
}

.fade-in-up {
    animation-name: fadeInUp;
    animation-duration: 1s;
    animation-fill-mode: both;
}

/* Parallax Utilities */
.parallax-wrapper {
    perspective: 1px;
    height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
}

.parallax-layer {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.parallax-base {
    transform: translateZ(0);
}

.parallax-back {
    transform: translateZ(-1px) scale(2);
    z-index: -1;
}

/* Custom Utilities for User Snippet Match */
.border-subtle {
    border-color: #1a1a1a;
}

.text-muted {
    color: #666666;
}

.min-h-screen {
    min-height: 100vh;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.max-w-7xl {
    max-width: 80rem;
}

.max-w-4xl {
    max-width: 56rem;
}

.max-w-2xl {
    max-width: 42rem;
}

.max-w-xs {
    max-width: 20rem;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
}

.py-0\.5 {
    padding-top: 0.125rem;
    padding-bottom: 0.125rem;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.py-24 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.pb-6 {
    padding-bottom: 1.5rem;
}

.pb-12 {
    padding-bottom: 3rem;
}

.pb-32 {
    padding-bottom: 8rem;
}

.pt-12 {
    padding-top: 3rem;
}

.pt-24 {
    padding-top: 6rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-12 {
    margin-top: 3rem;
}

.mt-auto {
    margin-top: auto;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-3 {
    margin-bottom: 0.75rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-10 {
    margin-bottom: 2.5rem;
}

.mb-16 {
    margin-bottom: 4rem;
}

.my-24 {
    margin-top: 6rem;
    margin-bottom: 6rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.ml-auto {
    margin-left: auto;
}

.mr-auto {
    margin-right: auto;
}

.ml-1 {
    margin-left: 0.25rem;
}

.ml-2 {
    margin-left: 0.5rem;
}

/* Positioning & Effects */
.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.fixed {
    position: fixed;
}

.top-0 {
    top: 0;
}

.bottom-0 {
    bottom: 0;
}

.left-0 {
    left: 0;
}

.right-0 {
    right: 0;
}

.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.z-0 {
    z-index: 0;
}

.z-10 {
    z-index: 10;
}

.z-50 {
    z-index: 50;
}

.z-55 {
    z-index: 55;
}

.z-60 {
    z-index: 60;
}

.z-overlay {
    z-index: 100;
}

.sticky {
    position: sticky;
}

.rounded-md {
    border-radius: 0.375rem;
}

.rounded-xl {
    border-radius: 0.75rem;
}

.rounded-2xl {
    border-radius: 1rem;
}

.rounded-full {
    border-radius: 9999px;
}

.shadow-md {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.shadow-nav-tactical {
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.05);
}

.opacity-0 {
    opacity: 0;
}

.opacity-30 {
    opacity: 0.3;
}

.opacity-80 {
    opacity: 0.8;
}

.translate-y-2 {
    transform: translateY(0.5rem);
}

.translate-x-full {
    transform: translateX(100%);
}

.translate-y-center {
    transform: translateY(-50%);
}

.backdrop-blur-luxury {
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}

.grayscale {
    filter: grayscale(100%);
}

/* Transition & Animation */
.transition-all {
    transition: var(--transition-base);
}

.transition-colors {
    transition: color 0.3s ease, background-color 0.3s ease;
}

.transition-transform {
    transition: transform 0.5s ease;
}

.duration-500 {
    transition-duration: 500ms;
}

.duration-700 {
    transition-duration: 700ms;
}

/* Interaction States */
.hover-shadow-2xl:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.hover-bg-gold:hover {
    background-color: var(--luxury-gold);
}

.hover-bg-ivory:hover {
    background-color: var(--soft-ivory);
}

.hover-text-gold:hover {
    color: var(--luxury-gold);
}

.hover-text-charcoal:hover {
    color: var(--charcoal);
}

.hover-text-black:hover {
    color: #000000;
}

.focus-ring-0:focus {
    box-shadow: none;
    outline: none;
}

.focus-ring-1:focus {
    box-shadow: 0 0 0 1px var(--luxury-gold);
}

.focus-ring-gold:focus {
    --tw-ring-color: var(--luxury-gold);
}

.hover-text-white:hover {
    color: #FFFFFF;
}

.hover-opacity-80:hover {
    opacity: 0.8;
}

.hover-grayscale-0:hover {
    filter: grayscale(0);
}

.hover-border-gold:hover {
    border-color: var(--luxury-gold);
}

.group:hover .group-hover-opacity-100 {
    opacity: 1;
}

.group:hover .group-hover-translate-y-0 {
    transform: translateY(0);
}

.group:hover .group-hover-scale-110 {
    transform: scale(1.1);
}

.group:hover .group-hover-text-gold {
    color: var(--luxury-gold);
}

.active-scale-95:active {
    transform: scale(0.95);
}

/* Custom Components */
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--gold-dark));
    color: var(--primary-foreground);
    padding: 1rem 2.5rem;
    border-radius: 0.5rem;
    font-family: var(--font-inter);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 10px;
    display: inline-flex;
    align-items: center;
    transition: var(--transition-base);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(199, 161, 74, 0.2);
}

.aspect-portrait {
    aspect-ratio: 3/4;
}

/* Gradients */
.bg-gradient-to-b {
    background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
}

.bg-gradient-to-t {
    background-image: linear-gradient(to top, var(--tw-gradient-stops));
}

.from-black-40,
.from-black\/40 {
    --tw-gradient-from: rgba(0, 0, 0, 0.4);
    --tw-gradient-stops: var(--tw-gradient-from), transparent;
}

.from-black-70,
.from-black\/70 {
    --tw-gradient-from: rgba(0, 0, 0, 0.7);
    --tw-gradient-stops: var(--tw-gradient-from), transparent;
}

.via-black-20,
.via-black\/20 {
    --tw-gradient-stops: var(--tw-gradient-from), rgba(0, 0, 0, 0.2), var(--tw-gradient-to);
}

.to-ivory {
    --tw-gradient-to: #FAF8F3;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--background);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-dark);
}

/* Animations */
@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fade-in-up 0.8s ease-out forwards;
}

.drop-shadow-2xl {
    filter: drop-shadow(0 25px 25px rgb(0 0 0 / 0.15));
}

.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Scroll Snap Utilities */
.snap-x {
    scroll-snap-type: x mandatory;
}

.snap-y {
    scroll-snap-type: y mandatory;
}

.snap-start {
    scroll-snap-align: start;
}

.snap-center {
    scroll-snap-align: center;
}

.snap-end {
    scroll-snap-align: end;
}

.snap-always {
    scroll-snap-stop: always;
}

/* Responsive Utilities */
@media (min-width: 768px) {
    .md-grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .md-grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }

    .md-grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    }

    .md-h-full {
        height: 100% !important;
    }

    .md-h-hero {
        height: 85vh !important;
    }

    .md-col-span-2 {
        grid-column: span 2 / span 2 !important;
    }

    .md-row-span-2 {
        grid-row: span 2 / span 2 !important;
    }

    .md-flex-row {
        flex-direction: row !important;
    }

    .md-justify-between {
        justify-content: space-between !important;
    }

    .md-items-center {
        align-items: center !important;
    }

    .md-gap-8 {
        gap: 2rem !important;
    }

    .md-gap-12 {
        gap: 3rem !important;
    }

    .md-text-left {
        text-align: left !important;
    }

    .md-flex {
        display: flex !important;
    }

    /* Responsive Typography */
    .md-text-xl {
        font-size: 1.25rem !important;
    }

    .md-text-5xl {
        font-size: 3rem !important;
    }

    .md-text-7xl {
        font-size: 4.5rem !important;
    }

    .md-block {
        display: block !important;
    }

    .md-hidden {
        display: none !important;
    }
}

@media (min-width: 1024px) {
    .lg-grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    }

    .lg-col-span-1 {
        grid-column: span 1 / span 1 !important;
    }

    .lg-col-span-3 {
        grid-column: span 3 / span 3 !important;
    }
}

/* Header Luxury Override */
.header-luxury {
    background-color: #001F3F !important;
}

.header-luxury .text-white {
    color: #FFFFFF !important;
}

.header-luxury .text-gold {
    color: #C7A14A !important;
}

.header-luxury a,
.header-luxury a:visited {
    color: #FFFFFF;
}

.header-luxury a.text-gold,
.header-luxury a.text-gold:visited,
.header-luxury .text-gold span,
.header-luxury .text-gold i {
    color: #C7A14A !important;
}

.header-luxury i[data-lucide] {
    stroke: currentColor;
}

/* Additional Responsive Utilities with Colon Syntax */
@media (min-width: 768px) {
    .md\:flex {
        display: flex !important;
    }

    .md\:block {
        display: block !important;
    }

    .md\:hidden {
        display: none !important;
    }

    .md\:justify-between {
        justify-content: space-between !important;
    }

    .md\:items-center {
        align-items: center !important;
    }

    .md\:text-7xl {
        font-size: 4.5rem !important;
    }

    .md\:text-6xl {
        font-size: 3.75rem !important;
    }

    .md\:text-5xl {
        font-size: 3rem !important;
    }

    .md\:text-4xl {
        font-size: 2.25rem !important;
    }

    .md\:text-xl {
        font-size: 1.25rem !important;
    }

    .md\:text-base {
        font-size: 1rem !important;
    }

    .md\:h-\[85vh\] {
        height: 85vh !important;
    }

    .md\:h-full {
        height: 100% !important;
    }

    .md\:w-auto {
        width: auto !important;
    }

    .md\:w-64 {
        width: 16rem !important;
    }

    .md\:w-32 {
        width: 8rem !important;
    }

    .md\:h-32 {
        height: 8rem !important;
    }

    .md\:py-20 {
        padding-top: 5rem !important;
        padding-bottom: 5rem !important;
    }

    .md\:py-16 {
        padding-top: 4rem !important;
        padding-bottom: 4rem !important;
    }

    .md\:px-8 {
        padding-left: 2rem !important;
        padding-right: 2rem !important;
    }

    .md\:py-4 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }

    .md\:mb-6 {
        margin-bottom: 1.5rem !important;
    }

    .md\:mb-10 {
        margin-bottom: 2.5rem !important;
    }

    .md\:mx-0 {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .md\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }

    .md\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    }

    .md\:flex-row {
        flex-direction: row !important;
    }

    .md\:gap-8 {
        gap: 2rem !important;
    }

    .md\:gap-12 {
        gap: 3rem !important;
    }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }

    .lg\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    }
}

/* 
 * DANGER ZONE - Monochrome Redesign 
 * High-contrast, stark aesthetic.
 */
.danger-zone {
    background: #000000;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0;
    /* Sharp edges for modern look */
    padding: 30px;
    margin-top: 40px;
    position: relative;
    overflow: hidden;
}

.danger-title {
    color: #ffffff;
    font-family: var(--font-inter);
    font-weight: 700;
    font-size: 1.25em;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.danger-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.danger-btn {
    padding: 12px 24px;
    font-size: 0.9em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
}

/* Deactivate: Solid White on Black */
.btn-deactivate {
    background: #ffffff;
    color: #000000;
    border: 1px solid #ffffff;
}

.btn-deactivate:hover {
    background: #000000;
    color: #ffffff;
    border-color: #ffffff;
}

/* Delete: Transparent with Red Hover */
.btn-delete {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-delete:hover {
    background: #ff0000;
    color: #ffffff;
    border-color: #ff0000;
}