/* === GOOGLE FONTS === */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&family=Rajdhani:wght@300;400;500;600;700&display=swap');

/* === CSS VARIABLES === */
:root {
    --header-height: 80px;

    /* STEMix Brand Colors (Cyberpunk/Tech Theme) */
    --background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --background-rgb: 11, 13, 17;
    --foreground: #e0f7fa;
    /* hsl(200 100% 95%) */
    --foreground-rgb: 224, 247, 250;

    --card-bg: rgba(13, 17, 26, 0.7);
    /* hsl(220 25% 10%) with opacity */
    --card-border: rgba(30, 41, 59, 0.5);
    /* hsl(210 50% 20%) */

    --primary-color: #00c3ff;
    /* hsl(195 100% 50%) - Cyan */
    --primary-color-rgb: 0, 195, 255;
    --primary-glow: #33d1ff;
    /* hsl(195 100% 60%) */

    --secondary-color: #1a3652;
    /* hsl(210 50% 20%) */
    --secondary-color-rgb: 26, 54, 82;
    --accent-color: #00a8e8;
    /* hsl(195 100% 45%) */
    --accent-color-rgb: 0, 168, 232;

    --text-main: #ffffff;
    --text-main-rgb: 255, 255, 255;
    --text-body: #94a3b8;
    /* hsl(200 30% 60%) */

    --success-color: #25d366;
    --success-color-rgb: 37, 211, 102;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #00c3ff 0%, #0077cc 100%);
    --gradient-glow: linear-gradient(135deg, rgba(0, 195, 255, 0.5) 0%, rgba(0, 119, 204, 0.3) 100%);

    /* Typography */
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Rajdhani', sans-serif;

    /* Effects */
    --shadow-neon: 0 0 10px rgba(0, 195, 255, 0.5), 0 0 20px rgba(0, 195, 255, 0.3);
    --shadow-card: 0 8px 32px 0 rgba(0, 0, 0, 0.37);

    --radius-lg: 12px;
    --radius-md: 8px;
    --radius-sm: 4px;

    /* Component Backgrounds */
    --header-bg: rgba(11, 13, 17, 0.8);
    --header-scrolled-bg: rgba(11, 13, 17, 0.95);
    --footer-bg: #050608;
    --form-bg: rgba(13, 17, 26, 0.8);
    --search-results-bg: rgba(11, 13, 17, 0.9);
}

[data-theme="light"] {
    --background: linear-gradient(135deg, #e0f7fa 0%, #f8fafc 100%);
    --background-rgb: 248, 250, 252;
    --foreground: #0f172a;
    /* Dark text for foreground */
    --foreground-rgb: 15, 23, 42;

    --card-bg: rgba(255, 255, 255, 0.9);
    /* White card background */
    --card-border: rgba(203, 213, 225, 1);
    /* Light gray border */

    --primary-color: #0099cc;
    /* Slightly darker cyan for better visibility on white */
    --primary-color-rgb: 0, 153, 204;
    --primary-glow: #33d1ff;

    --secondary-color: #e2e8f0;
    --secondary-color-rgb: 226, 232, 240;
    --accent-color: #0284c7;
    --accent-color-rgb: 2, 132, 199;

    --text-main: #0f172a;
    /* Dark main text */
    --text-main-rgb: 15, 23, 42;
    --text-body: #475569;
    /* Darker body text */

    --success-color: #25d366;
    --success-color-rgb: 37, 211, 102;

    --shadow-neon: 0 0 10px rgba(0, 153, 204, 0.3), 0 0 20px rgba(0, 153, 204, 0.1);
    --shadow-card: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);

    /* Component Backgrounds Light Mode */
    --header-bg: rgba(255, 255, 255, 0.8);
    --header-scrolled-bg: rgba(255, 255, 255, 0.95);
    --footer-bg: #f1f5f9;
    --form-bg: rgba(255, 255, 255, 0.8);
    --search-results-bg: rgba(255, 255, 255, 0.9);
}

/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    padding-top: var(--header-height);
    overflow-x: hidden;
    position: relative;
    transition: background 0.3s ease, color 0.3s ease;
}

/* Background Effects */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    transition: background 0.3s ease;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-main);
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* === ANIMATIONS === */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse-glow {

    0%,
    100% {
        opacity: 1;
        filter: drop-shadow(0 0 5px var(--primary-color));
    }

    50% {
        opacity: 0.8;
        filter: drop-shadow(0 0 15px var(--primary-color));
    }
}

@keyframes grid-move {
    0% {
        transform: perspective(500px) rotateX(60deg) translateY(0);
    }

    100% {
        transform: perspective(500px) rotateX(60deg) translateY(50px);
    }
}

@keyframes spin-slow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* === LAYOUT === */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 6rem 0;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(0, 195, 255, 0.3);
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: var(--primary-color);
    margin: 1rem auto 0;
    box-shadow: var(--shadow-neon);
}

/* === HEADER === */
header {
    background: var(--header-bg);
    height: var(--header-height);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 195, 255, 0.1);
    transition: all 0.3s ease;
}

header.scrolled {
    background: var(--header-scrolled-bg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(0, 195, 255, 0.3);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-logo {
    height: 40px;
}

nav ul {
    display: flex;
    gap: 2rem;
    align-items: center;
}

nav a {
    color: var(--foreground);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    position: relative;
    padding: 5px 0;
}

nav a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
    box-shadow: var(--shadow-neon);
}

nav a:hover::before,
nav a.active::before {
    width: 100%;
}

nav a:hover,
nav a.active {
    color: var(--primary-color);
    text-shadow: 0 0 8px var(--primary-color);
}

.cart-icon {
    position: relative;
    color: var(--foreground);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--primary-color);
    color: #000;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.7rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 10px var(--primary-color);
}

