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

:root {
    /* Colors */
    --primary-color: #c084fc;
    --secondary-color: #a855f7;
    --accent-color: #ff6b6b;
    --text-dark: #2d3748;
    --text-light: #718096;
    --text-muted: #a0aec0;
    --border-color: rgba(255, 255, 255, 0.1);
    --bg-light: rgba(0, 0, 0, 0.3);
    --bg-white: rgba(0, 0, 0, 0.5);
    --success-color: #48bb78;
    --warning-color: #ed8936;
    --danger-color: #f56565;
    
    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 60px 0;
    --card-border-radius: 8px;
    --button-border-radius: 6px;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    
    /* 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);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(180deg, #0f0f0f 0%, #1a1a1a 50%, #000000 100%);
    background-attachment: fixed;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.05) 0%, transparent 50%);
    min-height: 100vh;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== ACCESSIBILITY ===== */
.skip-links {
    position: absolute;
    top: -100px;
    left: 0;
    z-index: 9999;
}

.skip-link {
    position: absolute;
    padding: 8px 16px;
    background: var(--text-dark);
    color: white;
    text-decoration: none;
    border-radius: var(--button-border-radius);
    font-weight: 600;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 20px;
}

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
    background: linear-gradient(135deg, #2a1f3d 70%, #ec4899 30%);
    color: white;
    padding: 12px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(42, 31, 61, 0.4);
    min-height: 48px;
}

.announcement-slider,
.announcement-content {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    height: 24px;
    overflow: hidden;
}

.announcement-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: var(--font-size-sm);
    font-weight: 600;
    position: absolute;
    width: 100%;
    justify-content: center;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.6s ease-in-out;
}

.announcement-item.active {
    opacity: 1;
    transform: translateX(0%);
}

.announcement-item.sliding-out {
    opacity: 0;
    transform: translateX(-100%);
}

.announcement-item.sliding-in {
    opacity: 1;
    transform: translateX(0%);
}

.announcement-item i {
    font-size: 16px;
}

/* ===== HEADER ===== */
.header {
    background: linear-gradient(180deg, #1a1a1a 0%, #2a1f3d 50%, #4c1d95 100%);
    border-bottom: none;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    gap: 20px;
}

.header-left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.header-center {
    flex: 1;
}

.logo {
    text-decoration: none !important;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo:hover {
    text-decoration: none !important;
}

.logo-img {
    height: 45px;
    width: auto;
}

.logo-text-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo h1 {
    font-size: var(--font-size-2xl);
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(120, 119, 198, 0.5);
}

.logo .tagline {
    font-size: var(--font-size-xs);
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    margin: 0;
    line-height: 1;
}

.header-right {
    display: flex;
    justify-content: flex-end;
}

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


.wishlist-btn,
.cart-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #ffffff;
    text-decoration: none;
    font-size: var(--font-size-sm);
    font-weight: 500;
    transition: all 0.2s;
}

.cart-btn {
    font-size: 1.4rem;
    padding: 8px 12px;
    border-radius: 8px;
    background: rgba(192, 132, 252, 0.1);
    border: 1px solid rgba(192, 132, 252, 0.2);
}

.wishlist-btn:hover,
.cart-btn:hover {
    color: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px) scale(1.05);
}

.cart-btn:hover {
    background: rgba(192, 132, 252, 0.2);
    border-color: rgba(192, 132, 252, 0.4);
    box-shadow: 0 4px 15px rgba(192, 132, 252, 0.3);
}

.wishlist-btn {
    position: relative;
}

.cart-btn {
    position: relative;
}

.cart-count,
.wishlist-count {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--primary-color);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 7px;
    border-radius: 50%;
    min-width: 20px;
    text-align: center;
    line-height: 1.2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.cart-btn .cart-count {
    font-size: 12px;
    padding: 4px 8px;
    min-width: 22px;
    top: -8px;
    right: -8px;
}

/* ===== NAVIGATION ===== */
.navigation {
    background: linear-gradient(180deg, #0f0f0f 0%, #1a1a1a 50%, #2a1f3d 100%);
    border-bottom: none;
    position: sticky;
    top: 65px;
    z-index: 99;
    backdrop-filter: blur(10px);
    padding: 0 40px;
    overflow: visible;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    position: relative;
    width: calc(100% - 40px);
    text-align: center;
    min-height: 60px;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 12px 0;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
    width: 100%;
    box-sizing: border-box;
}

.nav-item {
    position: relative;
    flex-shrink: 0;
}

.nav-link {
    display: inline-block;
    padding: 8px 12px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.75rem;
    letter-spacing: 0.3px;
    border-radius: 6px;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-transform: uppercase;
}

.nav-link:hover {
    color: #ffffff;
    background: rgba(192, 132, 252, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(192, 132, 252, 0.2);
}

/* Active navigation link */
.nav-link.active {
    color: #c084fc;
    background: rgba(192, 132, 252, 0.2);
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(192, 132, 252, 0.3);
}

/* Dropdown menu styles */
.has-dropdown {
    position: relative;
}

.dropdown-trigger i {
    font-size: 0.7em;
    margin-left: 4px;
    transition: transform 0.2s ease;
}

.has-dropdown:hover .dropdown-trigger i {
    transform: rotate(180deg);
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(42, 31, 61, 0.95));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(192, 132, 252, 0.2);
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    padding: 16px;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 8px;
}

.has-dropdown:hover .dropdown-menu {
    transform: translateX(-50%) translateY(0);
}

.dropdown-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.dropdown-column li {
    margin-bottom: 0;
}

.dropdown-column a {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 10px 12px;
    border-radius: 8px;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.dropdown-column a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(192, 132, 252, 0.2) 50%, 
        transparent 100%);
    transition: left 0.3s ease;
}

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

.dropdown-column a:hover {
    color: #ffffff;
    background: rgba(192, 132, 252, 0.15);
    transform: translateX(4px);
}

/* ===== HAMBURGER MENU ===== */
.hamburger-menu-btn {
    display: none; /* Will be overridden by mobile CSS */
    background: rgba(192, 132, 252, 0.8);
    border: 2px solid #c084fc;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    padding: 12px;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    z-index: 1001;
}

.hamburger-menu-btn:hover {
    background: rgba(192, 132, 252, 1);
    transform: scale(1.05);
}

