.ent-shop-container {
    max-width: 960px;
    margin: 3rem auto;
    padding: 2rem;
    font-family: 'Roboto Condensed', sans-serif;
    color: #e0f7fa;
    background: rgba(15, 22, 30, 0.7);
    backdrop-filter: blur(6px);
    border-radius: 1rem;
    box-shadow: 0 0 16px rgba(125, 211, 252, 0.1);
}

.ent-shop-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #7dd3fc;
    margin-bottom: 3rem;
    text-shadow: 0 0 6px rgba(125, 211, 252, 0.3);
}

.ent-shop-category {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    margin-top: 2rem;
    color: #abd9d7;
    border-left: 4px solid #7dd3fc;
    padding-left: 0.75rem;
}

.ent-shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.ent-shop-card {
    background: rgba(30, 50, 70, 0.85);
    border-radius: 0.75rem;
    padding: 1.25rem;
    box-shadow: 0 0 12px rgba(125, 211, 252, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 33%;
}

.ent-shop-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 20px rgba(125, 211, 252, 0.1);
}

.ent-shop-image {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.ent-shop-name {
    font-size: 1.125rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #e0f7fa;
}

.ent-shop-desc {
    font-size: 0.9rem;
    color: #cdeef5;
    margin-bottom: 1rem;
}

.ent-shop-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.ent-shop-price {
    color: #7dd3fc;
    font-weight: bold;
    font-size: 1rem;
}

.ent-shop-buy {
    background-color: #50c9ff;
    color: #0b1119;
    padding: 0.4rem 0.9rem;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: background-color 0.2s ease;
    border: none;
    cursor: pointer;
}

.ent-shop-buy:hover {
    background-color: #40a9dd;
}
.ent-cart-button {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    z-index: 10;
}
.ent-cart-success {
    background-color: rgba(34, 197, 94, 0.15);
    border-left: 4px solid #22c55e;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    color: #bbf7d0;
    font-weight: 500;
}
.ent-cart-remove {
    background-color: #ef4444;
    color: #fff;
    padding: 0.3rem 0.75rem;
    font-size: 0.875rem;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.2s ease;
    border: none;
}
.ent-shop-grid-wrapper {
    display: flex;
    justify-content: center;
}

.ent-shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    max-width: 840px; /* 280px * 3 cards */
    width: 100%;
}