/* === GRID BACKGROUND ANIMATION === */
.grid-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: -1;
    pointer-events: none;
}

.grid-lines {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 200vw;
    height: 200vh;
    transform: translate(-50%, -50%) perspective(500px) rotateX(60deg);
    background:
        linear-gradient(90deg, rgba(var(--primary-color-rgb), 0.05) 1px, transparent 1px),
        linear-gradient(0deg, rgba(var(--primary-color-rgb), 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: grid-move 4s linear infinite;
}

/* === HERO SECTION === */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding-top: var(--header-height);
    margin-top: calc(var(--header-height) * -1);
    overflow: hidden;
}

/* Scanline effect */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(var(--primary-color-rgb), 0.02) 51%);
    background-size: 100% 4px;
    pointer-events: none;
    z-index: 1;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: var(--shadow-neon);
    animation: float 6s ease-in-out infinite;
}

.hero p {
    font-size: 1.5rem;
    color: var(--text-body);
    max-width: 700px;
    margin: 0 auto 3rem;
    font-weight: 300;
    letter-spacing: 1px;
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 4px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid transparent;
}

.btn-primary {
    background: rgba(0, 195, 255, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
    box-shadow: 0 0 10px rgba(0, 195, 255, 0.2);
}

.btn-primary:hover {
    background: var(--primary-color);
    color: var(--background);
    /* Changed from #000 */
    box-shadow: 0 0 20px var(--primary-color);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    border-color: var(--text-body);
    color: var(--text-body);
}

.btn-secondary:hover {
    border-color: var(--text-main);
    /* Changed from #fff */
    color: var(--text-main);
    /* Changed from #fff */
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    /* Adjusted for theme */
}

/* === GLASS CARDS === */
.product-card,
.feature,
.glass-panel {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.product-card::before,
.feature::before,
.glass-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(var(--primary-color-rgb), 0.1), transparent);
    transition: 0.5s;
}

.product-card:hover::before,
.feature:hover::before,
.glass-panel:hover::before {
    left: 100%;
}

.product-card:hover,
.feature:hover,
.glass-panel:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(var(--primary-color-rgb), 0.2);
}

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    border: 1px solid rgba(var(--primary-color-rgb), 0.1);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.product-description {
    font-size: 0.9rem;
    color: var(--text-body);
    margin-bottom: 1.5rem;
}

.product-price {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
    text-shadow: 0 0 10px rgba(var(--primary-color-rgb), 0.3);
}

.product-meta {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.meta-tag {
    font-size: 0.7rem;
    background: rgba(var(--primary-color-rgb), 0.1);
    color: var(--primary-color);
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid rgba(var(--primary-color-rgb), 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* === SPACING === */
.my-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
}


/* === FEATURES === */
.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature {
    text-align: center;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(0, 195, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 195, 255, 0.2);
    box-shadow: 0 0 15px rgba(0, 195, 255, 0.1);
}

.feature-icon img {
    width: 40px;
    height: 40px;
}

/* === SEARCH & FORMS === */
.search-container {
    max-width: 600px;
    margin: 0 auto 4rem;
    position: relative;
}

.form-control {
    width: 100%;
    background: var(--form-bg);
    border: 1px solid var(--card-border);
    padding: 1.2rem 1.5rem;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 1.1rem;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(0, 195, 255, 0.2);
}

.search-results {
    background: var(--search-results-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--primary-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-neon);
    margin-top: 10px;
    overflow: hidden;
}

.search-result-item {
    padding: 1rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(0, 195, 255, 0.1);
    color: var(--text-main);
    transition: all 0.2s;
}

.search-result-item:hover {
    background: rgba(0, 195, 255, 0.1);
    padding-left: 1.5rem;
}

/* Flying Image Animation Class */
.flying-img {
    position: fixed;
    z-index: 10001;
    pointer-events: none;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-neon);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* === FOOTER === */
footer {
    background: var(--footer-bg);
    border-top: 1px solid rgba(0, 195, 255, 0.1);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px rgba(0, 195, 255, 0.3);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: var(--text-body);
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
    text-shadow: 0 0 8px var(--primary-color);
    padding-left: 5px;
}

.footer-section p {
    color: var(--text-body);
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-body);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
}

/* === SCROLLBAR === */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--background);
}

::-webkit-scrollbar-thumb {
    background: var(--card-border);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }
}

/* === UTILITIES === */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.btn-success {
    background: rgba(0, 255, 157, 0.1);
    border-color: #00ff9d;
    color: #00ff9d;
    box-shadow: 0 0 10px rgba(0, 255, 157, 0.2);
}

.btn-success:hover {
    background: #00ff9d;
    color: #000;
    box-shadow: 0 0 20px #00ff9d;
    transform: translateY(-2px);
}

/* === NOTIFICATIONS === */
.notification-dropdown {
    position: relative;
}

.notification-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    width: 350px;
    padding: 1rem;
    display: none;
    z-index: 1000;
    color: var(--text-main);
    margin-top: 10px;
}

.notification-menu.show {
    display: block;
}

.notification-header {
    font-weight: bold;
    margin-bottom: .5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(var(--primary-color-rgb), 0.2);
    color: var(--primary-color);
}

.notification-body {
    max-height: 300px;
    overflow-y: auto;
    margin: 0 -0.5rem;
    padding: 0 0.5rem;
}

