/* Monster Service - Component Styles */

:root {
    /* Monster Purple Palette */
    --monster-primary: #6B46C1;      /* Deep Purple */
    --monster-secondary: #8B5CF6;   /* Light Purple */
    --monster-accent: #A855F7;      /* Bright Purple */
    --monster-dark: #1E1B4B;       /* Dark Purple */
    --monster-darker: #0F0B2B;     /* Very Dark Purple */
    
    /* Supporting Colors */
    --monster-gold: #F59E0B;        /* Gold for accents */
    --monster-red: #EF4444;         /* Red for danger */
    --monster-green: #10B981;       /* Green for success */
    --monster-blue: #3B82F6;        /* Blue for info */
    
    /* Neutral Colors */
    --monster-white: #FFFFFF;
    --monster-gray-50: #F9FAFB;
    --monster-gray-100: #F3F4F6;
    --monster-gray-200: #E5E7EB;
    --monster-gray-300: #D1D5DB;
    --monster-gray-400: #9CA3AF;
    --monster-gray-500: #6B7280;
    --monster-gray-600: #4B5563;
    --monster-gray-700: #374151;
    --monster-gray-800: #1F2937;
    --monster-gray-900: #111827;
    --monster-black: #000000;
    
    /* Typography */
    --font-primary: 'Chakra Petch', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-display: 'Chakra Petch', monospace;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Monster Glow Effects - Disabled */
}


/* Header Styles */
.monster-header {
    background: linear-gradient(135deg, var(--monster-dark) 0%, var(--monster-darker) 100%);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 10000;
    border-bottom: 2px solid var(--monster-primary);
    width: 100%;
    backdrop-filter: blur(20px);
    overflow: visible;
}

.monster-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.1), transparent);
    animation: shimmer 3s infinite; */
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-md) 0;
    gap: 0;
    width: 100%;
    flex-wrap: nowrap;
    position: relative;
    z-index: 10001;
    max-width: 100%;
    margin: 0;
    min-height: 70px;
}

/* Logo */
.logo-section {
    flex-shrink: 0;
    margin-left: var(--spacing-lg);
}

.logo-section .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--monster-white);
    text-decoration: none;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.logo-section .logo:hover {
    transform: scale(1.05);
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(168, 85, 247, 0.5));
}

.logo-section .logo:hover .logo-img {
    filter: drop-shadow(0 0 15px rgba(168, 85, 247, 0.8));
    transform: rotate(5deg);
}

.logo-text {
    color: #FFFFFF;
    text-shadow: 0 0 10px rgba(255,255,255,0.3);
    transition: all 0.3s ease;
}

.logo-section .logo:hover .logo-text {
    text-shadow: 0 0 15px rgba(255,255,255,0.5);
    color: #A855F7;
}

.logo-subtitle {
    color: #8B5CF6;
    font-size: 0.875rem;
    font-weight: 400;
    transition: all 0.3s ease;
}

.logo-section .logo:hover .logo-subtitle {
    color: #A855F7;
    text-shadow: 0 0 10px rgba(168, 85, 247, 0.5);
}

/* Navigation */
.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    max-width: 600px;
    min-width: 300px;
    margin: 0 auto;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 4px;
    margin: 0;
    padding: 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    padding: 6px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: nowrap;
    width: 100%;
    justify-content: center;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    color: #D1D5DB;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    font-weight: 500;
    font-size: 0.85rem;
    white-space: nowrap;
    flex-shrink: 0;
    min-width: fit-content;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(107, 70, 193, 0.1) 100%);
    border-radius: 25px;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.nav-link::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -2;
}

.nav-link:hover::before {
    opacity: 1;
}

.nav-link:hover::after {
    width: 100px;
    height: 100px;
}

.nav-link:hover,
.nav-link.active {
    color: #FFFFFF;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2) 0%, rgba(107, 70, 193, 0.2) 100%);
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.3), 0 0 0 1px rgba(168, 85, 247, 0.2);
    transform: translateY(-1px);
}

.nav-link.active {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.3) 0%, rgba(107, 70, 193, 0.3) 100%);
    box-shadow: 0 6px 20px rgba(168, 85, 247, 0.4), 0 0 0 1px rgba(168, 85, 247, 0.3);
}

