/* Aurora Theme Styles - Gradient Pink-to-Blue with Glassmorphism */

:root {
    --aurora-bg: #0a0a0f;
    --aurora-bg-alt: #111118;
    --aurora-card: #16161f;
    --aurora-card-hover: #1e1e2a;
    --aurora-border: #2a2a3d;
    --aurora-text: #f1f0f5;
    --aurora-text-secondary: #a8a6b8;
    --aurora-primary: #8b5cf6;
    --aurora-primary-pink: #ec4899;
    --aurora-primary-blue: #6366f1;
    --aurora-gradient: linear-gradient(135deg, #ec4899, #8b5cf6, #6366f1);
    --aurora-gradient-hover: linear-gradient(135deg, #db2777, #7c3aed, #4f46e5);
    --aurora-success: #34d399;
    --aurora-danger: #f87171;
    --aurora-warning: #fbbf24;

    /* Glassmorphism */
    --aurora-glass-bg: rgba(22, 22, 31, 0.7);
    --aurora-glass-border: rgba(139, 92, 246, 0.15);
    --aurora-glass-blur: 12px;
}

/* CRITICAL: Footer always at bottom - must be loaded last */
html {
    margin: 0 !important;
    padding: 0 !important;
}

html body {
    display: flex !important;
    flex-direction: column !important;
    min-height: 100vh !important;
    margin: 0 !important;
    padding: 0 !important;
    background: var(--aurora-bg) !important;
    color: var(--aurora-text);
}

/* Header should not grow */
html body > nav,
html body > header {
    flex-shrink: 0 !important;
    flex-grow: 0 !important;
}

/* ============================================
   AURORA HEADER - Dark with gradient glow
   ============================================ */
nav.bg-gray-800 {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.15), rgba(139, 92, 246, 0.12), rgba(99, 102, 241, 0.15)), #0d0d18 !important;
    border-bottom: none !important;
    position: relative;
    box-shadow: 0 4px 30px rgba(236, 72, 153, 0.1), 0 2px 15px rgba(99, 102, 241, 0.08);
}

/* Gradient accent line under header */
nav.bg-gray-800::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, #ec4899, #8b5cf6, #6366f1);
}

/* Nav link hover glow */
nav a:hover {
    text-shadow: 0 0 10px rgba(236, 72, 153, 0.4);
}

html body > main {
    flex: 1 0 auto !important;
    background: var(--aurora-bg) !important;
    padding-bottom: 2rem;
    position: relative;
}

/* Subtle aurora glow at top of main content */
html body > main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 400px;
    background: radial-gradient(ellipse at 30% 0%, rgba(236, 72, 153, 0.08) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 0%, rgba(99, 102, 241, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

/* Footer always at bottom - CRITICAL */
html body > footer {
    flex-shrink: 0 !important;
    flex-grow: 0 !important;
    flex-basis: auto !important;
    margin-top: auto !important;
    width: 100% !important;
}

body > footer {
    flex-shrink: 0 !important;
    flex-grow: 0 !important;
}

/* ============================================
   AURORA GLOBAL ACCENTS
   ============================================ */
/* Dropdown menus - dark with gradient border accent */
nav .absolute,
nav #cartDropdown,
nav #accountDropdown {
    background: #12121c !important;
    border: 1px solid rgba(236, 72, 153, 0.2) !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(236, 72, 153, 0.06) !important;
}

/* Mobile menu */
nav #mobileMenu {
    background: #12121c !important;
}

/* Dropdown hover items */
nav .absolute a:hover,
nav #cartDropdown a:hover,
nav #accountDropdown a:hover,
nav .hover\:bg-gray-600:hover {
    background: rgba(236, 72, 153, 0.12) !important;
}

/* Links get pink color */
a.text-blue-400,
a.text-blue-500,
.text-primary-600,
.dark\:text-primary-500 {
    color: var(--aurora-primary-pink) !important;
}

