/* Dune Software Premium CSS Design System */

:root {
    /* Color Palette */
    --gold: #D9A441;
    --gold-light: #E8C88A;
    --orange: #C96A1A;
    --black: #0B0B0B;
    --black-light: #161616;
    --black-card: rgba(18, 18, 18, 0.75);
    --white: #FFFFFF;
    --white-dim: rgba(255, 255, 255, 0.7);
    --white-mute: rgba(255, 255, 255, 0.4);
    
    /* Grains & Glowing Gradients */
    --grad-gold: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    --grad-desert: linear-gradient(135deg, var(--orange) 0%, var(--gold) 50%, var(--gold-light) 100%);
    --grad-dark: linear-gradient(180deg, #101010 0%, #060606 100%);
    --grad-glow: radial-gradient(circle, rgba(217, 164, 65, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    --grad-orange-glow: radial-gradient(circle, rgba(201, 106, 26, 0.2) 0%, rgba(0, 0, 0, 0) 70%);

    /* Typography */
    --font-primary: 'Outfit', sans-serif;
    --font-heading: 'Space Grotesk', sans-serif;

    /* Shadows & Borders */
    --border-glass: rgba(217, 164, 65, 0.12);
    --border-glass-focus: rgba(217, 164, 65, 0.35);
    --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    --shadow-glow: 0 0 25px rgba(217, 164, 65, 0.25);
    
    /* UI Parameters */
    --radius-lg: 16px;
    --radius-md: 10px;
    --radius-sm: 6px;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease-in-out;
}

/* ================= RESET & GENERAL ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--black);
    color: var(--white);
    font-family: var(--font-primary);
}

body {
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

body.modal-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button, input, textarea, select {
    font-family: inherit;
    background: none;
    border: none;
    outline: none;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--black);
}
::-webkit-scrollbar-thumb {
    background: #252525;
    border-radius: 4px;
    border: 2px solid var(--black);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

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

.grid {
    display: grid;
    gap: 32px;
}

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

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

.hidden {
    display: none !important;
}

.spacer {
    margin-top: 30px;
}

.spacer-top {
    margin-top: 50px;
}

.gold-text {
    color: var(--gold);
}

.gradient-text {
    background: var(--grad-desert);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ================= BACKGROUND EFFECTS ================= */
#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    pointer-events: none;
    background: var(--black);
}

#mouse-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 600px;
    height: 600px;
    transform: translate(-50%, -50%);
    background: var(--grad-glow);
    z-index: -1;
    pointer-events: none;
    transition: width 0.3s ease, height 0.3s ease;
}

/* ================= PRELOADER ================= */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--black);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s;
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.logo-animation {
    margin-bottom: 30px;
    position: relative;
}

.dune-logo-svg {
    filter: drop-shadow(0 0 20px rgba(217, 164, 65, 0.3));
}

.dune-curve-back {
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    animation: drawCurve 2s cubic-bezier(0.4, 0, 0.2, 1) forwards infinite alternate;
}

.dune-curve-front {
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    animation: drawCurve 2s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards infinite alternate;
}

.logo-text-glow {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: 0.5rem;
    margin-top: 15px;
    background: var(--grad-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 10px rgba(217, 164, 65, 0.5));
    animation: pulseGlow 2.5s infinite;
}

.loader-track {
    width: 240px;
    height: 3px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.loader-bar {
    width: 0%;
    height: 100%;
    background: var(--grad-desert);
    box-shadow: 0 0 8px var(--orange);
    animation: loadBar 3s cubic-bezier(0.075, 0.82, 0.165, 1) forwards;
}

.loader-status {
    font-size: 0.85rem;
    color: var(--white-mute);
    letter-spacing: 0.1rem;
    margin-top: 12px;
    text-transform: uppercase;
}

@keyframes drawCurve {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes loadBar {
    to {
        width: 100%;
    }
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.8;
        transform: scale(0.98);
    }
    50% {
        opacity: 1;
        transform: scale(1.02);
    }
}

/* ================= STICKY HEADER ================= */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(11, 11, 11, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-glass);
    transition: var(--transition-smooth);
}