.notification-item {
    padding: .75rem 0;
    border-bottom: 1px solid rgba(var(--primary-color-rgb), 0.1);
    font-size: 0.9rem;
    color: var(--text-body);
}

.notification-item:last-child {
    border-bottom: none;
}

.notification-item:hover {
    background: rgba(var(--primary-color-rgb), 0.05);
    color: var(--text-main);
}

.notification-footer {
    text-align: center;
    margin-top: .5rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(var(--primary-color-rgb), 0.1);
}

.notification-footer a {
    color: var(--primary-color);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.notification-footer a:hover {
    text-shadow: 0 0 5px var(--primary-color);
}

/* Custom scrollbar for notification-body */
.notification-body::-webkit-scrollbar {
    width: 5px;
}

.notification-body::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
}

.notification-body::-webkit-scrollbar-thumb {
    background: var(--card-border);
    border-radius: 10px;
}

.notification-body::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}


/* === LOADING ANIMATION (STEMix Loading Magic) === */

/* Utility Classes for Loading Page */
.perspective-500 {
    perspective: 500px;
}

.transform-style-3d {
    transform-style: preserve-3d;
}

/* Grid Background */
@keyframes scan {

    0%,
    100% {
        top: 20%;
        opacity: 0;
    }

    50% {
        top: 80%;
        opacity: 1;
    }
}

@keyframes particle-float {

    0%,
    100% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100vh) translateX(20px);
        opacity: 0;
    }
}

@keyframes progress-shine {
    from {
        left: -100%;
    }

    to {
        left: 100%;
    }
}

/* Loading Page Container */
#page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--background);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

#page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

/* Cube Styles */
.cube-container {
    width: 8rem;
    height: 8rem;
    position: relative;
    transform-style: preserve-3d;
    animation: spin-slow 8s linear infinite;
    margin-bottom: 2rem;
}

.cube-face {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(var(--primary-color-rgb), 0.6);
    background: rgba(var(--primary-color-rgb), 0.1);
    backdrop-filter: blur(4px);
    box-shadow: inset 0 0 30px rgba(var(--primary-color-rgb), 0.3);
}

.cube-face-front {
    transform: translateZ(4rem);
}

.cube-face-back {
    transform: rotateY(180deg) translateZ(4rem);
}

.cube-face-right {
    transform: rotateY(90deg) translateZ(4rem);
    border-color: rgba(var(--secondary-color-rgb), 0.6);
    background: rgba(var(--secondary-color-rgb), 0.1);
    box-shadow: inset 0 0 30px rgba(var(--secondary-color-rgb), 0.3);
}

.cube-face-left {
    transform: rotateY(-90deg) translateZ(4rem);
    border-color: rgba(var(--secondary-color-rgb), 0.6);
    background: rgba(var(--secondary-color-rgb), 0.1);
    box-shadow: inset 0 0 30px rgba(var(--secondary-color-rgb), 0.3);
}

.cube-face-top {
    transform: rotateX(90deg) translateZ(4rem);
    background: rgba(var(--primary-color-rgb), 0.2);
    box-shadow: inset 0 0 40px rgba(var(--primary-color-rgb), 0.5);
}

.cube-face-bottom {
    transform: rotateX(-90deg) translateZ(4rem);
    border-color: rgba(var(--primary-color-rgb), 0.4);
    background: rgba(var(--background-rgb), 0.8);
}

.cube-inner {
    width: 2rem;
    height: 2rem;
    transform: rotate(45deg);
    border: 2px solid rgba(var(--primary-color-rgb), 0.8);
    background: rgba(var(--primary-color-rgb), 0.2);
}

/* Loading Content */
.loading-logo {
    height: 6rem;
    width: auto;
    animation: pulse-glow 2s ease-in-out infinite;
    margin-bottom: 1.5rem;
}

.loading-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    text-align: center;
    text-shadow: 0 0 20px rgba(var(--primary-color-rgb), 0.3);
}

.loading-subtitle {
    font-family: var(--font-body);
    font-size: 1.25rem;
    letter-spacing: 0.3em;
    color: var(--text-body);
    margin-bottom: 3rem;
    text-align: center;
}

/* Progress Bar */
.loading-progress-container {
    width: 100%;
    max-width: 28rem;
}

.loading-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--text-body);
    margin-bottom: 0.75rem;
}

.status-dot {
    display: inline-block;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background-color: var(--primary-color);
    margin-right: 0.5rem;
    animation: pulse-glow 1s infinite;
}

.progress-track {
    position: relative;
    height: 0.25rem;
    width: 100%;
    background-color: var(--secondary-color);
    border-radius: 9999px;
    overflow: hidden;
}

.progress-fill {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    border-radius: 9999px;
    transition: width 0.3s ease-out;
}

.progress-shine {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 5rem;
    background: linear-gradient(to right, transparent, rgba(var(--text-main-rgb), 0.3), transparent);
    animation: progress-shine 1.5s infinite;
}

/* Decorative Particles (JS generated) */
.particle {
    position: absolute;
    border-radius: 50%;
    background-color: var(--primary-color);
    pointer-events: none;
    box-shadow: 0 0 10px rgba(var(--primary-color-rgb), 0.5);
}


/* === PRODUCTS PAGE === */
.search-bar-container {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-card);
    margin-bottom: 2rem;
}

.filter-sidebar {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-card);
    position: sticky;
    top: calc(var(--header-height) + 2rem);
    max-height: calc(100vh - var(--header-height) - 4rem);
    overflow-y: auto;
}

.filter-sidebar h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-transform: uppercase;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.filter-sidebar h4 {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: var(--text-main);
}