/* ============================================
   BACKGROUND OVERRIDES - Gray to Aurora Dark
   ============================================ */
.bg-gray-900 {
    background-color: var(--aurora-bg) !important;
}

.bg-gray-800 {
    background-color: var(--aurora-card) !important;
}

.bg-gray-700 {
    background-color: var(--aurora-card-hover) !important;
}

.bg-gray-200 {
    background-color: var(--aurora-card) !important;
}

.bg-gray-100 {
    background-color: var(--aurora-card) !important;
}

.bg-gray-50 {
    background-color: var(--aurora-bg) !important;
}

.bg-gray-800\/50 {
    background-color: rgba(22, 22, 31, 0.5) !important;
}

.bg-gray-700\/50 {
    background-color: rgba(30, 30, 42, 0.5) !important;
}

.hover\:bg-gray-600:hover,
.hover\:bg-gray-700:hover {
    background-color: var(--aurora-card-hover) !important;
}

.hover\:bg-gray-50:hover,
.hover\:bg-gray-100:hover {
    background-color: var(--aurora-card) !important;
}

/* Border overrides - tinted with aurora colors */
.border-gray-700,
.border-gray-600 {
    border-color: rgba(99, 102, 241, 0.15) !important;
}

.border-gray-800 {
    border-color: rgba(99, 102, 241, 0.1) !important;
}

.border-gray-200,
.border-gray-300 {
    border-color: rgba(99, 102, 241, 0.12) !important;
}

.border-gray-100 {
    border-color: rgba(99, 102, 241, 0.08) !important;
}

/* Dividers using divide-y */
.divide-y > :not([hidden]) ~ :not([hidden]),
.divide-gray-200 > :not([hidden]) ~ :not([hidden]),
.divide-gray-100 > :not([hidden]) ~ :not([hidden]) {
    border-color: rgba(99, 102, 241, 0.12) !important;
}

/* Cards and sections get subtle aurora tint */
section .bg-gray-800,
div.bg-gray-800 {
    border: 1px solid rgba(99, 102, 241, 0.08);
}

/* ============================================
   ACCENT COLOR OVERRIDES - Blue to Pink/Gradient
   ============================================ */
.bg-blue-600,
.bg-blue-700 {
    background: var(--aurora-gradient) !important;
}

.bg-blue-500 {
    background: var(--aurora-gradient) !important;
}