.main-header.scrolled {
    background: rgba(11, 11, 11, 0.85);
    padding: 12px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    transition: var(--transition-smooth);
}

.main-header.scrolled .header-container {
    height: 60px;
}

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

.mini-logo {
    filter: drop-shadow(0 0 8px rgba(217, 164, 65, 0.4));
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.3rem;
    letter-spacing: 0.1rem;
}

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

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--white-dim);
    letter-spacing: 0.05rem;
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--grad-gold);
    transition: var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
    color: var(--white);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* User Profile Trigger in Header */
.user-profile-menu {
    position: relative;
}

.profile-trigger {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 6px 12px;
    border-radius: 30px;
    border: 1px solid var(--border-glass);
    background: rgba(255, 255, 255, 0.02);
    transition: var(--transition-fast);
}

.profile-trigger:hover {
    border-color: var(--gold);
    background: rgba(217, 164, 65, 0.05);
}

.username-display {
    font-size: 0.9rem;
    font-weight: 600;
}

.avatar-ring {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    padding: 2px;
    background: var(--grad-desert);
}

.avatar-fallback {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--gold-light);
}

.profile-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: 200px;
    background: var(--black-light);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 8px;
    box-shadow: var(--shadow-premium);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-smooth);
}

.profile-dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    color: var(--white-dim);
    transition: var(--transition-fast);
}

.dropdown-item:hover {
    background: rgba(217, 164, 65, 0.08);
    color: var(--gold-light);
}

.dropdown-divider {
    height: 1px;
    background: var(--border-glass);
    margin: 6px 0;
}

.dropdown-item.logout-link:hover {
    background: rgba(201, 106, 26, 0.1);
    color: #ff6b6b;
}

/* Mobile Menu Toggle */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
}

.mobile-menu-btn .bar {
    width: 100%;
    height: 2px;
    background-color: var(--white);
    border-radius: 2px;
    transition: var(--transition-fast);
}

/* ================= GLASSMOPHIC CARDS & BUTTONS ================= */
.glass-card {
    background: var(--black-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-premium);
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(217, 164, 65, 0.03) 0%, rgba(201, 106, 26, 0) 100%);
    pointer-events: none;
}

/* Button styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    letter-spacing: 0.05rem;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.85rem;
    border-radius: var(--radius-sm);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1rem;
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-primary {
    background: var(--grad-desert);
    color: var(--black);
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(201, 106, 26, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(217, 164, 65, 0.45);
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
}

.btn-outline {
    border: 1px solid var(--border-glass-focus);
    color: var(--white);
    background: rgba(255, 255, 255, 0.01);
}

.btn-outline:hover {
    background: rgba(217, 164, 65, 0.08);
    border-color: var(--gold);
    color: var(--gold-light);
    transform: translateY(-2px);
}

.btn-discord {
    background: #5865F2;
    color: var(--white);
}

.btn-discord:hover {
    background: #4752c4;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.3);
}

.btn-glow::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0) 60%);
    transform: translate(-30%, -30%);
    pointer-events: none;
    transition: var(--transition-smooth);
    opacity: 0;
}

.btn-glow:hover::after {
    opacity: 1;
    transform: translate(-10%, -10%);
}

/* ================= HERO SECTION ================= */
.hero-section {
    position: relative;
    padding-top: 180px;
    padding-bottom: 120px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: -1;
    filter: saturate(0.6);
}

.hero-bg-overlay::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(0deg, var(--black) 0%, rgba(11, 11, 11, 0) 100%);
}

.hero-container-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 30px;
    border: 1px solid var(--border-glass-focus);
    background: rgba(217, 164, 65, 0.05);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold-light);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
}

.gold-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--gold);
    box-shadow: 0 0 8px var(--gold);
    display: inline-block;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.01rem;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--white-dim);
    margin-bottom: 40px;
    max-width: 580px;
}

.hero-actions-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