.filter-sidebar a {
    display: block;
    padding: 0.3rem 0;
    color: var(--text-body);
    font-size: 0.9rem;
    transition: all 0.2s;
}

.filter-sidebar a:hover,
.filter-sidebar a.active {
    color: var(--primary-color);
    text-shadow: 0 0 5px var(--primary-color);
    padding-left: 5px;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.pagination-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    color: var(--text-main);
    transition: all 0.3s;
}

.pagination-link:hover,
.pagination-link.active {
    background: var(--primary-color);
    color: #000;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px var(--primary-color);
}

.pagination-link.prev-next {
    width: auto;
    padding: 0 1.5rem;
    border-radius: 4px;
}


/* === CART PAGE === */
.cart-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-card);
}

.cart-table th {
    background: rgba(0, 195, 255, 0.05);
    color: var(--primary-color);
    text-transform: uppercase;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    letter-spacing: 1px;
    padding: 1.2rem 1rem;
    text-align: left;
}

.cart-table td {
    padding: 1.5rem 1rem;
    border-bottom: 1px solid var(--card-border);
    color: var(--text-main);
    vertical-align: middle;
}

.cart-table tr:last-child td {
    border-bottom: none;
}

.cart-item-details {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--card-border);
    flex-shrink: 0;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-customization-details {
    display: block;
    margin-top: 0.5rem;
    color: var(--text-body);
    font-size: 0.85rem;
}

.cart-stock-warning {
    color: var(--danger-color);
    font-size: 0.8rem;
    margin-top: 0.5rem;
    font-weight: 600;
}

.quantity-control input {
    width: 70px;
    background: rgba(11, 13, 17, 0.5);
    border: 1px solid var(--card-border);
    color: var(--text-main);
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    text-align: center;
    font-family: var(--font-heading);
}

.cart-actions-summary {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.coupon-section,
.cart-summary {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-card);
}

.coupon-section h3,
.cart-summary h3 {
    color: var(--primary-color);
    font-family: var(--font-heading);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-size: 1.2rem;
}

.offer-card {
    border: 1px dashed var(--card-border);
    padding: 1rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.3s;
}

.offer-card:hover {
    border-color: var(--primary-color);
    background: rgba(0, 195, 255, 0.05);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    color: var(--text-body);
}

.summary-row.total {
    border-top: 1px solid var(--card-border);
    margin-top: 1rem;
    padding-top: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-heading);
}

.empty-cart-message {
    text-align: center;
    padding: 5rem 0;
}

.empty-cart-message h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* Responsive Table */
@media (max-width: 768px) {
    .cart-table thead {
        display: none;
    }

    .cart-table tr {
        display: block;
        margin-bottom: 1.5rem;
        padding: 1rem;
    }

    .cart-table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border: none;
        padding: 0.5rem 0;
    }

    .cart-table td::before {
        content: attr(data-label);
        font-weight: bold;
        color: var(--primary-color);
        font-family: var(--font-heading);
        font-size: 0.8rem;
    }
}


/* === UI/UX ENHANCEMENTS === */

/* 1. Custom Sci-Fi Cursor */
body {
    /* cursor: none; */
    /* Hide default cursor */
}

.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background 0.2s;
    mix-blend-mode: difference;
}

.custom-cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10001;
    transform: translate(-50%, -50%);
}

/* Hover state for cursor */
body.hovering .custom-cursor {
    width: 40px;
    height: 40px;
    background: rgba(0, 195, 255, 0.1);
    border-color: var(--primary-glow);
}

/* 2. Glitch Text Effect */
.glitch {
    position: relative;
    color: var(--text-main);
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--background);
}

.glitch::before {
    left: 2px;
    text-shadow: -1px 0 #ff00c1;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim-1 5s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -1px 0 #00fff9;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim-2 5s infinite linear alternate-reverse;
}

.product-detail-layout {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
}

.product-detail-layout>div {
    flex: 1;
}

@media (max-width: 768px) {
    .product-detail-layout {
        flex-direction: column;
    }
}

@keyframes glitch-anim-1 {
    0% {
        clip: rect(30px, 9999px, 10px, 0);
    }

    20% {
        clip: rect(10px, 9999px, 80px, 0);
    }

    40% {
        clip: rect(50px, 9999px, 20px, 0);
    }

    60% {
        clip: rect(20px, 9999px, 60px, 0);
    }

    80% {
        clip: rect(70px, 9999px, 30px, 0);
    }

    100% {
        clip: rect(60px, 9999px, 90px, 0);
    }
}

@keyframes glitch-anim-2 {
    0% {
        clip: rect(10px, 9999px, 50px, 0);
    }

    20% {
        clip: rect(60px, 9999px, 20px, 0);
    }

    40% {
        clip: rect(20px, 9999px, 80px, 0);
    }

    60% {
        clip: rect(80px, 9999px, 10px, 0);
    }

    80% {
        clip: rect(30px, 9999px, 60px, 0);
    }

    100% {
        clip: rect(50px, 9999px, 40px, 0);
    }
}

/* 3. 3D Tilt Effect Base */
.tilt-card {
    transform-style: preserve-3d;
    transform: perspective(1000px);
}


/* === NEON TOASTS === */
.swal2-popup.swal2-toast {
    background: rgba(13, 17, 26, 0.95) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid var(--primary-color) !important;
    box-shadow: 0 0 20px rgba(0, 195, 255, 0.3) !important;
    border-radius: var(--radius-md) !important;
}

.swal2-title {
    color: var(--primary-color) !important;
    text-shadow: 0 0 5px rgba(0, 195, 255, 0.5) !important;
    font-family: var(--font-heading) !important;
}