.bg-blue-400 {
    background: linear-gradient(135deg, #ec4899, #6366f1) !important;
}

.hover\:bg-blue-700:hover,
.hover\:bg-blue-600:hover,
.hover\:bg-blue-800:hover {
    background: var(--aurora-gradient-hover) !important;
}

.dark\:bg-blue-600 {
    background: var(--aurora-gradient) !important;
}

.dark\:hover\:bg-blue-700:hover {
    background: var(--aurora-gradient-hover) !important;
}

.dark\:focus\:ring-blue-800:focus {
    --tw-ring-color: rgba(236, 72, 153, 0.5) !important;
}

.text-blue-400,
.text-blue-500 {
    color: var(--aurora-primary-pink) !important;
}

.text-blue-300 {
    color: #f9a8d4 !important;
}

.text-blue-600 {
    color: var(--aurora-primary-blue) !important;
}

.hover\:text-blue-300:hover {
    color: #f9a8d4 !important;
}

.hover\:text-blue-400:hover {
    color: var(--aurora-primary-pink) !important;
}

.border-blue-600,
.border-blue-500 {
    border-color: var(--aurora-primary-pink) !important;
}

.focus\:ring-blue-500:focus,
.focus\:ring-blue-300:focus {
    --tw-ring-color: rgba(236, 72, 153, 0.5) !important;
}

.focus\:border-blue-500:focus {
    border-color: var(--aurora-primary-pink) !important;
}

.text-blue-600,
.text-blue-700 {
    color: var(--aurora-primary-pink) !important;
}

.bg-blue-900\/50 {
    background-color: rgba(236, 72, 153, 0.15) !important;
}

.ring-blue-500 {
    --tw-ring-color: var(--aurora-primary-pink) !important;
}

/* Additional blue shade overrides */
.bg-blue-50,
.bg-blue-100 {
    background-color: rgba(236, 72, 153, 0.1) !important;
}

.bg-blue-900 {
    background-color: rgba(236, 72, 153, 0.2) !important;
}

.dark\:bg-blue-900 {
    background-color: rgba(236, 72, 153, 0.2) !important;
}

.hover\:bg-blue-500:hover {
    background: var(--aurora-gradient-hover) !important;
}

.text-blue-100,
.text-blue-200 {
    color: #fce7f3 !important;
}

.text-blue-800 {
    color: var(--aurora-primary-pink) !important;
}

.hover\:text-blue-800:hover {
    color: var(--aurora-primary-pink) !important;
}

.border-blue-200,
.border-blue-400 {
    border-color: rgba(236, 72, 153, 0.3) !important;
}

.border-blue-700,
.border-blue-800 {
    border-color: rgba(236, 72, 153, 0.4) !important;
}

/* Gradient overrides */
.from-blue-600,
.from-blue-500,
.from-blue-700 {
    --tw-gradient-from: #ec4899 !important;
}

.to-purple-600 {
    --tw-gradient-to: #6366f1 !important;
}

.to-blue-800 {
    --tw-gradient-to: #6366f1 !important;
}

.from-blue-500 {
    --tw-gradient-from: #ec4899 !important;
}

/* ============================================
   GLASSMORPHISM UTILITIES
   ============================================ */
.aurora-glass {
    background: var(--aurora-glass-bg) !important;
    backdrop-filter: blur(var(--aurora-glass-blur));
    -webkit-backdrop-filter: blur(var(--aurora-glass-blur));
    border: 1px solid var(--aurora-glass-border) !important;
}

/* ============================================
   GRADIENT TEXT UTILITY
   ============================================ */
.aurora-gradient-text {
    background: var(--aurora-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   GRADIENT BUTTON
   ============================================ */
.aurora-gradient-btn {
    background: var(--aurora-gradient) !important;
    color: white !important;
    border: none !important;
    transition: all 0.3s ease;
}

.aurora-gradient-btn:hover {
    background: var(--aurora-gradient-hover) !important;
    box-shadow: 0 0 20px rgba(236, 72, 153, 0.2), 0 0 40px rgba(99, 102, 241, 0.1);
}

/* ============================================
   GRADIENT BORDER (for cards)
   ============================================ */
.aurora-gradient-border {
    position: relative;
    background: var(--aurora-card);
    border-radius: 0.75rem;
}

.aurora-gradient-border::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: var(--aurora-gradient);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    padding: 1px;
    pointer-events: none;
    opacity: 0.3;
}

/* ============================================
   ANIMATED GRADIENT (for hero etc.)
   ============================================ */
@keyframes aurora-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.aurora-animated-gradient {
    background: linear-gradient(135deg, #ec4899, #8b5cf6, #6366f1, #ec4899);
    background-size: 300% 300%;
    animation: aurora-shift 8s ease infinite;
}

/* ============================================
   CARDS
   ============================================ */
.theme-card {
    background: var(--aurora-card);
    border: 1px solid var(--aurora-border);
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.15);
}

.theme-card:hover {
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 0 30px rgba(236, 72, 153, 0.05), 0 0 60px rgba(99, 102, 241, 0.05);
}

/* ============================================
   BUTTONS
   ============================================ */
.theme-button {
    background: var(--aurora-gradient);
    color: white;
    border: none;
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.theme-button:hover {
    background: var(--aurora-gradient-hover);
    box-shadow: 0 0 20px rgba(236, 72, 153, 0.2), 0 0 40px rgba(99, 102, 241, 0.1);
}

/* ============================================
   ACCOUNT PAGES
   ============================================ */
.account-page {
    padding: 2rem 0;
}

.account-card {
    background: var(--aurora-card);
    border: 1px solid var(--aurora-border);
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.account-card h1,
.account-card h2 {
    color: var(--aurora-text);
    margin-bottom: 1rem;
}

.account-card p {
    color: var(--aurora-text-secondary);
}

.account-card a {
    color: var(--aurora-primary-pink) !important;
}

.account-card a:hover {
    color: #f9a8d4 !important;
}

/* ============================================
   FORMS
   ============================================ */
.theme-input {
    background: var(--aurora-card);
    border: 1px solid var(--aurora-border);
    color: var(--aurora-text);
    border-radius: 0.5rem;
    padding: 0.5rem 0.75rem;
    width: 100%;
}

.theme-input:focus {
    outline: none;
    border-color: var(--aurora-primary-pink);
    box-shadow: 0 0 0 2px rgba(236, 72, 153, 0.3);
}

/* ============================================
   TABLES
   ============================================ */
.theme-table {
    width: 100%;
    border-collapse: collapse;
}

.theme-table th,
.theme-table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--aurora-border);
    color: var(--aurora-text);
}

.theme-table th {
    background: var(--aurora-card);
    font-weight: 600;
    color: var(--aurora-text);
}

.theme-table tr:hover {
    background: rgba(236, 72, 153, 0.05);
}

/* ============================================
   PROSE
   ============================================ */
.prose i {
    margin-right: 0.25rem;
}

.prose {
    color: var(--aurora-text-secondary);
}

.prose h1, .prose h2, .prose h3 {
    color: var(--aurora-text);
}

/* ============================================
   FOOTER - Dark with gradient glow
   ============================================ */
footer,
footer.bg-gray-800 {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.12), rgba(139, 92, 246, 0.10), rgba(236, 72, 153, 0.12)), #0d0d18 !important;
    border-top: none !important;
    border-color: transparent !important;
    color: var(--aurora-text-secondary) !important;
    position: relative;
    box-shadow: 0 -4px 30px rgba(99, 102, 241, 0.08), 0 -2px 15px rgba(236, 72, 153, 0.06);
}

