/* ==========================================================================
   Lumina Pazaryeri - Premium Design System
   ========================================================================== */

/* --- Variables --- */
:root {
    /* Color Palette - Modern Dark Theme with Vibrant Accents */
    --bg-primary: #0a0a0f;
    --bg-secondary: #12121a;
    --bg-tertiary: rgba(25, 25, 35, 0.7);
    
    --text-primary: #f8f8f8;
    --text-secondary: #a0a0b0;
    
    --accent-blue: #007aff;
    --accent-purple: #8a2be2;
    --accent-pink: #ff2a6d;
    --accent-cyan: #05d9e8;
    
    --border-color: rgba(255, 255, 255, 0.08);
    --border-glow: rgba(255, 255, 255, 0.15);
    
    /* Glassmorphism */
    --glass-bg: rgba(20, 20, 25, 0.6);
    --glass-border: 1px solid rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing & Layout */
    --max-width: 1400px;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --border-radius-pill: 50px;
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-medium: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

/* --- Utility Classes --- */
.text-gradient {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass-panel {
    background: var(--glass-bg);
    
    -webkit-
    border: var(--glass-border);
    border-radius: var(--border-radius-md);
    box-shadow: var(--glass-shadow);
}

.site-header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    background: rgba(10, 10, 15, 0.95);
    
    -webkit-
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all var(--transition-medium);
}

.site-header.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-cyan);
    transition: width var(--transition-fast);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--border-radius-pill);
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    text-decoration: none;
}

.btn-sm {
    padding: 0.5rem 1.2rem;
    font-size: 0.9rem;
}

.btn-primary {
    background: linear-gradient(45deg, var(--accent-blue), var(--accent-purple));
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px var(--accent-blue);
}

.btn-glow {
    position: relative;
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: -2px; left: -2px; right: -2px; bottom: -2px;
    background: linear-gradient(45deg, var(--accent-cyan), var(--accent-purple), var(--accent-pink));
    z-index: -1;
    border-radius: var(--border-radius-pill);
    filter: blur(10px);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.btn-glow:hover::before {
    opacity: 0.7;
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--text-primary);
    background: rgba(255,255,255,0.05);
}

.btn-icon {
    padding: 0.5rem;
    border-radius: 50%;
    background: rgba(0,0,0,0.5);
    
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
}

.btn-icon:hover {
    background: var(--accent-blue);
    transform: scale(1.1);
}

/* --- Main Layout --- */
.main-content {
    padding-top: 100px;
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(138,43,226,0.15) 0%, rgba(5,217,232,0.1) 50%, rgba(10,10,15,0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    animation: pulseGlow 8s infinite alternate;
}

@keyframes pulseGlow {
    0% { transform: translate(-50%, -50%) scale(1); }
    100% { transform: translate(-50%, -50%) scale(1.2); }
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5.5rem);
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 3rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
}

.hero-actions .arrow {
    margin-left: 8px;
    transition: transform var(--transition-fast);
}

.hero-actions .btn:hover .arrow {
    transform: translateX(5px);
}

/* Hero Search */
.hero-search-wrapper {
    width: 100%;
    max-width: 800px;
    padding: 0.5rem;
    border-radius: var(--border-radius-pill);
}

.hero-search-form {
    display: flex;
    align-items: center;
}

.search-icon {
    padding: 0 1rem 0 1.5rem;
    color: var(--text-secondary);
}

.hero-search-form input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1.1rem;
    padding: 1rem 0;
    font-family: var(--font-body);
}

.hero-search-form input:focus {
    outline: none;
}

.hero-search-form input::placeholder {
    color: rgba(255,255,255,0.4);
}

.btn-search {
    margin-left: 1rem;
    padding: 0.8rem 2.5rem;
}

/* --- Products Section --- */
.products-section {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 6rem 2rem;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.section-header h2 {
    font-size: 2.5rem;
}

.filter-tabs {
    display: flex;
    gap: 0.5rem;
    background: var(--bg-secondary);
    padding: 0.5rem;
    border-radius: var(--border-radius-pill);
    border: 1px solid var(--border-color);
}

.tab-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    padding: 0.5rem 1.5rem;
    border-radius: var(--border-radius-pill);
    cursor: pointer;
    font-weight: 500;
    transition: all var(--transition-fast);
}

.tab-btn.active, .tab-btn:hover {
    background: rgba(255,255,255,0.1);
    color: var(--text-primary);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
}

@media (max-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

/* Product Card */
.product-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.product-card.interactive:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.5), 0 0 20px rgba(138,43,226,0.1);
    border-color: var(--border-glow);
}