.swal2-success-circular-line-left,
.swal2-success-circular-line-right,
.swal2-success-fix {
    background-color: transparent !important;
}

.swal2-success-ring {
    border-color: var(--success-color) !important;
    box-shadow: 0 0 10px var(--success-color) !important;
}

.swal2-icon.swal2-success [class^=swal2-success-line] {
    background-color: var(--success-color) !important;
    box-shadow: 0 0 5px var(--success-color) !important;
}


/* === WHATSAPP FLOATING BUTTON === */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    /* Opposite side of Scroll to Top */
    width: 60px;
    height: 60px;
    background-color: var(--success-color);
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 0 20px rgba(var(--success-color-rgb), 0.5);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(var(--success-color-rgb), 0.8);
    color: white;
}

.whatsapp-float i {
    animation: pulse-glow 2s infinite;
}

n a v [ a r i a - l a b e l = ' b r e a d c r u m b '  ]    {
       f l o a t :    r i g h t ;
       
}

     

/* === IDEA SUBMISSION WIZARD === */
.form-step {
    display: none;
    animation: slideIn 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.form-step-active {
    display: block;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.step-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
    position: relative;
}

.step-indicator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--card-border);
    transform: translateY(-50%);
    z-index: 1;
}

.step-dot {
    width: 40px;
    height: 40px;
    background: var(--form-bg);
    border: 2px solid var(--card-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    position: relative;
    transition: all 0.4s ease;
    font-family: var(--font-heading);
    color: var(--text-body);
}

.step-dot.active {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: scale(1.1);
    box-shadow: var(--shadow-neon);
}

.step-dot.completed {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #000;
    font-weight: 700;
}

.form-label {
    font-family: var(--font-heading);
    color: var(--text-main);
    margin-bottom: 0.5rem;
    font-size: 1rem;
    letter-spacing: 1px;
}

/* Custom File Input */
.file-upload-wrapper {
    position: relative;
    overflow: hidden;
    display: inline-block;
    width: 100%;
}

.file-upload-wrapper input[type=file] {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.file-upload-button {
    display: inline-block;
    padding: 1rem 1.5rem;
    background: rgba(0, 195, 255, 0.1);
    border: 1px dashed var(--primary-color);
    color: var(--primary-color);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
}

.file-upload-button:hover {
    background: rgba(0, 195, 255, 0.2);
    box-shadow: var(--shadow-neon);
}

.file-upload-filename {
    margin-top: 1rem;
    color: var(--text-body);
    font-size: 0.9rem;
    display: block;
}

/* === RESPONSIVE NAVIGATION === */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
}

@media (max-width: 768px) {
    .mobile-nav-toggle {
        display: block;
    }

    #main-nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: var(--header-scrolled-bg);
        backdrop-filter: blur(20px);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
    }

    #main-nav.active {
        transform: translateX(0);
    }

    #main-nav ul {
        flex-direction: column;
        gap: 2rem;
    }

    .container {
        padding: 0 1rem;
    }

    .features-container {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero p {
        font-size: 1.2rem;
    }
}

/* === PRODUCTS PAGE RESPONSIVE === */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

@media (max-width: 768px) {
    .products-layout {
        grid-template-columns: 1fr;
    }

    .filter-sidebar {
        position: static;
        max-height: none;
        margin-bottom: 2rem;
    }
}

/* Added for mobile view product card size increase */
@media (max-width: 576px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

/* === MOBILE FILTER === */
#filter-toggle-btn {
    display: none;
    /* Hidden by default */
}

@media (max-width: 768px) {
    #filter-toggle-btn {
        display: block;
    }

    .filter-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--header-scrolled-bg);
        backdrop-filter: blur(20px);
        z-index: 1002;
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
        padding: 2rem;
        overflow-y: auto;
    }

    .filter-sidebar.open {
        transform: translateX(0);
    }

    .filter-sidebar-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 2rem;
    }

    .filter-sidebar-header h3 {
        margin: 0;
    }

    #close-filter-btn {
        background: none;
        border: none;
        color: var(--primary-color);
        font-size: 1.5rem;
        cursor: pointer;
    }
}

/* === PROFILE PAGE STYLES === */
.profile-layout {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.profile-sidebar {
    position: sticky;
    top: calc(var(--header-height) + 2rem);
    height: fit-content;
}

.profile-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.profile-image-wrapper {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-color);
    box-shadow: 0 0 20px rgba(var(--primary-color-rgb), 0.3);
    position: relative;
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.profile-card .meta-info {
    color: var(--text-body);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.profile-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.profile-actions .btn {
    width: 100%;
    padding: 0.75rem 1.5rem;
    font-size: 0.85rem;
}

.profile-main-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.content-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all 0.3s ease;
}

.card-header {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--card-border);
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(var(--primary-color-rgb), 0.3);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group small {
    display: block;
    margin-top: 0.25rem;
    color: var(--text-body);
    font-size: 0.85rem;
}

.form-group input[type="file"] {
    padding: 0.75rem;
}

/* Tabs */
.tabs-container {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--card-border);
}

.tab-btn {
    background: transparent;
    border: none;
    color: var(--text-body);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 1rem 1.5rem;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    box-shadow: 0 0 10px var(--primary-color);
    transition: width 0.3s ease;
}

.tab-btn:hover {
    color: var(--primary-color);
}

.tab-btn.active {
    color: var(--primary-color);
    text-shadow: 0 0 8px var(--primary-color);
}