/* Gradient accent line above footer */
footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, #6366f1, #8b5cf6, #ec4899);
}

footer a {
    color: var(--aurora-text-secondary) !important;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--aurora-primary-pink) !important;
    text-shadow: 0 0 10px rgba(236, 72, 153, 0.3);
}

/* ============================================
   TEXT COLOR FIXES
   ============================================ */
.text-gray-400,
.text-gray-300,
.text-gray-500 {
    color: var(--aurora-text-secondary) !important;
}

.text-gray-600,
.text-gray-700 {
    color: var(--aurora-text) !important;
}

.bg-gray-800 .text-white,
.bg-gray-900 .text-white,
.bg-gray-800 h1,
.bg-gray-900 h1,
.bg-gray-800 h2,
.bg-gray-900 h2 {
    color: var(--aurora-text) !important;
}

/* ============================================
   STOREFRONT FORM ELEMENTS
   ============================================ */
select,
.product-option-select,
#laufzeit-select {
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    background-color: rgba(42, 42, 61, 0.7) !important;
    border: 1px solid rgba(236, 72, 153, 0.2) !important;
    border-radius: 0.75rem !important;
    color: white !important;
    padding: 0.75rem 2.5rem 0.75rem 1rem !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23ec4899' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e") !important;
    background-position: right 0.75rem center !important;
    background-repeat: no-repeat !important;
    background-size: 1.25em 1.25em !important;
    cursor: pointer;
    transition: all 0.2s ease;
}

select:focus,
.product-option-select:focus,
#laufzeit-select:focus {
    outline: none !important;
    border-color: var(--aurora-primary-pink) !important;
    box-shadow: 0 0 0 2px rgba(236, 72, 153, 0.3) !important;
}