.product-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.product-image-wrapper::after {
    content: '';
    position: absolute;
    top: -100%; left: 0; width: 100%; height: 10px;
    background: linear-gradient(to bottom, transparent, rgba(5, 217, 232, 0.8), transparent);
    z-index: 5;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.product-card:hover .product-image-wrapper::after {
    opacity: 1;
    animation: hologramScan 2s linear infinite;
}

@keyframes hologramScan {
    0% { top: -10%; }
    100% { top: 110%; }
}

.product-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1; /* Kare oran, simetri için */
    overflow: hidden;
    background: var(--bg-secondary);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(0,0,0,0.6);
    
    padding: 0.3rem 0.8rem;
    border-radius: var(--border-radius-pill);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.1);
    z-index: 2;
}

.product-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity var(--transition-fast);
    z-index: 1;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-name {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.product-name a {
    color: var(--text-primary);
}

.product-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    font-size: 1.3rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--accent-cyan);
}

/* --- Features Section --- */
.features-section {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 4rem 2rem 8rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    border: var(--glass-border);
    transition: transform var(--transition-fast);
}

.feature-card:hover .feature-icon {
    transform: translateY(-5px) rotate(5deg);
}

.glow-blue { color: var(--accent-blue); box-shadow: 0 0 20px rgba(0,122,255,0.2); }
.glow-purple { color: var(--accent-purple); box-shadow: 0 0 20px rgba(138,43,226,0.2); }
.glow-pink { color: var(--accent-pink); box-shadow: 0 0 20px rgba(255,42,109,0.2); }

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-secondary);
}

/* --- Footer --- */
.site-footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul a {
    color: var(--text-secondary);
}

.footer-col ul a:hover {
    color: var(--accent-cyan);
}

.footer-bottom {
    max-width: var(--max-width);
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 15, 0.95);
        backdrop-filter: blur(10px);
        padding: 1rem;
        border-bottom: 1px solid var(--border-color);
        box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    }
    
    .nav-links.active {
        display: flex !important;
    }
    
    .mobile-menu-btn {
        display: inline-flex !important;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-search-wrapper {
        border-radius: var(--border-radius-md);
    }
    
    .hero-search-form {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .btn-search {
        width: 100%;
        margin-left: 0;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .filter-tabs {
        width: 100%;
        overflow-x: auto;
    }
}

/* --- Loot Box V2 Feature --- */
.loot-box-trigger {
    position: fixed;
    bottom: 6rem;
    left: 2rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-cyan));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    box-shadow: 0 0 20px rgba(5,217,232,0.5);
    cursor: pointer;
    z-index: 999;
    animation: bounceLoot 2s infinite;
    border: 2px solid rgba(255,255,255,0.2);
    transition: transform var(--transition-fast);
}

.loot-box-trigger:hover {
    transform: scale(1.1) rotate(10deg);
}

@keyframes bounceLoot {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.loot-box-modal {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

.loot-box-modal.active {
    visibility: visible;
    opacity: 1;
}

.loot-box-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.8);
    
}

.loot-box-content {
    position: relative;
    background: var(--bg-secondary);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--accent-cyan);
    box-shadow: 0 0 50px rgba(5,217,232,0.2);
    text-align: center;
    max-width: 500px;
    width: 90%;
    z-index: 2;
    transform: scale(0.8);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.loot-box-modal.active .loot-box-content {
    transform: scale(1);
}

.loot-box-close {
    position: absolute;
    top: 1rem; right: 1rem;
    background: none; border: none;
    color: white; font-size: 1.5rem;
    cursor: pointer;
}

.the-chest {
    position: relative;
    width: 150px; height: 150px;
    margin: 0 auto;
    cursor: pointer;
    transition: transform 0.2s;
}

.the-chest:hover {
    transform: scale(1.05);
}

.the-chest.shake {
    animation: shakeChest 0.5s ease-in-out infinite;
}

@keyframes shakeChest {
    0% { transform: translate(1px, 1px) rotate(0deg); }
    10% { transform: translate(-1px, -2px) rotate(-1deg); }
    20% { transform: translate(-3px, 0px) rotate(1deg); }
    30% { transform: translate(3px, 2px) rotate(0deg); }
    40% { transform: translate(1px, -1px) rotate(1deg); }
    50% { transform: translate(-1px, 2px) rotate(-1deg); }
    60% { transform: translate(-3px, 1px) rotate(0deg); }
    70% { transform: translate(3px, 1px) rotate(-1deg); }
    80% { transform: translate(-1px, -1px) rotate(1deg); }
    90% { transform: translate(1px, 2px) rotate(0deg); }
    100% { transform: translate(1px, -2px) rotate(-1deg); }
}