.tab-btn.active::after {
    width: 100%;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Orders List */
.orders-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Table Responsive */
.table-responsive {
    overflow-x: auto;
    margin: 0 -2rem;
    padding: 0 2rem;
}

.table-responsive table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.table-responsive thead {
    background: rgba(var(--primary-color-rgb), 0.1);
    border-bottom: 2px solid var(--primary-color);
}

.table-responsive th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.table-responsive td {
    padding: 1rem;
    border-bottom: 1px solid var(--card-border);
    color: var(--text-body);
}

.table-responsive tr:hover {
    background: rgba(var(--primary-color-rgb), 0.05);
}

.status-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-pending {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.status-processing {
    background: rgba(0, 195, 255, 0.2);
    color: var(--primary-color);
    border: 1px solid rgba(0, 195, 255, 0.3);
}

.status-shipped {
    background: rgba(33, 150, 243, 0.2);
    color: #2196f3;
    border: 1px solid rgba(33, 150, 243, 0.3);
}

.status-delivered {
    background: rgba(76, 175, 80, 0.2);
    color: #4caf50;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.status-cancelled,
.status-rejected {
    background: rgba(244, 67, 54, 0.2);
    color: #f44336;
    border: 1px solid rgba(244, 67, 54, 0.3);
}

.status-approved {
    background: rgba(76, 175, 80, 0.2);
    color: #4caf50;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
}

.btn-danger {
    background: rgba(244, 67, 54, 0.1);
    border-color: #f44336;
    color: #f44336;
    box-shadow: 0 0 10px rgba(244, 67, 54, 0.2);
}

.btn-danger:hover {
    background: #f44336;
    color: #fff;
    box-shadow: 0 0 20px #f44336;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 968px) {
    .profile-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .profile-sidebar {
        position: relative;
        top: 0;
    }

    .tabs-container {
        overflow-x: auto;
        flex-wrap: nowrap;
    }

    .tab-btn {
        white-space: nowrap;
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }

    .table-responsive {
        margin: 0 -1rem;
        padding: 0 1rem;
    }

    .table-responsive table {
        display: block;
    }

    .table-responsive thead {
        display: none;
    }

    .table-responsive tbody,
    .table-responsive tr,
    .table-responsive td {
        display: block;
        width: 100%;
    }

    .table-responsive tr {
        margin-bottom: 1rem;
        border: 1px solid var(--card-border);
        border-radius: var(--radius-md);
        padding: 1rem;
        background: rgba(var(--primary-color-rgb), 0.02);
    }

    .table-responsive td {
        text-align: right;
        padding: 0.5rem 0;
        border: none;
        position: relative;
        padding-left: 50%;
    }

    .table-responsive td::before {
        content: attr(data-label);
        position: absolute;
        left: 0;
        width: 45%;
        padding-right: 10px;
        text-align: left;
        font-weight: 600;
        color: var(--text-main);
    }
}

@media (max-width: 640px) {
    .profile-image-wrapper {
        width: 120px;
        height: 120px;
    }

    .content-card {
        padding: 1.5rem;
    }

    .card-header {
        font-size: 1.1rem;
    }
}

/* ========================================
   MODERN CART PAGE STYLES
   ======================================== */

.cart-section {
    padding: 4rem 0;
}

/* Alert Messages */
.alert {
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    margin-bottom: 2rem;
    border: 1px solid;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-body);
}

.alert::before {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 1.2rem;
}

.alert-success {
    background: rgba(37, 211, 102, 0.1);
    border-color: var(--success-color);
    color: var(--success-color);
}

.alert-success::before {
    content: '\f058';
    /* check-circle */
}

.alert-danger {
    background: rgba(255, 71, 87, 0.1);
    border-color: #ff4757;
    color: #ff4757;
}

.alert-danger::before {
    content: '\f06a';
    /* exclamation-circle */
}

.animate-fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Cart Layout */
.cart-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 2rem;
    margin-top: 2rem;
}

/* Cart Items Section */
.cart-items-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cart-item-card {
    display: grid;
    grid-template-columns: 150px 1fr auto;
    gap: 1.5rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.cart-item-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 195, 255, 0.15);
}

.cart-item-image-wrapper {
    width: 150px;
    height: 150px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(var(--primary-color-rgb), 0.2);
    background: rgba(0, 0, 0, 0.2);
}

.cart-item-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.cart-item-card:hover .cart-item-img {
    transform: scale(1.1);
}

.cart-item-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.cart-item-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--text-main);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.cart-item-title:hover {
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(var(--primary-color-rgb), 0.3);
}