select:hover,
.product-option-select:hover,
#laufzeit-select:hover {
    border-color: rgba(236, 72, 153, 0.4) !important;
}

select option {
    background-color: #16161f !important;
    color: white !important;
    padding: 0.5rem !important;
}

/* Input fields */
input[type="text"].product-option-input,
input[type="number"].product-option-input,
textarea.product-option-input {
    -webkit-appearance: none !important;
    appearance: none !important;
    background-color: rgba(42, 42, 61, 0.7) !important;
    border: 1px solid rgba(236, 72, 153, 0.2) !important;
    border-radius: 0.75rem !important;
    color: white !important;
}

input[type="text"].product-option-input:focus,
input[type="number"].product-option-input:focus,
textarea.product-option-input:focus {
    outline: none !important;
    border-color: var(--aurora-primary-pink) !important;
    box-shadow: 0 0 0 2px rgba(236, 72, 153, 0.3) !important;
}

/* Checkbox styling */
input[type="checkbox"] {
    -webkit-appearance: none !important;
    appearance: none !important;
    background-color: #2a2a3d !important;
    border: 2px solid #3d3d56 !important;
    border-radius: 0.375rem !important;
    width: 1.25rem !important;
    height: 1.25rem !important;
    cursor: pointer;
    position: relative;
}