/* Floating Dune Card Visual in Hero */
.hero-visual-content {
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.luxury-dune-card {
    width: 100%;
    max-width: 380px;
    height: 480px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(22, 22, 22, 0.85) 0%, rgba(10, 10, 10, 0.95) 100%);
    border: 1px solid var(--border-glass);
    box-shadow: var(--shadow-premium), 0 30px 60px rgba(0, 0, 0, 0.6);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    transform: rotateY(-8deg) rotateX(4deg);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.luxury-dune-card:hover {
    transform: rotateY(0deg) rotateX(0deg) scale(1.02);
    border-color: var(--gold);
}

.card-inner-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 250px;
    height: 250px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(217, 164, 65, 0.08) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
}

.floating-hero-img {
    width: 200px;
    height: auto;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.6)) drop-shadow(0 0 15px rgba(217, 164, 65, 0.15));
    animation: floatAnim 6s ease-in-out infinite;
}

.card-glass-spec {
    width: 100%;
    margin-top: 30px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-md);
    padding: 16px;
    backdrop-filter: blur(8px);
}

.stat-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--white-dim);
    margin-bottom: 6px;
}

.stat-row.spacer {
    margin-top: 12px;
}

.stat-val {
    font-weight: 700;
    color: var(--gold);
}

.stat-progress {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
    overflow: hidden;
}

.stat-progress-bar {
    height: 100%;
    background: var(--grad-gold);
}

.stat-progress-bar.orange {
    background: var(--orange);
}

.hero-wave-transition {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 5;
}

.dune-wave-svg {
    width: 100%;
    height: 60px;
}

@keyframes floatAnim {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-12px) rotate(2deg);
    }
}

/* ================= SECTION HEADINGS ================= */
.section-title-wrapper {
    margin-bottom: 60px;
}

.section-subtitle {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.15rem;
    color: var(--orange);
    text-transform: uppercase;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    margin-top: 8px;
    letter-spacing: -0.01rem;
}

.section-desc {
    max-width: 600px;
    margin: 16px auto 0;
    color: var(--white-dim);
    line-height: 1.6;
}

.title-bar {
    width: 60px;
    height: 3px;
    background: var(--grad-desert);
    margin: 20px auto 0;
    border-radius: 2px;
}

/* ================= BENEFITS / WHY CHOOSE US ================= */
.benefit-grid {
    position: relative;
}

.benefit-card {
    background: rgba(22, 22, 22, 0.4);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    transition: var(--transition-smooth);
    text-align: left;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.benefit-card:hover {
    border-color: var(--gold-light);
    transform: translateY(-8px);
    background: rgba(22, 22, 22, 0.7);
    box-shadow: var(--shadow-premium), 0 15px 30px rgba(0, 0, 0, 0.4);
}

.benefit-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    background: rgba(217, 164, 65, 0.05);
    border: 1px solid var(--border-glass-focus);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition-smooth);
}

.benefit-card:hover .benefit-icon-wrapper {
    background: var(--grad-desert);
    transform: scale(1.1) rotate(5deg);
}

.benefit-card:hover .benefit-icon-wrapper svg {
    stroke: var(--black);
}

.benefit-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.01rem;
}

.benefit-card p {
    color: var(--white-dim);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ================= PRODUCTS SECTION ================= */
.products-section {
    position: relative;
}

.product-card {
    background: rgba(18, 18, 18, 0.85);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    transition: var(--transition-smooth);
}

.product-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: var(--shadow-premium), 0 20px 40px rgba(0, 0, 0, 0.4);
}

.product-glow-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(217, 164, 65, 0.05) 0%, rgba(0,0,0,0) 60%);
    pointer-events: none;
}

.product-image-container {
    height: 260px;
    background: #0f0f0f;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-bottom: 1px solid var(--border-glass);
    overflow: hidden;
}

.image-placeholder-container {
    background: #060606;
}

.empty-image-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    justify-content: center;
    border: 2px dashed rgba(217, 164, 65, 0.15);
    border-radius: var(--radius-md);
    background: rgba(11, 11, 11, 0.5);
    transition: var(--transition-smooth);
    padding: 10px;
}

