.premium-shop-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 18px;
}

/* HEADER (matches Explore / Bank) */
.premium-shop-hero {
    text-align: center;
    padding: 28px 0 18px;
}

.premium-shop-hero h1 {
    margin: 0;
    color: #4d336d;
    font-size: 2rem;
    font-weight: 800;
}

.premium-shop-hero p {
    margin: 4px 0 0;
    color: #4d336d;
}

.premium-shop-shell {
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(195, 160, 253, 0.42);
    border-radius: 24px;
    padding: 22px;
    box-shadow: 0 8px 24px rgba(70, 45, 100, 0.08);
}

.premium-shop-intro {
    text-align: center;
    margin-bottom: 18px;
}

.premium-shop-intro h2 {
    margin: 0;
    color: #4d336d;
}

.premium-shop-intro p {
    margin: 5px 0 0;
    color: #6c5b80;
}


/* GRID */
.premium-shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
}

/* ITEM CARD */
.premium-item-card {
    background: #fff;
    border: 1px solid rgba(195, 160, 253, 0.38);
    border-radius: 20px;
    padding: 16px;
    text-align: center;
    box-shadow: 0 6px 18px rgba(70, 45, 100, 0.06);
}

.premium-item-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(70, 45, 100, 0.12);
}

/* IMAGE */
.premium-item-card img {
    width: 100%;
    max-height: 120px;
    object-fit: contain;
    margin-bottom: 10px;
}

/* TEXT */
.premium-item-card h3 {
    margin: 6px 0 4px;
    color: #4d336d;
}

.premium-item-card p {
    font-size: 0.85rem;
    color: #6c5b80;
    margin-bottom: 10px;
}

/* PRICE */
.premium-price {
    font-weight: 900;
    color: #b36cff;
    margin-bottom: 10px;
}

/* BUTTON */
.premium-item-card button {
    border: none;
    border-radius: 999px;
    padding: 8px 14px;
    background: linear-gradient(135deg, #d492fd, #91caff);
    color: white;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(140, 95, 200, 0.25);
    transition: 0.2s ease;
}

.premium-item-card button:hover {
    transform: scale(1.05);
}

/* MESSAGE */
.premium-message {
    padding: 12px 14px;
    border-radius: 16px;
    margin-bottom: 14px;
    font-weight: 700;
    text-align: center;
}

.premium-message.success {
    background: #e9fff2;
    color: #24784a;
    border: 1px solid #b9edca;
}

.premium-message.error {
    background: #fff0f0;
    color: #a13c3c;
    border: 1px solid #f0b8b8;
}

.premium-owned {
    border: none;
    border-radius: 999px;
    padding: 8px 14px;
    background: #e6e1ef;
    color: #7a6f8f;
    font-weight: 800;
    cursor: default;
}

.premium-pets-intro {
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid rgba(195, 160, 253, 0.35);
}

.premium-pet-card img {
    max-height: 135px;
    object-fit: contain;
}

.premium-create-btn {
    display: inline-block;
    border-radius: 999px;
    padding: 8px 14px;
    background: linear-gradient(135deg, #d492fd, #91caff);
    color: white;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 6px 16px rgba(140, 95, 200, 0.25);
}

.premium-create-btn:hover {
    transform: scale(1.05);
}