.store-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 30px;
}

.store-top {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}

.store-account {
    flex: 1;
}

.store-cart {
    flex-shrink: 0;
}


.item-card {
    border-radius: 18px;
    padding: 10px;
    text-align: center;
    background: radial-gradient(circle at top left, rgba(34,197,94,.15), transparent 60%);
    border: 1px solid #22c55e30;
}

.item-card img {
    width: 100%;
    height: 100px;
    object-fit: contain;
}

.item-card h3 {
    margin: 10px 0;
}

.item-cart-name {
        background: #22c55e;
    height: 2rem;
    border-radius: 5px 20px 5px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    margin-bottom: 10px;
    color: black;
}

.price {
    color: #22c55e;
    font-weight: bold;
}

.item-card button {
    margin-top: 12px;
    width: 100%;
    padding: 10px;
    background: #22c55e;
    border: none;
    border-radius: 10px;
    color: #020617;
    font-weight: bold;
    cursor: pointer;
}

.cart-box {
    margin-top: 40px;
    background: #020617;
    padding: 20px;
    border-radius: 18px;
    max-width: 360px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}



.checkout-btn {
    display: block;
    margin-top: 15px;
    padding: 12px;
    background: #22c55e;
    color: #020617;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
}



/* SYTEM SEARCH */
.store-filters {
    display: flex;
    gap: 16px;
    margin-bottom: 30px;
}

.store-filters input,
.store-filters select {
    background: #020617;
    border: 1px solid #1e293b;
    color: #e5e7eb;
    padding: 12px;
    border-radius: 12px;
    width: 260px;
    background: radial-gradient(circle at top left, rgba(34, 197, 94, .15), transparent 60%);
    border: 1px solid #22c55e30;
}


/* CART */
.cart-drawer {
    position: fixed;
    right: -420px;
    top: 0;
    width: 400px;
    height: 100vh;
    background: #020617;
    transition: right .3s ease;
    z-index: 100;
}

.cart-drawer.open {
    right: 0;
    padding: 1rem;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header button {
    background: none;
    border: none;
    color: #94a3b8;
    font-size: 18px;
    cursor: pointer;
}

.cart-items {
    margin-top: 20px;
    flex: 1;
    overflow-y: auto;
}

.cart-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.cart-item-controls button {
    background: #1e293b;
    border: none;
    color: white;
    padding: 4px 10px;
    border-radius: 6px;
    cursor: pointer;
}

.cart-footer {
    margin-top: 20px;
}

.cart-icon.bounce {
    animation: bounce .3s;
}

@keyframes bounce {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}


