/* shop.php - Shop page specific styles */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: -1;
    top: 0;
    left: 0;
}

.product-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: var(--ac);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.15);
}

.product-icon {
    width: 50px;
    height: 50px;
    background: rgba(139, 92, 246, 0.1);
    color: var(--ac);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.product-title { font-size: 1.5rem; font-weight: 700; color: #fff; margin-bottom: 0.5rem; }
.product-desc { color: var(--text-dim); font-size: 0.95rem; line-height: 1.6; margin-bottom: 2rem; flex-grow: 1; }
.product-price { font-size: 2rem; font-weight: 800; color: #fff; margin-bottom: 1.5rem; }
.product-price span { font-size: 1rem; color: var(--text-dim); font-weight: 400; }

/* Cart Offcanvas */
#cart-canvas {
    position: fixed; top: 0; right: -400px; width: 100%; max-width: 400px;
    height: 100vh; background: var(--bg-alt); border-left: 1px solid var(--card-border);
    z-index: 1000; transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1); display: flex; flex-direction: column;
    box-shadow: -10px 0 50px rgba(0,0,0,0.8);
    backdrop-filter: var(--glass);
}
#cart-canvas.open { right: 0; }

.cart-header { padding: 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; align-items: center; }
.cart-items { padding: 1.5rem; flex-grow: 1; overflow-y: auto; }
.cart-footer { padding: 1.5rem; border-top: 1px solid rgba(255,255,255,0.1); background: rgba(0,0,0,0.2); }
.cart-item { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; padding-bottom: 1rem; border-bottom: 1px solid rgba(255,255,255,0.05); }

#cart-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.6); z-index: 999; display: none; opacity: 0; transition: opacity 0.3s ease;
}
#cart-overlay.open { display: block; opacity: 1; }

.floating-cart {
    position: fixed; bottom: 30px; right: 30px;
    background: var(--ac); color: white; border: none;
    width: 65px; height: 65px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 10px 30px var(--ac-glow);
    cursor: pointer; z-index: 998; transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.floating-cart:hover { transform: scale(1.1) rotate(5deg); box-shadow: 0 15px 40px var(--ac-glow); }

.cart-badge {
    position: absolute; top: 0; right: 0;
    background: #ef4444; color: white; font-size: 11px; font-weight: bold;
    width: 20px; height: 20px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