.nav-link i {
    font-size: 0.875rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-right: 2px;
}

.nav-link:hover i {
    transform: scale(1.1);
    color: #A855F7;
}

.nav-link.active i {
    color: #A855F7;
    text-shadow: 0 0 10px rgba(168, 85, 247, 0.5);
}

/* User Actions */
.user-actions {
    display: flex !important;
    align-items: center !important;
    gap: var(--spacing-sm) !important;
    flex-shrink: 0 !important;
    min-width: fit-content !important;
    margin-right: var(--spacing-lg) !important;
    position: relative;
    z-index: 10002;
}

.user-actions * {
    font-family: var(--font-primary);
    line-height: 1.2;
}


.action-buttons {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    flex-shrink: 0;
    min-width: fit-content;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-size: 0.8rem;
    font-family: var(--font-primary);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    cursor: pointer;
    flex-shrink: 0;
    min-width: fit-content;
}

.action-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.action-btn:hover::before {
    left: 100%;
}

.action-btn:hover {
    background: #6B46C1;
    border-color: #6B46C1;
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(107, 70, 193, 0.3);
}

.cart-btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 4px;
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #EF4444;
    color: #FFFFFF;
    border-radius: 50px;
    padding: 2px 6px;
    font-size: 0.7rem;
    font-weight: 600;
    min-width: 16px;
    height: 16px;
    text-align: center;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* User Dropdown */
.user-dropdown {
    position: relative;
    z-index: 10003;
}

.user-btn .fa-chevron-down {
    font-size: 0.8rem;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.user-dropdown.active .user-btn .fa-chevron-down {
    transform: rotate(180deg);
    color: var(--monster-accent);
}

.user-dropdown.active .user-btn {
    background: linear-gradient(135deg, var(--monster-accent) 0%, var(--monster-secondary) 100%);
    box-shadow: 0 8px 25px rgba(168, 85, 247, 0.3);
    transform: translateY(-2px);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 10004;
    margin-top: 0;
    overflow: hidden;
}

.user-dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    color: var(--monster-gray-700);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(107, 70, 193, 0.1), transparent);
    transition: left 0.5s ease;
}

.dropdown-item:hover::before {
    left: 100%;
}

.dropdown-item:hover {
    background: linear-gradient(135deg, rgba(107, 70, 193, 0.08) 0%, rgba(139, 92, 246, 0.05) 100%);
    color: var(--monster-primary);
    transform: translateX(4px);
    box-shadow: inset 0 0 0 1px rgba(107, 70, 193, 0.1);
}

.dropdown-item.logout-item:hover {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(220, 38, 38, 0.05) 100%);
    color: var(--monster-red);
    box-shadow: inset 0 0 0 1px rgba(239, 68, 68, 0.2);
}

/* Make logout button look like other buttons */
.dropdown-item.logout-item {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    padding: 16px 20px;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--monster-gray-700);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.dropdown-item.logout-item:last-child {
    border-bottom: none;
}

.dropdown-item i {
    width: 18px;
    text-align: center;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.dropdown-item:hover i {
    transform: scale(1.1);
}

.dropdown-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1), transparent);
    margin: 8px 0;
    position: relative;
}

.dropdown-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    right: 20px;
    height: 1px;
    background: rgba(0, 0, 0, 0.05);
}

/* Ensure dropdown positioning */
.user-dropdown .dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
}

/* Dropdown Animation Effects */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 20px;
    width: 16px;
    height: 16px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: none;
    border-right: none;
    transform: rotate(45deg);
    backdrop-filter: blur(20px);
}

/* Staggered Animation for Dropdown Items */
/* Animation delays disabled - no more sliding effects */

/* Dropdown Item Entrance Animation - Disabled */
.user-dropdown.active .dropdown-item {
    /* animation: slideInFromRight 0.4s ease-out forwards; */
    opacity: 1;
    transform: translateX(0);
}

/* Keyframes slideInFromRight - Disabled */

/* Responsive Dropdown */
@media (max-width: 768px) {
    .dropdown-menu {
        min-width: 200px;
        right: -10px;
    }
    
    .dropdown-item {
        padding: 14px 18px;
        font-size: 0.9rem;
    }
    
    .dropdown-menu::before {
        right: 30px;
    }
}

