.shop-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 4000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.shop-content {
    background: #111;
    width: 100%;
    max-width: 380px;
    border-radius: 28px;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.shop-header {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.shop-header h2 {
    margin: 0;
    color: #fff;
    font-size: 1.25rem;
}

.shop-grid {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.shop-item {
    background: #1a1a1a;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: transform 0.2s, border-color 0.2s;
    position: relative;
}

.shop-item:hover {
    transform: scale(1.02);
    border-color: #fbbf24;
}

.shop-item.recommended {
    border: 2px solid #fbbf24;
    background: #242424;
}

.shop-item.recommended::after {
    content: "Önərilən";
    position: absolute;
    top: -10px;
    right: 20px;
    background: #fbbf24;
    color: #000;
    font-size: 0.6rem;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 10px;
    text-transform: uppercase;
}

.item-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.item-icon {
    font-size: 1.5rem;
}

.item-count {
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
}

.item-price {
    background: rgba(255,255,255,0.1);
    padding: 6px 12px;
    border-radius: 10px;
    color: #fbbf24;
    font-weight: 800;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.shop-footer {
    padding: 15px;
    text-align: center;
}

.shop-close-btn {
    color: #888;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
}