.product-card:hover .empty-image-placeholder {
    border-color: var(--gold);
    background: rgba(217, 164, 65, 0.03);
    box-shadow: inset 0 0 20px rgba(217, 164, 65, 0.05);
}

.empty-image-placeholder svg {
    filter: drop-shadow(0 0 8px rgba(217, 164, 65, 0.3));
    transition: var(--transition-smooth);
}

.product-card:hover .empty-image-placeholder svg {
    transform: scale(1.1);
    filter: drop-shadow(0 0 12px rgba(217, 164, 65, 0.5));
}

.placeholder-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--white-mute);
    text-transform: uppercase;
    letter-spacing: 0.05rem;
    transition: var(--transition-smooth);
    text-align: center;
}

.product-card:hover .placeholder-label {
    color: var(--gold-light);
}

.product-img {
    width: 130px;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.7));
    transition: var(--transition-smooth);
}

.product-card:hover .product-img {
    transform: scale(1.08) rotate(2deg);
    filter: drop-shadow(0 15px 30px rgba(217, 164, 65, 0.2));
}

.badge-tag, .badge-tag-special {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
}

.badge-tag {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--white-mute);
    color: var(--white-dim);
}

.badge-tag-special {
    background: var(--grad-desert);
    color: var(--black);
}

.product-info {
    padding: 30px;
}

.product-title-placeholder {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.product-desc-placeholder {
    color: var(--white-dim);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 24px;
    height: 70px;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-price-placeholder {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--gold-light);
}

.price-term {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--white-mute);
    font-family: var(--font-primary);
}

/* Skeletons Styling for unreleased boxes */
.skeleton-card .product-title-placeholder,
.skeleton-card .product-desc-placeholder {
    position: relative;
}

/* Accepted Payment Methods styling */
.payment-methods-wrapper {
    margin-top: 80px;
    border-top: 1px solid var(--border-glass);
    padding-top: 40px;
    text-align: center;
}

.payment-methods-wrapper h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    color: var(--white-mute);
    margin-bottom: 24px;
}

.payment-icons-row {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.payment-icon-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    background: rgba(22, 22, 22, 0.4);
    border: 1px solid var(--border-glass);
    transition: var(--transition-fast);
}

.payment-icon-card:hover {
    border-color: var(--gold-light);
    background: rgba(22, 22, 22, 0.8);
    transform: scale(1.02);
}

.payment-icon-card span {
    font-size: 0.9rem;
    font-weight: 600;
}

/* ================= CHECKOUT TIMELINE ================= */
.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 40px auto 0;
    padding: 20px 0;
}

.timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 40px;
    width: 2px;
    background: linear-gradient(180deg, var(--orange) 0%, var(--gold) 50%, rgba(217,164,65,0.05) 100%);
}

.timeline-item {
    position: relative;
    padding-left: 90px;
    margin-bottom: 50px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-number {
    position: absolute;
    left: 20px;
    top: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--black-light);
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    color: var(--gold-light);
    box-shadow: 0 0 15px rgba(217, 164, 65, 0.2);
    z-index: 2;
    transition: var(--transition-smooth);
}

.timeline-item:hover .timeline-number {
    background: var(--grad-desert);
    color: var(--black);
    transform: scale(1.1);
    box-shadow: var(--shadow-glow);
}

.timeline-content {
    background: rgba(22, 22, 22, 0.3);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 24px;
    backdrop-filter: blur(8px);
    transition: var(--transition-smooth);
}

.timeline-item:hover .timeline-content {
    border-color: var(--gold-light);
    background: rgba(22, 22, 22, 0.6);
}

.timeline-content h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 0.9rem;
    color: var(--white-dim);
    line-height: 1.5;
}

/* ================= REVIEWS SECTION ================= */
.reviews-grid {
    position: relative;
}

.review-card {
    background: rgba(18, 18, 18, 0.7);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 30px;
    position: relative;
}

.review-stars {
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: 16px;
    font-size: 1rem;
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--white-dim);
    font-style: italic;
    margin-bottom: 24px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.reviewer-details h4 {
    font-size: 0.95rem;
    font-weight: 700;
}