@media (max-width: 480px) {
    .dropdown-menu {
        min-width: 180px;
        right: -20px;
    }
    
    .dropdown-item {
        padding: 12px 16px;
        font-size: 0.85rem;
    }
    
    .dropdown-item i {
        width: 16px;
        font-size: 0.9rem;
    }
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    cursor: pointer;
    padding: 8px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(168, 85, 247, 0.2);
    border-color: rgba(168, 85, 247, 0.3);
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #FFFFFF;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-nav {
    display: none;
    background: linear-gradient(135deg, rgba(30, 27, 75, 0.95) 0%, rgba(15, 11, 43, 0.95) 100%);
    border-top: 1px solid rgba(168, 85, 247, 0.2);
    backdrop-filter: blur(20px);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.mobile-nav.active {
    display: block;
    /* animation: slideDown 0.3s cubic-bezier(0.4, 0, 0.2, 1); */
}

/* @keyframes slideDown - Disabled */

.mobile-nav-list {
    list-style: none;
    padding: var(--spacing-lg);
    margin: 0;
}

.mobile-nav-list li {
    margin-bottom: var(--spacing-sm);
}

.mobile-nav-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    color: #D1D5DB;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.mobile-nav-list a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.1), transparent);
    transition: left 0.5s;
}

.mobile-nav-list a:hover::before {
    left: 100%;
}

.mobile-nav-list a:hover {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2) 0%, rgba(107, 70, 193, 0.2) 100%);
    color: #FFFFFF;
    transform: translateX(8px);
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.2);
}

.mobile-nav-list a i {
    font-size: 1rem;
    color: #A855F7;
    transition: all 0.3s ease;
    margin-right: 4px;
}

.mobile-nav-list a:hover i {
    transform: scale(1.1);
    color: #A855F7;
}

@media (max-width: 1200px) {
    .header-content {
        padding: var(--spacing-md) var(--spacing-lg);
    }
    
    .logo-section {
        margin-left: 0;
    }
    
    .user-actions {
        margin-right: 0;
    }
    
    .main-nav {
        margin: 0 var(--spacing-sm);
        max-width: 500px;
    }
}

@media (max-width: 1024px) {
    .header-content {
        gap: var(--spacing-sm);
        padding: var(--spacing-sm) var(--spacing-md);
    }
    
    .logo-section {
        margin-left: 0;
    }
    
    .user-actions {
        margin-right: 0;
    }
    
    .main-nav {
        max-width: 400px;
        margin: 0 var(--spacing-xs);
    }
    
    .nav-link {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
    
    .action-btn {
        padding: 6px 10px;
        font-size: 0.75rem;
    }
    
    .action-btn span {
        font-size: 0.75rem;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .action-buttons {
        gap: var(--spacing-xs);
    }
    
    .action-btn span {
        display: none;
    }
    
    .action-btn {
        padding: 6px 8px;
        gap: 4px;
    }
    
    .logo-section {
        margin-left: 0;
    }
    
    .logo-section .logo {
        gap: 8px;
        font-size: 1.25rem;
    }
    
    .logo-img {
        width: 32px;
        height: 32px;
    }
    
    .user-actions {
        margin-right: 0;
    }
    
    .header-content {
        padding: var(--spacing-sm) var(--spacing-md);
        gap: var(--spacing-md);
    }
}

/* Hero Section */
.monster-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1E1B4B 0%, #0F0B2B 100%);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
    width: 100%;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    align-items: center;
    min-height: 70vh;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
    width: 100%;
    min-height: 70vh;
}

.hero-text {
    text-align: left;
    color: #FFFFFF;
    max-width: 600px;
}

.hero-welcome {
    font-size: 0.875rem;
    font-weight: 600;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--spacing-md);
    opacity: 0.9;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: var(--spacing-lg);
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
}

.title-line {
    display: block;
    color: #FFFFFF;
}

.title-highlight {
    position: relative;
    color: #FFFFFF;
}