.hamburger-line {
    width: 26px;
    height: 3px;
    background: linear-gradient(135deg, #c084fc, #a855f7);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-origin: center;
}

/* Hamburger animation when menu is open */
.hamburger-menu-btn.active .hamburger-line:first-child {
    transform: translateY(7px) rotate(45deg);
}

.hamburger-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger-menu-btn.active .hamburger-line:last-child {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Navigation Menu */
.nav-menu.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, 
        rgba(42, 31, 61, 0.95) 0%, 
        rgba(26, 26, 26, 0.95) 50%, 
        rgba(15, 15, 15, 0.95) 100%);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 100px 0 60px 0;
    animation: slideInFromRight 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: inset 0 0 100px rgba(192, 132, 252, 0.1);
    overflow-y: auto;
    overflow-x: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.nav-menu.mobile-open::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(192, 132, 252, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(168, 85, 247, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.nav-menu.mobile-open .nav-item {
    margin: 0;
    opacity: 0;
    transform: translateX(50px);
    animation: slideInItem 0.3s ease forwards;
}

.nav-menu.mobile-open .nav-item:nth-child(1) { animation-delay: 0.1s; }
.nav-menu.mobile-open .nav-item:nth-child(2) { animation-delay: 0.15s; }
.nav-menu.mobile-open .nav-item:nth-child(3) { animation-delay: 0.2s; }
.nav-menu.mobile-open .nav-item:nth-child(4) { animation-delay: 0.25s; }
.nav-menu.mobile-open .nav-item:nth-child(5) { animation-delay: 0.3s; }
.nav-menu.mobile-open .nav-item:nth-child(6) { animation-delay: 0.35s; }
.nav-menu.mobile-open .nav-item:nth-child(7) { animation-delay: 0.4s; }
.nav-menu.mobile-open .nav-item:nth-child(8) { animation-delay: 0.45s; }
.nav-menu.mobile-open .nav-item:nth-child(9) { animation-delay: 0.5s; }
.nav-menu.mobile-open .nav-item:nth-child(10) { animation-delay: 0.55s; }
.nav-menu.mobile-open .nav-item:nth-child(11) { animation-delay: 0.6s; }
.nav-menu.mobile-open .nav-item:nth-child(12) { animation-delay: 0.65s; }
.nav-menu.mobile-open .nav-item:nth-child(13) { animation-delay: 0.7s; }

.nav-menu.mobile-open .nav-link {
    display: block;
    padding: 14px 25px;
    margin: 4px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-menu.mobile-open .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(192, 132, 252, 0.2) 50%, 
        transparent 100%);
    transition: left 0.5s ease;
}

.nav-menu.mobile-open .nav-link:hover::before {
    left: 100%;
}

.nav-menu.mobile-open .nav-link:hover {
    background: rgba(192, 132, 252, 0.15);
    border-color: rgba(192, 132, 252, 0.3);
    transform: translateY(-2px) scale(1.02);
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(192, 132, 252, 0.2);
}

.nav-menu.mobile-open .nav-link.active {
    background: linear-gradient(135deg, rgba(192, 132, 252, 0.2), rgba(168, 85, 247, 0.2));
    border-color: rgba(192, 132, 252, 0.4);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(192, 132, 252, 0.3);
}

/* Keyframe animations */
@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInItem {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Prevent scrolling when mobile menu is open */
body.menu-open {
    overflow: hidden !important;
    height: 100vh;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    gap: 4px;
    padding: 10px;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: all 0.3s;
}

/* ===== MAIN CONTENT ===== */
.main-content {
    background: transparent;
    min-height: calc(100vh - 400px);
}

.page-header {
    background: transparent;
    padding: 60px 0;
    text-align: center;
    border-bottom: none;
}

.page-header h1 {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.page-header p {
    font-size: var(--font-size-lg);
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== FILTERS BAR ===== */
.filters-bar {
    background: rgba(0, 0, 0, 0.8);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    position: sticky;
    top: 152px;
    z-index: 90;
}

.filters-bar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.filters-left {
    display: flex;
    gap: 12px;
}

.filter-btn {
    background: none;
    border: 1px solid var(--border-color);
    color: var(--text-light);
    padding: 8px 16px;
    border-radius: var(--button-border-radius);
    font-size: var(--font-size-sm);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.filters-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.sort-select select {
    border: 1px solid var(--border-color);
    padding: 8px 12px;
    border-radius: var(--button-border-radius);
    font-size: var(--font-size-sm);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    cursor: pointer;
}

.view-toggle {
    display: flex;
    border: 1px solid var(--border-color);
    border-radius: var(--button-border-radius);
    overflow: hidden;
}

.view-btn {
    background: rgba(0, 0, 0, 0.8);
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    color: white;
    transition: all 0.2s;
}

.view-btn.active {
    background: var(--primary-color);
    color: white;
}

/* ===== PRODUCT SECTIONS ===== */
.product-section {
    padding: var(--section-padding);
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--text-dark);
}

.view-all-btn {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: var(--font-size-sm);
    padding: 8px 16px;
    border: 1px solid var(--primary-color);
    border-radius: var(--button-border-radius);
    transition: all 0.2s;
}

.view-all-btn:hover {
    background: var(--primary-color);
    color: white;
}

/* ===== PRODUCT GRID ===== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.product-card {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--card-border-radius);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.product-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 8px;
    border-radius: var(--button-border-radius);
    font-size: var(--font-size-xs);
    font-weight: 600;
    text-transform: uppercase;
    z-index: 10;
}


.product-badge.pre-order {
    background: var(--primary-color);
    color: white;
}

.product-badge.sale {
    background: var(--accent-color);
    color: white;
}


.product-info {
    padding: 20px;
}

.product-title {
    font-size: var(--font-size-base);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

.current-price {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--primary-color);
}

.original-price {
    font-size: var(--font-size-base);
    color: var(--text-muted);
    text-decoration: line-through;
}


.release-date {
    font-size: var(--font-size-sm);
    color: var(--text-light);
    margin-bottom: 16px;
    font-style: italic;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.qty-btn {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    color: var(--text-dark);
    width: 32px;
    height: 32px;
    border-radius: var(--button-border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    font-weight: 600;
}

.qty-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.qty-input {
    width: 60px;
    height: 32px;
    text-align: center;
    border: 1px solid var(--border-color);
    border-radius: var(--button-border-radius);
    font-size: var(--font-size-sm);
}

.add-to-cart-btn {
    width: 100%;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 16px;
    border-radius: var(--button-border-radius);
    font-size: var(--font-size-sm);
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.add-to-cart-btn:hover:not(:disabled) {
    background: var(--secondary-color);
}

.add-to-cart-btn:disabled {
    background: var(--text-muted);
    cursor: not-allowed;
}

/* ===== NEWSLETTER SECTION ===== */
.newsletter-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: var(--section-padding);
    text-align: center;
}

.newsletter-section h2 {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    margin-bottom: 16px;
}

.newsletter-section p {
    font-size: var(--font-size-lg);
    margin-bottom: 32px;
    opacity: 0.9;
}

.newsletter-form {
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    gap: 12px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: var(--button-border-radius);
    font-size: var(--font-size-base);
}

.newsletter-form button {
    background: white;
    color: var(--primary-color);
    border: none;
    padding: 12px 24px;
    border-radius: var(--button-border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.newsletter-form button:hover {
    background: var(--bg-light);
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
    color: #ffffff;
    padding: 40px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 8px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-section a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.2s;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 20px 25px 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* ===== COOKIE NOTICE ===== */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: white;
    padding: 20px;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-notice.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: var(--container-max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    font-size: var(--font-size-sm);
}

.cookie-content a {
    color: var(--primary-color);
}

.cookie-actions {
    display: flex;
    gap: 12px;
}

.cookie-btn {
    padding: 8px 16px;
    border-radius: var(--button-border-radius);
    font-size: var(--font-size-sm);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.cookie-btn.decline {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.cookie-btn.accept {
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: white;
}

.cookie-btn:hover {
    transform: translateY(-1px);
}

/* ===== RESPONSIVE DESIGN ===== */
/* Desktop navigation - optimized for 7 items */
@media (min-width: 1025px) {
    .hamburger-menu-btn {
        display: none !important;
    }
    
    .nav-container {
        padding: 16px 0;
    }
    
    .nav-menu {
        gap: 12px;
        display: flex !important;
    }
    
    .nav-link {
        padding: 10px 16px;
        font-size: 0.8rem;
        letter-spacing: 0.5px;
        border-radius: 8px;
    }
}

/* Large screens - more generous spacing */
@media (min-width: 1400px) {
    .nav-menu {
        gap: 16px;
    }
    
    .nav-link {
        padding: 12px 20px;
        font-size: 0.85rem;
        letter-spacing: 0.6px;
    }
    
    .nav-cards-grid {
        max-width: 98%;
        gap: 30px;
        padding: 0 20px;
    }
}

/* Tablet navigation */
@media (min-width: 769px) and (max-width: 1024px) {
    .hamburger-menu-btn {
        display: flex !important; /* Show hamburger on tablet too */
    }
    
    .nav-menu:not(.mobile-open) {
        display: none !important; /* Hide desktop menu on tablet, use mobile menu */
    }
    
    .nav-link {
        padding: 8px 12px;
        font-size: 0.7rem;
    }
    
    .nav-cards-grid {
        max-width: 97%;
        gap: 18px;
        padding: 0 12px;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .header-left {
        justify-content: center;
    }
    
    .header-right {
        justify-content: center;
    }
    
    .header-actions {
        gap: 15px;
    }
    
    .hamburger-menu-btn {
        display: flex;
        position: static;
        transform: none;
    }
    
    .hamburger-menu-btn:hover {
        transform: scale(1.05);
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-menu.mobile-open {
        display: flex;
    }
    
    /* Mobile dropdown handling */
    .nav-menu.mobile-open .has-dropdown .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.15);
        margin: 8px 15px 0 15px;
        backdrop-filter: none;
        box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.3);
    }
    
    .nav-menu.mobile-open .dropdown-trigger i {
        display: none;
    }
    
    .nav-menu.mobile-open .dropdown-column a {
        padding: 8px 16px;
        font-size: 0.9rem;
        margin: 2px 0;
    }
    
    .navigation {
        top: 120px;
    }
    
    .filters-bar {
        top: 180px;
    }
    
    .filters-bar .container {
        flex-direction: column;
        gap: 15px;
    }
    
    .filters-left {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .page-header {
        padding: 40px 0;
    }
    
    .page-header h1 {
        font-size: var(--font-size-2xl);
    }
    
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
    }
    
    .product-info {
        padding: 15px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-menu.mobile-open {
        padding: 90px 0 50px 0;
    }
    
    .nav-menu.mobile-open .nav-link {
        padding: 12px 20px;
        margin: 3px 10px;
        font-size: 0.9rem;
        min-height: 44px;
    }
    
    .announcement-item {
        font-size: var(--font-size-xs);
    }
    
    .header-container {
        padding: 10px 15px;
    }
    
    .logo h1 {
        font-size: var(--font-size-2xl);
    }
    
    .nav-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        max-width: 96%;
        padding: 0 8px;
    }
    
    .nav-card {
        aspect-ratio: 1.1;
    }
    
    .nav-card-icon {
        font-size: 3.5rem;
    }
}

/* ===== NAVIGATION CARDS ===== */
.nav-cards {
    background: transparent;
    padding: 80px 0;
    width: 100%;
}

.nav-cards-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    margin-top: 20px;
    width: 100%;
    padding: 0;
}

.nav-card {
    display: block;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    aspect-ratio: 1.4;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.nav-card:hover {
    transform: translateY(-8px);
    background: rgba(0, 0, 0, 0.7);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

.nav-card-icon {
    font-size: 6rem;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.9);
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 8px;
}

.booster-box-image,
.sealed-packs-image,
.etb-image,
.support-image,
.about-image,
.cart-image,
.payment-image,
.premium-collections-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: 16px;
    filter: brightness(0.9) contrast(1.1);
    transition: all 0.3s ease;
}

.nav-card:hover .booster-box-image,
.nav-card:hover .sealed-packs-image,
.nav-card:hover .etb-image,
.nav-card:hover .support-image,
.nav-card:hover .about-image,
.nav-card:hover .cart-image,
.nav-card:hover .payment-image,
.nav-card:hover .premium-collections-image {
    filter: brightness(1) contrast(1.2);
    transform: scale(1.05);
}


.nav-card-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Colored accent bars for different cards */
.nav-card[data-accent="blue"] .nav-card-accent {
    background: #4285f4;
}

.nav-card[data-accent="purple"] .nav-card-accent {
    background: #9c27b0;
}

.nav-card[data-accent="green"] .nav-card-accent {
    background: #34a853;
}

.nav-card[data-accent="orange"] .nav-card-accent {
    background: #ff9800;
}

.nav-card[data-accent="red"] .nav-card-accent {
    background: #ea4335;
}

.nav-card[data-accent="gold"] .nav-card-accent {
    background: #ffd700;
}

.nav-card[data-accent="cyan"] .nav-card-accent {
    background: #00bcd4;
}

.nav-card[data-accent="pink"] .nav-card-accent {
    background: #e91e63;
}

.nav-card[data-accent="silver"] .nav-card-accent {
    background: #9e9e9e;
}

/* Navigation Card Descriptions */
.nav-card-description {
    font-family: 'Arial Black', Arial, sans-serif;
    font-size: 0.85rem;
    color: white;
    text-align: center;
    font-weight: 900;
    text-transform: uppercase;
    padding: 8px;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), 0 1px 2px rgba(0, 0, 0, 0.9);
    white-space: nowrap;
    transition: all 0.3s ease;
}

.nav-card:hover .nav-card-description {
    font-size: 0.9rem;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.9), 0 1px 3px rgba(0, 0, 0, 1);
}

/* Custom Contact Card Styling */
.contact-card {
    background: rgba(0, 0, 0, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    backdrop-filter: blur(15px) !important;
}

.contact-card:hover {
    background: rgba(0, 0, 0, 0.2) !important;
    box-shadow: 0 15px 35px rgba(66, 133, 244, 0.2) !important;
}

.question-mark-icon {
    font-size: 6rem;
    font-weight: bold;
    color: #4285f4;
    text-shadow: 
        0 0 10px rgba(66, 133, 244, 0.5),
        0 0 20px rgba(66, 133, 244, 0.3),
        0 0 30px rgba(66, 133, 244, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-family: 'Arial', sans-serif;
    transition: all 0.3s ease;
}

.contact-card:hover .question-mark-icon {
    transform: scale(1.1);
    text-shadow: 
        0 0 15px rgba(66, 133, 244, 0.7),
        0 0 25px rgba(66, 133, 244, 0.5),
        0 0 35px rgba(66, 133, 244, 0.3);
}

/* Updated Footer Styling with Signature */
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    padding: 20px 20px 30px 20px;
    flex-wrap: wrap;
}

.footer-section-left {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex: 1;
    min-width: 300px;
}

.footer-signature {
    flex: 1;
    max-width: 400px;
    min-width: 300px;
}

.signature-content {
    text-align: left;
    padding-left: 20px;
}

.signature-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.signature-contact {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.signature-email {
    color: #ff6b6b;
    font-size: 1rem;
    margin: 0;
}

.signature-email a {
    color: #ff6b6b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.signature-email a:hover {
    color: #ff8a8a;
    text-decoration: underline;
}

.signature-email strong {
    font-weight: 600;
}

/* Signature section in multi-column footer layout */
.footer-signature-section .signature-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 10px;
}

.footer-signature-section .signature-contact {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    margin-bottom: 5px;
}

.footer-signature-section .signature-email {
    color: #ff6b6b;
    font-size: 0.95rem;
    margin: 0;
}

.footer-signature-section .signature-email a {
    color: #ff6b6b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-signature-section .signature-email a:hover {
    color: #ff8a8a;
    text-decoration: underline;
}

.footer-signature-section .signature-email strong {
    font-weight: 600;
}

.footer-buttons {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.email-btn {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.email-btn:hover {
    background: linear-gradient(135deg, #ee5a52, #ff6b6b);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
    color: white;
}

.social-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 480px) {
    .footer {
        padding: 20px 0 0;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 25px;
        padding: 15px 15px 20px 15px;
    }
    
    .footer-section-left {
        min-width: auto;
        justify-content: center;
    }
    
    .footer-signature {
        max-width: none;
        min-width: auto;
    }
    
    .signature-content {
        padding-left: 0;
        text-align: center;
    }
    
    .footer-bottom {
        padding: 12px 15px 20px 15px;
    }
    
    .footer-buttons {
        flex-direction: column;
        gap: 20px;
        justify-content: center;
    }
    
    .social-links {
        gap: 20px;
    }
}

@media (max-width: 768px) and (min-width: 481px) {
    .footer {
        padding: 30px 0 0;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
        padding: 18px 20px 25px 20px;
    }
    
    .footer-section-left {
        justify-content: center;
    }
    
    .signature-content {
        padding-left: 0;
        text-align: center;
    }
    
    .footer-bottom {
        padding: 14px 20px 22px 20px;
    }
}

/* ===== WISHLIST MODAL ===== */
.wishlist-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.wishlist-modal.active {
    display: flex !important;
    opacity: 1;
}

.wishlist-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.wishlist-modal-content {
    position: relative;
    background: rgba(20, 20, 20, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    width: 90%;
    max-width: 800px;
    max-height: 85vh;
    margin: auto;
    overflow: hidden;
    backdrop-filter: blur(20px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.wishlist-modal-header {
    padding: 25px 30px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(238, 90, 82, 0.1));
}

.wishlist-modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wishlist-modal-close:hover {
    background: rgba(255, 107, 107, 0.2);
    color: white;
    transform: rotate(90deg);
}

.wishlist-modal-header h2 {
    color: white;
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0 0 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.wishlist-modal-header h2 i {
    color: #ff6b6b;
    font-size: 1.6rem;
}

.wishlist-subtitle {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.95rem;
}

.wishlist-modal-body {
    padding: 25px 30px;
    max-height: 450px;
    overflow-y: auto;
}

/* Empty Wishlist State */
.empty-wishlist {
    text-align: center;
    padding: 40px 20px;
}

.empty-wishlist-icon {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 20px;
}

.empty-wishlist h3 {
    color: white;
    font-size: 1.4rem;
    margin: 0 0 10px 0;
    font-weight: 500;
}

.empty-wishlist p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 25px 0;
    font-size: 0.95rem;
}

.btn-browse-cards {
    background: linear-gradient(135deg, #c084fc, #a855f7);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.btn-browse-cards:hover {
    background: linear-gradient(135deg, #a855f7, #9333ea);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(196, 132, 252, 0.3);
}

/* Wishlist Items */
.wishlist-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.wishlist-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

.wishlist-item-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    margin-right: 15px;
    flex-shrink: 0;
}

.wishlist-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wishlist-item-info {
    flex: 1;
    margin-right: 15px;
}

.wishlist-item-title {
    color: white;
    font-weight: 600;
    margin: 0 0 5px 0;
    font-size: 1rem;
}

.wishlist-item-price {
    color: #ff6b6b;
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0;
}

.wishlist-item-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.btn-add-to-cart-wishlist {
    background: linear-gradient(135deg, #48bb78, #38a169);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.btn-add-to-cart-wishlist:hover {
    background: linear-gradient(135deg, #38a169, #2f855a);
    transform: scale(1.05);
}

.btn-remove-from-wishlist {
    background: rgba(255, 107, 107, 0.2);
    color: #ff6b6b;
    border: 1px solid rgba(255, 107, 107, 0.3);
    padding: 8px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-remove-from-wishlist:hover {
    background: rgba(255, 107, 107, 0.3);
    transform: scale(1.1);
}

/* Wishlist Footer */
.wishlist-modal-footer {
    padding: 20px 30px 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    gap: 15px;
    justify-content: center;
    background: rgba(255, 255, 255, 0.02);
}

.btn-add-all-to-cart {
    background: linear-gradient(135deg, #48bb78, #38a169);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.btn-add-all-to-cart:hover {
    background: linear-gradient(135deg, #38a169, #2f855a);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(72, 187, 120, 0.3);
}

.btn-clear-wishlist {
    background: rgba(255, 107, 107, 0.1);
    color: #ff6b6b;
    border: 1px solid rgba(255, 107, 107, 0.3);
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.btn-clear-wishlist:hover {
    background: rgba(255, 107, 107, 0.2);
    transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .wishlist-modal-content {
        width: 95%;
        max-height: 90vh;
        margin: 20px auto;
    }
    
    .wishlist-modal-header,
    .wishlist-modal-body,
    .wishlist-modal-footer {
        padding: 20px;
    }
    
    .wishlist-item {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
    }
    
    .wishlist-item-image {
        margin: 0 0 15px 0;
        width: 80px;
        height: 80px;
    }
    
    .wishlist-item-info {
        margin: 0 0 15px 0;
    }
    
    .wishlist-modal-footer {
        flex-direction: column;
        gap: 12px;
    }
}

/* ===== WISHLIST BUTTON STYLING ===== */
.wishlist-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    min-width: 44px;
    height: 44px;
}

.wishlist-btn:hover {
    background: rgba(255, 107, 107, 0.2);
    border-color: rgba(255, 107, 107, 0.4);
    color: #ff6b6b;
    transform: scale(1.05);
}

.wishlist-btn.active {
    background: rgba(255, 107, 107, 0.3);
    border-color: #ff6b6b;
    color: #ff6b6b;
}

.wishlist-btn.active:hover {
    background: rgba(255, 107, 107, 0.4);
    transform: scale(1.1);
}

/* Product card wishlist button specific styling */
.product-actions .wishlist-btn {
    padding: 10px;
    min-width: 48px;
    height: 48px;
    border-radius: 8px;
    margin-left: 8px;
}

/* ===== IN-PERSON PAYMENT PAGE ===== */
.store-location {
    padding: 60px 0;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.location-info h2,
.payment-methods h2,
.store-services h2,
.store-benefits h2 {
    color: #ffffff;
    margin-bottom: 30px;
    font-size: 2rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.address {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
}

.address p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.store-hours h3 {
    color: #ffffff;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.store-hours ul {
    list-style: none;
    padding: 0;
}

.store-hours li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-grid,
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.payment-method,
.service-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.payment-method:hover,
.service-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.payment-method i,
.service-item i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #7877c6, #ff77c6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.payment-method h4,
.service-item h4 {
    color: #ffffff;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.payment-method p,
.service-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.store-services,
.store-benefits {
    margin-top: 60px;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(120, 119, 198, 0.3);
}

.benefit-item i {
    font-size: 1.5rem;
    background: linear-gradient(135deg, #7877c6, #ff77c6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    min-width: 24px;
}

.benefit-item span {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Mobile responsiveness for in-person page */
@media (max-width: 768px) {
    .location-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .payment-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-list {
        grid-template-columns: 1fr;
    }
}

.page-hero {
    background: transparent;
    text-align: center;
    padding: 60px 0 40px;
}

.page-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(120, 119, 198, 0.5);
    background: linear-gradient(135deg, #ffffff, #7877c6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===== LOADING STATES ===== */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.fade-in {
    animation: fadeIn 0.5s ease-in;
}

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

.skeleton {
    background: linear-gradient(90deg, var(--bg-light) 25%, var(--border-color) 50%, var(--bg-light) 75%);
    background-size: 200% 100%;
    animation: skeleton 1.5s infinite;
}

@keyframes skeleton {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

.slide-in-right {
    animation: slideInRight 0.6s ease-out forwards;
}

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

.hidden { display: none; }
.visible { display: block; }

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ===== PRODUCT PAGES STYLES ===== */

/* Filter Section */
.filter-section {
    padding: 40px 0;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.filter-controls h3 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: 600;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.filter-btn {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    color: #ffffff;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 85, 48, 0.3);
}

/* Products Section */
.products-section {
    padding: 60px 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

/* Product Card */
.product-card {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
}

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

/* Product Image */
.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

/* Product Badge */
.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.product-badge.new {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
}

.product-badge:not(.new) {
    background: rgba(255, 255, 255, 0.9);
    color: #2d3748;
}

/* Product Info */
.product-info {
    padding: 25px;
}

.product-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    line-height: 1.2;
}

.product-subtitle {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Product Features */
.product-features {
    margin-bottom: 20px;
}

.product-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    padding: 4px 0;
}

.product-features li i {
    color: var(--primary-color);
    width: 16px;
    text-align: center;
}

/* Product Price */
.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.current-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--success-color);
}

.compare-price {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
}

/* Product Actions */
.product-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.btn-add-cart {
    flex: 1;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-add-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(44, 85, 48, 0.4);
}

.btn-wishlist {
    padding: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-wishlist:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
    transform: translateY(-2px);
}

.btn-wishlist.active {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
}

/* Bundle Section */
.bundle-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.bundle-card {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 140, 0, 0.1));
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.bundle-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.bundle-header h3 {
    font-size: 2rem;
    color: #ffd700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.bundle-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.bundle-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.bundle-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    text-align: left;
}

.bundle-items span {
    color: rgba(255, 255, 255, 0.9);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.bundle-price {
    margin-bottom: 25px;
}

.bundle-original {
    display: block;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: line-through;
    margin-bottom: 5px;
}

.bundle-sale {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 5px;
}

.bundle-savings {
    display: block;
    font-size: 1rem;
    color: var(--success-color);
    font-weight: 600;
}

.bundle-btn {
    padding: 15px 40px;
    font-size: 1.1rem;
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #2d3748;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.bundle-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

/* Filter Animation */
.product-card.fade-out {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.product-card.fade-in {
    opacity: 1;
    transform: scale(1);
    transition: all 0.3s ease;
}

/* Add to Cart Animation */
.btn-add-cart.added-to-cart {
    background: var(--success-color) !important;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(72, 187, 120, 0.4);
}

.btn-add-cart.added-to-cart:hover {
    background: var(--success-color) !important;
}

.bundle-btn.added-to-cart {
    background: linear-gradient(135deg, #48bb78, #38a169) !important;
    color: white !important;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(72, 187, 120, 0.4);
}

/* Welcome Popup Styles */
.welcome-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    animation: fadeIn 0.3s ease-out;
}

.welcome-popup.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.welcome-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.welcome-popup-content {
    position: relative;
    background: linear-gradient(135deg, rgba(45, 55, 72, 0.95), rgba(26, 32, 44, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideInUp 0.4s ease-out;
    backdrop-filter: blur(20px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.welcome-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.welcome-popup-close:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: scale(1.1);
}

.welcome-popup-header {
    text-align: center;
    padding: 30px 30px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.welcome-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    animation: bounce 1s ease-in-out infinite alternate;
}

.welcome-popup-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin: 0 0 10px 0;
}

.welcome-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin: 0;
}

.welcome-popup-body {
    padding: 30px;
}

.discount-offer {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 30px;
}

.discount-badge {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 10px 20px rgba(255, 107, 107, 0.3);
}

.discount-percent {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
}

.discount-text {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 2px;
}

.offer-details h3 {
    color: white;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 10px 0;
}

.offer-details p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 15px 0;
    font-size: 1.1rem;
}

.promo-code {
    background: rgba(255, 255, 255, 0.1);
    padding: 5px 10px;
    border-radius: 8px;
    font-family: 'Courier New', monospace;
    color: #667eea;
    font-weight: 700;
    font-size: 1.2rem;
}

.offer-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.offer-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.offer-benefits li i {
    color: #48bb78;
    font-size: 0.9rem;
}

.welcome-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.btn-claim-discount {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-claim-discount:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.btn-copy-code {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-copy-code:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.popup-footer {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.popup-footer p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

@keyframes bounce {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}

@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Mobile Responsive for Welcome Popup */
@media (max-width: 768px) {
    .welcome-popup-content {
        margin: 20px;
        max-height: calc(100vh - 40px);
    }
    
    .welcome-popup-header {
        padding: 25px 20px 15px;
    }
    
    .welcome-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .welcome-popup-header h2 {
        font-size: 1.6rem;
    }
    
    .welcome-popup-body {
        padding: 20px;
    }
    
    .discount-offer {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .discount-badge {
        padding: 15px 25px;
    }
    
    .discount-percent {
        font-size: 2rem;
    }
}

/* Whatnot Live Sales Styles */
.live-stream-section {
    padding: 40px 0;
    background: rgba(0, 0, 0, 0.2);
}

.live-stream-container {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.stream-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 15px;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.status-indicator.live .status-dot {
    background: #ff4444;
    box-shadow: 0 0 10px rgba(255, 68, 68, 0.5);
}

.status-indicator.offline .status-dot {
    background: #666;
}

.status-indicator.live .status-text {
    color: #ff4444;
}

.status-indicator.offline .status-text {
    color: rgba(255, 255, 255, 0.7);
}

.next-stream {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.stream-embed {
    background: #000;
    border-radius: 12px;
    overflow: visible;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.stream-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(26, 32, 44, 0.9), rgba(45, 55, 72, 0.9));
}

.placeholder-content {
    text-align: center;
    color: white;
}

.placeholder-content i {
    font-size: 4rem;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.5);
}

.profile-preview-container {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
}

.profile-preview-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    object-fit: contain;
    object-position: center;
}

.profile-preview-image:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
    border-color: rgba(102, 126, 234, 0.3);
}

@media (max-width: 768px) {
    .profile-preview-image {
        max-width: 320px;
        border-radius: 8px;
    }
}

.placeholder-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: white;
}

.placeholder-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
}

.btn-follow-whatnot {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-follow-whatnot:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

/* Upcoming Sales */
.upcoming-sales {
    padding: 60px 0;
}

.upcoming-sales h2 {
    text-align: center;
    color: white;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.sales-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.sale-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.sale-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.sale-header {
    padding: 20px;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sale-date {
    display: flex;
    flex-direction: column;
    color: white;
}

.sale-date .day {
    font-size: 1.2rem;
    font-weight: 700;
}

.sale-date .time {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.type-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.type-badge.pack-break {
    background: linear-gradient(135deg, #48bb78, #38a169);
    color: white;
}

.type-badge.auction {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.type-badge.flash-sale {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
}

.sale-content {
    padding: 25px;
}

.sale-content h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.sale-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
}

.sale-features {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.sale-features span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.sale-features i {
    color: var(--primary-color);
}

/* Why Whatnot Section */
.why-whatnot {
    padding: 60px 0;
    background: rgba(0, 0, 0, 0.1);
}

.why-whatnot-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-text h2 {
    color: white;
    font-size: 2.2rem;
    margin-bottom: 40px;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.benefit {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.benefit i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 5px;
    flex-shrink: 0;
}

.benefit h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.benefit p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.whatnot-mockup {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    max-width: 300px;
    margin: 0 auto;
}

.mockup-header {
    background: rgba(0, 0, 0, 0.3);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.live-indicator {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ff4444;
}

.viewer-count {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.mockup-content {
    padding: 40px 20px;
    text-align: center;
    background: linear-gradient(135deg, rgba(26, 32, 44, 0.5), rgba(45, 55, 72, 0.5));
}

.mockup-content i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.mockup-content p {
    color: white;
    font-weight: 600;
}

.mockup-chat {
    background: rgba(0, 0, 0, 0.2);
    padding: 15px 20px;
}

.chat-message {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 12px;
    border-radius: 8px;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

.chat-message:last-child {
    margin-bottom: 0;
}

/* CTA Section */
.cta-section {
    padding: 60px 0;
}

.cta-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-card h2 {
    color: white;
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.cta-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 35px;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 15px 30px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 15px 30px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.social-proof {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.proof-item i {
    color: var(--primary-color);
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Premium Collections Specific Styles */
.premium-image {
    object-fit: contain !important;
    object-position: center !important;
}

.badge.premium {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #000;
    font-weight: 700;
}

.badge.limited {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
}

.badge.new {
    background: linear-gradient(135deg, #48bb78, #38a169);
    color: white;
}

.badge.hot {
    background: linear-gradient(135deg, #ff4757, #ff3838);
    color: white;
    animation: pulse 2s infinite;
}

.coming-soon {
    opacity: 0.8;
}

.coming-soon-placeholder {
    height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.coming-soon-placeholder i {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.coming-soon-placeholder h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: white;
}

.btn-notify {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.6);
    cursor: not-allowed;
}

.premium-info-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.1);
}

.premium-info-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.premium-benefits {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.benefit {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.benefit i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 5px;
    flex-shrink: 0;
}

.benefit h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.benefit p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

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

.showcase-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.showcase-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(102, 126, 234, 0.3);
}

.showcase-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.showcase-item span {
    color: white;
    font-weight: 600;
}

/* Logo Image Styling */
.logo-img {
    height: 40px;
    width: auto;
    margin-right: 10px;
    object-fit: contain;
}

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

.logo-text-container {
    display: flex;
    flex-direction: column;
}

.logo-text-container h1 {
    margin: 0;
    font-size: 1.8rem;
}

.logo-text-container .tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Hamburger Menu Styles */
.hamburger-menu-btn {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    margin-left: auto;
    z-index: 1000;
    position: relative;
}

.hamburger-line {
    display: block;
    width: 25px;
    height: 3px;
    background: white;
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}





/* Responsive Design */
@media (max-width: 768px) {
    .filter-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 80%;
        max-width: 200px;
        margin-bottom: 8px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .product-card {
        margin: 0 10px;
    }
    
    .bundle-content {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .bundle-items {
        grid-template-columns: 1fr;
    }
    
    .bundle-card {
        padding: 30px 20px;
    }
    
    .bundle-header h3 {
        font-size: 1.5rem;
    }
    
    .bundle-sale {
        font-size: 2rem;
    }
    
    /* Whatnot Mobile Styles */
    .live-stream-container {
        padding: 20px;
    }
    
    .stream-status {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .sales-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .sale-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .why-whatnot-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .why-text h2 {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .upcoming-sales h2 {
        font-size: 2rem;
    }
    
    .cta-card {
        padding: 30px 20px;
        margin: 0 20px;
    }
    
    .cta-card h2 {
        font-size: 1.8rem;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .social-proof {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .product-info {
        padding: 20px;
    }
    
    .product-title {
        font-size: 1.2rem;
    }
    
    .current-price {
        font-size: 1.3rem;
    }
    
    .btn-add-cart {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
}

/* ===== APPLY NAVIGATION BAR COLOR SCHEME THROUGHOUT SITE ===== */

/* Navigation color scheme: linear-gradient(180deg, #0f0f0f 0%, #1a1a1a 50%, #2a1f3d 100%) */

/* Apply navigation gradient to main content areas */
.main-content,
.page-hero,
.nav-cards {
    background: linear-gradient(180deg, #1a1a1a 0%, #2a1f3d 30%, #0f0f0f 100%);
}

/* Apply navigation colors to cards */
.nav-card {
    background: linear-gradient(135deg, #2a1f3d, #1a1a1a);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.nav-card:hover {
    background: linear-gradient(135deg, #3a2f4d, #2a1a2a);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* Apply to product cards */
.product-card {
    background: linear-gradient(135deg, #2a1f3d, #1a1a1a);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.product-card:hover {
    background: linear-gradient(135deg, #3a2f4d, #2a1a2a);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* Contact card with navigation theme */
.contact-card {
    background: linear-gradient(135deg, #2a1f3d, #1a1a1a) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.contact-card:hover {
    background: linear-gradient(135deg, #3a2f4d, #2a1a2a) !important;
}

/* ===== HERO SLIDESHOW ===== */
.hero-slideshow {
    background: linear-gradient(180deg, #1a1a1a 0%, #2a1f3d 30%, #0f0f0f 100%);
    padding: 20px 0 0 0;
    overflow: hidden;
    position: relative;
    min-height: 90vh;
    margin-bottom: -10px;
}

.slideshow-container {
    position: relative;
    height: 80vh;
    width: 100%;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    background: linear-gradient(135deg, #2a1f3d 0%, #1a1a1a 50%, #0f0f0f 100%);
    padding: 20px;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.slide-left {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.pokemon-cards {
    position: relative;
    width: 600px;
    height: 420px;
}

.card-image {
    position: absolute;
    max-width: 300px;
    max-height: 420px;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.card-1 {
    top: 0;
    left: 0;
    z-index: 3;
    transform: rotate(-10deg);
}

.card-2 {
    top: 20px;
    left: 100px;
    z-index: 2;
    transform: rotate(5deg);
}

.card-3 {
    top: 40px;
    left: 200px;
    z-index: 1;
    transform: rotate(15deg);
}

.slide-right {
    flex: 1;
    text-align: left;
    padding: 20px;
}

.slide-right h2 {
    color: var(--accent-color);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.slide-right h1 {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
}

.slide-right p {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #ffffff;
}

.highlight {
    color: #ff6b6b;
    font-weight: 900;
    text-shadow: 0 0 10px rgba(255, 107, 107, 0.5);
}

.promo-text {
    font-size: 1rem;
    color: #a0aec0;
    margin-bottom: 30px;
}

.promo-code {
    color: #ffd700;
    font-weight: 700;
    background: rgba(255, 215, 0, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
}

.cta-button {
    background: linear-gradient(135deg, #ff6b6b, #ec4899);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: var(--button-border-radius);
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

/* Navigation Dots */
.slide-navigation {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dot.active {
    background: var(--accent-color);
    transform: scale(1.2);
}

.nav-dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

/* Slide Controls */
.slide-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.slide-control:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.slide-control.prev {
    left: 20px;
}

.slide-control.next {
    right: 20px;
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    .hero-slideshow {
        min-height: 70vh;
        padding: 15px 0 0 0;
    }
    
    .slideshow-container {
        height: 65vh;
    }
    
    .pokemon-cards {
        width: 450px;
        height: 315px;
    }
    
    .card-image {
        max-width: 225px;
        max-height: 315px;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-slideshow {
        min-height: 65vh;
        padding: 10px 0 0 0;
    }
    
    .slideshow-container {
        height: 60vh;
    }
    
    .slide-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 15px;
        justify-content: space-between;
        height: 100%;
    }
    
    .slide-left,
    .slide-right {
        flex: none;
        width: 100%;
    }
    
    .slide-right {
        padding: 15px 10px;
        text-align: center;
    }
    
    .slide-right h1 {
        font-size: 2rem;
        margin-bottom: 10px;
        line-height: 1.2;
    }
    
    .slide-right h2 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    
    .slide-right p {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .cta-button {
        padding: 14px 24px;
        font-size: 1rem;
        margin-top: 15px;
        min-height: 48px;
        border-radius: 8px;
        font-weight: 600;
    }
    
    .slide-control {
        width: 50px;
        height: 50px;
        font-size: 20px;
        opacity: 0.9;
        background: rgba(0, 0, 0, 0.7);
        border: 2px solid rgba(255, 255, 255, 0.3);
    }
    
    .slide-control:hover {
        opacity: 1;
        background: rgba(0, 0, 0, 0.8);
    }
    
    .pokemon-cards {
        width: 300px;
        height: 210px;
    }
    
    .card-image {
        max-width: 150px;
        max-height: 210px;
        border-radius: 8px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    }
    
    .card-1 {
        top: 0;
        left: 0;
        z-index: 3;
        transform: rotate(-10deg);
    }

    .card-2 {
        top: 15px;
        left: 75px;
        z-index: 2;
        transform: rotate(5deg);
    }

    .card-3 {
        top: 30px;
        left: 150px;
        z-index: 1;
        transform: rotate(15deg);
    }
    
    .slide-right h1 {
        font-size: 2rem;
    }
    
    .slide-right p {
        font-size: 1.1rem;
    }
    
    .slide-control {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

/* ===== NEW ARRIVALS SECTION ===== */
.new-arrivals-section {
    padding: 0;
    background: linear-gradient(135deg, 
        rgba(15, 15, 15, 0.95) 0%, 
        rgba(42, 31, 61, 0.9) 30%,
        rgba(76, 29, 149, 0.8) 50%,
        rgba(42, 31, 61, 0.9) 70%,
        rgba(15, 15, 15, 0.95) 100%);
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid #ffd700;
    margin-top: -10px;
}

.new-arrivals-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(192, 132, 252, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(168, 85, 247, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.03) 0%, transparent 60%);
    pointer-events: none;
}

.new-arrivals-section .container {
    padding: 60px 0;
}

.new-arrivals-section .section-header {
    text-align: center !important;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    flex-direction: column !important;
}

.new-arrivals-section .section-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
    text-shadow: 
        0 0 20px rgba(192, 132, 252, 0.5),
        0 4px 8px rgba(0, 0, 0, 0.8);
    background: linear-gradient(135deg, #c084fc, #a855f7, #ffd700, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

/* .new-arrivals-section .section-header h2::after - REMOVED */

@keyframes sparkle-bounce {
    0%, 100% { transform: translateY(-50%) scale(1); }
    50% { transform: translateY(-60%) scale(1.2); }
}

.new-arrivals-section .section-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    font-weight: 500;
}

.new-arrivals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.new-arrivals-grid .product-card.featured {
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(192, 132, 252, 0.4);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(192, 132, 252, 0.2),
        inset 0 1px 0 rgba(255, 215, 0, 0.1);
}

.new-arrivals-grid .product-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(192, 132, 252, 0.05) 0%, 
        transparent 30%, 
        transparent 70%, 
        rgba(168, 85, 247, 0.05) 100%);
    pointer-events: none;
    z-index: 1;
}

.new-arrivals-grid .product-card.featured:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(255, 215, 0, 0.6);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(192, 132, 252, 0.3),
        0 0 20px rgba(255, 215, 0, 0.4),
        inset 0 1px 0 rgba(255, 215, 0, 0.2);
}

.new-arrivals-grid .product-image {
    position: relative;
    padding: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    z-index: 2;
}

.new-arrivals-grid .product-image img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

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

.new-arrivals-grid .product-badge.new {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ffd700, #ff8f00, #ffc107);
    color: #000;
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 
        0 6px 20px rgba(255, 215, 0, 0.6),
        0 0 20px rgba(255, 215, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    animation: golden-pulse 2.5s ease-in-out infinite;
    z-index: 3;
    border: 2px solid rgba(255, 255, 255, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

@keyframes golden-pulse {
    0%, 100% { 
        box-shadow: 
            0 6px 20px rgba(255, 215, 0, 0.6),
            0 0 20px rgba(255, 215, 0, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
        transform: scale(1);
    }
    50% { 
        box-shadow: 
            0 8px 30px rgba(255, 215, 0, 0.8),
            0 0 40px rgba(255, 215, 0, 0.6),
            inset 0 1px 0 rgba(255, 255, 255, 0.5);
        transform: scale(1.05);
    }
}

.new-arrivals-grid .product-info {
    padding: 25px;
    position: relative;
    z-index: 2;
}

.new-arrivals-grid .product-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.new-arrivals-grid .product-subtitle {
    font-size: 0.9rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

.new-arrivals-grid .product-subtitle::after {
    content: '✨';
    position: absolute;
    right: -25px;
    color: #ffd700 !important;
    font-size: 0.8rem;
    opacity: 1 !important;
    z-index: 10;
    filter: brightness(1.5);
    /* animation: subtle-sparkle 3s ease-in-out infinite; - Animation removed */
}

@keyframes subtle-sparkle {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.new-arrivals-grid .product-price {
    margin-bottom: 25px;
    text-align: center;
    position: relative;
}

.new-arrivals-grid .product-price .current-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    text-shadow: 
        0 0 10px rgba(192, 132, 252, 0.3),
        0 2px 4px rgba(0, 0, 0, 0.8);
    display: inline-block;
}

.new-arrivals-grid .product-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.new-arrivals-grid .btn-add-cart {
    flex: 1;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: 1px solid rgba(255, 215, 0, 0.3);
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.new-arrivals-grid .btn-add-cart::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 215, 0, 0.2) 50%, 
        transparent 100%);
    transition: left 0.5s ease;
}

.new-arrivals-grid .btn-add-cart:hover::before {
    left: 100%;
}

.new-arrivals-grid .btn-add-cart:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 
        0 8px 25px rgba(192, 132, 252, 0.4),
        0 0 15px rgba(255, 215, 0, 0.3);
    border-color: rgba(255, 215, 0, 0.6);
}

.new-arrivals-grid .btn-wishlist {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(192, 132, 252, 0.4);
    color: rgba(255, 255, 255, 0.8);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.new-arrivals-grid .btn-wishlist::after {
    content: '⭐';
    position: absolute;
    top: -5px;
    right: -5px;
    font-size: 0.7rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.new-arrivals-grid .btn-wishlist:hover {
    background: rgba(192, 132, 252, 0.2);
    border-color: rgba(255, 215, 0, 0.6);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(192, 132, 252, 0.3);
}

.new-arrivals-grid .btn-wishlist:hover::after {
    opacity: 1;
}

/* Mobile responsiveness for new arrivals */
@media (max-width: 768px) {
    .new-arrivals-section .section-header h2 {
        font-size: 2.2rem;
    }
    
    .new-arrivals-grid {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
        padding: 0 10px !important;
    }
    
    .new-arrivals-grid .product-card {
        max-width: 100% !important;
        margin: 0 auto !important;
    }
    
    .new-arrivals-grid .product-card.featured {
        transform: none !important;
    }
    
    .new-arrivals-grid .product-card.featured:hover {
        transform: translateY(-3px) !important;
    }
    
    .new-arrivals-grid .product-image {
        height: 250px !important;
    }
    
    .new-arrivals-grid .product-title {
        font-size: 1.1rem !important;
        line-height: 1.3 !important;
    }
    
    .new-arrivals-grid .product-subtitle {
        font-size: 0.9rem !important;
    }
    
    .new-arrivals-grid .product-price .current-price {
        font-size: 1.4rem !important;
    }
    
    .new-arrivals-grid .btn-add-cart {
        width: 100% !important;
        margin-bottom: 10px !important;
    }
    
    .new-arrivals-grid .btn-wishlist {
        width: 100% !important;
    }
    
    .new-arrivals-grid .product-actions {
        flex-direction: column !important;
        gap: 10px !important;
    }
}

@media (max-width: 480px) {
    .new-arrivals-section .container {
        padding: 50px 0;
    }
    
    .new-arrivals-section .section-header {
        margin-bottom: 40px;
    }
    
    .new-arrivals-section .section-header h2 {
        font-size: 2rem;
    }
    
    .new-arrivals-section .section-header h2::after {
        right: -25px;
        font-size: 1.2rem;
    }
    
    .new-arrivals-section .section-header p {
        font-size: 1.1rem;
    }
    
    .new-arrivals-grid {
        gap: 20px;
    }
    
    .new-arrivals-grid .product-card.featured {
        margin: 0 10px;
    }
    
    .new-arrivals-grid .product-info {
        padding: 20px;
    }
    
    .new-arrivals-grid .product-title {
        font-size: 1.2rem;
    }
    
    .new-arrivals-grid .product-subtitle::after {
        right: -20px;
        font-size: 0.7rem;
    }
    
    .new-arrivals-grid .product-price .current-price {
        font-size: 1.6rem;
    }
    
    .new-arrivals-grid .btn-add-cart {
        padding: 12px 18px;
        font-size: 0.9rem;
        /* Mobile touch optimization */
        position: relative;
        z-index: 999;
        -webkit-tap-highlight-color: rgba(0,0,0,0);
        touch-action: manipulation;
        pointer-events: auto;
        cursor: pointer;
    }
    
    .new-arrivals-grid .btn-wishlist {
        /* Mobile touch optimization */
        position: relative;
        z-index: 999;
        -webkit-tap-highlight-color: rgba(0,0,0,0);
        touch-action: manipulation;
        pointer-events: auto;
        cursor: pointer;
    }
    
    /* Ensure product actions container doesn't interfere */
    .new-arrivals-grid .product-actions {
        position: relative;
        z-index: 998;
        pointer-events: auto;
    }
    
    /* Prevent pseudo-elements from blocking touch on mobile */
    .new-arrivals-grid .product-card.featured::before {
        pointer-events: none;
    }
}

/* ===== MINI CONTACT SECTION ===== */
.mini-contact-section {
    padding: 60px 0;
    background: linear-gradient(135deg, 
        rgba(20, 20, 30, 0.95) 0%, 
        rgba(30, 15, 40, 0.95) 100%);
    position: relative;
    border-top: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

.mini-contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="pokeball-pattern" patternUnits="userSpaceOnUse" width="20" height="20"><circle cx="10" cy="10" r="8" fill="none" stroke="rgba(192,132,252,0.1)" stroke-width="1"/><circle cx="10" cy="10" r="3" fill="rgba(192,132,252,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23pokeball-pattern)"/></svg>') repeat;
    opacity: 0.6;
    pointer-events: none;
}

.mini-contact-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.mini-contact-content {
    padding: 0;
}

.mini-contact-header h3 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    background: linear-gradient(135deg, #ffffff, var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mini-contact-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    font-weight: 500;
    line-height: 1.6;
}

.contact-methods {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.contact-method-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.contact-method-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.6s ease;
}

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

.contact-method-btn.primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: 2px solid transparent;
}

.contact-method-btn.primary:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(192, 132, 252, 0.4);
}

.contact-method-btn.secondary {
    background: rgba(255, 107, 107, 0.1);
    color: #ff6b6b;
    border: 2px solid rgba(255, 107, 107, 0.3);
}

.contact-method-btn.secondary:hover {
    background: rgba(255, 107, 107, 0.2);
    border-color: #ff6b6b;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.3);
}

.contact-method-btn.info {
    background: rgba(72, 187, 120, 0.1);
    color: #48bb78;
    border: 2px solid rgba(72, 187, 120, 0.3);
    cursor: default;
}

.contact-method-btn.info:hover {
    background: rgba(72, 187, 120, 0.2);
    border-color: #48bb78;
    color: white;
    transform: translateY(-2px);
}

.mini-contact-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
}

.contact-pokemon-cards {
    position: relative;
    width: 100%;
    height: 280px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-card {
    position: absolute;
    width: 120px;
    height: 165px;
    border-radius: 12px;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.contact-card.floating-1 {
    top: 30px;
    left: 40px;
    animation: float-1 4s ease-in-out infinite;
    z-index: 2;
}

.contact-card.floating-2 {
    top: 80px;
    right: 30px;
    animation: float-2 4.5s ease-in-out infinite 0.5s;
    z-index: 1;
}

@keyframes float-1 {
    0%, 100% { 
        transform: translateY(0) rotate(5deg); 
    }
    50% { 
        transform: translateY(-20px) rotate(-3deg); 
    }
}

@keyframes float-2 {
    0%, 100% { 
        transform: translateY(0) rotate(-8deg); 
    }
    50% { 
        transform: translateY(-18px) rotate(5deg); 
    }
}

.contact-sparkles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.sparkle {
    position: absolute;
    font-size: 1.2rem;
    animation: sparkle 3s ease-in-out infinite;
}

.sparkle:nth-child(1) {
    top: 30px;
    left: 60%;
    animation-delay: 0s;
}

.sparkle:nth-child(2) {
    top: 80px;
    left: 20%;
    animation-delay: 1s;
}

.sparkle:nth-child(3) {
    top: 140px;
    left: 70%;
    animation-delay: 2s;
}

@keyframes sparkle {
    0%, 100% { 
        opacity: 0; 
        transform: scale(0.5) rotate(0deg); 
    }
    50% { 
        opacity: 1; 
        transform: scale(1.2) rotate(180deg); 
    }
}

/* Mobile responsiveness for mini contact */
@media (max-width: 768px) {
    .mini-contact-section {
        padding: 40px 0;
    }
    
    .mini-contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .mini-contact-header h3 {
        font-size: 1.8rem;
    }
    
    .mini-contact-header p {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .contact-methods {
        justify-content: center;
        gap: 12px;
    }
    
    .contact-method-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
        flex: 1;
        min-width: 140px;
        max-width: 180px;
        justify-content: center;
    }
    
    .mini-contact-visual {
        min-height: 200px;
        margin-top: 20px;
    }
    
    .contact-pokemon-cards {
        height: 200px;
        transform: scale(0.75);
    }
}

@media (max-width: 480px) {
    .mini-contact-section {
        padding: 30px 0;
    }
    
    .mini-contact-header h3 {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }
    
    .mini-contact-header p {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .contact-methods {
        flex-direction: column;
        gap: 10px;
    }
    
    .contact-method-btn {
        padding: 14px 20px;
        width: 100%;
        max-width: none;
    }
    
    .contact-pokemon-cards {
        transform: scale(0.6);
        height: 160px;
    }
    
    .sparkle {
        font-size: 1rem;
    }
}

/* ===== WISHLIST BUTTON ACTIVE STATES ===== */
.btn-wishlist.active {
    background: rgba(255, 107, 107, 0.2) !important;
    border-color: #ff6b6b !important;
    color: #ff6b6b !important;
}

.btn-wishlist.active:hover {
    background: rgba(255, 107, 107, 0.3) !important;
    border-color: #ff6b6b !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.4) !important;
}

.btn-wishlist.active i {
    color: #ff6b6b;
}

.btn-wishlist.active:hover i {
    color: white;
}