.reviewer-details span {
    font-size: 0.75rem;
    color: var(--white-mute);
}

/* Geometric generated Reviewer Avatars */
.avatar-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-size: cover;
}

.r-av-1 {
    background: radial-gradient(circle, var(--orange) 0%, var(--black) 100%);
}

.r-av-2 {
    background: radial-gradient(circle, var(--gold) 0%, var(--black) 100%);
}

.r-av-3 {
    background: radial-gradient(circle, var(--gold-light) 0%, var(--black) 100%);
}

/* ================= FAQ ACCORDION ================= */
.faq-accordion-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(22, 22, 22, 0.4);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item.active {
    border-color: var(--gold);
    background: rgba(22, 22, 22, 0.75);
}

.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    cursor: pointer;
}

.faq-header h3 {
    font-size: 1.05rem;
    font-weight: 600;
}

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--gold);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-body-content {
    padding: 0 24px 24px;
    font-size: 0.95rem;
    color: var(--white-dim);
    line-height: 1.6;
}

/* ================= CONTACT SECTION ================= */
.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 40px;
    align-items: flex-start;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-card {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: rgba(22, 22, 22, 0.4);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    transition: var(--transition-smooth);
}

.contact-info-card:hover {
    border-color: var(--gold-light);
    background: rgba(22, 22, 22, 0.7);
    transform: translateX(5px);
}

.info-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.discord-bg {
    background: rgba(88, 101, 242, 0.1);
    color: #5865F2;
    border: 1px solid rgba(88, 101, 242, 0.2);
}

.email-bg {
    background: rgba(217, 164, 65, 0.1);
    color: var(--gold);
    border: 1px solid rgba(217, 164, 65, 0.2);
}

.info-content h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.info-content p {
    font-size: 0.85rem;
    color: var(--white-dim);
    line-height: 1.4;
    margin-bottom: 8px;
}

.info-action {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gold-light);
}

/* Contact form inputs */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
    width: 100%;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white-dim);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    color: var(--white);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 10px rgba(217, 164, 65, 0.15);
}

/* Password strength bar */
.password-meter-bar {
    width: 100%;
    height: 3px;
    background: rgba(255,255,255,0.05);
    margin-top: 6px;
    border-radius: 2px;
    overflow: hidden;
}

.strength-fill {
    width: 0%;
    height: 100%;
    background: #ff4d4d;
    transition: var(--transition-fast);
}

.strength-fill.weak {
    width: 30%;
    background: #ff4d4d;
}

.strength-fill.medium {
    width: 60%;
    background: #ffa64d;
}

.strength-fill.strong {
    width: 100%;
    background: #2ebd59;
}

/* ================= MODAL SYSTEMS ================= */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    padding: 20px;
}

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

.modal-card {
    width: 100%;
    max-width: 500px;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: var(--transition-smooth);
}

.modal-overlay.active .modal-card {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.8rem;
    color: var(--white-mute);
    cursor: pointer;
    line-height: 1;
    transition: var(--transition-fast);
}

.modal-close:hover {
    color: var(--white);
}

.auth-subtitle {
    font-size: 0.9rem;
    color: var(--white-dim);
    margin-bottom: 24px;
    margin-top: 4px;
}

.auth-link-small {
    font-size: 0.8rem;
    color: var(--gold-light);
}

.auth-footer-text {
    font-size: 0.85rem;
    color: var(--white-dim);
    text-align: center;
    margin-top: 24px;
}

.auth-footer-text a {
    color: var(--gold);
    font-weight: 600;
}

.auth-footer-text a:hover {
    text-decoration: underline;
}

.label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Verification Code Inputs */
.verification-code-row {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 24px;
}

.code-box {
    width: 50px;
    height: 55px;
    font-size: 1.5rem;
    font-weight: 800;
    text-align: center;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    color: var(--gold);
}

.code-box:focus {
    border-color: var(--gold);
    background: rgba(255,255,255,0.05);
}