.cart-customization {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.custom-detail {
    font-size: 0.85rem;
    color: var(--text-body);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.custom-detail i {
    color: var(--primary-color);
    font-size: 0.75rem;
}

.stock-warning {
    color: #ff4757;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.stock-warning i {
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.cart-item-price {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
    text-shadow: 0 0 10px rgba(var(--primary-color-rgb), 0.3);
}

/* Cart Item Actions */
.cart-item-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-end;
    min-width: 200px;
}

.quantity-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
}

.quantity-label {
    font-size: 0.8rem;
    color: var(--text-body);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.quantity-control-modern {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(var(--primary-color-rgb), 0.05);
    border: 1px solid rgba(var(--primary-color-rgb), 0.2);
    border-radius: var(--radius-md);
    padding: 0.5rem;
}

.qty-btn {
    width: 35px;
    height: 35px;
    border: none;
    background: rgba(var(--primary-color-rgb), 0.1);
    color: var(--primary-color);
    border-radius: var(--radius-sm);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.qty-btn:hover {
    background: var(--primary-color);
    color: #000;
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(var(--primary-color-rgb), 0.5);
}

.qty-btn:active {
    transform: scale(0.95);
}

.qty-input {
    width: 60px;
    text-align: center;
    background: transparent;
    border: none;
    color: var(--text-main);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    outline: none;
}

/* Remove number input arrows */
.qty-input::-webkit-inner-spin-button,
.qty-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.qty-input[type=number] {
    -moz-appearance: textfield;
}

.cart-item-subtotal {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
}

.subtotal-label {
    font-size: 0.75rem;
    color: var(--text-body);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.subtotal-value {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 700;
}

.btn-remove {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: rgba(255, 71, 87, 0.1);
    border: 1px solid #ff4757;
    color: #ff4757;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-remove:hover {
    background: #ff4757;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 71, 87, 0.3);
}

/* Cart Actions Bar */
.cart-actions-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
}

.cart-actions-bar .btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Cart Summary Sidebar */
.cart-summary-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: sticky;
    top: calc(var(--header-height) + 20px);
    align-self: flex-start;
}

/* Coupon Card */
.coupon-card {
    padding: 1.5rem;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-title i {
    font-size: 1.2rem;
}

.applied-coupon-badge {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid var(--success-color);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
}

.coupon-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--success-color);
    font-family: var(--font-heading);
}

.coupon-info i {
    font-size: 1.2rem;
}

.coupon-info strong {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.remove-coupon-btn {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 71, 87, 0.1);
    border: 1px solid #ff4757;
    color: #ff4757;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.remove-coupon-btn:hover {
    background: #ff4757;
    color: #fff;
    transform: rotate(90deg);
}

.coupon-input-form {
    margin-bottom: 1.5rem;
}

.input-group {
    display: flex;
    gap: 0.5rem;
}

.input-group .form-control {
    flex: 1;
    padding: 0.9rem 1rem;
    font-size: 0.95rem;
}

.btn-apply {
    padding: 0.9rem 1.5rem;
    background: rgba(var(--primary-color-rgb), 0.1);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-apply:hover {
    background: var(--primary-color);
    color: #000;
    box-shadow: 0 0 20px rgba(var(--primary-color-rgb), 0.5);
}

/* Available Coupons */
.available-coupons {
    margin-top: 1rem;
}

.coupons-title {
    font-size: 0.9rem;
    color: var(--text-body);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.coupons-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.coupon-offer {
    padding: 1rem;
    background: rgba(var(--primary-color-rgb), 0.03);
    border: 1px solid rgba(var(--primary-color-rgb), 0.15);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.coupon-offer:hover {
    background: rgba(var(--primary-color-rgb), 0.08);
    border-color: rgba(var(--primary-color-rgb), 0.3);
    transform: translateX(5px);
}

.coupon-code-badge {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background: rgba(var(--primary-color-rgb), 0.15);
    border: 1px dashed var(--primary-color);
    border-radius: var(--radius-sm);
    margin-bottom: 0.75rem;
}

.coupon-code-badge strong {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-size: 0.95rem;
    letter-spacing: 1px;
}

.coupon-desc {
    font-size: 0.85rem;
    color: var(--text-body);
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.btn-copy-coupon {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1px solid rgba(var(--primary-color-rgb), 0.3);
    color: var(--primary-color);
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-copy-coupon:hover {
    background: rgba(var(--primary-color-rgb), 0.1);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Cart Summary Card */
.cart-summary-card {
    padding: 1.5rem;
}

.summary-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
    color: var(--text-body);
}

.summary-row span:first-child {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.summary-row span:last-child {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-main);
}

.discount-row {
    color: var(--success-color);
}

.discount-row span:last-child {
    color: var(--success-color);
}

.free-badge {
    padding: 0.25rem 0.75rem;
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid var(--success-color);
    color: var(--success-color);
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.summary-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--card-border), transparent);
    margin: 0.5rem 0;
}

.total-row {
    font-size: 1.2rem;
    padding-top: 0.5rem;
}

.total-row span {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-checkout {
    width: 100%;
    padding: 1.2rem;
    background: var(--gradient-primary);
    border: none;
    color: #000;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    box-shadow: 0 5px 20px rgba(var(--primary-color-rgb), 0.3);
}

.btn-checkout:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(var(--primary-color-rgb), 0.5);
}

.btn-checkout.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.secure-checkout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.8rem;
    color: var(--text-body);
}

.secure-checkout i {
    color: var(--success-color);
}

/* Empty Cart State */
.empty-cart-state {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
}

.empty-cart-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    background: rgba(var(--primary-color-rgb), 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(var(--primary-color-rgb), 0.2);
}

.empty-cart-icon i {
    font-size: 3.5rem;
    color: var(--primary-color);
    opacity: 0.5;
    animation: float 3s ease-in-out infinite;
}

.empty-cart-state h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.empty-cart-state p {
    font-size: 1.1rem;
    color: var(--text-body);
    margin-bottom: 2rem;
}

.empty-cart-state .btn {
    display: inline-flex;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .cart-layout {
        grid-template-columns: 1fr;
    }

    .cart-summary-sidebar {
        position: static;
        order: 2;
    }

    .cart-items-section {
        order: 1;
    }
}

@media (max-width: 768px) {
    .cart-item-card {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .cart-item-image-wrapper {
        width: 100%;
        height: 200px;
    }

    .cart-item-actions {
        width: 100%;
        align-items: stretch;
    }

    .quantity-control-modern {
        justify-content: center;
    }

    .cart-item-subtotal {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .cart-actions-bar {
        flex-direction: column;
        gap: 1rem;
    }

    .cart-actions-bar .btn {
        width: 100%;
        justify-content: center;
    }

    .input-group {
        flex-direction: column;
    }

    .btn-apply {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .cart-section {
        padding: 2rem 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .cart-item-card {
        padding: 1rem;
    }

    .cart-item-title {
        font-size: 1.1rem;
    }

    .cart-item-price {
        font-size: 1.2rem;
    }

    .coupon-card,
    .cart-summary-card {
        padding: 1rem;
    }

    .card-title {
        font-size: 1rem;
    }
}

/* ========================================
   BREADCRUMB NAVIGATION
   ======================================== */

.breadcrumb {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    padding: 0.75rem 1rem;
    margin-bottom: 1.5rem;
    list-style: none;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
    overflow-x: auto;
    white-space: nowrap;
}

.breadcrumb-item {
    display: inline-flex;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-body);
}

.breadcrumb-item+.breadcrumb-item::before {
    content: '/';
    padding: 0 0.5rem;
    color: var(--text-body);
    opacity: 0.5;
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--primary-glow);
    text-shadow: 0 0 8px rgba(var(--primary-color-rgb), 0.5);
}

.breadcrumb-item.active {
    color: var(--text-main);
    font-weight: 500;
}

/* Responsive breadcrumb */
@media (max-width: 768px) {
    .breadcrumb {
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
    }

    .breadcrumb-item+.breadcrumb-item::before {
        padding: 0 0.35rem;
    }
}

/* ========================================
   LOADING PAGE STYLES
   ======================================== */

#page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0b0d11 0%, #1a1d29 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 20px;
    animation: pulse 2s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(0, 195, 255, 0.5));
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

.loading-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-main);
    margin: 10px 0;
    letter-spacing: 3px;
    text-shadow: 0 0 10px rgba(0, 195, 255, 0.5);
}

.loading-subtitle {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--primary-color);
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.loading-progress-container {
    width: 300px;
    max-width: 80%;
}

.loading-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: var(--text-body);
}

.status-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
    margin-right: 8px;
    animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.progress-track {
    width: 100%;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-glow));
    border-radius: 2px;
    transition: width 0.3s ease;
    position: relative;
    box-shadow: 0 0 10px var(--primary-color);
}