input[type="checkbox"]:checked {
    background: var(--aurora-gradient) !important;
    border-color: var(--aurora-primary-pink) !important;
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e") !important;
    background-size: 100% 100% !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

input[type="checkbox"]:focus {
    outline: none !important;
    box-shadow: 0 0 0 2px rgba(236, 72, 153, 0.3) !important;
}

/* Gradient text readability */
.bg-gradient-to-r {
    color: white !important;
}

.bg-gradient-to-r p,
.bg-gradient-to-r span {
    color: white !important;
}

.bg-gradient-to-r.text-white,
.bg-gradient-to-r .text-white,
.bg-gradient-to-r p,
.bg-gradient-to-r span,
.bg-gradient-to-r div {
    color: white !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* ============================================
   AURORA NAV STYLES (Floating Glassmorphism)
   ============================================ */
.aurora-nav {
    position: fixed;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 80rem;
    z-index: 50;
    background: rgba(22, 22, 31, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.aurora-nav-gradient-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    border-radius: 0 0 1rem 1rem;
    background: linear-gradient(to right, #ec4899, #8b5cf6, #6366f1);
    opacity: 0.6;
}

.aurora-nav-link {
    padding: 0.375rem 0.75rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.aurora-nav-link:hover {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.1), rgba(99, 102, 241, 0.1));
}

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--aurora-bg);
}

::-webkit-scrollbar-thumb {
    background: #3d3d56;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, #ec4899, #6366f1);
}

/* ============================================
   CMS BLOCK STYLES
   ============================================ */
:root {
    /* Block: Hero */
    --block-hero-bg: #0a0a0f;
    --block-hero-text: #f1f0f5;

    /* Block: Hero Register */
    --block-hero-register-bg: linear-gradient(135deg, #0a0a0f 0%, #1a0a20 50%, #0a1025 100%);
    --block-hero-register-title-color: #ec4899;
    --block-hero-register-button-color: linear-gradient(135deg, #ec4899, #6366f1);
    --block-hero-register-form-bg: rgba(22, 22, 31, 0.8);
    --block-hero-register-badge-color: #ec4899;

    /* Block: CTA */
    --block-cta-bg: linear-gradient(135deg, #ec4899, #6366f1);
    --block-cta-text: #ffffff;
    --block-cta-button-bg: #ffffff;
    --block-cta-button-text: #6366f1;

    /* Block: Domain Search */
    --block-domain-search-bg: linear-gradient(180deg, #0a0a0f 0%, #150a1f 100%);
    --block-domain-search-text: #ffffff;

    /* Block: Contact Form */
    --block-contact-bg: #111118;

    /* Block: Feature Boxes */
    --block-feature-box-bg: rgba(22, 22, 31, 0.6);
    --block-feature-box-border: rgba(99, 102, 241, 0.2);
    --block-feature-text: #f1f0f5;

    /* Block: Category Overview */
    --block-category-card-bg: rgba(22, 22, 31, 0.7);
    --block-category-text: #f1f0f5;

    /* Block: Payment Methods */
    --block-payment-title-color: #ec4899;
    --block-payment-card-bg: rgba(22, 22, 31, 0.7);

    /* Block: FAQ */
    --block-faq-bg: rgba(22, 22, 31, 0.6);
    --block-faq-header-bg: rgba(10, 10, 15, 0.8);
    --block-faq-open-bg: rgba(30, 30, 42, 0.8);
    --block-faq-open-border: #8b5cf6;

    /* Block: Divider */
    --block-divider-color: #2a2a3d;
}

/* Block: Hero */
.block-hero {
    background-color: var(--block-hero-bg);
    color: var(--block-hero-text);
}

/* Block: Hero Register */
.block-hero-register {
    background: var(--block-hero-register-bg);
}

.block-hero-register .block-title {
    color: var(--block-hero-register-title-color);
}

.block-hero-register .block-button-primary {
    background: var(--block-hero-register-button-color);
}

.block-hero-register .block-form-bg {
    background: var(--block-hero-register-form-bg);
}

.block-hero-register .block-badge-icon {
    color: var(--block-hero-register-badge-color);
    background: color-mix(in srgb, var(--block-hero-register-badge-color) 12%, transparent);
    border: 1px solid color-mix(in srgb, var(--block-hero-register-badge-color) 25%, transparent);
}

/* Block: CTA */
.block-cta {
    background: var(--block-cta-bg);
    color: var(--block-cta-text);
}

.block-cta .block-button {
    background-color: var(--block-cta-button-bg);
    color: var(--block-cta-button-text);
}

/* Block: Domain Search */
.block-domain-search {
    background: var(--block-domain-search-bg);
    color: var(--block-domain-search-text);
}

/* Block: Contact Form */
.block-contact-form {
    background-color: var(--block-contact-bg);
}

/* Block: Feature Boxes */
.block-feature-boxes .block-title {
    color: var(--block-feature-text);
}

.block-feature-boxes .block-subtitle {
    color: var(--block-feature-text);
}

.block-feature-boxes .block-box {
    background: var(--block-feature-box-bg);
    border: 1px solid var(--block-feature-box-border);
}

.block-feature-boxes .block-box-title {
    color: var(--block-feature-text);
}

.block-feature-boxes .block-box-text {
    color: var(--block-feature-text);
}

/* Block: Category Overview */
.block-category-overview .block-title {
    color: var(--block-category-text);
}

.block-category-overview .block-subtitle {
    color: var(--block-category-text);
}

.block-category-overview .block-card {
    background: var(--block-category-card-bg);
}

.block-category-overview .block-card-title {
    color: var(--block-category-text);
}

.block-category-overview .block-card-text {
    color: var(--block-category-text);
    opacity: 0.8;
}

/* Block: Payment Methods */
.block-payment-methods .block-title {
    color: var(--block-payment-title-color);
}

.block-payment-methods .block-card {
    background: var(--block-payment-card-bg);
}

/* Block: FAQ */
.block-faq .faq-item {
    background: var(--block-faq-bg);
}

.block-faq .faq-item button {
    background: var(--block-faq-header-bg);
}

.block-faq .faq-item.faq-open {
    border-color: var(--block-faq-open-border) !important;
    background: var(--block-faq-open-bg) !important;
}

/* Block: Divider */
.block-divider hr {
    background-color: var(--block-divider-color);
}

/* ============================================
   MODAL OVERRIDES
   ============================================ */
.bg-gray-800.rounded-lg.shadow-xl {
    background-color: var(--aurora-card) !important;
    border: 1px solid rgba(99, 102, 241, 0.15) !important;
}

select.bg-gray-700,
input.bg-gray-700,
textarea.bg-gray-700 {
    background-color: var(--aurora-card-hover) !important;
    border-color: rgba(99, 102, 241, 0.15) !important;
    color: var(--aurora-text) !important;
}

/* ============================================
   DASHBOARD CARD STYLING
   ============================================ */
.bg-gray-800.rounded-lg {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), 0 1px 3px rgba(0, 0, 0, 0.15) !important;
}

.bg-gray-700.rounded-lg {
    border: 1px solid rgba(99, 102, 241, 0.1);
}

/* Dashboard stat icon backgrounds */
.bg-blue-100 {
    background-color: rgba(236, 72, 153, 0.12) !important;
}

/* ============================================
   STATUS BADGE / OPACITY BACKGROUND OVERRIDES
   ============================================ */
.bg-red-900\/50 {
    background-color: rgba(239, 68, 68, 0.15) !important;
}

.bg-red-900\/30 {
    background-color: rgba(239, 68, 68, 0.1) !important;
}

.bg-red-900\/20 {
    background-color: rgba(239, 68, 68, 0.08) !important;
}

.bg-green-900\/50 {
    background-color: rgba(34, 197, 94, 0.15) !important;
}

.bg-green-900\/20 {
    background-color: rgba(34, 197, 94, 0.08) !important;
}

.bg-yellow-900\/50 {
    background-color: rgba(234, 179, 8, 0.15) !important;
}

.bg-yellow-900\/20 {
    background-color: rgba(234, 179, 8, 0.08) !important;
}

.bg-purple-900\/50 {
    background-color: rgba(168, 85, 247, 0.15) !important;
}

.bg-orange-900\/50 {
    background-color: rgba(249, 115, 22, 0.15) !important;
}

.bg-indigo-900\/50 {
    background-color: rgba(99, 102, 241, 0.15) !important;
}

/* ============================================
   ALERT / STATUS BOX OVERRIDES
   ============================================ */
.bg-yellow-800 {
    background-color: rgba(234, 179, 8, 0.15) !important;
}

.bg-yellow-800 h3,
.bg-yellow-800 p {
    color: #fbbf24 !important;
}

.border-yellow-600 {
    border-color: #f59e0b !important;
}

.bg-blue-800 {
    background-color: rgba(59, 130, 246, 0.15) !important;
}

.bg-blue-800 h3,
.bg-blue-800 p {
    color: #93c5fd !important;
}

.border-blue-600 {
    border-color: var(--aurora-primary-pink) !important;
}

/* Success alerts (green) */
.bg-green-500\/20 {
    background-color: rgba(34, 197, 94, 0.1) !important;
}

.border-green-500\/30 {
    border-color: rgba(34, 197, 94, 0.2) !important;
}

/* Error alerts */
.bg-red-50 {
    background-color: rgba(239, 68, 68, 0.1) !important;
}

.bg-red-600 {
    background-color: #dc2626 !important;
    color: #ffffff !important;
}

/* ============================================
   COLORED BACKGROUNDS KEEP WHITE TEXT
   ============================================ */
.bg-green-600, .bg-green-700,
.bg-red-600, .bg-red-700,
.bg-yellow-600, .bg-yellow-700,
.bg-purple-600, .bg-purple-700,
.bg-amber-600, .bg-amber-700,
.bg-indigo-600, .bg-indigo-700,
.bg-orange-600, .bg-orange-700 {
    color: #ffffff !important;
}

.hover\:bg-green-700:hover,
.hover\:bg-red-700:hover,
.hover\:bg-yellow-700:hover,
.hover\:bg-purple-700:hover {
    color: #ffffff !important;
}

.bg-green-600 span, .bg-red-600 span,
.bg-green-600 i, .bg-red-600 i,
.bg-yellow-600 span, .bg-purple-600 span {
    color: #ffffff !important;
}

/* ============================================
   ACCENT ICON COLORS - Keep vivid
   ============================================ */
.text-green-400 { color: #4ade80 !important; }
.text-green-300 { color: #86efac !important; }
.text-red-400 { color: #f87171 !important; }
.text-yellow-400 { color: #facc15 !important; }
.text-purple-400 { color: #c084fc !important; }
.text-orange-400 { color: #fb923c !important; }
.text-cyan-400 { color: #22d3ee !important; }
.text-amber-400 { color: #fbbf24 !important; }

/* ============================================
   NOTIFICATION TOASTS
   ============================================ */
.fixed.top-4.right-4 {
    color: #ffffff !important;
}

/* ============================================
   PLACEHOLDER TEXT
   ============================================ */
.placeholder-gray-400::placeholder {
    color: #6b7280 !important;
}

input::placeholder,
textarea::placeholder {
    color: #6b7280 !important;
}

/* ============================================
   SECONDARY / CANCEL BUTTONS
   ============================================ */
button.bg-gray-600,
a.bg-gray-600 {
    background-color: var(--aurora-card-hover) !important;
    color: var(--aurora-text) !important;
}

button.bg-gray-600:hover,
a.bg-gray-600:hover {
    background-color: var(--aurora-border) !important;
}

/* ============================================
   HOVER COLOR OVERRIDES (text)
   ============================================ */
.hover\:text-white:hover {
    color: var(--aurora-text) !important;
}

.hover\:text-gray-300:hover {
    color: var(--aurora-text) !important;
}

/* ============================================
   NAV-SPECIFIC REFINEMENTS
   ============================================ */
/* Navigation dropdown submenus */
nav ul.bg-gray-800 {
    background: #12121c !important;
    border: 1px solid rgba(236, 72, 153, 0.15) !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5) !important;
}

/* Account dropdown hover-bg overrides */
nav #accountDropdown .hover\:bg-gray-600:hover,
nav #accountDropdown button.hover\:bg-gray-600:hover,
nav #mobileMenu .hover\:bg-gray-600:hover {
    background: rgba(236, 72, 153, 0.12) !important;
}

/* Cart dropdown border-t divider */
nav #cartDropdown .border-t {
    border-color: rgba(99, 102, 241, 0.15) !important;
}

/* Mobile menu text colors */
nav #mobileMenu a {
    color: var(--aurora-text) !important;
}

nav #mobileMenu a:hover {
    color: var(--aurora-primary-pink) !important;
}

/* ============================================
   CONTACT FORM BLOCK OVERRIDES
   ============================================ */
.block-contact-form input,
.block-contact-form textarea {
    background-color: var(--aurora-card) !important;
    border-color: rgba(99, 102, 241, 0.15) !important;
    color: var(--aurora-text) !important;
}

.block-contact-form input::placeholder,
.block-contact-form textarea::placeholder {
    color: #6b7280 !important;
}

/* ============================================
   DISCOUNT CODE INPUT OVERRIDES
   ============================================ */
.bg-gradient-to-r.from-orange-600 {
    color: white !important;
}

.bg-gradient-to-r.from-orange-600 h3,
.bg-gradient-to-r.from-orange-600 p,
.bg-gradient-to-r.from-orange-600 span {
    color: white !important;
}

/* ============================================
   HERO REGISTER BLOCK FORM OVERRIDES
   ============================================ */
.block-hero-register input[type="text"],
.block-hero-register input[type="email"] {
    background-color: var(--aurora-card) !important;
    border-color: rgba(99, 102, 241, 0.15) !important;
    color: var(--aurora-text) !important;
}

.block-hero-register input[type="text"]::placeholder,
.block-hero-register input[type="email"]::placeholder {
    color: #6b7280 !important;
}

.block-hero-register .block-form-bg h2,
.block-hero-register .block-form-bg label {
    color: var(--aurora-text) !important;
}

.block-hero-register .block-form-bg button[type="submit"] {
    color: #ffffff !important;
}