/* ================= AUTHENTICATED DASHBOARD ================= */
#dashboard-view, #admin-view {
    padding-top: 100px;
    padding-bottom: 80px;
    min-height: 85vh;
}

.dashboard-banner {
    background: linear-gradient(180deg, rgba(217, 164, 65, 0.08) 0%, rgba(11,11,11,0) 100%);
    border-bottom: 1px solid var(--border-glass);
    padding: 50px 0;
    margin-bottom: 40px;
}

.db-banner-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.db-welcome h1 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
}

.db-welcome p {
    font-size: 0.95rem;
    color: var(--white-dim);
    margin-top: 4px;
}

.db-stats-row {
    display: flex;
    gap: 24px;
}

.db-stat-item {
    background: rgba(22, 22, 22, 0.5);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 16px 24px;
    text-align: right;
    min-width: 140px;
}

.db-stat-lbl {
    display: block;
    font-size: 0.75rem;
    color: var(--white-mute);
    text-transform: uppercase;
    letter-spacing: 0.05rem;
    margin-bottom: 4px;
}

.db-stat-val {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--gold-light);
}

.dashboard-container {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 40px;
    align-items: flex-start;
}

.dashboard-sidebar {
    background: rgba(18, 18, 18, 0.85);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 24px 16px;
    position: sticky;
    top: 100px;
}

.db-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.db-nav-link {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    padding: 14px 16px;
    border-radius: var(--radius-md);
    color: var(--white-dim);
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--transition-fast);
    text-align: left;
}

.db-nav-link:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.02);
}

.db-nav-link.active {
    color: var(--black);
    background: var(--grad-desert);
    box-shadow: 0 4px 12px rgba(217, 164, 65, 0.2);
}

.sidebar-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border-glass);
}

.db-tab-content, .admin-tab-content {
    display: none;
}

.db-tab-content.active, .admin-tab-content.active {
    display: block;
    animation: fadeInTab 0.4s ease-in-out;
}

.db-card h2 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.db-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.db-card p {
    font-size: 0.95rem;
    color: var(--white-dim);
    line-height: 1.6;
    margin-bottom: 24px;
}

.db-divider {
    height: 1px;
    background: var(--border-glass);
    border: none;
    margin: 40px 0;
}

/* Alert Boxes inside Dashboard */
.alert-box {
    padding: 16px 20px;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 24px;
}

.gold-alert {
    background: rgba(217, 164, 65, 0.08);
    border: 1px solid rgba(217, 164, 65, 0.3);
    color: var(--gold-light);
}

.green-alert {
    background: rgba(46, 189, 89, 0.08);
    border: 1px solid rgba(46, 189, 89, 0.3);
    color: #2ebd59;
}

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

.ov-item {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-md);
    padding: 24px;
}

.ov-item h4 {
    font-size: 0.8rem;
    color: var(--white-mute);
    text-transform: uppercase;
    letter-spacing: 0.05rem;
    margin-bottom: 8px;
}

.ov-value-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.ov-value {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
}

.ov-desc {
    font-size: 0.8rem;
    color: var(--white-mute);
    line-height: 1.4;
}

.quick-actions-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.quick-action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 24px 16px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.quick-action-btn:hover {
    border-color: var(--gold);
    background: rgba(217, 164, 65, 0.05);
    transform: translateY(-3px);
}

.quick-action-btn span {
    font-size: 0.85rem;
    font-weight: 600;
}

/* Orders Table Styling */
.table-responsive {
    overflow-x: auto;
    width: 100%;
}

.dune-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.9rem;
}

.dune-table th {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--white-mute);
    border-bottom: 1px solid var(--border-glass);
    padding: 16px;
}

.dune-table td {
    padding: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.02);
    color: var(--white-dim);
}

.dune-table tbody tr:hover td {
    color: var(--white);
    background: rgba(255, 255, 255, 0.01);
}