.title-highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70%;
    height: 3px;
    background: linear-gradient(90deg, #F59E0B 0%, #FBBF24 100%);
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: #D1D5DB;
    margin-bottom: var(--spacing-xl);
    max-width: 500px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.hero-cta {
    background: linear-gradient(135deg, #F59E0B 0%, #FBBF24 100%);
    color: #FFFFFF;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
    background: linear-gradient(135deg, #FBBF24 0%, #F59E0B 100%);
}

/* Hero Characters - Replace with Image */
.hero-image-container {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    filter: drop-shadow(0 0 20px rgba(168, 85, 247, 0.3));
    transition: all 0.3s ease;
}

.hero-image:hover {
    transform: scale(1.02);
    filter: drop-shadow(0 0 30px rgba(168, 85, 247, 0.5));
}

@media (max-width: 1024px) {
    .hero-image-container {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .hero-image-container {
        height: 250px;
    }
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.scroll-indicator {
    position: absolute;
    bottom: var(--spacing-xl);
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-arrow {
    color: var(--monster-white);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@media (max-width: 1024px) {
    .hero-layout {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
        text-align: center;
    }
    
    .hero-text {
        text-align: center;
        max-width: 100%;
    }
    
    .hero-characters {
        height: 300px;
    }
    
    .character {
        width: 120px;
        height: 180px;
    }
    
    .character-center {
        width: 140px;
        height: 200px;
    }
    
    .character-left,
    .character-right {
        width: 100px;
        height: 150px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-welcome {
        font-size: 0.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-cta {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .hero-characters {
        height: 250px;
    }
    
    .character {
        width: 80px;
        height: 120px;
    }
    
    .character-center {
        width: 100px;
        height: 140px;
    }
    
    .character-left,
    .character-right {
        width: 70px;
        height: 100px;
    }
    
    .character-glow-green,
    .character-glow-purple {
        width: 60px;
        height: 60px;
        /* Glow effects disabled */
    }
}

/* Product Cards */
.product-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 320px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    backdrop-filter: blur(10px);
    position: relative;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.product-card.featured {
    border-color: var(--monster-accent);
    /* Glow effects disabled */
}

.product-image {
    height: 180px;
    background: linear-gradient(135deg, rgba(139, 69, 255, 0.2) 0%, rgba(79, 70, 229, 0.15) 50%, rgba(59, 130, 246, 0.1) 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.product-image img {
    width: 100%;
    height: 100%;
    max-width: 150px;
    max-height: 150px;
    object-fit: contain;
    object-position: center;
    display: block;
    filter: brightness(1.1) contrast(1.1);
    transition: transform 0.3s ease;
    margin: 0 auto;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ffa726 100%);
    color: #fff;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 2;
}

.product-badge.discount {
    background: linear-gradient(135deg, #ff6b6b 0%, #ffa726 100%);
    color: #fff;
}

.product-badge.featured {
    background: linear-gradient(135deg, #ff6b6b 0%, #ffa726 100%);
    color: #fff;
}

/* Category Badge (left corner) */
.category-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-shadow: 0 1px 2px rgba(0,0,0,0.4);
    z-index: 2;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-actions {
    display: flex;
    gap: var(--spacing-sm);
}

.action-btn {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    border: none;
    background: var(--monster-primary);
    color: var(--monster-white);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.action-btn:hover {
    background: var(--monster-accent);
    transform: scale(1.1);
}

.product-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.02);
}

.product-category {
    color: var(--monster-gray-500);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--spacing-xs);
}

.product-title {
    margin-bottom: var(--spacing-sm);
}

.product-title a {
    font-weight: 700;
    margin: 0 0 12px 0;
    color: #fff;
    font-size: 18px;
    line-height: 1.3;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    text-decoration: none;
}

.product-title a:hover {
    color: var(--monster-primary);
}

.product-description {
    color: var(--monster-gray-600);
    font-size: 0.875rem;
    margin-bottom: var(--spacing-md);
    line-height: 1.5;
}

.product-variants {
    margin-bottom: var(--spacing-md);
}

.variant-select {
    width: 100%;
    padding: var(--spacing-sm);
    border: 1px solid var(--monster-gray-300);
    border-radius: var(--radius-md);
    background: var(--monster-white);
    color: var(--monster-gray-700);
    font-size: 0.875rem;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-md);
}

.product-price {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 12px;
}

.price-current,
.price-sale {
    color: #ffd700;
    font-weight: 800;
    font-size: 22px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.price-original {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: line-through;
    font-size: 16px;
    font-weight: 500;
}

/* Footer - Remove all white space */
.monster-footer {
    background: linear-gradient(135deg, #1E1B4B 0%, #0F0B2B 100%);
    color: #D1D5DB;
    margin-top: 0;
    border-top: 2px solid #6B46C1;
    width: 100%;
    position: relative;
    z-index: 10;
}

/* Remove all margins and padding from sections */
.featured-products,
.categories-section,
.features-section {
    margin-bottom: 0;
    padding-bottom: 0;
}

/* Remove margin from products grid */
.products-grid {
    margin-bottom: 0;
}

/* Remove margin from section headers */
.section-header {
    margin-bottom: var(--spacing-2xl);
    width: 100%;
}

/* Remove margin from all categories */
.all-categories {
    margin-top: var(--spacing-2xl);
    padding-top: var(--spacing-2xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

/* Remove margin from section actions */
.section-actions {
    text-align: center;
    margin-top: var(--spacing-2xl);
    position: relative;
    z-index: 2;
}

/* Ensure no white space between any elements */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
}

/* Remove any potential white space from main content */
.site-main {
    margin-bottom: 0;
    padding-bottom: 0;
}

/* Ensure sections connect seamlessly */
.featured-products {
    padding: var(--spacing-3xl) 0 0 0;
}

.categories-section {
    padding: var(--spacing-3xl) 0 0 0;
}

.features-section {
    padding: var(--spacing-3xl) 0 0 0;
}

/* Footer content */
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    padding: var(--spacing-2xl) 0;
}

.footer-section h4 {
    color: #FFFFFF;
    margin-bottom: var(--spacing-lg);
    font-size: 1.125rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.5rem;
}

.footer-logo i {
    color: #A855F7;
    font-size: 1.75rem;
}

.footer-description {
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: var(--spacing-md);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    color: var(--monster-gray-300);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--monster-primary);
    color: var(--monster-white);
    transform: translateY(-2px);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: var(--spacing-sm);
}

.footer-links a {
    color: var(--monster-gray-400);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--monster-white);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--monster-gray-400);
}

.contact-item i {
    color: var(--monster-accent);
    width: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--spacing-lg) 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.copyright {
    color: var(--monster-gray-500);
    font-size: 0.875rem;
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.payment-label {
    color: var(--monster-gray-500);
    font-size: 0.875rem;
}

.payment-icons {
    display: flex;
    gap: var(--spacing-sm);
}

.payment-icons i {
    color: var(--monster-gray-500);
    font-size: 1.25rem;
    transition: color 0.3s ease;
}

.payment-icons i:hover {
    color: var(--monster-accent);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: var(--spacing-xl);
    right: var(--spacing-xl);
    width: 50px;
    height: 50px;
    background: var(--monster-primary);
    color: var(--monster-white);
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--monster-accent);
    transform: translateY(-2px);
    /* Glow effects disabled */
}

/* Responsive */
@media (max-width: 768px) {
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .back-to-top {
        bottom: var(--spacing-md);
        right: var(--spacing-md);
        width: 45px;
        height: 45px;
    }
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
    width: 100%;
}

.section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    color: #1E1B4B;
    margin-bottom: var(--spacing-md);
}

.section-title i {
    color: #A855F7;
    font-size: 1.5rem;
}

.section-subtitle {
    color: #4B5563;
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

.section-actions {
    text-align: center;
    margin-top: var(--spacing-2xl);
}

/* Featured Products */
.featured-products {
    padding: var(--spacing-3xl) 0;
    background: #FFFFFF;
    width: 100%;
}

.products-grid {
    margin-bottom: var(--spacing-2xl);
    width: 100%;
}

/* Features Section - Monster Style */
.features-section {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(135deg, #1E1B4B 0%, #0F0B2B 100%);
    width: 100%;
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.1), transparent);
    animation: shimmer 10s infinite; */
}

.features-grid {
    margin-top: var(--spacing-2xl);
    width: 100%;
    position: relative;
    z-index: 2;
}

.feature-card {
    text-align: center;
    padding: var(--spacing-xl);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--feature-color);
    background: rgba(255, 255, 255, 0.08);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-lg);
    background: transparent;
    border: 2px solid #FFFFFF;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, var(--feature-color) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover .feature-icon::before {
    width: 100px;
    height: 100px;
}

.feature-icon i {
    color: #FFFFFF;
    font-size: 2rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    border-color: var(--feature-color);
    box-shadow: 0 0 20px var(--feature-color);
}

.feature-card:hover .feature-icon i {
    color: var(--feature-color);
}

.feature-title {
    color: #FFFFFF;
    margin-bottom: var(--spacing-md);
    font-size: 1.5rem;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-title {
    color: var(--feature-color);
    text-shadow: 0 0 15px var(--feature-color);
}

.feature-description {
    color: #D1D5DB;
    line-height: 1.6;
    font-size: 0.875rem;
    margin: 0;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-description {
    color: #FFFFFF;
    opacity: 1;
}

/* Responsive */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
    }
}

@media (max-width: 768px) {
    .features-section {
        padding: var(--spacing-2xl) 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .feature-card {
        padding: var(--spacing-lg);
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon i {
        font-size: 1.5rem;
    }
    
    .feature-title {
        font-size: 1.25rem;
    }
    
    .feature-description {
        font-size: 0.8rem;
    }
}

/* Categories Section - Updated to match Hero style */
.categories-section {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(135deg, #1E1B4B 0%, #0F0B2B 100%);
    width: 100%;
    position: relative;
    overflow: hidden;
}

.categories-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.1), transparent);
    animation: shimmer 10s infinite; */
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
    width: 100%;
    position: relative;
    z-index: 2;
}

.section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    color: #FFFFFF;
    margin-bottom: var(--spacing-md);
    font-size: 2.5rem;
    font-weight: 900;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.section-title i {
    color: #A855F7;
    font-size: 2rem;
    text-shadow: 0 0 15px rgba(168, 85, 247, 0.5);
}

.section-subtitle {
    color: #D1D5DB;
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Categories Grid - Monster Style */
.categories-grid {
    margin-top: var(--spacing-2xl);
    width: 100%;
    position: relative;
    z-index: 2;
}

.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--spacing-xl);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.category-card:hover::before {
    left: 100%;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--category-color);
    background: rgba(255, 255, 255, 0.08);
}

.category-icon {
    width: 80px;
    height: 80px;
    margin-bottom: var(--spacing-lg);
    background: linear-gradient(135deg, var(--category-color) 0%, var(--category-color) 100%);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px var(--category-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.category-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card:hover .category-icon::before {
    width: 100px;
    height: 100px;
}

.category-icon i {
    color: #FFFFFF;
    font-size: 2rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.category-card:hover .category-icon {
    transform: scale(1.1);
    box-shadow: 0 0 30px var(--category-color);
}

.category-card h3 {
    color: #FFFFFF;
    margin-bottom: var(--spacing-md);
    font-size: 1.5rem;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.category-card p {
    color: #D1D5DB;
    font-size: 0.875rem;
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
}

.category-meta {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: #FFFFFF;
    font-size: 0.875rem;
    font-weight: 500;
}

.product-count {
    background: var(--category-color);
    color: #FFFFFF;
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.category-meta i {
    color: var(--category-color);
    transition: transform 0.3s ease;
}

.category-card:hover .category-meta i {
    transform: translateX(4px);
}

/* All Categories - Monster Style */
.all-categories {
    margin-top: var(--spacing-2xl);
    padding-top: var(--spacing-2xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.all-categories-title {
    color: #FFFFFF;
    margin-bottom: var(--spacing-lg);
    font-size: 1.5rem;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.categories-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.category-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: #FFFFFF;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.category-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--category-color);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.category-item:hover::before {
    transform: scaleY(1);
}

.category-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border-color: var(--category-color);
    background: rgba(255, 255, 255, 0.08);
}

.category-item-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--category-color) 0%, var(--category-color) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.category-item:hover .category-item-icon {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.category-item-icon i {
    color: #FFFFFF;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.category-item-content {
    flex: 1;
}

.category-item-content h4 {
    color: #FFFFFF;
    margin-bottom: var(--spacing-xs);
    font-size: 1.25rem;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.category-item-content p {
    color: #D1D5DB;
    font-size: 0.875rem;
    margin: 0;
    opacity: 0.9;
}

.category-item-meta {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: #FFFFFF;
    font-size: 0.875rem;
}

.category-item-meta .product-count {
    background: var(--category-color);
    color: #FFFFFF;
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.category-item-meta i {
    color: var(--category-color);
    transition: transform 0.3s ease;
}

.category-item:hover .category-item-meta i {
    transform: translateX(4px);
}

/* Section Actions - Monster Style */
.section-actions {
    text-align: center;
    margin-top: var(--spacing-2xl);
    position: relative;
    z-index: 2;
}

.section-actions .btn {
    background: linear-gradient(135deg, #6B46C1 0%, #8B5CF6 100%);
    color: #FFFFFF;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(107, 70, 193, 0.3);
    position: relative;
    overflow: hidden;
}

.section-actions .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.section-actions .btn:hover::before {
    left: 100%;
}

.section-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(107, 70, 193, 0.4);
    background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 100%);
}

/* Responsive */
@media (max-width: 1024px) {
    .section-title {
        font-size: 2rem;
    }
    
    .section-title i {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .categories-section {
        padding: var(--spacing-2xl) 0;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .categories-list {
        gap: var(--spacing-xs);
    }
    
    .category-item {
        padding: var(--spacing-md);
        gap: var(--spacing-sm);
    }
    
    .category-item-icon {
        width: 48px;
        height: 48px;
    }
    
    .category-item-icon i {
        font-size: 1.25rem;
    }
    
    .category-item-content h4 {
        font-size: 1.125rem;
    }
    
    .category-item-content p {
        font-size: 0.8rem;
    }
    
    .category-card {
        padding: var(--spacing-lg);
    }
    
    .category-icon {
        width: 60px;
        height: 60px;
    }
    
    .category-icon i {
        font-size: 1.5rem;
    }
    
    .category-card h3 {
        font-size: 1.25rem;
    }
}

/* Featured Products Section - Monster Style */
.featured-products {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(135deg, #1E1B4B 0%, #0F0B2B 100%);
    width: 100%;
    position: relative;
    overflow: hidden;
}

.featured-products::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.1), transparent);
    animation: shimmer 10s infinite; */
}

.products-grid {
    margin-bottom: var(--spacing-2xl);
    width: 100%;
    position: relative;
    z-index: 2;
}

.product-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--monster-primary);
}

.product-card.featured {
    border-color: var(--monster-accent);
    box-shadow: 0 4px 20px rgba(168, 85, 247, 0.2);
}

.product-image {
    height: 180px;
    background: linear-gradient(135deg, rgba(139, 69, 255, 0.2) 0%, rgba(79, 70, 229, 0.15) 50%, rgba(59, 130, 246, 0.1) 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.product-image img {
    width: 100%;
    height: 100%;
    max-width: 150px;
    max-height: 150px;
    object-fit: contain;
    object-position: center;
    display: block;
    filter: brightness(1.1) contrast(1.1);
    transition: transform 0.3s ease;
    margin: 0 auto;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ffa726 100%);
    color: #fff;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 2;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-actions {
    display: flex;
    gap: var(--spacing-sm);
}

.action-btn {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    border: none;
    background: var(--monster-primary);
    color: var(--monster-white);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.action-btn:hover {
    background: var(--monster-accent);
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.3);
}

.product-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.02);
}

.product-category {
    color: var(--monster-gray-400);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--spacing-xs);
}

.product-title {
    margin-bottom: var(--spacing-sm);
}

.product-title a {
    font-weight: 600;
    margin: 0 0 6px 0;
    color: var(--monster-white);
    font-size: 22px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-title a:hover {
    color: var(--monster-primary);
}

.product-description {
    color: #D1D5DB;
    font-size: 0.875rem;
    margin-bottom: var(--spacing-md);
    line-height: 1.5;
}

.product-variants {
    margin-bottom: var(--spacing-md);
}

.variant-select {
    width: 100%;
    padding: var(--spacing-sm);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    font-size: 0.875rem;
    backdrop-filter: blur(10px);
}

.variant-select:focus {
    outline: none;
    border-color: var(--monster-primary);
    box-shadow: 0 0 0 2px rgba(168, 85, 247, 0.2);
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-md);
}

.product-price {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 12px;
}

.price-current,
.price-sale {
    color: #ffd700;
    font-weight: 800;
    font-size: 22px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.price-original {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: line-through;
    font-size: 16px;
    font-weight: 500;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.875rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--monster-primary) 0%, var(--monster-secondary) 100%);
    color: var(--monster-white);
    box-shadow: 0 2px 8px rgba(107, 70, 193, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(107, 70, 193, 0.4);
    background: linear-gradient(135deg, var(--monster-secondary) 0%, var(--monster-accent) 100%);
}

.btn-sm {
    padding: var(--spacing-xs) var(--spacing-sm);
    font-size: 0.8rem;
}

.btn-large {
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: 1rem;
}

.section-actions {
    text-align: center;
    margin-top: var(--spacing-2xl);
    position: relative;
    z-index: 2;
}

/* Responsive */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
    }
}

@media (max-width: 768px) {
    .featured-products {
        padding: var(--spacing-2xl) 0;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .product-content {
        padding: var(--spacing-md);
    }
    
    .product-title a {
        font-size: 1rem;
    }
    
    .product-description {
        font-size: 0.8rem;
    }
    
    .btn {
        font-size: 0.8rem;
    }
}

/* Featured Products Layout - 2 Columns */
.featured-layout {
    display: grid;
    grid-template-columns: 70% 30%;
    gap: var(--spacing-2xl);
    margin-top: var(--spacing-2xl);
    position: relative;
    z-index: 2;
}

.featured-products-column {
    width: 100%;
}

.products-grid.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
}

/* Use same product card styles as shop page */
.featured-products-column .product-card {
    background: var(--monster-card-bg);
    border: 1px solid var(--monster-border);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.featured-products-column .product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Responsive design for featured products */
@media (max-width: 1200px) {
    .products-grid.grid-4 {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: var(--spacing-md);
    }
}

@media (max-width: 768px) {
    .products-grid.grid-4 {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: var(--spacing-sm);
    }
}

@media (max-width: 480px) {
    .products-grid.grid-4 {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
}

/* Buyers Column */
.buyers-column {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.buyers-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    padding: var(--spacing-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.buyers-title {
    color: #FFFFFF;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.buyers-title i {
    color: var(--monster-primary);
    font-size: 1.125rem;
}

.recent-buyers,
.top-buyers {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.buyer-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.buyer-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(4px);
    border-color: var(--monster-primary);
}

.buyer-rank {
    background: var(--monster-primary);
    color: #FFFFFF;
    width: 24px;
    height: 24px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.top-buyer[data-rank="1"] .buyer-rank {
    background: linear-gradient(135deg, #F59E0B 0%, #FBBF24 100%);
}

.top-buyer[data-rank="2"] .buyer-rank {
    background: linear-gradient(135deg, #6B7280 0%, #9CA3AF 100%);
}

.top-buyer[data-rank="3"] .buyer-rank {
    background: linear-gradient(135deg, #CD7F32 0%, #D4AF37 100%);
}

.buyer-avatar {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    overflow: hidden;
    flex-shrink: 0;
}

.buyer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.buyer-badge {
    position: absolute;
    bottom: -2px;
    right: -2px;
    background: var(--monster-primary);
    color: #FFFFFF;
    font-size: 0.6rem;
    font-weight: 600;
    padding: 2px 4px;
    border-radius: var(--radius-sm);
    border: 2px solid #1E1B4B;
}

.buyer-info {
    flex: 1;
    min-width: 0;
}

.buyer-name {
    color: #FFFFFF;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 2px;
}

.buyer-product,
.buyer-stats {
    color: #D1D5DB;
    font-size: 0.75rem;
    margin-bottom: 2px;
}

.buyer-time {
    color: var(--monster-gray-400);
    font-size: 0.7rem;
}

.buyer-amount {
    color: var(--monster-primary);
    font-weight: 700;
    font-size: 0.875rem;
    text-align: right;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 1200px) {
    .featured-layout {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .products-grid.grid-4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .products-grid.grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .featured-products {
        padding: var(--spacing-2xl) 0;
    }
    
    .products-grid.grid-4 {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .buyers-section {
        padding: var(--spacing-md);
    }
    
    .buyer-item {
        padding: var(--spacing-xs);
    }
    
    .buyer-avatar {
        width: 32px;
        height: 32px;
    }
    
    .buyer-name {
        font-size: 0.8rem;
    }
    
    .buyer-product,
    .buyer-stats {
        font-size: 0.7rem;
    }
    
    .buyer-amount {
        font-size: 0.8rem;
    }
}
