/* ====================================
   VINEWORLD - PREMIUM DONATE SHOP
   Based on GamePE.me Style System
   ==================================== */

:root {
    /* Core Colors - Dark Theme */
    --background: 240 12% 8%;
    --foreground: 0 0% 98%;
    --primary: 280 75% 60%;
    --primary-glow: 280 85% 70%;
    --accent: 170 70% 55%;
    --accent-glow: 170 80% 65%;
    --secondary: 45 95% 60%;
    --secondary-glow: 45 100% 70%;
    --destructive: 0 84% 60%;
    --destructive-glow: 0 90% 70%;
    
    /* UI Colors */
    --card: 240 10% 12%;
    --muted: 240 6% 20%;
    --muted-foreground: 240 5% 65%;
    --border: 240 8% 25%;
    --ring: 280 75% 60%;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent)));
    --gradient-danger: linear-gradient(135deg, hsl(var(--destructive)), hsl(var(--primary)));
    --gradient-success: linear-gradient(135deg, hsl(var(--accent)), hsl(var(--primary)));
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 0.75rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    
    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    --radius: 1.5rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-sans);
    background: hsl(var(--background));
    color: hsl(var(--foreground));
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Background Effects */
.bg-blob {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.2;
    pointer-events: none;
    z-index: -1;
    animation: float 15s infinite ease-in-out;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: hsl(var(--primary));
    top: -250px;
    left: -250px;
    animation-delay: 0s;
}

.blob-2 {
    width: 600px;
    height: 600px;
    background: hsl(var(--accent));
    bottom: -300px;
    right: -300px;
    animation-delay: -5s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(-50px, 50px) scale(1.1);
    }
    50% {
        transform: translate(20px, -60px) scale(0.9);
    }
    75% {
        transform: translate(40px, 30px) scale(1.05);
    }
}

.grid-pattern {
    position: fixed;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: -1;
}

/* Glassmorphism */
.glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-strong {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(30px) saturate(200%);
    -webkit-backdrop-filter: blur(30px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.glass-footer {
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Navigation */
.navigation {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    animation: slideDown 0.3s ease-out;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s;
}

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

.logo-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.25rem;
}

.logo-text-main {
    font-size: 1.125rem;
    font-weight: bold;
}

.logo-text-sub {
    font-size: 0.75rem;
    color: hsl(var(--muted-foreground));
}

.text-gradient {
    background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent)));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 1024px) {
    .nav-desktop { display: flex; }
    .nav-mobile-btn { display: none; }
}

.nav-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 1rem;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.2s;
    text-decoration: none;
    color: inherit;
    white-space: nowrap;
}

.nav-btn-glass {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
}

.nav-btn-glass:hover {
    background: rgba(255, 255, 255, 0.12);
}

.nav-btn-glass.active {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-btn-primary {
    background: var(--gradient-primary);
    color: white;
}

.nav-btn-primary:hover {
    opacity: 0.9;
}

.nav-btn:active {
    transform: scale(0.95);
}

/* Mobile Menu */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 40;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

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

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 16rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(30px);
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    z-index: 40;
    padding: 1.5rem;
    padding-top: 6rem;
    transform: translateX(100%);
    transition: transform 0.3s;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Hero */
.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 5rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    height: 100%;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        hsl(var(--background) / 0.95) 0%,
        hsl(var(--background) / 0.85) 30%,
        hsl(var(--background) / 0.75) 50%,
        hsl(var(--background) / 1) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding-top: 2rem;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: hsl(var(--muted-foreground));
    margin-bottom: 2rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

.hero-btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 1rem;
    border: none;
    font-family: inherit;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    overflow: hidden;
}

.hero-btn-primary {
    background: var(--gradient-primary);
    color: white;
}

.hero-btn-glass {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    color: hsl(var(--foreground));
}

.hero-btn:hover {
    transform: scale(1.05);
}

.hero-btn:active {
    transform: scale(0.95);
}

.hero-decorative {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.2;
    pointer-events: none;
}

.hero-decorative-1 {
    top: 25%;
    left: 10%;
    width: 8rem;
    height: 8rem;
    background: hsl(var(--primary));
}

.hero-decorative-2 {
    bottom: 25%;
    right: 10%;
    width: 10rem;
    height: 10rem;
    background: hsl(var(--accent));
}

/* Sections */
section {
    position: relative;
    padding: var(--space-2xl) 0;
}

.section-title {
    text-align: center;
    margin-bottom: var(--space-3xl);
    animation: fadeIn 0.8s 0.5s ease-out both;
}

.section-title h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    margin-bottom: var(--space-md);
}

.section-title p {
    font-size: 1.125rem;
    color: hsl(var(--muted-foreground));
}