.status-badge {
    display: inline-flex;
    padding: 4px 10px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.status-badge.pending {
    background: rgba(217, 164, 65, 0.1);
    color: var(--gold);
}

.status-badge.completed {
    background: rgba(46, 189, 89, 0.1);
    color: #2ebd59;
}

.status-badge.banned {
    background: rgba(255, 77, 77, 0.1);
    color: #ff4d4d;
}

.status-badge.active-user {
    background: rgba(46, 189, 89, 0.1);
    color: #2ebd59;
}

.btn-danger {
    background: rgba(255, 77, 77, 0.08);
    border: 1px solid rgba(255, 77, 77, 0.3);
    color: #ff4d4d;
    padding: 6px 12px;
    font-size: 0.8rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-danger:hover {
    background: rgba(255, 77, 77, 0.2);
    border-color: #ff4d4d;
    transform: translateY(-1px);
}

.btn-success-outline {
    background: rgba(46, 189, 89, 0.04);
    border: 1px solid rgba(46, 189, 89, 0.25);
    color: #2ebd59;
    padding: 6px 12px;
    font-size: 0.8rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-success-outline:hover {
    background: rgba(46, 189, 89, 0.15);
    border-color: #2ebd59;
    transform: translateY(-1px);
}

.empty-table-message {
    padding: 40px !important;
    color: var(--white-mute) !important;
}

/* Downloads and Keys Lists */
.downloads-grid, .keys-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 20px;
}

.empty-downloads-box, .empty-keys-box {
    border: 2px dashed var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 60px 40px;
}

.empty-downloads-box p, .empty-keys-box p {
    color: var(--white-mute);
    margin-top: 16px;
    font-size: 0.95rem;
}

.download-item-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: rgba(255,255,255,0.01);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
}

.dl-info h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
}

.dl-info p {
    font-size: 0.8rem;
    color: var(--white-mute);
    margin-top: 4px;
    margin-bottom: 0;
}

.license-item-card {
    padding: 24px;
    background: rgba(255,255,255,0.01);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
}

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

.license-header-row h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
}

.license-key-string-wrapper {
    display: flex;
    gap: 12px;
}

.key-string {
    flex-grow: 1;
    font-family: monospace;
    font-size: 1.1rem;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-glass-focus);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    color: var(--gold-light);
    letter-spacing: 1px;
}

.btn-copy {
    border-radius: var(--radius-sm);
    padding: 12px;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-glass);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.btn-copy:hover {
    border-color: var(--gold);
    background: rgba(217, 164, 65, 0.1);
    color: var(--gold-light);
}

.form-info {
    display: block;
    margin-top: 6px;
    font-size: 0.8rem;
    color: var(--white-mute);
}

@keyframes fadeInTab {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================= INTERACTIVE CHECKOUT MODAL INTERNALS ================= */
.checkout-card {
    max-width: 600px !important;
}

#checkout-product-details {
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    margin-bottom: 24px;
    margin-top: 12px;
    font-size: 0.95rem;
}

.chk-label {
    color: var(--white-mute);
    font-weight: 500;
}

.chk-val-name {
    font-weight: 700;
    color: var(--white);
}

.chk-val-price {
    font-weight: 800;
    color: var(--gold);
}

.margin-l {
    margin-left: 20px;
}

.chk-instruction {
    font-size: 0.95rem;
    color: var(--white-dim);
    margin-bottom: 20px;
}

.payment-selection-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.pay-method-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 30px 20px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-glass);
    background: rgba(255, 255, 255, 0.01);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.pay-method-btn:hover {
    border-color: var(--gold);
    background: rgba(217, 164, 65, 0.06);
    transform: translateY(-3px);
}

.pay-method-btn span {
    font-weight: 700;
    font-size: 0.95rem;
}

/* Stepper simulation */
.timeline-stepper {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.sim-step {
    display: flex;
    align-items: center;
    gap: 16px;
    opacity: 0.3;
    transition: var(--transition-smooth);
}

.sim-step.active {
    opacity: 1;
}

.sim-step.completed {
    opacity: 0.8;
}

.sim-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--black-light);
    border: 2px solid var(--white-mute);
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.sim-step.active .sim-dot {
    border-color: var(--gold);
    background: var(--gold);
    box-shadow: 0 0 10px var(--gold);
}