.progress-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 2s ease-in-out infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.cube-container {
    width: 80px;
    height: 80px;
    position: relative;
    transform-style: preserve-3d;
    animation: rotateCube 3s linear infinite;
    margin-bottom: 30px;
}

@keyframes rotateCube {
    0% {
        transform: rotateX(0deg) rotateY(0deg);
    }

    100% {
        transform: rotateX(360deg) rotateY(360deg);
    }
}

.cube-face {
    position: absolute;
    width: 80px;
    height: 80px;
    background: rgba(0, 195, 255, 0.1);
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 195, 255, 0.3);
}

.cube-face-front {
    transform: translateZ(40px);
}

.cube-face-back {
    transform: rotateY(180deg) translateZ(40px);
}

.cube-face-right {
    transform: rotateY(90deg) translateZ(40px);
}

.cube-face-left {
    transform: rotateY(-90deg) translateZ(40px);
}

.cube-face-top {
    transform: rotateX(90deg) translateZ(40px);
}

.cube-face-bottom {
    transform: rotateX(-90deg) translateZ(40px);
}

.cube-inner {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 195, 255, 0.2), rgba(0, 119, 204, 0.2));
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

/* Mobile Responsive Styles for Loading Page */
@media (max-width: 768px) {
    .loading-logo {
        width: 80px;
        height: 80px;
        margin-bottom: 15px;
    }

    .loading-title {
        font-size: 1.8rem;
        letter-spacing: 2px;
        margin: 8px 0;
    }

    .loading-subtitle {
        font-size: 0.85rem;
        letter-spacing: 1.5px;
        margin-bottom: 20px;
    }

    .loading-progress-container {
        width: 250px;
        max-width: 85%;
    }

    .loading-status {
        font-size: 0.8rem;
    }

    .status-dot {
        width: 6px;
        height: 6px;
        margin-right: 6px;
    }

    .cube-container {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }

    .cube-face {
        width: 60px;
        height: 60px;
    }

    .cube-face-front {
        transform: translateZ(30px);
    }

    .cube-face-back {
        transform: rotateY(180deg) translateZ(30px);
    }

    .cube-face-right {
        transform: rotateY(90deg) translateZ(30px);
    }

    .cube-face-left {
        transform: rotateY(-90deg) translateZ(30px);
    }

    .cube-face-top {
        transform: rotateX(90deg) translateZ(30px);
    }

    .cube-face-bottom {
        transform: rotateX(-90deg) translateZ(30px);
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .loading-logo {
        width: 60px;
        height: 60px;
    }

    .loading-title {
        font-size: 1.5rem;
        letter-spacing: 1.5px;
    }

    .loading-subtitle {
        font-size: 0.75rem;
        letter-spacing: 1px;
    }

    .loading-progress-container {
        width: 200px;
        max-width: 90%;
    }

    .loading-status {
        font-size: 0.75rem;
    }

    .cube-container {
        width: 50px;
        height: 50px;
    }

    .cube-face {
        width: 50px;
        height: 50px;
    }

    .cube-face-front {
        transform: translateZ(25px);
    }

    .cube-face-back {
        transform: rotateY(180deg) translateZ(25px);
    }

    .cube-face-right {
        transform: rotateY(90deg) translateZ(25px);
    }

    .cube-face-left {
        transform: rotateY(-90deg) translateZ(25px);
    }

    .cube-face-top {
        transform: rotateX(90deg) translateZ(25px);
    }

    .cube-face-bottom {
        transform: rotateX(-90deg) translateZ(25px);
    }
}