/* Bento Sections */
.bento-section {
    margin-bottom: var(--space-3xl);
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.bento-section:nth-child(1) { animation-delay: 0.1s; }
.bento-section:nth-child(2) { animation-delay: 0.2s; }
.bento-section:nth-child(3) { animation-delay: 0.3s; }
.bento-section:nth-child(4) { animation-delay: 0.4s; }

.section-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-lg);
    margin-bottom: var(--space-2xl);
    transition: all 0.3s ease;
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    position: relative;
    overflow: hidden;
}

.section-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--gradient-primary);
}

.section-header:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.section-header h3 {
    font-size: 1.875rem;
    font-weight: 800;
}

.section-subtitle {
    margin-left: auto;
    color: hsl(var(--muted-foreground));
    font-size: var(--text-sm);
}

/* Grids */
.items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
}

.currency-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--space-xl);
}

.bento-subsection {
    margin-top: var(--space-2xl);
    padding-left: var(--space-xl);
    border-left: 3px solid hsl(var(--border));
}

.subsection-title {
    font-size: var(--text-xl);
    font-weight: 600;
    color: hsl(var(--muted-foreground));
    margin-bottom: var(--space-lg);
}

/* Cards */
.item-card {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-lg);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.item-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
    border-radius: var(--radius);
}

.item-card:hover::before {
    opacity: 0.05;
}

/* Add glow effect to item icons */
.item-icon {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.item-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Changed from cover to contain to show full image */
    image-rendering: -webkit-optimize-contrast; /* Better image rendering */
    image-rendering: crisp-edges;
    image-rendering: pixelated; /* For pixel art images */
}

.item-card:hover .item-icon {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 25px rgba(147, 51, 234, 0.4);
}

.privilege-image {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.25rem;
    object-fit: contain;
    max-width: 100%;
    max-height: 100%;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* Specific styling for privilege icons to prevent over-scaling */
.privilege-icon {
    width: 3rem;
    height: 3rem;
    min-width: 3rem;
    min-height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 0.75rem;
}

/* Calculator image styling */
.calculator-icon {
    width: 1.5rem;
    height: 1.5rem;
}

.item-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border-color: hsl(var(--primary));
}

.currency-card {
    flex-direction: column;
    text-align: center;
    gap: var(--space-sm);
}

.item-icon {
    min-width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.item-card:hover .item-icon {
    transform: scale(1.1);
}

.privilege-name {
    position: relative;
    z-index: 1;
    font-size: 1.125rem;
    font-weight: 700;
}

.privilege-price {
    position: relative;
    z-index: 1;
    font-size: 1.25rem;
    font-weight: 800;
    color: hsl(var(--accent));
}

.currency-amount {
    color: hsl(var(--muted-foreground));
    font-size: var(--text-sm);
    margin-top: var(--space-xs);
}

/* Modals */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 50;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    overflow-y: auto;
    opacity: 0;
    transition: opacity 0.2s ease-out;
}

.modal-overlay.active {
    display: flex;
    animation: fadeInOverlay 0.2s ease-out forwards;
}

@keyframes fadeInOverlay {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal {
    position: relative;
    max-width: 32rem;
    width: 100%;
    border-radius: var(--radius);
    padding: var(--space-xl);
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.95);
    opacity: 0;
    transition: all 0.2s ease-out;
    margin: 2rem 0;
}

.modal-overlay.active .modal {
    animation: scaleInModal 0.3s ease-out forwards;
}

@keyframes scaleInModal {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    border: none;
    background: rgba(255, 255, 255, 0.05);
    color: inherit;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.modal-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.modal-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: bold;
}

.modal-content {
    margin-bottom: var(--space-xl);
}

/* Cart Modal */
.cart-items {
    min-height: 200px;
    margin-bottom: var(--space-lg);
}

.cart-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0.75rem;
    margin-bottom: var(--space-sm);
    animation: slideInLeft 0.3s ease-out;
}

.item-info {
    flex: 1;
}

.item-name {
    font-weight: 600;
}

.item-category {
    font-size: var(--text-xs);
    color: hsl(var(--muted-foreground));
}

.item-price {
    font-weight: 700;
    color: hsl(var(--accent));
}

.remove-btn {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: hsl(var(--destructive));
    padding: var(--space-xs);
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s;
}

.remove-btn:hover {
    background: rgba(239, 68, 68, 0.2);
}

.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 200px;
    color: hsl(var(--muted-foreground));
    text-align: center;
    gap: var(--space-md);
}

.empty-icon {
    width: 48px;
    height: 48px;
    opacity: 0.5;
}

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

.total-price {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: var(--space-lg);
}