.chest-body {
    background: linear-gradient(135deg, #2a2a35, #1a1a25);
    border: 2px solid var(--accent-gold, #ffd700);
    border-radius: 10px;
    width: 100px; height: 80px;
    position: absolute; bottom: 20px; left: 25px;
    display: flex; justify-content: center; align-items: center;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.5);
    z-index: 2;
}

.chest-lid {
    background: linear-gradient(135deg, #3a3a45, #2a2a35);
    border: 2px solid var(--accent-gold, #ffd700);
    border-radius: 20px 20px 0 0;
    width: 104px; height: 40px;
    position: absolute; bottom: 98px; left: 23px;
    transform-origin: bottom center;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 3;
}

.the-chest.open .chest-lid {
    transform: rotateX(70deg) translateY(-20px);
}

/* --- AI Assistant V3 Feature --- */
.ai-assistant-trigger {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    box-shadow: 0 0 20px rgba(5,217,232,0.6);
    cursor: pointer;
    z-index: 999;
    border: 2px solid rgba(255,255,255,0.3);
    transition: transform var(--transition-medium);
    animation: floatBot 3s ease-in-out infinite;
}

@keyframes floatBot {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.ai-assistant-trigger:hover {
    transform: scale(1.1) rotate(15deg);
    animation: none;
}

.ai-chat-window {
    position: fixed;
    bottom: 6rem;
    right: 2rem;
    width: 350px;
    height: 500px;
    max-height: 80vh;
    background: rgba(15, 15, 20, 0.95);
    
    border: 1px solid var(--accent-cyan);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 10px 40px rgba(0,0,0,0.8), 0 0 20px rgba(5,217,232,0.2);
    display: flex;
    flex-direction: column;
    z-index: 1000;
    transform-origin: bottom right;
    transform: scale(0);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s;
    pointer-events: none;
}

.ai-chat-window.active {
    transform: scale(1);
    opacity: 1;
    pointer-events: auto;
}

.ai-chat-header {
    padding: 1rem 1.5rem;
    background: linear-gradient(90deg, rgba(5,217,232,0.2), rgba(138,43,226,0.2));
    border-bottom: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ai-chat-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--accent-cyan);
}

.ai-chat-close {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 1.2rem;
    transition: color 0.2s;
}

.ai-chat-close:hover {
    color: var(--accent-pink);
}

.ai-chat-body {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ai-chat-body::-webkit-scrollbar {
    width: 6px;
}
.ai-chat-body::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.2);
    border-radius: 10px;
}

.chat-msg {
    max-width: 85%;
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    font-size: 0.95rem;
    line-height: 1.4;
    position: relative;
    animation: fadeInMsg 0.3s ease-out forwards;
}

@keyframes fadeInMsg {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.msg-bot {
    align-self: flex-start;
    background: rgba(5,217,232,0.1);
    border: 1px solid rgba(5,217,232,0.3);
    color: var(--text-primary);
    border-bottom-left-radius: 2px;
}

.msg-user {
    align-self: flex-end;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-blue));
    color: white;
    border-bottom-right-radius: 2px;
}

.ai-chat-footer {
    padding: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    gap: 0.5rem;
}

.ai-chat-input {
    flex: 1;
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    padding: 0.8rem 1rem;
    color: white;
    font-family: var(--font-body);
    font-size: 0.95rem;
}

.ai-chat-input:focus {
    outline: none;
    border-color: var(--accent-cyan);
}

.ai-chat-send {
    background: var(--accent-cyan);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: black;
    cursor: pointer;
    transition: transform 0.2s;
}

.ai-chat-send:hover {
    transform: scale(1.1);
}

.typing-indicator {
    display: inline-flex;
    gap: 4px;
    align-items: center;
    padding: 0.5rem 1rem;
}

.typing-dot {
    width: 6px;
    height: 6px;
    background: var(--accent-cyan);
    border-radius: 50%;
    animation: typingBounce 1.4s infinite ease-in-out both;
}

.typing-dot:nth-child(1) { animation-delay: -0.32s; }
.typing-dot:nth-child(2) { animation-delay: -0.16s; }

@keyframes typingBounce {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

.glow-effect {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 0; height: 0;
    background: radial-gradient(circle, rgba(5,217,232,0.8) 0%, rgba(138,43,226,0) 70%);
    border-radius: 50%;
    z-index: 1;
    transition: all 0.5s;
}

.the-chest.open .glow-effect {
    width: 300px; height: 300px;
    animation: rotateGlow 5s linear infinite;
}

@keyframes rotateGlow {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@media (max-width: 576px) {
    .product-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }
    .product-price {
        font-size: 1.15rem;
        white-space: nowrap;
    }
    .product-footer .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