.sim-step.completed .sim-dot {
    border-color: #2ebd59;
    background: #2ebd59;
}

.sim-label {
    font-size: 0.9rem;
    font-weight: 600;
}

.sim-step.completed .sim-label {
    color: #2ebd59;
}

.sim-console {
    font-family: monospace;
    font-size: 0.8rem;
    padding: 16px;
    background: #000;
    border-radius: var(--radius-sm);
    color: #a8a8a8;
    height: 120px;
    overflow-y: auto;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 24px;
}

.sim-actions {
    animation: fadeInTab 0.5s ease-out;
}

/* ================= TOAST ALERTS ================= */
#toast-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
}

.toast {
    background: var(--black-light);
    border-left: 4px solid var(--gold);
    border-top: 1px solid var(--border-glass);
    border-right: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
    padding: 16px 24px;
    border-radius: var(--radius-sm);
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: var(--shadow-premium);
    display: flex;
    align-items: center;
    gap: 12px;
    pointer-events: auto;
    transform: translateX(120%);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast.show {
    transform: translateX(0);
}

.toast.success {
    border-left-color: #2ebd59;
}

.toast.error {
    border-left-color: #ff4d4d;
}

/* ================= FOOTER ================= */
.main-footer {
    background: #060606;
    border-top: 1px solid var(--border-glass);
    padding: 80px 0 30px;
    margin-top: auto;
    position: relative;
    z-index: 10;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 0.8fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand-col .logo {
    margin-bottom: 20px;
}

.footer-tagline {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--white-mute);
    margin-bottom: 24px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-dim);
    transition: var(--transition-fast);
}

.footer-socials a:hover {
    border-color: var(--gold);
    color: var(--gold-light);
    background: rgba(217, 164, 65, 0.05);
    transform: translateY(-2px);
}

.footer-links-col h3,
.footer-newsletter-col h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.05rem;
    margin-bottom: 24px;
}

.footer-links-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-col a {
    font-size: 0.85rem;
    color: var(--white-mute);
}

.footer-links-col a:hover {
    color: var(--gold-light);
    padding-left: 4px;
}

.footer-newsletter-col p {
    font-size: 0.85rem;
    color: var(--white-mute);
    line-height: 1.5;
    margin-bottom: 20px;
}

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

.newsletter-form input {
    flex-grow: 1;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    color: var(--white);
    font-size: 0.85rem;
}

.newsletter-form input:focus {
    border-color: var(--gold);
}

.newsletter-form .btn {
    flex-shrink: 0;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--white-mute);
}

/* Tooltip helper style */
.tooltip {
    position: relative;
}

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

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .hero-section {
        padding-top: 140px;
        padding-bottom: 60px;
    }
    
    .hero-container-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-badge {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions-row {
        justify-content: center;
    }
    
    .luxury-dune-card {
        margin-left: auto;
        margin-right: auto;
        transform: none !important;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .dashboard-container {
        grid-template-columns: 1fr;
    }
    
    .dashboard-sidebar {
        position: static;
    }
    
    .db-banner-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .db-stats-row {
        width: 100%;
        justify-content: flex-start;
    }
    
    /* Mobile Menu Drawer style */
    .mobile-menu-btn {
        display: flex;
    }
    
    .navbar {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(11, 11, 11, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        transition: var(--transition-smooth);
        padding: 40px;
        border-top: 1px solid var(--border-glass);
    }
    
    .navbar.open {
        left: 0;
    }
    
    .nav-menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }
    
    .nav-link {
        font-size: 1.2rem;
    }
    
    /* Toggle Hamburger shape */
    .mobile-menu-btn.open .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .mobile-menu-btn.open .bar:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-btn.open .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

@media (max-width: 480px) {
    .grid-3, .grid-2 {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .payment-icons-row {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .quick-actions-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-line {
        left: 20px;
    }
    
    .timeline-item {
        padding-left: 50px;
    }
    
    .timeline-number {
        left: 0;
    }
}