/* Purchase Modal */
.privilege-info {
    padding: var(--space-lg);
    border-radius: 0.75rem;
    margin-bottom: var(--space-xl);
}

.privilege-info-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.privilege-info-name {
    font-size: 1.5rem;
    font-weight: bold;
}

.privilege-info-price {
    font-size: 1.875rem;
    font-weight: 800;
    color: hsl(var(--accent));
}

/* Forms */
.form-group {
    margin-bottom: var(--space-md);
}

.form-label {
    display: block;
    font-size: var(--text-sm);
    font-weight: 500;
    margin-bottom: var(--space-xs);
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    background: hsl(var(--muted));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    color: inherit;
    font-family: inherit;
    font-size: var(--text-sm);
    transition: all 0.2s;
}

.form-input:focus {
    outline: none;
    border-color: hsl(var(--accent));
}

.form-checkbox-group {
    display: flex;
    align-items: start;
    gap: var(--space-sm);
}

.form-checkbox {
    margin-top: 0.25rem;
    accent-color: hsl(var(--accent));
}

.form-checkbox-label {
    font-size: var(--text-sm);
    color: hsl(var(--muted-foreground));
}

/* Cart form styling */
.cart-form {
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Currency Calculator */
.currency-calculator {
    margin-top: var(--space-xl);
    padding: var(--space-lg);
    border-radius: var(--radius);
}

.currency-calculator h4 {
    margin-bottom: var(--space-lg);
    font-weight: 600;
    color: hsl(var(--accent));
}

.calculator-controls {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.calculator-input,
.calculator-slider {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.calculator-input input,
.calculator-slider input[type="range"] {
    width: 100%;
    padding: 0.5rem;
    border-radius: 0.5rem;
    background: hsl(var(--muted));
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: inherit;
    font-family: inherit;
}

.calculator-slider input[type="range"] {
    padding: 0;
    height: 0.5rem;
    cursor: pointer;
}

.calculator-result {
    text-align: center;
    margin-top: var(--space-md);
}

.calculator-result p {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.calculator-btn {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.calculator-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* Buttons */
.modal-btn {
    width: 100%;
    padding: var(--space-md) var(--space-lg);
    border-radius: 0.75rem;
    border: none;
    background: var(--gradient-primary);
    color: white;
    font-family: inherit;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}

.modal-btn:hover {
    transform: scale(1.02);
}

.modal-btn:active {
    transform: scale(0.98);
}

.modal-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.add-to-cart-btn-sm {
    width: 100%;
    padding: var(--space-xs) var(--space-sm);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    color: hsl(var(--foreground));
    font-size: var(--text-xs);
    cursor: pointer;
    transition: all 0.2s;
}

.add-to-cart-btn-sm:hover {
    background: rgba(255, 255, 255, 0.1);
}

.add-to-cart-btn {
    padding: 0.5rem 1rem;
    background: var(--gradient-primary);
    border: none;
    border-radius: 0.75rem;
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    align-self: center;
}

.add-to-cart-btn:hover {
    opacity: 0.9;
    transform: scale(1.05);
}

.item-card {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-lg);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.currency-card {
    flex-direction: column;
    text-align: center;
    gap: var(--space-sm);
}

/* Footer */
footer {
    margin-top: var(--space-3xl);
    padding: var(--space-2xl) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-section h3 {
    font-weight: bold;
    margin-bottom: var(--space-md);
}

.footer-section p {
    font-size: var(--text-sm);
    color: hsl(var(--muted-foreground));
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--space-xs);
}

.footer-links a,
.footer-links button {
    font-size: var(--text-sm);
    color: hsl(var(--muted-foreground));
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    padding: 0;
    transition: color 0.2s;
}

.footer-links a:hover,
.footer-links button:hover {
    color: hsl(var(--foreground));
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

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

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

/* Enhanced hover effects for items */
.item-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.item-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Enhanced button animations */
.hero-btn {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.modal-btn {
    transition: all 0.3s ease;
}

.modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.nav-btn {
    transition: all 0.3s ease;
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .bento-subsection {
        padding-left: 0;
        border-left: none;
        padding-top: var(--space-lg);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .currency-grid {
        grid-template-columns: 1fr;
    }
    
    .items-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }
}

/* Floating Checkout Button */
.floating-checkout-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 2rem;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    z-index: 100;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 1rem;
    white-space: nowrap;
    overflow: hidden;
}

.floating-checkout-btn.visible {
    opacity: 1;
    transform: translateY(0);
}

.floating-checkout-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.floating-checkout-btn:active {
    transform: translateY(0);
}

.cart-count {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 0.15rem 0.5rem;
    font-size: 0.875rem;
}